Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
The QListWidget class provides an item-based list widget. More...
#include <qlistwidget.h>
Public Slots | |
void | scrollToItem (const QListWidgetItem *item, QAbstractItemView::ScrollHint hint=EnsureVisible) |
Scrolls the view if necessary to ensure that the item is visible. | |
void | clear () |
Removes all items and selections in the view. | |
Public Slots inherited from QAbstractItemView | |
virtual void | selectAll () |
Selects all items in the view. | |
void | edit (const QModelIndex &index) |
Starts editing the item corresponding to the given index if it is editable. | |
void | clearSelection () |
Deselects all selected items. | |
void | setCurrentIndex (const QModelIndex &index) |
Sets the current item to be the item at index. | |
void | scrollToTop () |
Scrolls the view to the top. | |
void | scrollToBottom () |
Scrolls the view to the bottom. | |
void | update (const QModelIndex &index) |
Updates the area occupied by the given index. | |
Signals | |
void | itemPressed (QListWidgetItem *item) |
This signal is emitted with the specified item when a mouse button is pressed on an item in the widget. | |
void | itemClicked (QListWidgetItem *item) |
This signal is emitted with the specified item when a mouse button is clicked on an item in the widget. | |
void | itemDoubleClicked (QListWidgetItem *item) |
This signal is emitted with the specified item when a mouse button is double clicked on an item in the widget. | |
void | itemActivated (QListWidgetItem *item) |
This signal is emitted when the item is activated. | |
void | itemEntered (QListWidgetItem *item) |
This signal is emitted when the mouse cursor enters an item. | |
void | itemChanged (QListWidgetItem *item) |
This signal is emitted whenever the data of item has changed. | |
void | currentItemChanged (QListWidgetItem *current, QListWidgetItem *previous) |
This signal is emitted whenever the current item changes. | |
void | currentTextChanged (const QString ¤tText) |
This signal is emitted whenever the current item changes. | |
void | currentRowChanged (int currentRow) |
This signal is emitted whenever the current item changes. | |
void | itemSelectionChanged () |
This signal is emitted whenever the selection changes. | |
Signals inherited from QListView | |
void | indexesMoved (const QModelIndexList &indexes) |
This signal is emitted when the specified indexes are moved in the view. | |
Signals inherited from QAbstractItemView | |
void | pressed (const QModelIndex &index) |
This signal is emitted when a mouse button is pressed. | |
void | clicked (const QModelIndex &index) |
This signal is emitted when a mouse button is left-clicked. | |
void | doubleClicked (const QModelIndex &index) |
This signal is emitted when a mouse button is double-clicked. | |
void | activated (const QModelIndex &index) |
This signal is emitted when the item specified by index is activated by the user. | |
void | entered (const QModelIndex &index) |
This signal is emitted when the mouse cursor enters the item specified by index. | |
void | viewportEntered () |
This signal is emitted when the mouse cursor enters the viewport. | |
void | iconSizeChanged (const QSize &size) |
Public Member Functions | |
QListWidget (QWidget *parent=nullptr) | |
Constructs an empty QListWidget with the given parent. | |
~QListWidget () | |
Destroys the list widget and all its items. | |
void | setSelectionModel (QItemSelectionModel *selectionModel) override |
\reimp | |
QListWidgetItem * | item (int row) const |
Returns the item that occupies the given row in the list if one has been set; otherwise returns \nullptr. | |
int | row (const QListWidgetItem *item) const |
Returns the row containing the given item. | |
void | insertItem (int row, QListWidgetItem *item) |
Inserts the item at the position in the list given by row. | |
void | insertItem (int row, const QString &label) |
Inserts an item with the text label in the list widget at the position given by row. | |
void | insertItems (int row, const QStringList &labels) |
Inserts items from the list of labels into the list, starting at the given row. | |
void | addItem (const QString &label) |
Inserts an item with the text label at the end of the list widget. | |
void | addItem (QListWidgetItem *item) |
Inserts the item at the end of the list widget. | |
void | addItems (const QStringList &labels) |
Inserts items with the text labels at the end of the list widget. | |
QListWidgetItem * | takeItem (int row) |
Removes and returns the item from the given row in the list widget; otherwise returns \nullptr. | |
int | count () const |
QListWidgetItem * | currentItem () const |
Returns the current item. | |
void | setCurrentItem (QListWidgetItem *item) |
Sets the current item to item. | |
void | setCurrentItem (QListWidgetItem *item, QItemSelectionModel::SelectionFlags command) |
Set the current item to item, using the given command. | |
int | currentRow () const |
void | setCurrentRow (int row) |
void | setCurrentRow (int row, QItemSelectionModel::SelectionFlags command) |
Sets the current row to be the given row, using the given command,. | |
QListWidgetItem * | itemAt (const QPoint &p) const |
Returns a pointer to the item at the coordinates p. | |
QListWidgetItem * | itemAt (int x, int y) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Returns a pointer to the item at the coordinates (x, y). | |
QRect | visualItemRect (const QListWidgetItem *item) const |
Returns the rectangle on the viewport occupied by the item at item. | |
void | sortItems (Qt::SortOrder order=Qt::AscendingOrder) |
Sorts all the items in the list widget according to the specified order. | |
void | setSortingEnabled (bool enable) |
bool | isSortingEnabled () const |
void | editItem (QListWidgetItem *item) |
Starts editing the item if it is editable. | |
void | openPersistentEditor (QListWidgetItem *item) |
Opens an editor for the given item. | |
void | closePersistentEditor (QListWidgetItem *item) |
Closes the persistent editor for the given item. | |
bool | isPersistentEditorOpen (QListWidgetItem *item) const |
QWidget * | itemWidget (QListWidgetItem *item) const |
Returns the widget displayed in the given item. | |
void | setItemWidget (QListWidgetItem *item, QWidget *widget) |
Sets the widget to be displayed in the given item. | |
void | removeItemWidget (QListWidgetItem *item) |
Removes the widget set on the given item. | |
QList< QListWidgetItem * > | selectedItems () const |
Returns a list of all selected items in the list widget. | |
QList< QListWidgetItem * > | findItems (const QString &text, Qt::MatchFlags flags) const |
Finds items with the text that matches the string text using the given flags. | |
QList< QListWidgetItem * > | items (const QMimeData *data) const |
Returns a list of pointers to the items contained in the data object. | |
QModelIndex | indexFromItem (const QListWidgetItem *item) const |
Returns the QModelIndex associated with the given item. | |
QListWidgetItem * | itemFromIndex (const QModelIndex &index) const |
Returns a pointer to the QListWidgetItem associated with the given index. | |
bool | isPersistentEditorOpen (const QModelIndex &index) const |
Public Member Functions inherited from QListView | |
QListView (QWidget *parent=nullptr) | |
Creates a new QListView with the given parent to view a model. | |
~QListView () | |
Destroys the view. | |
void | setMovement (Movement movement) |
Movement | movement () const |
void | setFlow (Flow flow) |
Flow | flow () const |
void | setWrapping (bool enable) |
bool | isWrapping () const |
void | setResizeMode (ResizeMode mode) |
ResizeMode | resizeMode () const |
void | setLayoutMode (LayoutMode mode) |
LayoutMode | layoutMode () const |
void | setSpacing (int space) |
int | spacing () const |
void | setBatchSize (int batchSize) |
int | batchSize () const |
void | setGridSize (const QSize &size) |
QSize | gridSize () const |
void | setViewMode (ViewMode mode) |
ViewMode | viewMode () const |
void | clearPropertyFlags () |
Clears the QListView-specific property flags. | |
bool | isRowHidden (int row) const |
Returns true if the row is hidden; otherwise returns false . | |
void | setRowHidden (int row, bool hide) |
If hide is true, the given row will be hidden; otherwise the row will be shown. | |
void | setModelColumn (int column) |
int | modelColumn () const |
void | setUniformItemSizes (bool enable) |
bool | uniformItemSizes () const |
void | setWordWrap (bool on) |
bool | wordWrap () const |
void | setSelectionRectVisible (bool show) |
bool | isSelectionRectVisible () const |
void | setItemAlignment (Qt::Alignment alignment) |
Qt::Alignment | itemAlignment () const |
QRect | visualRect (const QModelIndex &index) const override |
\reimp | |
void | scrollTo (const QModelIndex &index, ScrollHint hint=EnsureVisible) override |
\reimp | |
QModelIndex | indexAt (const QPoint &p) const override |
\reimp | |
void | doItemsLayout () override |
void | reset () override |
void | setRootIndex (const QModelIndex &index) override |
\reimp | |
Public Member Functions inherited from QAbstractItemView | |
QAbstractItemView (QWidget *parent=nullptr) | |
Constructs an abstract item view with the given parent. | |
~QAbstractItemView () | |
Destroys the view. | |
QAbstractItemModel * | model () const |
Returns the model that this view is presenting. | |
QItemSelectionModel * | selectionModel () const |
Returns the current selection model. | |
void | setItemDelegate (QAbstractItemDelegate *delegate) |
Sets the item delegate for this view and its model to delegate. | |
QAbstractItemDelegate * | itemDelegate () const |
Returns the item delegate used by this view and model. | |
void | setSelectionMode (QAbstractItemView::SelectionMode mode) |
QAbstractItemView::SelectionMode | selectionMode () const |
void | setSelectionBehavior (QAbstractItemView::SelectionBehavior behavior) |
QAbstractItemView::SelectionBehavior | selectionBehavior () const |
QModelIndex | currentIndex () const |
Returns the model index of the current item. | |
QModelIndex | rootIndex () const |
Returns the model index of the model's root item. | |
void | setEditTriggers (EditTriggers triggers) |
EditTriggers | editTriggers () const |
void | setVerticalScrollMode (ScrollMode mode) |
ScrollMode | verticalScrollMode () const |
void | resetVerticalScrollMode () |
void | setHorizontalScrollMode (ScrollMode mode) |
ScrollMode | horizontalScrollMode () const |
void | resetHorizontalScrollMode () |
void | setAutoScroll (bool enable) |
bool | hasAutoScroll () const |
void | setAutoScrollMargin (int margin) |
int | autoScrollMargin () const |
void | setTabKeyNavigation (bool enable) |
bool | tabKeyNavigation () const |
void | setAlternatingRowColors (bool enable) |
bool | alternatingRowColors () const |
void | setIconSize (const QSize &size) |
QSize | iconSize () const |
void | setTextElideMode (Qt::TextElideMode mode) |
Qt::TextElideMode | textElideMode () const |
virtual void | keyboardSearch (const QString &search) |
Moves to and selects the item best matching the string search. | |
QSize | sizeHintForIndex (const QModelIndex &index) const |
Returns the size hint for the item with the specified index or an invalid size for invalid indexes. | |
virtual int | sizeHintForRow (int row) const |
Returns the height size hint for the specified row or -1 if there is no model. | |
virtual int | sizeHintForColumn (int column) const |
Returns the width size hint for the specified column or -1 if there is no model. | |
uint32_t | updateThreshold () const |
void | setUpdateThreshold (uint32_t threshold) |
void | openPersistentEditor (const QModelIndex &index) |
Opens a persistent editor on the item at the given index. | |
void | closePersistentEditor (const QModelIndex &index) |
Closes the persistent editor for the item at the given index. | |
bool | isPersistentEditorOpen (const QModelIndex &index) const |
void | setIndexWidget (const QModelIndex &index, QWidget *widget) |
Sets the given widget on the item at the given index, passing the ownership of the widget to the viewport. | |
QWidget * | indexWidget (const QModelIndex &index) const |
Returns the widget for the item at the given index. | |
void | setItemDelegateForRow (int row, QAbstractItemDelegate *delegate) |
Sets the given item delegate used by this view and model for the given row. | |
QAbstractItemDelegate * | itemDelegateForRow (int row) const |
Returns the item delegate used by this view and model for the given row, or \nullptr if no delegate has been assigned. | |
void | setItemDelegateForColumn (int column, QAbstractItemDelegate *delegate) |
Sets the given item delegate used by this view and model for the given column. | |
QAbstractItemDelegate * | itemDelegateForColumn (int column) const |
Returns the item delegate used by this view and model for the given column. | |
virtual QAbstractItemDelegate * | itemDelegateForIndex (const QModelIndex &index) const |
virtual QVariant | inputMethodQuery (Qt::InputMethodQuery query) const override |
\reimp | |
Protected Member Functions | |
bool | event (QEvent *e) override |
\reimp | |
virtual QStringList | mimeTypes () const |
Returns a list of MIME types that can be used to describe a list of listwidget items. | |
virtual QMimeData * | mimeData (const QList< QListWidgetItem * > &items) const |
Returns an object that contains a serialized description of the specified items. | |
Protected Member Functions inherited from QListView | |
QListView (QListViewPrivate &, QWidget *parent=nullptr) | |
bool | event (QEvent *e) override |
\reimp | |
void | scrollContentsBy (int dx, int dy) override |
\reimp | |
void | resizeContents (int width, int height) |
QSize | contentsSize () const |
void | dataChanged (const QModelIndex &topLeft, const QModelIndex &bottomRight, const QList< int > &roles=QList< int >()) override |
\reimp | |
void | rowsInserted (const QModelIndex &parent, int start, int end) override |
\reimp | |
void | rowsAboutToBeRemoved (const QModelIndex &parent, int start, int end) override |
\reimp | |
void | mouseMoveEvent (QMouseEvent *e) override |
\reimp | |
void | mouseReleaseEvent (QMouseEvent *e) override |
\reimp | |
void | timerEvent (QTimerEvent *e) override |
\reimp | |
void | resizeEvent (QResizeEvent *e) override |
\reimp | |
void | initViewItemOption (QStyleOptionViewItem *option) const override |
\reimp | |
void | paintEvent (QPaintEvent *e) override |
\reimp | |
int | horizontalOffset () const override |
\reimp | |
int | verticalOffset () const override |
\reimp | |
QModelIndex | moveCursor (CursorAction cursorAction, Qt::KeyboardModifiers modifiers) override |
\reimp | |
QRect | rectForIndex (const QModelIndex &index) const |
Returns the rectangle of the item at position index in the model. | |
void | setPositionForIndex (const QPoint &position, const QModelIndex &index) |
Sets the contents position of the item at index in the model to the given position. | |
void | setSelection (const QRect &rect, QItemSelectionModel::SelectionFlags command) override |
\reimp | |
QRegion | visualRegionForSelection (const QItemSelection &selection) const override |
\reimp | |
QModelIndexList | selectedIndexes () const override |
\reimp | |
void | updateGeometries () override |
\reimp | |
bool | isIndexHidden (const QModelIndex &index) const override |
\reimp | |
void | selectionChanged (const QItemSelection &selected, const QItemSelection &deselected) override |
\reimp | |
void | currentChanged (const QModelIndex ¤t, const QModelIndex &previous) override |
\reimp | |
QSize | viewportSizeHint () const override |
Protected Member Functions inherited from QAbstractItemView | |
QAbstractItemView (QAbstractItemViewPrivate &, QWidget *parent=nullptr) | |
virtual bool | edit (const QModelIndex &index, EditTrigger trigger, QEvent *event) |
Starts editing the item at index, creating an editor if necessary, and returns true if the view's \l{State} is now EditingState; otherwise returns false . | |
virtual QItemSelectionModel::SelectionFlags | selectionCommand (const QModelIndex &index, const QEvent *event=nullptr) const |
Returns the SelectionFlags to be used when updating a selection model for the specified index. | |
State | state () const |
Returns the item view's state. | |
void | setState (State state) |
Sets the item view's state to the given state. | |
void | scheduleDelayedItemsLayout () |
Schedules a layout of the items in the view to be executed when the event processing starts. | |
void | executeDelayedItemsLayout () |
Executes the scheduled layouts without waiting for the event processing to begin. | |
void | setDirtyRegion (const QRegion ®ion) |
Marks the given region as dirty and schedules it to be updated. | |
void | scrollDirtyRegion (int dx, int dy) |
Prepares the view for scrolling by ({dx},{dy}) pixels by moving the dirty regions in the opposite direction. | |
QPoint | dirtyRegionOffset () const |
Returns the offset of the dirty regions in the view. | |
void | startAutoScroll () |
void | stopAutoScroll () |
void | doAutoScroll () |
bool | focusNextPrevChild (bool next) override |
\reimp | |
bool | event (QEvent *event) override |
\reimp | |
bool | viewportEvent (QEvent *event) override |
This function is used to handle tool tips, and What's This? mode, if the given event is a QEvent::ToolTip,or a QEvent::WhatsThis. | |
void | mousePressEvent (QMouseEvent *event) override |
This function is called with the given event when a mouse button is pressed while the cursor is inside the widget. | |
void | mouseMoveEvent (QMouseEvent *event) override |
This function is called with the given event when a mouse move event is sent to the widget. | |
void | mouseReleaseEvent (QMouseEvent *event) override |
This function is called with the given event when a mouse button is released, after a mouse press event on the widget. | |
void | mouseDoubleClickEvent (QMouseEvent *event) override |
This function is called with the given event when a mouse button is double clicked inside the widget. | |
void | focusInEvent (QFocusEvent *event) override |
This function is called with the given event when the widget obtains the focus. | |
void | focusOutEvent (QFocusEvent *event) override |
This function is called with the given event when the widget loses the focus. | |
void | keyPressEvent (QKeyEvent *event) override |
This function is called with the given event when a key event is sent to the widget. | |
void | resizeEvent (QResizeEvent *event) override |
This function is called with the given event when a resize event is sent to the widget. | |
void | timerEvent (QTimerEvent *event) override |
This function is called with the given event when a timer event is sent to the widget. | |
void | inputMethodEvent (QInputMethodEvent *event) override |
\reimp | |
bool | eventFilter (QObject *object, QEvent *event) override |
\reimp | |
QSize | viewportSizeHint () const override |
Properties | |
int | count |
the number of items in the list including any hidden items. | |
int | currentRow |
the row of the current item. | |
bool | sortingEnabled |
whether sorting is enabled | |
Properties inherited from QListView | |
Movement | movement |
whether the items can be moved freely, are snapped to a grid, or cannot be moved at all. | |
Flow | flow |
which direction the items layout should flow. | |
bool | isWrapping |
whether the items layout should wrap. | |
ResizeMode | resizeMode |
whether the items are laid out again when the view is resized. | |
LayoutMode | layoutMode |
determines whether the layout of items should happen immediately or be delayed. | |
int | spacing |
the space around the items in the layout | |
QSize | gridSize |
the size of the layout grid | |
ViewMode | viewMode |
the view mode of the QListView. | |
int | modelColumn |
the column in the model that is visible | |
bool | uniformItemSizes |
whether all items in the listview have the same size | |
int | batchSize |
the number of items laid out in each batch if \l layoutMode is set to \l Batched. | |
bool | wordWrap |
the item text word-wrapping policy | |
bool | selectionRectVisible |
if the selection rectangle should be visible | |
Qt::Alignment | itemAlignment |
the alignment of each item in its cell | |
Properties inherited from QAbstractItemView | |
bool | autoScroll |
whether autoscrolling in drag move events is enabled | |
int | autoScrollMargin |
the size of the area when auto scrolling is triggered | |
EditTriggers | editTriggers |
which actions will initiate item editing | |
bool | tabKeyNavigation |
whether item navigation with tab and backtab is enabled. | |
bool | alternatingRowColors |
whether to draw the background using alternating colors | |
SelectionMode | selectionMode |
which selection mode the view operates in | |
SelectionBehavior | selectionBehavior |
which selection behavior the view uses | |
QSize | iconSize |
the size of items' icons | |
Qt::TextElideMode | textElideMode |
the position of the "..." in elided text. | |
ScrollMode | verticalScrollMode |
how the view scrolls its contents in the vertical direction | |
ScrollMode | horizontalScrollMode |
how the view scrolls its contents in the horizontal direction | |
uint32_t | updateThreshold |
Private Member Functions | |
void | setModel (QAbstractItemModel *model) override |
Friends | |
class | QListWidgetItem |
class | QListModel |
Additional Inherited Members | |
Public Types inherited from QListView | |
enum | Movement { Static , Free , Snap } |
\value Static The items cannot be moved by the user. More... | |
enum | Flow { LeftToRight , TopToBottom } |
\value LeftToRight The items are laid out in the view from the left to the right. More... | |
enum | ResizeMode { Fixed , Adjust } |
\value Fixed The items will only be laid out the first time the view is shown. More... | |
enum | LayoutMode { SinglePass , Batched } |
\value SinglePass The items are laid out all at once. More... | |
enum | ViewMode { ListMode , IconMode } |
\value ListMode The items are laid out using TopToBottom flow, with Small size and Static movement \value IconMode The items are laid out using LeftToRight flow, with Large size and Free movement More... | |
Public Types inherited from QAbstractItemView | |
enum | SelectionMode { NoSelection , SingleSelection , MultiSelection , ExtendedSelection , ContiguousSelection } |
This enum indicates how the view responds to user selections: More... | |
enum | SelectionBehavior { SelectItems , SelectRows , SelectColumns } |
\value SelectItems Selecting single items. More... | |
enum | ScrollHint { EnsureVisible , PositionAtTop , PositionAtBottom , PositionAtCenter } |
\value EnsureVisible Scroll to ensure that the item is visible. More... | |
enum | EditTrigger { NoEditTriggers = 0 , CurrentChanged = 1 , DoubleClicked = 2 , SelectedClicked = 4 , EditKeyPressed = 8 , AnyKeyPressed = 16 , AllEditTriggers = 31 } |
This enum describes actions which will initiate item editing. More... | |
enum | ScrollMode { ScrollPerItem , ScrollPerPixel } |
Describes how the scrollbar should behave. More... | |
Protected Types inherited from QAbstractItemView | |
enum | CursorAction { MoveUp , MoveDown , MoveLeft , MoveRight , MoveHome , MoveEnd , MovePageUp , MovePageDown , MoveNext , MovePrevious } |
This enum describes the different ways to navigate between items,. More... | |
enum | State { NoState , DraggingState , DragSelectingState , EditingState , ExpandingState , CollapsingState , AnimatingState } |
Describes the different states the view can be in. More... | |
Protected Slots inherited from QAbstractItemView | |
virtual void | updateEditorData () |
virtual void | updateEditorGeometries () |
virtual void | verticalScrollbarAction (int action) |
virtual void | horizontalScrollbarAction (int action) |
virtual void | verticalScrollbarValueChanged (int value) |
virtual void | horizontalScrollbarValueChanged (int value) |
virtual void | closeEditor (QWidget *editor, QAbstractItemDelegate::EndEditHint hint) |
Closes the given editor, and releases it. | |
virtual void | commitData (QWidget *editor) |
Commit the data in the editor to the model. | |
virtual void | editorDestroyed (QObject *editor) |
This function is called when the given editor has been destroyed. | |
The QListWidget class provides an item-based list widget.
\inmodule QtWidgets
QListWidget is a convenience class that provides a list view similar to the one supplied by QListView, but with a classic item-based interface for adding and removing items. QListWidget uses an internal model to manage each QListWidgetItem in the list.
For a more flexible list view widget, use the QListView class with a standard model.
List widgets are constructed in the same way as other widgets:
The selectionMode() of a list widget determines how many of the items in the list can be selected at the same time, and whether complex selections of items can be created. This can be set with the setSelectionMode() function.
There are two ways to add items to the list: they can be constructed with the list widget as their parent widget, or they can be constructed with no parent widget and added to the list later. If a list widget already exists when the items are constructed, the first method is easier to use:
If you need to insert a new item into the list at a particular position, then it should be constructed without a parent widget. The insertItem() function should then be used to place it within the list. The list widget will take ownership of the item.
For multiple items, insertItems() can be used instead. The number of items in the list is found with the count() function. To remove items from the list, use takeItem().
The current item in the list can be found with currentItem(), and changed with setCurrentItem(). The user can also change the current item by navigating with the keyboard or clicking on a different item. When the current item changes, the currentItemChanged() signal is emitted with the new current item and the item that was previously current.
Definition at line 163 of file qlistwidget.h.
Constructs an empty QListWidget with the given parent.
Definition at line 1354 of file qlistwidget.cpp.
QListWidget::~QListWidget | ( | ) |
Destroys the list widget and all its items.
Definition at line 1365 of file qlistwidget.cpp.
Inserts an item with the text label at the end of the list widget.
Definition at line 184 of file qlistwidget.h.
|
inline |
Inserts the item at the end of the list widget.
Definition at line 266 of file qlistwidget.h.
|
inline |
Inserts items with the text labels at the end of the list widget.
Definition at line 186 of file qlistwidget.h.
|
slot |
Removes all items and selections in the view.
Definition at line 1757 of file qlistwidget.cpp.
void QListWidget::closePersistentEditor | ( | QListWidgetItem * | item | ) |
Closes the persistent editor for the given item.
Definition at line 1653 of file qlistwidget.cpp.
int QListWidget::count | ( | ) | const |
Definition at line 1484 of file qlistwidget.cpp.
QListWidgetItem * QListWidget::currentItem | ( | ) | const |
Returns the current item.
Definition at line 1493 of file qlistwidget.cpp.
|
signal |
This signal is emitted whenever the current item changes.
previous is the item that previously had the focus; current is the new current item.
int QListWidget::currentRow | ( | ) | const |
Definition at line 1526 of file qlistwidget.cpp.
|
signal |
This signal is emitted whenever the current item changes.
currentRow is the row of the current item. If there is no current item, the currentRow is -1.
This signal is emitted whenever the current item changes.
currentText is the text data in the current item. If there is no current item, the currentText is invalid.
void QListWidget::editItem | ( | QListWidgetItem * | item | ) |
Starts editing the item if it is editable.
Definition at line 1629 of file qlistwidget.cpp.
|
overrideprotected |
\reimp
Definition at line 1892 of file qlistwidget.cpp.
QList< QListWidgetItem * > QListWidget::findItems | ( | const QString & | text, |
Qt::MatchFlags | flags ) const |
Finds items with the text that matches the string text using the given flags.
Definition at line 1726 of file qlistwidget.cpp.
QModelIndex QListWidget::indexFromItem | ( | const QListWidgetItem * | item | ) | const |
Returns the QModelIndex associated with the given item.
{const} item. Definition at line 1863 of file qlistwidget.cpp.
Inserts an item with the text label in the list widget at the position given by row.
Definition at line 1442 of file qlistwidget.cpp.
void QListWidget::insertItem | ( | int | row, |
QListWidgetItem * | item ) |
Inserts the item at the position in the list given by row.
Definition at line 1428 of file qlistwidget.cpp.
void QListWidget::insertItems | ( | int | row, |
const QStringList & | labels ) |
Inserts items from the list of labels into the list, starting at the given row.
Definition at line 1455 of file qlistwidget.cpp.
bool QAbstractItemView::isPersistentEditorOpen | ( | const QModelIndex & | index | ) | const |
Returns whether a persistent editor is open for the item at index index.
Definition at line 187 of file qabstractitemview.cpp.
bool QListWidget::isPersistentEditorOpen | ( | QListWidgetItem * | item | ) | const |
Returns whether a persistent editor is open for item item.
Definition at line 1667 of file qlistwidget.cpp.
bool QListWidget::isSortingEnabled | ( | ) | const |
Definition at line 1610 of file qlistwidget.cpp.
QListWidgetItem * QListWidget::item | ( | int | row | ) | const |
Returns the item that occupies the given row in the list if one has been set; otherwise returns \nullptr.
Definition at line 1401 of file qlistwidget.cpp.
|
signal |
This signal is emitted when the item is activated.
The item is activated when the user clicks or double clicks on it, depending on the system configuration. It is also activated when the user presses the activation key (on Windows and X11 this is the \uicontrol Return key, on Mac OS X it is \uicontrol{Command+O}).
QListWidgetItem * QListWidget::itemAt | ( | const QPoint & | p | ) | const |
Returns a pointer to the item at the coordinates p.
The coordinates are relative to the list widget's \l{QAbstractScrollArea::}{viewport()}.
Definition at line 1557 of file qlistwidget.cpp.
|
inline |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Returns a pointer to the item at the coordinates (x, y).
The coordinates are relative to the list widget's \l{QAbstractScrollArea::}{viewport()}.
Definition at line 269 of file qlistwidget.h.
|
signal |
This signal is emitted whenever the data of item has changed.
|
signal |
This signal is emitted with the specified item when a mouse button is clicked on an item in the widget.
|
signal |
This signal is emitted with the specified item when a mouse button is double clicked on an item in the widget.
|
signal |
This signal is emitted when the mouse cursor enters an item.
The item is the item entered. This signal is only emitted when mouseTracking is turned on, or when a mouse button is pressed while moving into an item.
QListWidgetItem * QListWidget::itemFromIndex | ( | const QModelIndex & | index | ) | const |
Returns a pointer to the QListWidgetItem associated with the given index.
Definition at line 1873 of file qlistwidget.cpp.
|
signal |
This signal is emitted with the specified item when a mouse button is pressed on an item in the widget.
QList< QListWidgetItem * > QListWidget::items | ( | const QMimeData * | data | ) | const |
Returns a list of pointers to the items contained in the data object.
If the object was not created by a QListWidget in the same process, the list is empty.
Definition at line 1849 of file qlistwidget.cpp.
|
signal |
This signal is emitted whenever the selection changes.
QWidget * QListWidget::itemWidget | ( | QListWidgetItem * | item | ) | const |
Returns the widget displayed in the given item.
Definition at line 1679 of file qlistwidget.cpp.
|
protectedvirtual |
Returns an object that contains a serialized description of the specified items.
The format used to describe the items is obtained from the mimeTypes() function.
If the list of items is empty, \nullptr is returned instead of a serialized empty list.
Definition at line 1783 of file qlistwidget.cpp.
|
protectedvirtual |
Returns a list of MIME types that can be used to describe a list of listwidget items.
Definition at line 1770 of file qlistwidget.cpp.
void QListWidget::openPersistentEditor | ( | QListWidgetItem * | item | ) |
Opens an editor for the given item.
The editor remains open after editing.
Definition at line 1641 of file qlistwidget.cpp.
|
inline |
Removes the widget set on the given item.
To remove an item (row) from the list entirely, either delete the item or use takeItem().
Definition at line 263 of file qlistwidget.h.
int QListWidget::row | ( | const QListWidgetItem * | item | ) | const |
Returns the row containing the given item.
Definition at line 1415 of file qlistwidget.cpp.
|
slot |
Scrolls the view if necessary to ensure that the item is visible.
hint specifies where the item should be located after the operation.
Definition at line 1745 of file qlistwidget.cpp.
QList< QListWidgetItem * > QListWidget::selectedItems | ( | ) | const |
Returns a list of all selected items in the list widget.
Definition at line 1709 of file qlistwidget.cpp.
void QListWidget::setCurrentItem | ( | QListWidgetItem * | item | ) |
Sets the current item to item.
Unless the selection mode is \l{QAbstractItemView::}{NoSelection}, the item is also selected.
Definition at line 1506 of file qlistwidget.cpp.
void QListWidget::setCurrentItem | ( | QListWidgetItem * | item, |
QItemSelectionModel::SelectionFlags | command ) |
Set the current item to item, using the given command.
Definition at line 1514 of file qlistwidget.cpp.
void QListWidget::setCurrentRow | ( | int | row | ) |
Definition at line 1531 of file qlistwidget.cpp.
void QListWidget::setCurrentRow | ( | int | row, |
QItemSelectionModel::SelectionFlags | command ) |
Sets the current row to be the given row, using the given command,.
Definition at line 1546 of file qlistwidget.cpp.
void QListWidget::setItemWidget | ( | QListWidgetItem * | item, |
QWidget * | widget ) |
Sets the widget to be displayed in the given item.
This function should only be used to display static content in the place of a list widget item. If you want to display custom dynamic content or implement a custom editor widget, use QListView and subclass QStyledItemDelegate instead.
Definition at line 1698 of file qlistwidget.cpp.
|
overrideprivatevirtual |
Reimplemented from QAbstractItemView.
Definition at line 1884 of file qlistwidget.cpp.
|
overridevirtual |
void QListWidget::setSortingEnabled | ( | bool | enable | ) |
Definition at line 1604 of file qlistwidget.cpp.
void QListWidget::sortItems | ( | Qt::SortOrder | order = Qt::AscendingOrder | ) |
Sorts all the items in the list widget according to the specified order.
Definition at line 1588 of file qlistwidget.cpp.
QListWidgetItem * QListWidget::takeItem | ( | int | row | ) |
Removes and returns the item from the given row in the list widget; otherwise returns \nullptr.
Items removed from a list widget will not be managed by Qt, and will need to be deleted manually.
Definition at line 1471 of file qlistwidget.cpp.
QRect QListWidget::visualItemRect | ( | const QListWidgetItem * | item | ) | const |
Returns the rectangle on the viewport occupied by the item at item.
Definition at line 1578 of file qlistwidget.cpp.
|
friend |
Definition at line 172 of file qlistwidget.h.
|
friend |
Definition at line 171 of file qlistwidget.h.
|
read |
the number of items in the list including any hidden items.
Definition at line 166 of file qlistwidget.h.
|
readwrite |
the row of the current item.
Depending on the current selection mode, the row may also be selected.
Definition at line 167 of file qlistwidget.h.
|
readwrite |
whether sorting is enabled
If this property is true
, sorting is enabled for the list; if the property is false, sorting is not enabled.
The default value is false.
Definition at line 169 of file qlistwidget.h.