![]() |
Qt 6.x
The Qt SDK
|
The QAbstractItemView class provides the basic functionality for item view classes. More...
#include <qabstractitemview.h>
Public Types | |
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 } |
Public Slots | |
virtual void | reset () |
Reset the internal state of the view. | |
virtual void | setRootIndex (const QModelIndex &index) |
Sets the root item to the item at the given index. | |
virtual void | doItemsLayout () |
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 () |
void | scrollToBottom () |
void | update (const QModelIndex &index) |
Signals | |
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 | |
QAbstractItemView (QWidget *parent=nullptr) | |
Constructs an abstract item view with the given parent. | |
~QAbstractItemView () | |
Destroys the view. | |
virtual void | setModel (QAbstractItemModel *model) |
Sets the model for the view to present. | |
QAbstractItemModel * | model () const |
Returns the model that this view is presenting. | |
virtual void | setSelectionModel (QItemSelectionModel *selectionModel) |
Sets the current selection model to the given selectionModel. | |
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. | |
virtual QRect | visualRect (const QModelIndex &index) const =0 |
Returns the rectangle on the viewport occupied by the item at index. | |
virtual void | scrollTo (const QModelIndex &index, ScrollHint hint=EnsureVisible)=0 |
Scrolls the view if necessary to ensure that the item at index is visible. | |
virtual QModelIndex | indexAt (const QPoint &point) const =0 |
Returns the model index of the item at the viewport coordinates point. | |
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. | |
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) |
QWidget * | indexWidget (const QModelIndex &index) const |
void | setItemDelegateForRow (int row, QAbstractItemDelegate *delegate) |
QAbstractItemDelegate * | itemDelegateForRow (int row) const |
void | setItemDelegateForColumn (int column, QAbstractItemDelegate *delegate) |
QAbstractItemDelegate * | itemDelegateForColumn (int column) const |
virtual QAbstractItemDelegate * | itemDelegateForIndex (const QModelIndex &index) const |
virtual QVariant | inputMethodQuery (Qt::InputMethodQuery query) const override |
\reimp | |
Protected Types | |
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 | |
virtual void | dataChanged (const QModelIndex &topLeft, const QModelIndex &bottomRight, const QList< int > &roles=QList< int >()) |
This slot is called when items with the given roles are changed in the model. | |
virtual void | rowsInserted (const QModelIndex &parent, int start, int end) |
This slot is called when rows are inserted. | |
virtual void | rowsAboutToBeRemoved (const QModelIndex &parent, int start, int end) |
This slot is called when rows are about to be removed. | |
virtual void | selectionChanged (const QItemSelection &selected, const QItemSelection &deselected) |
This slot is called when the selection is changed. | |
virtual void | currentChanged (const QModelIndex ¤t, const QModelIndex &previous) |
This slot is called when a new item becomes the current item. | |
virtual void | updateEditorData () |
virtual void | updateEditorGeometries () |
virtual void | updateGeometries () |
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. | |
Protected Member Functions | |
QAbstractItemView (QAbstractItemViewPrivate &, QWidget *parent=nullptr) | |
virtual QModelIndex | moveCursor (CursorAction cursorAction, Qt::KeyboardModifiers modifiers)=0 |
Returns a QModelIndex object pointing to the next object in the view, based on the given cursorAction and keyboard modifiers specified by modifiers. | |
virtual int | horizontalOffset () const =0 |
Returns the horizontal offset of the view. | |
virtual int | verticalOffset () const =0 |
Returns the vertical offset of the view. | |
virtual bool | isIndexHidden (const QModelIndex &index) const =0 |
Returns true if the item referred to by the given index is hidden in the view, otherwise returns false . | |
virtual void | setSelection (const QRect &rect, QItemSelectionModel::SelectionFlags command)=0 |
Applies the selection flags to the items in or touched by the rectangle, rect. | |
virtual QRegion | visualRegionForSelection (const QItemSelection &selection) const =0 |
Returns the region from the viewport of the items in the given selection. | |
virtual QModelIndexList | selectedIndexes () const |
This convenience function returns a list of all selected and non-hidden item indexes in the view. | |
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. | |
virtual void | initViewItemOption (QStyleOptionViewItem *option) const |
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) |
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 | |
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 | |
Friends | |
class | QTreeViewPrivate |
class | QListModeViewBase |
class | QListViewPrivate |
class | QAbstractSlider |
The QAbstractItemView class provides the basic functionality for item view classes.
\inmodule QtWidgets
QAbstractItemView class is the base class for every standard view that uses a QAbstractItemModel. QAbstractItemView is an abstract class and cannot itself be instantiated. It provides a standard interface for interoperating with models through the signals and slots mechanism, enabling subclasses to be kept up-to-date with changes to their models. This class provides standard support for keyboard and mouse navigation, viewport scrolling, item editing, and selections. The keyboard navigation implements this functionality:
\table \header
Note that the above table assumes that the \l{selectionMode}{selection mode} allows the operations. For instance, you cannot select items if the selection mode is QAbstractItemView::NoSelection.
The QAbstractItemView class is one of the \l{Model/View Classes} and is part of Qt's \l{Model/View Programming}{model/view framework}.
The view classes that inherit QAbstractItemView only need to implement their own view-specific functionality, such as drawing items, returning the geometry of items, finding items, etc.
QAbstractItemView provides common slots such as edit() and setCurrentIndex(). Many protected slots are also provided, including dataChanged(), rowsInserted(), rowsAboutToBeRemoved(), selectionChanged(), and currentChanged().
The root item is returned by rootIndex(), and the current item by currentIndex(). To make sure that an item is visible use scrollTo().
Some of QAbstractItemView's functions are concerned with scrolling, for example setHorizontalScrollMode() and setVerticalScrollMode(). To set the range of the scroll bars, you can, for example, reimplement the view's resizeEvent() function:
Note that the range is not updated until the widget is shown.
Several other functions are concerned with selection control; for example setSelectionMode(), and setSelectionBehavior(). This class provides a default selection model to work with (selectionModel()), but this can be replaced by using setSelectionModel() with an instance of QItemSelectionModel.
For complete control over the display and editing of items you can specify a delegate with setItemDelegate().
QAbstractItemView provides a lot of protected functions. Some are concerned with editing, for example, edit(), and commitData(), whilst others are keyboard and mouse event handlers.
Definition at line 25 of file qabstractitemview.h.
|
protected |
This enum describes the different ways to navigate between items,.
\value MoveUp Move to the item above the current item. \value MoveDown Move to the item below the current item. \value MoveLeft Move to the item left of the current item. \value MoveRight Move to the item right of the current item. \value MoveHome Move to the top-left corner item. \value MoveEnd Move to the bottom-right corner item. \value MovePageUp Move one page up above the current item. \value MovePageDown Move one page down below the current item. \value MoveNext Move to the item after the current item. \value MovePrevious Move to the item before the current item.
Enumerator | |
---|---|
MoveUp | |
MoveDown | |
MoveLeft | |
MoveRight | |
MoveHome | |
MoveEnd | |
MovePageUp | |
MovePageDown | |
MoveNext | |
MovePrevious |
Definition at line 248 of file qabstractitemview.h.
This enum describes actions which will initiate item editing.
\value NoEditTriggers No editing possible. \value CurrentChanged Editing start whenever current item changes. \value DoubleClicked Editing starts when an item is double clicked. \value SelectedClicked Editing starts when clicking on an already selected item. \value EditKeyPressed Editing starts when the platform edit key has been pressed over an item. \value AnyKeyPressed Editing starts when any key is pressed over an item. \value AllEditTriggers Editing starts for all above actions.
Enumerator | |
---|---|
NoEditTriggers | |
CurrentChanged | |
DoubleClicked | |
SelectedClicked | |
EditKeyPressed | |
AnyKeyPressed | |
AllEditTriggers |
Definition at line 75 of file qabstractitemview.h.
\value EnsureVisible Scroll to ensure that the item is visible.
\value PositionAtTop Scroll to position the item at the top of the viewport. \value PositionAtBottom Scroll to position the item at the bottom of the viewport. \value PositionAtCenter Scroll to position the item at the center of the viewport.
Enumerator | |
---|---|
EnsureVisible | |
PositionAtTop | |
PositionAtBottom | |
PositionAtCenter |
Definition at line 67 of file qabstractitemview.h.
Describes how the scrollbar should behave. When setting the scroll mode to ScrollPerPixel the single step size will adjust automatically unless it was set explicitly using \l{QAbstractSlider::}{setSingleStep()}. The automatic adjustment can be restored by setting the single step size to -1.
\value ScrollPerItem The view will scroll the contents one item at a time. \value ScrollPerPixel The view will scroll the contents one pixel at a time.
Enumerator | |
---|---|
ScrollPerItem | |
ScrollPerPixel |
Definition at line 88 of file qabstractitemview.h.
\value SelectItems Selecting single items.
\value SelectRows Selecting only rows. \value SelectColumns Selecting only columns.
Enumerator | |
---|---|
SelectItems | |
SelectRows | |
SelectColumns |
Definition at line 60 of file qabstractitemview.h.
This enum indicates how the view responds to user selections:
\value SingleSelection When the user selects an item, any already-selected item becomes unselected. It is possible for the user to deselect the selected item by pressing the Ctrl key when clicking the selected item.
\value ContiguousSelection When the user selects an item in the usual way, the selection is cleared and the new item selected. However, if the user presses the Shift key while clicking on an item, all items between the current item and the clicked item are selected or unselected, depending on the state of the clicked item.
\value ExtendedSelection When the user selects an item in the usual way, the selection is cleared and the new item selected. However, if the user presses the Ctrl key when clicking on an item, the clicked item gets toggled and all other items are left untouched. If the user presses the Shift key while clicking on an item, all items between the current item and the clicked item are selected or unselected, depending on the state of the clicked item. Multiple items can be selected by dragging the mouse over them.
\value MultiSelection When the user selects an item in the usual way, the selection status of that item is toggled and the other items are left alone. Multiple items can be toggled by dragging the mouse over them.
\value NoSelection Items cannot be selected.
The most commonly used modes are SingleSelection and ExtendedSelection.
Enumerator | |
---|---|
NoSelection | |
SingleSelection | |
MultiSelection | |
ExtendedSelection | |
ContiguousSelection |
Definition at line 51 of file qabstractitemview.h.
|
protected |
Describes the different states the view can be in.
This is usually only interesting when reimplementing your own view.
\value NoState The is the default state. \value DraggingState The user is dragging items. \value DragSelectingState The user is selecting items. \value EditingState The user is editing an item in a widget editor. \value ExpandingState The user is opening a branch of items. \value CollapsingState The user is closing a branch of items. \value AnimatingState The item view is performing an animation.
Enumerator | |
---|---|
NoState | |
DraggingState | |
DragSelectingState | |
EditingState | |
ExpandingState | |
CollapsingState | |
AnimatingState |
Definition at line 274 of file qabstractitemview.h.
Constructs an abstract item view with the given parent.
Definition at line 605 of file qabstractitemview.cpp.
QAbstractItemView::~QAbstractItemView | ( | ) |
|
protected |
Definition at line 614 of file qabstractitemview.cpp.
|
signal |
This signal is emitted when the item specified by index is activated by the user.
How to activate items depends on the platform; e.g., by single- or double-clicking the item, or by pressing the Return or Enter key when the item is current.
Referenced by QTreeWidget::QTreeWidget(), keyPressEvent(), mouseDoubleClickEvent(), QTreeView::mouseDoubleClickEvent(), and mouseReleaseEvent().
bool QAbstractItemView::alternatingRowColors | ( | ) | const |
Definition at line 1588 of file qabstractitemview.cpp.
References d.
int QAbstractItemView::autoScrollMargin | ( | ) | const |
Definition at line 1417 of file qabstractitemview.cpp.
References d.
|
slot |
Deselects all selected items.
The current index will not be changed.
Definition at line 1224 of file qabstractitemview.cpp.
References d.
Referenced by QFontDialogPrivate::_q_sizeChanged().
|
signal |
This signal is emitted when a mouse button is left-clicked.
The item the mouse was clicked on is specified by index. The signal is only emitted when the index is valid.
Referenced by QTreeWidget::QTreeWidget(), mouseReleaseEvent(), and src_gui_itemviews_qstandarditemmodel::MyWidget::wrapper2().
|
protectedvirtualslot |
Closes the given editor, and releases it.
The hint is used to specify how the view should respond to the end of the editing operation. For example, the hint may indicate that the next item in the view should be opened for editing.
Definition at line 2907 of file qabstractitemview.cpp.
References QItemSelectionModel::ClearAndSelect, CurrentChanged, d, edit(), QAbstractItemDelegate::EditNextItem, QAbstractItemDelegate::EditPreviousItem, editTriggers, hint(), itemDelegateForIndex(), Qt::ItemIsEditable, moveCursor(), MoveNext, MovePrevious, Qt::NoFocus, Qt::NoModifier, NoSelection, NoState, QItemSelectionModel::NoUpdate, qWarning, QAbstractItemDelegate::RevertModelCache, QCoreApplication::sendPostedEvents(), setState(), and QAbstractItemDelegate::SubmitModelCache.
Referenced by closePersistentEditor(), currentChanged(), setItemDelegate(), setItemDelegateForColumn(), and setItemDelegateForRow().
void QAbstractItemView::closePersistentEditor | ( | const QModelIndex & | index | ) |
Closes the persistent editor for the item at the given index.
Definition at line 3217 of file qabstractitemview.cpp.
References closeEditor(), currentIndex(), d, QAbstractItemDelegate::RevertModelCache, and selectionModel().
Referenced by QListWidget::closePersistentEditor(), QTableWidget::closePersistentEditor(), and QTreeWidget::closePersistentEditor().
Commit the data in the editor to the model.
Definition at line 2991 of file qabstractitemview.cpp.
References d, itemDelegateForIndex(), qWarning, and QAbstractItemDelegate::setModelData().
Referenced by currentChanged(), setItemDelegate(), setItemDelegateForColumn(), and setItemDelegateForRow().
|
protectedvirtualslot |
This slot is called when a new item becomes the current item.
The previous current item is specified by the previous index, and the new item by the current index.
If you want to know about changes to items see the dataChanged() signal.
Reimplemented in QHeaderView, QFontListView, QColumnView, QListView, QTableView, and QTreeView.
Definition at line 3756 of file qabstractitemview.cpp.
References closeEditor(), commitData(), CurrentChanged, d, edit(), QModelIndex::flags(), QModelIndex::isValid(), isVisible(), Qt::ItemIsEditable, QAbstractItemDelegate::NoHint, Q_ASSERT, QModelIndex::row(), scrollTo(), setAttribute(), QAbstractItemDelegate::SubmitModelCache, update(), and Qt::WA_InputMethodEnabled.
Referenced by QTreeWidget::QTreeWidget(), QFontListView::currentChanged(), QListView::currentChanged(), QTableView::currentChanged(), QTreeView::currentChanged(), QSidebar::selectUrl(), QSidebar::setModelAndUrls(), setSelectionModel(), and QListWidget::setSelectionModel().
QModelIndex QAbstractItemView::currentIndex | ( | ) | const |
Returns the model index of the current item.
Definition at line 1102 of file qabstractitemview.cpp.
References d.
Referenced by closePersistentEditor(), QTableWidget::currentColumn(), QTreeWidget::currentColumn(), QFontListView::currentItem(), QListWidget::currentItem(), QTableWidget::currentItem(), QTreeWidget::currentItem(), QListWidget::currentRow(), QTableWidget::currentRow(), QFontListView::currentText(), QTreeView::drawRow(), event(), QComboBoxPrivateContainer::eventFilter(), focusInEvent(), QCalendarWidgetPrivate::getCurrentDate(), inputMethodEvent(), inputMethodQuery(), keyboardSearch(), QTreeView::keyboardSearch(), keyPressEvent(), QTreeView::keyPressEvent(), mousePressEvent(), QListView::moveCursor(), QTableView::moveCursor(), QTreeView::moveCursor(), QtPrivate::QCalendarView::moveCursor(), openPersistentEditor(), QCompleterItemDelegate::paint(), QListView::paintEvent(), rowsAboutToBeRemoved(), timerEvent(), and viewportEvent().
|
protectedvirtualslot |
This slot is called when items with the given roles are changed in the model.
The changed items are those from topLeft to bottomRight inclusive. If just one item is changed topLeft == bottomRight.
The roles which have been changed can either be an empty container (meaning everything has changed), or a non-empty container with the subset of roles which have changed.
Reimplemented in QHeaderView, QListView, and QTreeView.
Definition at line 3368 of file qabstractitemview.cpp.
References QModelIndex::column(), d, QPointer< T >::data(), QRect::isEmpty(), QEditorInfo::isStatic, QModelIndex::isValid(), isVisible(), itemDelegateForIndex(), QModelIndex::parent(), Q_UNUSED, QModelIndex::row(), QAbstractItemDelegate::setEditorData(), update(), and QEditorInfo::widget.
Referenced by QTreeWidget::QTreeWidget(), QListView::dataChanged(), QTreeView::dataChanged(), setIndexWidget(), and setModel().
|
protected |
Returns the offset of the dirty regions in the view.
If you use scrollDirtyRegion() and implement a paintEvent() in a subclass of QAbstractItemView, you should translate the area given by the paint event with the offset returned from this function.
Definition at line 3962 of file qabstractitemview.cpp.
References d.
|
protected |
Definition at line 3987 of file qabstractitemview.cpp.
References area(), QWidgetPrivate::clipRect(), d, DraggingState, DragSelectingState, QWidgetPrivate::get(), Qt::Horizontal, Qt::LeftButton, Qt::MouseEventSynthesizedByQt, QEvent::MouseMove, Qt::NoButton, QHeaderView::orientation(), QAbstractSlider::pageStep, parent, pos, qMax(), QCoreApplication::sendEvent(), QAbstractSlider::setValue(), state(), stopAutoScroll(), QAbstractSlider::value, viewport(), and window().
Referenced by timerEvent().
|
virtualslot |
This function is intended to lay out the items in the view. The default implementation just calls updateGeometries() and updates the viewport.
Reimplemented in QHeaderView, QListView, QTableView, and QTreeView.
Definition at line 1237 of file qabstractitemview.cpp.
References d, and updateGeometries().
Referenced by QAbstractItemViewPrivate::_q_delegateSizeHintChanged(), QHeaderView::doItemsLayout(), QListView::doItemsLayout(), QTableView::doItemsLayout(), QTreeView::doItemsLayout(), event(), and timerEvent().
|
signal |
This signal is emitted when a mouse button is double-clicked.
The item the mouse was double-clicked on is specified by index. The signal is only emitted when the index is valid.
Referenced by QTreeWidget::QTreeWidget(), mouseDoubleClickEvent(), and QTreeView::mouseDoubleClickEvent().
|
slot |
Starts editing the item corresponding to the given index if it is editable.
Note that this function does not change the current index. Since the current index defines the next and previous items to edit, users may find that keyboard navigation does not work as expected. To provide consistent navigation behavior, call setCurrentIndex() before this function with the same model index.
Definition at line 1210 of file qabstractitemview.cpp.
References AllEditTriggers, d, edit(), Q_UNLIKELY, and qWarning.
Referenced by QFileDialogPrivate::_q_createDirectory(), closeEditor(), currentChanged(), edit(), QListWidget::editItem(), QTableWidget::editItem(), QTreeWidget::editItem(), inputMethodEvent(), keyPressEvent(), mouseDoubleClickEvent(), QTreeView::mouseDoubleClickEvent(), mouseMoveEvent(), mousePressEvent(), mouseReleaseEvent(), and timerEvent().
|
protectedvirtual |
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
.
The action that caused the editing process is described by trigger, and the associated event is specified by event.
Editing can be forced by specifying the trigger to be QAbstractItemView::AllEditTriggers.
Definition at line 2723 of file qabstractitemview.cpp.
References CurrentChanged, d, DoubleClicked, QApplication::doubleClickInterval, QPersistentModelIndex::isValid(), Qt::NoFocus, SelectedClicked, and update().
This function is called when the given editor has been destroyed.
Definition at line 3014 of file qabstractitemview.cpp.
References d, EditingState, NoState, qobject_cast< QWidget * >(), setState(), and state().
QAbstractItemView::EditTriggers QAbstractItemView::editTriggers | ( | ) | const |
Definition at line 1260 of file qabstractitemview.cpp.
References d.
|
signal |
This signal is emitted when the mouse cursor enters the item specified by index.
Mouse tracking needs to be enabled for this feature to work.
Referenced by QTreeWidget::QTreeWidget().
|
overrideprotected |
\reimp
Definition at line 1653 of file qabstractitemview.cpp.
References QEvent::ApplicationLayoutDirectionChange, currentIndex(), d, doItemsLayout(), EditingState, QEvent::FocusOut, QEvent::FontChange, QModelIndex::isValid(), QEvent::LayoutDirectionChange, QEvent::LocaleChange, QEvent::Paint, resetHorizontalScrollMode(), resetVerticalScrollMode(), scrollTo(), QEvent::Show, QEvent::StyleChange, updateGeometries(), and viewport().
Referenced by QHeaderView::event(), QListView::event(), QTableWidget::event(), QTreeWidget::event(), and QtPrivate::QCalendarView::event().
\reimp
Definition at line 4716 of file qabstractitemview.cpp.
References d, QEvent::FocusIn, qobject_cast< QWidget * >(), setCurrentIndex(), viewport(), and widget.
|
protected |
Executes the scheduled layouts without waiting for the event processing to begin.
Definition at line 3915 of file qabstractitemview.cpp.
References d.
Referenced by viewportEvent().
|
overrideprotected |
This function is called with the given event when the widget obtains the focus.
By default, the event is ignored.
Definition at line 2266 of file qabstractitemview.cpp.
References autoScroll, currentIndex(), d, QModelIndex::isValid(), Qt::ItemIsEditable, model(), Qt::MouseFocusReason, moveCursor(), MoveNext, Qt::NoModifier, QItemSelectionModel::NoUpdate, selectionModel(), setAttribute(), QItemSelectionModel::setCurrentIndex(), and Qt::WA_InputMethodEnabled.
|
overrideprotected |
\reimp
Definition at line 1638 of file qabstractitemview.cpp.
References d, Qt::Key_Backtab, Qt::Key_Tab, QEvent::KeyPress, keyPressEvent(), next, and Qt::NoModifier.
|
overrideprotected |
This function is called with the given event when the widget loses the focus.
By default, the event is ignored.
Definition at line 2301 of file qabstractitemview.cpp.
References d.
bool QAbstractItemView::hasAutoScroll | ( | ) | const |
Definition at line 1397 of file qabstractitemview.cpp.
References d.
|
protectedpure virtual |
Returns the horizontal offset of the view.
In the base class this is a pure virtual function.
Implemented in QColumnView, QColumnViewPreviewColumn, QHeaderView, QListView, QTableView, and QTreeView.
|
protectedvirtualslot |
Reimplemented in QTableView, and QTreeView.
Definition at line 2893 of file qabstractitemview.cpp.
Referenced by QTableView::horizontalScrollbarAction(), and QTreeView::horizontalScrollbarAction().
|
protectedvirtualslot |
Definition at line 2872 of file qabstractitemview.cpp.
References contains(), d, QCursor::pos(), rect, and viewport().
QAbstractItemView::ScrollMode QAbstractItemView::horizontalScrollMode | ( | ) | const |
Definition at line 1329 of file qabstractitemview.cpp.
References d.
QSize QAbstractItemView::iconSize | ( | ) | const |
Definition at line 1611 of file qabstractitemview.cpp.
References d.
|
pure virtual |
Returns the model index of the item at the viewport coordinates point.
In the base class this is a pure virtual function.
Implemented in QColumnViewPreviewColumn, QHeaderView, QListView, QTableView, QTreeView, and QColumnView.
Referenced by QComboBoxPrivateContainer::eventFilter(), mouseDoubleClickEvent(), mouseMoveEvent(), mousePressEvent(), mouseReleaseEvent(), setVerticalScrollMode(), and viewportEvent().
QWidget * QAbstractItemView::indexWidget | ( | const QModelIndex & | index | ) | const |
Returns the widget for the item at the given index.
Definition at line 3300 of file qabstractitemview.cpp.
References d.
Referenced by QTableWidget::cellWidget(), QTreeView::drawRow(), QListWidget::itemWidget(), QTreeWidget::itemWidget(), keyPressEvent(), and setIndexWidget().
|
protectedvirtual |
Initialize the option structure with the view's palette, font, state, alignments etc.
Reimplemented in QListView, QTableView, and QComboBoxListView.
Definition at line 3840 of file qabstractitemview.cpp.
References Qt::AlignCenter, Qt::AlignLeft, Qt::AlignVCenter, d, font, QLocale::OmitGroupSeparator, QStyle::PM_SmallIconSize, and QStyle::SH_ItemView_ShowDecorationSelected.
Referenced by QTreeView::drawBranches(), QTreeView::drawTree(), QTreeView::indexRowSizeHint(), QListView::initViewItemOption(), QTableView::initViewItemOption(), mouseReleaseEvent(), openPersistentEditor(), sizeHintForColumn(), QTreeView::sizeHintForColumn(), sizeHintForIndex(), sizeHintForRow(), updateEditorGeometries(), and viewportEvent().
|
overrideprotected |
\reimp
Definition at line 2606 of file qabstractitemview.cpp.
References AnyKeyPressed, currentIndex(), d, edit(), itemDelegateForIndex(), keyboardSearch(), Qt::NoFocus, QCoreApplication::sendEvent(), QAbstractItemDelegate::setEditorData(), and widget.
|
overridevirtual |
\reimp
Reimplemented in QInputDialogListView.
Definition at line 861 of file qabstractitemview.cpp.
References currentIndex(), d, Qt::ImCursorRectangle, QModelIndex::isValid(), QRect::size(), QRect::topLeft(), visualRect(), and widget.
Referenced by QInputDialogListView::inputMethodQuery().
|
protectedpure virtual |
Returns true
if the item referred to by the given index is hidden in the view, otherwise returns false
.
Hiding is a view specific feature. For example in TableView a column can be marked as hidden or a row in the TreeView.
In the base class this is a pure virtual function.
Implemented in QColumnViewPreviewColumn, QColumnView, QHeaderView, QListView, QTableView, and QTreeView.
Referenced by rowsAboutToBeRemoved(), and selectedIndexes().
bool QAbstractItemView::isPersistentEditorOpen | ( | const QModelIndex & | index | ) | const |
Returns whether a persistent editor is open for the item at index index.
Definition at line 3236 of file qabstractitemview.cpp.
References d.
Referenced by QListWidget::isPersistentEditorOpen(), QTableWidget::isPersistentEditorOpen(), and QTreeWidget::isPersistentEditorOpen().
QAbstractItemDelegate * QAbstractItemView::itemDelegate | ( | ) | const |
Returns the item delegate used by this view and model.
This is either one set with setItemDelegate(), or the default one.
Definition at line 853 of file qabstractitemview.cpp.
Referenced by QComboBox::itemDelegate().
QAbstractItemDelegate * QAbstractItemView::itemDelegateForColumn | ( | int | column | ) | const |
Returns the item delegate used by this view and model for the given column. You can call itemDelegate() to get a pointer to the current delegate for a given index.
Definition at line 1000 of file qabstractitemview.cpp.
References d.
|
virtual |
Returns the item delegate used by this view and model for the given index.
Definition at line 1021 of file qabstractitemview.cpp.
References d.
Referenced by closeEditor(), commitData(), dataChanged(), QCommonListViewBase::delegate(), QTreeView::drawRow(), QTreeView::indexRowSizeHint(), inputMethodEvent(), QListView::paintEvent(), sizeHintForColumn(), sizeHintForIndex(), sizeHintForRow(), updateEditorGeometries(), and viewportEvent().
QAbstractItemDelegate * QAbstractItemView::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. You can call itemDelegate() to get a pointer to the current delegate for a given index.
Definition at line 940 of file qabstractitemview.cpp.
References d.
Moves to and selects the item best matching the string search.
If no item is found nothing happens.
In the default implementation, the search is reset if search is empty, or the time interval since the last search has exceeded QApplication::keyboardInputInterval().
Reimplemented in QtPrivate::QCalendarView, and QTreeView.
Definition at line 3034 of file qabstractitemview.cpp.
References QModelIndex::column(), currentIndex(), d, Qt::DisplayRole, QString::isEmpty(), QModelIndex::isValid(), QApplication::keyboardInputInterval, match(), QModelIndex::parent(), parent, QModelIndex::row(), setCurrentIndex(), and QModelIndex::sibling().
Referenced by inputMethodEvent(), and keyPressEvent().
This function is called with the given event when a key event is sent to the widget.
The default implementation handles basic cursor movement, e.g. Up, Down, Left, Right, Home, PageUp, and PageDown; the activated() signal is emitted if the current index is valid and the activation key is pressed (e.g. Enter or Return, depending on the platform). This function is where editing is initiated by key press, e.g. if F2 is pressed.
Definition at line 2319 of file qabstractitemview.cpp.
References activated(), Qt::AltModifier, AnyKeyPressed, QVariant::canConvert(), QRect::center(), QGuiApplication::clipboard(), Qt::ControlModifier, QKeySequence::Copy, QItemSelectionModel::Current, currentIndex(), d, Qt::DisplayRole, edit(), EditingState, EditKeyPressed, emit, QApplication::focusWidget(), Qt::Horizontal, indexWidget(), QPersistentModelIndex::isValid(), Qt::Key_Back, Qt::Key_Backspace, Qt::Key_Backtab, Qt::Key_Control, Qt::Key_Delete, Qt::Key_Down, Qt::Key_End, Qt::Key_Enter, Qt::Key_Escape, Qt::Key_F2, Qt::Key_Home, Qt::Key_Left, Qt::Key_O, Qt::Key_PageDown, Qt::Key_PageUp, Qt::Key_Return, Qt::Key_Right, Qt::Key_Select, Qt::Key_Shift, Qt::Key_Space, Qt::Key_Tab, Qt::Key_Up, keyboardSearch(), Qt::MetaModifier, moveCursor(), MoveDown, MoveEnd, MoveHome, MoveLeft, MoveNext, MovePageDown, MovePageUp, MovePrevious, MoveRight, MoveUp, Qt::NavigationModeKeypadDirectional, NoSelection, QItemSelectionModel::NoUpdate, rect, QKeySequence::SelectAll, selectAll(), selectionCommand(), selectionMode, setSelection(), QClipboard::setText(), QStyle::SH_ItemView_MovementWithoutUpdatingSelection, state(), QVariant::toString(), variant, Qt::Vertical, and visualRect().
Referenced by focusNextPrevChild(), QFileDialogListView::keyPressEvent(), QTreeView::keyPressEvent(), and QtPrivate::QCalendarView::keyPressEvent().
QAbstractItemModel * QAbstractItemView::model | ( | ) | const |
Returns the model that this view is presenting.
Definition at line 732 of file qabstractitemview.cpp.
References d, and QAbstractItemModelPrivate::staticEmptyModel().
Referenced by QTreeWidget::QTreeWidget(), QTableWidget::cellWidget(), QTableWidget::dropMimeData(), QTreeWidget::dropMimeData(), QtPrivate::QCalendarView::event(), QListWidget::findItems(), QTableWidget::findItems(), QTreeWidget::findItems(), focusInEvent(), QtPrivate::QCalendarView::handleMouseEvent(), QTableWidgetItem::isSelected(), QtPrivate::QCalendarView::keyPressEvent(), QTreeWidget::mimeTypes(), QFontListView::model(), QtPrivate::QCalendarView::mouseDoubleClickEvent(), QtPrivate::QCalendarView::mouseMoveEvent(), QtPrivate::QCalendarView::mousePressEvent(), QtPrivate::QCalendarView::mouseReleaseEvent(), QTableView::moveCursor(), QTreeView::moveCursor(), QtPrivate::QCalendarView::moveCursor(), QSidebar::selectUrl(), QTableWidget::setCellWidget(), QTableWidget::setCurrentCell(), QTableWidget::setCurrentCell(), QTableWidget::setHorizontalHeaderLabels(), setModel(), QHeaderView::setModel(), QTableView::setModel(), QTreeView::setModel(), QSidebar::setModelAndUrls(), QTableWidget::setRangeSelected(), QTableWidgetItem::setSelected(), QTableWidget::setVerticalHeaderLabels(), QComboBox::setView(), QCompleterPrivate::showPopup(), QSidebar::sizeHint(), QTableView::sizeHintForColumn(), QTableView::sizeHintForRow(), and QTreeWidget::supportedDropActions().
|
overrideprotected |
This function is called with the given event when a mouse button is double clicked inside the widget.
If the double-click is on a valid item it emits the doubleClicked() signal and calls edit() on the item.
Definition at line 1979 of file qabstractitemview.cpp.
References activated(), d, DoubleClicked, doubleClicked(), edit(), emit, indexAt(), Qt::LeftButton, QEvent::MouseButtonPress, mousePressEvent(), and QStyle::SH_ItemView_ActivateItemOnSingleClick.
Referenced by QtPrivate::QCalendarView::mouseDoubleClickEvent().
|
overrideprotected |
This function is called with the given event when a mouse move event is sent to the widget.
If a selection is in progress and new items are moved over the selection is extended; if a drag is in progress it is continued.
Definition at line 1857 of file qabstractitemview.cpp.
References CollapsingState, d, DraggingState, DragSelectingState, edit(), EditingState, ExpandingState, indexAt(), Qt::LeftButton, Qt::NoButton, NoEditTriggers, QItemSelectionModel::NoUpdate, selectionCommand(), setSelection(), setState(), SingleSelection, startAutoScroll(), state(), and QItemSelectionModel::Toggle.
Referenced by QListView::mouseMoveEvent(), QTreeView::mouseMoveEvent(), and QtPrivate::QCalendarView::mouseMoveEvent().
|
overrideprotected |
This function is called with the given event when a mouse button is pressed while the cursor is inside the widget.
If a valid item is pressed on it is made into the current item. This function emits the pressed() signal.
Definition at line 1780 of file qabstractitemview.cpp.
References autoScroll, QRect::center(), QItemSelectionModel::Current, currentIndex(), d, QItemSelectionModel::Deselect, QApplication::doubleClickInterval, edit(), EditingState, emit, indexAt(), NoEditTriggers, QItemSelectionModel::NoUpdate, pos, pressed(), rect, QItemSelectionModel::Select, selectionCommand(), setSelection(), QItemSelectionModel::Toggle, and visualRect().
Referenced by mouseDoubleClickEvent(), QTreeView::mousePressEvent(), and QtPrivate::QCalendarView::mousePressEvent().
|
overrideprotected |
This function is called with the given event when a mouse button is released, after a mouse press event on the widget.
If a user presses the mouse inside your widget and then drags the mouse to another location before releasing the mouse button, your widget receives the release event. The function will emit the clicked() signal if an item was being pressed.
Definition at line 1924 of file qabstractitemview.cpp.
References activated(), clicked(), d, edit(), EditingState, emit, indexAt(), initViewItemOption(), Qt::ItemIsEnabled, Qt::LeftButton, NoEditTriggers, Qt::NoModifier, NoState, QItemSelectionModel::NoUpdate, pos, SelectedClicked, selectionCommand(), setState(), QStyle::SH_ItemView_ActivateItemOnSingleClick, state(), QStyle::State_Selected, and update().
Referenced by QListView::mouseReleaseEvent(), QTreeView::mouseReleaseEvent(), and QtPrivate::QCalendarView::mouseReleaseEvent().
|
protectedpure virtual |
Returns a QModelIndex object pointing to the next object in the view, based on the given cursorAction and keyboard modifiers specified by modifiers.
In the base class this is a pure virtual function.
Implemented in QColumnView, QListView, QTableView, QTreeView, QtPrivate::QCalendarView, QColumnViewPreviewColumn, and QHeaderView.
Referenced by closeEditor(), focusInEvent(), and keyPressEvent().
void QAbstractItemView::openPersistentEditor | ( | const QModelIndex & | index | ) |
Opens a persistent editor on the item at the given index.
If no editor exists, the delegate will create a new editor.
Definition at line 3197 of file qabstractitemview.cpp.
References currentIndex(), d, initViewItemOption(), QStyle::State_HasFocus, QStyle::State_None, and visualRect().
Referenced by QListWidget::openPersistentEditor(), QTableWidget::openPersistentEditor(), and QTreeWidget::openPersistentEditor().
|
signal |
This signal is emitted when a mouse button is pressed.
The item the mouse was pressed on is specified by index. The signal is only emitted when the index is valid.
Use the QGuiApplication::mouseButtons() function to get the state of the mouse buttons.
Referenced by QTreeWidget::QTreeWidget(), and mousePressEvent().
|
virtualslot |
Reset the internal state of the view.
Reimplemented in QHeaderView, QListView, and QTreeView.
Definition at line 1118 of file qabstractitemview.cpp.
References d, info, NoState, setRootIndex(), and setState().
Referenced by QHeaderView::reset(), QListView::reset(), QTreeView::reset(), setModel(), and timerEvent().
void QAbstractItemView::resetHorizontalScrollMode | ( | ) |
Definition at line 1335 of file qabstractitemview.cpp.
References setHorizontalScrollMode(), and QStyle::SH_ItemView_ScrollMode.
Referenced by event().
void QAbstractItemView::resetVerticalScrollMode | ( | ) |
Definition at line 1298 of file qabstractitemview.cpp.
References setVerticalScrollMode(), and QStyle::SH_ItemView_ScrollMode.
Referenced by event().
|
overrideprotected |
This function is called with the given event when a resize event is sent to the widget.
Definition at line 2557 of file qabstractitemview.cpp.
References updateGeometries().
Referenced by QListView::resizeEvent().
QModelIndex QAbstractItemView::rootIndex | ( | ) | const |
Returns the model index of the model's root item.
The root item is the parent item to the view's toplevel items. The root can be invalid.
Definition at line 1166 of file qabstractitemview.cpp.
Referenced by QCommonListViewBase::appendHiddenRow(), QTreeView::moveCursor(), QCommonListViewBase::removeHiddenRow(), and QTableWidget::setRangeSelected().
|
protectedvirtualslot |
This slot is called when rows are about to be removed.
The deleted rows are those under the given parent from start to end inclusive.
Reimplemented in QListView, and QTreeView.
Definition at line 3439 of file qabstractitemview.cpp.
References CollapsingState, QModelIndex::column(), currentIndex(), d, i, info, isIndexHidden(), QModelIndex::isValid(), QHash< QWidget *, QPersistentModelIndex >::iterator, next, QModelIndex::parent(), parent, qWarning, QModelIndex::row(), setCurrentIndex(), setState(), and SingleSelection.
Referenced by QListView::rowsAboutToBeRemoved(), QTreeView::rowsAboutToBeRemoved(), setModel(), and QHeaderView::setModel().
|
protectedvirtualslot |
This slot is called when rows are inserted.
The new rows are those under the given parent from start to end inclusive. The base class implementation calls fetchMore() on the model to check for more data.
Reimplemented in QColumnView, QHeaderView, QListView, and QTreeView.
Definition at line 3425 of file qabstractitemview.cpp.
References isVisible(), and updateEditorGeometries().
Referenced by QListView::rowsInserted(), QTreeView::rowsInserted(), setModel(), QHeaderView::setModel(), and QTableView::setModel().
|
protected |
Schedules a layout of the items in the view to be executed when the event processing starts.
Even if scheduleDelayedItemsLayout() is called multiple times before events are processed, the view will only do the layout once.
Definition at line 3903 of file qabstractitemview.cpp.
References d.
Referenced by QTreeWidgetItem::setChildIndicatorPolicy().
|
protected |
Prepares the view for scrolling by ({dx},{dy}) pixels by moving the dirty regions in the opposite direction.
You only need to call this function if you are implementing a scrolling viewport in your view subclass.
If you implement scrollContentsBy() in a subclass of QAbstractItemView, call this function before you call QWidget::scroll() on the viewport. Alternatively, just call update().
Definition at line 3947 of file qabstractitemview.cpp.
References d.
Referenced by QColumnViewPreviewColumn::scrollContentsBy().
|
pure virtual |
Scrolls the view if necessary to ensure that the item at index is visible.
The view will try to position the item according to the given hint.
In the base class this is a pure virtual function.
Implemented in QColumnViewPreviewColumn, QHeaderView, QColumnView, QListView, QTableView, and QTreeView.
Referenced by currentChanged(), event(), QCompleterPrivate::setCurrentIndex(), setVerticalScrollMode(), QComboBox::showPopup(), and timerEvent().
|
slot |
Scrolls the view to the bottom.
Definition at line 3329 of file qabstractitemview.cpp.
References d, and updateGeometries().
|
slot |
Scrolls the view to the top.
Definition at line 3317 of file qabstractitemview.cpp.
Referenced by QCompleterPrivate::setCurrentIndex(), and QComboBox::showPopup().
|
virtualslot |
Selects all items in the view.
This function will use the selection behavior set on the view when selecting.
Reimplemented in QColumnView, and QTreeView.
Definition at line 1178 of file qabstractitemview.cpp.
References QItemSelectionModel::ClearAndSelect, ContiguousSelection, d, ExtendedSelection, MultiSelection, NoSelection, selectionCommand(), and SingleSelection.
Referenced by keyPressEvent().
|
protectedvirtual |
This convenience function returns a list of all selected and non-hidden item indexes in the view.
The list contains no duplicates, and is not sorted.
Reimplemented in QListView, QTableView, and QTreeView.
Definition at line 2696 of file qabstractitemview.cpp.
References d, isIndexHidden(), and QList< T >::removeIf().
QAbstractItemView::SelectionBehavior QAbstractItemView::selectionBehavior | ( | ) | const |
Definition at line 1065 of file qabstractitemview.cpp.
References d.
|
protectedvirtualslot |
This slot is called when the selection is changed.
The previous selection (which may be empty), is specified by deselected, and the new selection by selected.
Reimplemented in QListView, QTableView, and QTreeView.
Definition at line 3739 of file qabstractitemview.cpp.
References d, isVisible(), and visualRegionForSelection().
Referenced by QTreeWidget::QTreeWidget(), QListView::selectionChanged(), QTableView::selectionChanged(), QTreeView::selectionChanged(), setSelectionModel(), and QListWidget::setSelectionModel().
|
protectedvirtual |
Returns the SelectionFlags to be used when updating a selection model for the specified index.
The result depends on the current selectionMode(), and on the user input event event, which can be \nullptr.
Reimplement this function to define your own selection behavior.
Definition at line 4079 of file qabstractitemview.cpp.
References QItemSelectionModel::ClearAndSelect, ContiguousSelection, Qt::ControlModifier, d, QItemSelectionModel::Deselect, ExtendedSelection, QEvent::KeyPress, QEvent::MouseButtonPress, QEvent::MouseButtonRelease, MultiSelection, Qt::NoModifier, NoSelection, QItemSelectionModel::NoUpdate, Q_FALLTHROUGH, and SingleSelection.
Referenced by keyPressEvent(), mouseMoveEvent(), mousePressEvent(), mouseReleaseEvent(), selectAll(), and setCurrentIndex().
QAbstractItemView::SelectionMode QAbstractItemView::selectionMode | ( | ) | const |
Definition at line 1043 of file qabstractitemview.cpp.
References d.
QItemSelectionModel * QAbstractItemView::selectionModel | ( | ) | const |
Returns the current selection model.
Definition at line 798 of file qabstractitemview.cpp.
References d.
Referenced by QTreeWidget::QTreeWidget(), QListWidget::clear(), QTableWidget::clear(), QTreeWidget::clear(), QTableWidget::clearContents(), closePersistentEditor(), QInputDialogPrivate::ensureListView(), focusInEvent(), QTableWidgetItem::isSelected(), QInputDialogPrivate::listViewText(), main(), QtPrivate::QCalendarView::mouseMoveEvent(), QtPrivate::QCalendarView::mousePressEvent(), QTreeView::selectAll(), QTableViewPrivate::selectColumn(), QTreeView::selectedIndexes(), QListWidget::selectedItems(), QTableWidget::selectedItems(), QTreeWidget::selectedItems(), QTableWidget::selectedRanges(), QTableViewPrivate::selectRow(), QSidebar::selectUrl(), QCompleterPrivate::setCurrentIndex(), QListWidget::setCurrentRow(), QInputDialogPrivate::setInputWidget(), QInputDialogPrivate::setListViewText(), QSidebar::setModelAndUrls(), QTableWidget::setRangeSelected(), QTableWidgetItem::setSelected(), QTreeWidgetItem::setSelected(), QTreeView::setSelection(), setSelectionModel(), QListWidget::setSelectionModel(), QTableView::setSelectionModel(), QTreeView::setSelectionModel(), QTreeWidget::setSelectionModel(), QComboBox::showPopup(), QCalendarWidgetPrivate::updateCurrentPage(), and QComboBoxPrivate::viewContainer().
void QAbstractItemView::setAlternatingRowColors | ( | bool | enable | ) |
Definition at line 1580 of file qabstractitemview.cpp.
References d, and isVisible().
void QAbstractItemView::setAutoScroll | ( | bool | enable | ) |
Definition at line 1391 of file qabstractitemview.cpp.
References d.
void QAbstractItemView::setAutoScrollMargin | ( | int | margin | ) |
Definition at line 1411 of file qabstractitemview.cpp.
References d.
|
slot |
Sets the current item to be the item at index.
Unless the current selection mode is \l{QAbstractItemView::}{NoSelection}, the item is also selected. Note that this function also updates the starting position for any new selections the user performs.
To set an item as the current item without selecting it, call
{selectionModel()->setCurrentIndex(index, QItemSelectionModel::NoUpdate);}
Definition at line 1085 of file qabstractitemview.cpp.
References QItemSelectionModel::Current, d, and selectionCommand().
Referenced by QInputDialogPrivate::ensureListView(), QComboBoxPrivateContainer::eventFilter(), eventFilter(), keyboardSearch(), QTreeView::keyboardSearch(), rowsAboutToBeRemoved(), QTableWidget::setCurrentCell(), QFontListView::setCurrentItem(), QTableWidget::setCurrentItem(), QTreeWidget::setCurrentItem(), QSidebar::setModelAndUrls(), and QQuickFontDialogImplAttached::updateFamilies().
Marks the given region as dirty and schedules it to be updated. You only need to call this function if you are implementing your own view subclass.
Definition at line 3931 of file qabstractitemview.cpp.
References d.
void QAbstractItemView::setEditTriggers | ( | EditTriggers | triggers | ) |
Definition at line 1254 of file qabstractitemview.cpp.
References d.
Referenced by QFontListView::QFontListView(), QInputDialogPrivate::ensureListView(), QCompleter::popup(), QFileDialogListView::setFileDialogPrivate(), QFileDialogTreeView::setFileDialogPrivate(), and QComboBoxPrivateContainer::setItemView().
void QAbstractItemView::setHorizontalScrollMode | ( | ScrollMode | mode | ) |
Definition at line 1315 of file qabstractitemview.cpp.
References d, ScrollPerItem, and updateGeometries().
Referenced by resetHorizontalScrollMode().
Definition at line 1601 of file qabstractitemview.cpp.
References d, emit, and iconSizeChanged().
Referenced by QComboBox::setIconSize().
void QAbstractItemView::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.
If index is invalid (e.g., if you pass the root index), this function will do nothing.
The given widget's \l{QWidget}{autoFillBackground} property must be set to true, otherwise the widget's background will be transparent, showing both the model data and the item at the given index.
If index widget A is replaced with index widget B, index widget A will be deleted. For example, in the code snippet below, the QLineEdit object will be deleted.
This function should only be used to display static content within the visible area corresponding to an item of data. If you want to display custom dynamic content or implement a custom editor widget, subclass QStyledItemDelegate instead.
Definition at line 3268 of file qabstractitemview.cpp.
References d, dataChanged(), indexWidget(), QObject::installEventFilter(), QWidget::setGeometry(), QWidget::setParent(), QWidget::show(), viewport(), visualRect(), and widget.
Referenced by QTableWidget::setCellWidget(), QListWidget::setItemWidget(), and QTreeWidget::setItemWidget().
void QAbstractItemView::setItemDelegate | ( | QAbstractItemDelegate * | delegate | ) |
Sets the item delegate for this view and its model to delegate.
This is useful if you want complete control over the editing and display of items.
Any existing delegate will be removed, but not deleted. QAbstractItemView does not take ownership of delegate.
Definition at line 819 of file qabstractitemview.cpp.
References closeEditor(), commitData(), connect(), d, disconnect(), SIGNAL, sizeHintChanged, SLOT, and viewport().
Referenced by QComboBox::setItemDelegate(), and QSidebar::setModelAndUrls().
void QAbstractItemView::setItemDelegateForColumn | ( | int | column, |
QAbstractItemDelegate * | delegate | ||
) |
Sets the given item delegate used by this view and model for the given column. All items on column will be drawn and managed by delegate instead of using the default delegate (i.e., itemDelegate()).
Any existing column delegate for column will be removed, but not deleted. QAbstractItemView does not take ownership of delegate.
Definition at line 966 of file qabstractitemview.cpp.
References closeEditor(), commitData(), connect(), d, disconnect(), SIGNAL, sizeHintChanged, SLOT, and viewport().
void QAbstractItemView::setItemDelegateForRow | ( | int | row, |
QAbstractItemDelegate * | delegate | ||
) |
Sets the given item delegate used by this view and model for the given row. All items on row will be drawn and managed by delegate instead of using the default delegate (i.e., itemDelegate()).
Any existing row delegate for row will be removed, but not deleted. QAbstractItemView does not take ownership of delegate.
Definition at line 906 of file qabstractitemview.cpp.
References closeEditor(), commitData(), connect(), d, disconnect(), SIGNAL, sizeHintChanged, SLOT, and viewport().
|
virtual |
Sets the model for the view to present.
This function will create and set a new selection model, replacing any model that was previously set with setSelectionModel(). However, the old selection model will not be deleted as it may be shared between several views. We recommend that you delete the old selection model if it is no longer required. This is done with the following code:
If both the old model and the old selection model do not have parents, or if their parents are long-lived objects, it may be preferable to call their deleteLater() functions to explicitly delete them.
The view {does not} take ownership of the model unless it is the model's parent object because the model may be shared between many different views.
Reimplemented in QColumnView, QHeaderView, QListWidget, QTableView, QTableWidget, QTreeView, and QTreeWidget.
Definition at line 656 of file qabstractitemview.cpp.
References connect(), d, dataChanged(), disconnect(), model(), reset(), rowsAboutToBeRemoved(), rowsInserted(), setSelectionModel(), SIGNAL, SLOT, and QAbstractItemModelPrivate::staticEmptyModel().
Referenced by QFontListView::QFontListView(), QInputDialogPrivate::ensureListView(), main(), QHeaderView::setModel(), QTableView::setModel(), QTreeView::setModel(), QSidebar::setModelAndUrls(), QComboBox::setView(), QQuickFontDialogImplAttached::updateFamilies(), and QComboBoxPrivate::viewContainer().
|
virtualslot |
Sets the root item to the item at the given index.
Reimplemented in QColumnView, QListView, QTableView, and QTreeView.
Definition at line 1148 of file qabstractitemview.cpp.
References d, Q_UNLIKELY, and qWarning.
Referenced by reset(), QListView::setRootIndex(), QTableView::setRootIndex(), QTreeView::setRootIndex(), and QComboBox::setRootModelIndex().
|
protectedpure virtual |
Applies the selection flags to the items in or touched by the rectangle, rect.
When implementing your own itemview setSelection should call selectionModel()->select(selection, flags) where selection is either an empty QModelIndex or a QItemSelection that contains all items that are contained in rect.
Implemented in QColumnViewPreviewColumn, QColumnView, QListView, QTableView, QTreeView, and QHeaderView.
Referenced by keyPressEvent(), mouseMoveEvent(), and mousePressEvent().
void QAbstractItemView::setSelectionBehavior | ( | QAbstractItemView::SelectionBehavior | behavior | ) |
Definition at line 1059 of file qabstractitemview.cpp.
References d.
Referenced by QCompleter::popup(), QFileDialogListView::setFileDialogPrivate(), and QFileDialogTreeView::setFileDialogPrivate().
void QAbstractItemView::setSelectionMode | ( | QAbstractItemView::SelectionMode | mode | ) |
Definition at line 1037 of file qabstractitemview.cpp.
References d.
Referenced by QListView::QListView(), QListView::QListView(), QInputDialogPrivate::ensureListView(), QCompleter::popup(), and QComboBoxPrivateContainer::setItemView().
|
virtual |
Sets the current selection model to the given selectionModel.
Note that, if you call setModel() after this function, the given selectionModel will be replaced by one created by the view.
Reimplemented in QColumnView, QListWidget, QTableView, QTreeView, and QTreeWidget.
Definition at line 752 of file qabstractitemview.cpp.
References connect(), currentChanged(), d, disconnect(), QItemSelectionModel::model, Q_ASSERT, Q_UNLIKELY, qWarning, selectionChanged(), selectionModel(), SIGNAL, and SLOT.
Referenced by setModel(), QListWidget::setSelectionModel(), QTableView::setSelectionModel(), and QTreeView::setSelectionModel().
Sets the item view's state to the given state.
Definition at line 3888 of file qabstractitemview.cpp.
Referenced by closeEditor(), QListView::doItemsLayout(), editorDestroyed(), mouseMoveEvent(), mouseReleaseEvent(), QTreeView::mouseReleaseEvent(), reset(), and rowsAboutToBeRemoved().
void QAbstractItemView::setTabKeyNavigation | ( | bool | enable | ) |
Definition at line 1428 of file qabstractitemview.cpp.
References d.
Referenced by QtPrivate::QCalendarView::QCalendarView().
void QAbstractItemView::setTextElideMode | ( | Qt::TextElideMode | mode | ) |
Definition at line 1624 of file qabstractitemview.cpp.
References d.
Referenced by QFileDialogTreeView::setFileDialogPrivate(), and QComboBoxPrivate::viewContainer().
void QAbstractItemView::setVerticalScrollMode | ( | ScrollMode | mode | ) |
Definition at line 1276 of file qabstractitemview.cpp.
References d, indexAt(), PositionAtTop, ScrollPerItem, scrollTo(), and updateGeometries().
Referenced by resetVerticalScrollMode().
|
virtual |
Returns the width size hint for the specified column or -1 if there is no model.
This function is used in views with a horizontal header to find the size hint for a header section based on the contents of the given column.
Reimplemented in QTableView, and QTreeView.
Definition at line 3168 of file qabstractitemview.cpp.
References d, initViewItemOption(), itemDelegateForIndex(), and qMax().
QSize QAbstractItemView::sizeHintForIndex | ( | const QModelIndex & | index | ) | const |
Returns the size hint for the item with the specified index or an invalid size for invalid indexes.
Definition at line 3110 of file qabstractitemview.cpp.
References d, initViewItemOption(), and itemDelegateForIndex().
Referenced by QSidebar::sizeHint().
|
virtual |
Returns the height size hint for the specified row or -1 if there is no model.
The returned height is calculated using the size hints of the given row's items, i.e. the returned value is the maximum height among the items. Note that to control the height of a row, you must reimplement the QAbstractItemDelegate::sizeHint() function.
This function is used in views with a vertical header to find the size hint for a header section based on the contents of the given row.
Reimplemented in QTableView.
Definition at line 3137 of file qabstractitemview.cpp.
References d, initViewItemOption(), itemDelegateForIndex(), and qMax().
Referenced by QTreeView::scrollContentsBy(), QCompleterPrivate::showPopup(), QFileDialogListView::sizeHint(), and QFileDialogTreeView::sizeHint().
|
protected |
Definition at line 3971 of file qabstractitemview.cpp.
Referenced by mouseMoveEvent().
|
protected |
Returns the item view's state.
Definition at line 3877 of file qabstractitemview.cpp.
References d.
Referenced by doAutoScroll(), QListView::doItemsLayout(), QTreeView::drawRow(), QTreeView::drawTree(), editorDestroyed(), QHeaderView::initStyleOptionForIndex(), keyPressEvent(), QTreeView::mouseDoubleClickEvent(), QHeaderView::mouseMoveEvent(), QListView::mouseMoveEvent(), mouseMoveEvent(), mouseReleaseEvent(), QTreeView::mouseReleaseEvent(), QListView::paintEvent(), QListView::resizeEvent(), QHeaderView::restoreState(), QTreeView::scrollTo(), QListView::setSelection(), setState(), QTableView::timerEvent(), and QTreeView::timerEvent().
|
protected |
Definition at line 3979 of file qabstractitemview.cpp.
Referenced by doAutoScroll().
bool QAbstractItemView::tabKeyNavigation | ( | ) | const |
Definition at line 1434 of file qabstractitemview.cpp.
References d.
Qt::TextElideMode QAbstractItemView::textElideMode | ( | ) | const |
Definition at line 1630 of file qabstractitemview.cpp.
|
overrideprotected |
This function is called with the given event when a timer event is sent to the widget.
Definition at line 2569 of file qabstractitemview.cpp.
References currentIndex(), d, doAutoScroll(), doItemsLayout(), edit(), EditingState, QModelIndex::isValid(), isVisible(), reset(), and scrollTo().
Referenced by QListView::timerEvent(), QTableView::timerEvent(), and QTreeView::timerEvent().
|
slot |
Updates the area occupied by the given index.
Definition at line 3345 of file qabstractitemview.cpp.
References d, rect, and visualRect().
Referenced by currentChanged(), dataChanged(), edit(), mouseReleaseEvent(), QTableView::scrollTo(), and QIconModeViewBase::setPositionForIndex().
|
protectedvirtualslot |
Updates the data shown in the open editor widgets in the view.
Definition at line 2787 of file qabstractitemview.cpp.
References d.
|
protectedvirtualslot |
Updates the geometry of the open editor widgets in the view.
Definition at line 2797 of file qabstractitemview.cpp.
References QList< T >::at(), d, QWidget::hide(), i, initViewItemOption(), it, itemDelegateForIndex(), QHash< QWidget *, QPersistentModelIndex >::iterator, QList< T >::size(), QAbstractItemDelegate::updateEditorGeometry(), and visualRect().
Referenced by QTreeView::columnMoved(), rowsInserted(), QTableView::timerEvent(), and updateGeometries().
|
protectedvirtualslot |
Updates the geometry of the child widgets of the view.
Reimplemented in QHeaderView, QListView, QTableView, and QTreeView.
Definition at line 2848 of file qabstractitemview.cpp.
References d, and updateEditorGeometries().
Referenced by doItemsLayout(), event(), resizeEvent(), scrollToBottom(), setHorizontalScrollMode(), setVerticalScrollMode(), QListView::updateGeometries(), QTableView::updateGeometries(), and QTreeView::updateGeometries().
|
protectedpure virtual |
Returns the vertical offset of the view.
In the base class this is a pure virtual function.
Implemented in QColumnView, QColumnViewPreviewColumn, QHeaderView, QListView, QTableView, and QTreeView.
|
protectedvirtualslot |
Reimplemented in QTableView.
Definition at line 2885 of file qabstractitemview.cpp.
Referenced by QTableView::verticalScrollbarAction().
|
protectedvirtualslot |
Definition at line 2859 of file qabstractitemview.cpp.
References contains(), d, QCursor::pos(), rect, and viewport().
Referenced by QTreeView::verticalScrollbarValueChanged().
QAbstractItemView::ScrollMode QAbstractItemView::verticalScrollMode | ( | ) | const |
Definition at line 1292 of file qabstractitemview.cpp.
References d.
|
signal |
This signal is emitted when the mouse cursor enters the viewport.
Mouse tracking needs to be enabled for this feature to work.
|
overrideprotected |
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.
It passes all other events on to its base class viewportEvent() handler.
Returns true
if event has been recognized and processed; otherwise, returns false
.
Definition at line 1708 of file qabstractitemview.cpp.
References connect(), currentIndex(), d, QEvent::Enter, executeDelayedItemsLayout(), QEvent::FontChange, QAbstractItemDelegate::helpEvent(), QEvent::HoverEnter, QEvent::HoverLeave, QEvent::HoverMove, indexAt(), initViewItemOption(), itemDelegateForIndex(), QEvent::Leave, QEvent::Paint, QHelpEvent::pos(), position(), QEvent::QueryWhatsThis, QScroller::scroller(), QEvent::ScrollPrepare, QCoreApplication::sendEvent(), SIGNAL, SLOT, QStyle::State_HasFocus, QStyle::State_None, QEvent::ToolTip, Qt::UniqueConnection, visualRect(), QEvent::WhatsThis, QEvent::WindowActivate, and QEvent::WindowDeactivate.
Referenced by QHeaderView::viewportEvent(), and QTreeView::viewportEvent().
|
overrideprotected |
Definition at line 1444 of file qabstractitemview.cpp.
Referenced by QListView::viewportSizeHint(), and QTreeView::viewportSizeHint().
|
pure virtual |
Returns the rectangle on the viewport occupied by the item at index.
If your item is displayed in several areas then visualRect should return the primary area that contains index and not the complete area that index might encompasses, touch or cause drawing.
In the base class this is a pure virtual function.
Implemented in QColumnViewPreviewColumn, QColumnView, QHeaderView, QListView, QTableView, and QTreeView.
Referenced by inputMethodQuery(), keyPressEvent(), mousePressEvent(), openPersistentEditor(), setIndexWidget(), QComboBox::showPopup(), update(), updateEditorGeometries(), and viewportEvent().
|
protectedpure virtual |
Returns the region from the viewport of the items in the given selection.
In the base class this is a pure virtual function.
Implemented in QColumnViewPreviewColumn, QColumnView, QHeaderView, QListView, QTableView, and QTreeView.
Referenced by selectionChanged().
|
friend |
Definition at line 349 of file qabstractitemview.h.
|
friend |
Definition at line 347 of file qabstractitemview.h.
Referenced by QListView::setViewMode().
|
friend |
Definition at line 348 of file qabstractitemview.h.
|
friend |
Definition at line 346 of file qabstractitemview.h.
|
readwrite |
whether to draw the background using alternating colors
If this property is true
, the item background will be drawn using QPalette::Base and QPalette::AlternateBase; otherwise the background will be drawn using the QPalette::Base color.
By default, this property is false
.
Definition at line 354 of file qabstractitemview.h.
|
readwrite |
whether autoscrolling in drag move events is enabled
If this property is set to true (the default), the QAbstractItemView automatically scrolls the contents of the view if the user drags within 16 pixels of the viewport edge. If the current item changes, then the view will scroll automatically to ensure that the current item is fully visible.
This property only works if the viewport accepts drops. Autoscroll is switched off by setting this property to false.
Definition at line 354 of file qabstractitemview.h.
Referenced by focusInEvent(), and mousePressEvent().
|
readwrite |
the size of the area when auto scrolling is triggered
This property controls the size of the area at the edge of the viewport that triggers autoscrolling. The default value is 16 pixels.
Definition at line 354 of file qabstractitemview.h.
|
readwrite |
which actions will initiate item editing
This property is a selection of flags defined by \l{EditTrigger}, combined using the OR operator. The view will only initiate the editing of an item if the action performed is set in this property.
Definition at line 354 of file qabstractitemview.h.
Referenced by closeEditor().
|
readwrite |
how the view scrolls its contents in the horizontal direction
This property controls how the view scroll its contents horizontally. Scrolling can be done either per pixel or per item. Its default value comes from the style via the QStyle::SH_ItemView_ScrollMode style hint.
Definition at line 354 of file qabstractitemview.h.
Referenced by QTableView::columnCountChanged(), QCommonListViewBase::horizontalScrollMode(), QTableView::scrollContentsBy(), QTreeView::scrollContentsBy(), QTableView::scrollTo(), and QTableView::updateGeometries().
|
readwrite |
the size of items' icons
Setting this property when the view is visible will cause the items to be laid out again.
Definition at line 354 of file qabstractitemview.h.
|
readwrite |
which selection behavior the view uses
This property holds whether selections are done in terms of single items, rows or columns.
Definition at line 354 of file qabstractitemview.h.
Referenced by QTreeView::drawBranches(), and QTreeView::drawRow().
|
readwrite |
which selection mode the view operates in
This property controls whether the user can select one or many items and, in many-item selections, whether the selection must be a continuous range of items.
Definition at line 354 of file qabstractitemview.h.
Referenced by keyPressEvent().
|
readwrite |
whether item navigation with tab and backtab is enabled.
Definition at line 354 of file qabstractitemview.h.
|
readwrite |
the position of the "..." in elided text.
The default value for all item views is Qt::ElideRight.
Definition at line 354 of file qabstractitemview.h.
|
readwrite |
how the view scrolls its contents in the vertical direction
This property controls how the view scroll its contents vertically. Scrolling can be done either per pixel or per item. Its default value comes from the style via the QStyle::SH_ItemView_ScrollMode style hint.
Definition at line 354 of file qabstractitemview.h.
Referenced by QTreeView::drawBranches(), QTableView::scrollContentsBy(), QTreeView::scrollContentsBy(), QTableView::scrollTo(), QTreeView::scrollTo(), QTableView::updateGeometries(), and QCommonListViewBase::verticalScrollMode().