ItemSelectionModel QML Type
Instantiates a QItemSelectionModel to be used in conjunction with a QAbstractItemModel and any view supporting it. More...
Import Statement: | import QtQml.Models 2.14 |
Since: | Qt 5.5 |
Instantiates: | QItemSelectionModel |
Properties
- currentIndex : QModelIndex
- hasSelection : bool
- model : QAbstractItemModel
- selectedIndexes : QModelIndexList
- selection : object
Signals
- currentChanged(current, QModelIndex previous)
- selectionChanged(selected, QItemSelection deselected)
Methods
- void clear()
- void clearCurrentIndex()
- void clearSelection()
- bool columnIntersectsSelection(column, QModelIndex parent)
- bool isColumnSelected(column, QModelIndex parent)
- bool isRowSelected(row, QModelIndex parent)
- bool isSelected(index)
- void reset()
- bool rowIntersectsSelection(row, QModelIndex parent)
- void select(selection, SelectionFlags command)
- void select(index, SelectionFlags command)
- QModelIndexList selectedColumns(row)
- QModelIndexList selectedRows(column)
- void setCurrentIndex(index, SelectionFlags command)
Detailed Description
See also QItemSelectionModel and Models and Views in Qt Quick.
Property Documentation
[read-only] currentIndex : QModelIndex |
Use setCurrentIndex() to set its value.
See also setCurrentIndex() and currentChanged().
[read-only] hasSelection : bool |
It will trigger property binding updates every time selectionChanged() is emitted, even though its value hasn't changed.
See also selection, selectedIndexes, select(), and selectionChanged().
model : QAbstractItemModel |
This property's value must match the view's model.
[read-only] selectedIndexes : QModelIndexList |
Contains the list of all the indexes in the selection model.
[read-only] selection : object |
Holds the selection ranges stored in the selection model.
Signal Documentation
currentChanged(current, QModelIndex previous) |
This signal is emitted whenever the current item changes. The previous model item index is replaced by the current index as the selection's current item.
Note that this signal will not be emitted when the item model is reset.
See also currentIndex, setCurrentIndex(), and selectionChanged().
selectionChanged(selected, QItemSelection deselected) |
This signal is emitted whenever the selection changes. The change in the selection is represented as an item selection of deselected items and an item selection of selected items.
Note the that the current index changes independently from the selection. Also note that this signal will not be emitted when the item model is reset.
See also select() and currentChanged().
Method Documentation
void clear() |
Clears the selection model. Emits selectionChanged() and currentChanged().
void clearCurrentIndex() |
Clears the current index. Emits currentChanged().
void clearSelection() |
Clears the selection in the selection model. Emits selectionChanged().
bool columnIntersectsSelection(column, QModelIndex parent) |
Returns true
if there are any items selected in the column with the given parent.
bool isColumnSelected(column, QModelIndex parent) |
Returns true
if all items are selected in the column with the given parent.
Note that this function is usually faster than calling isSelected() on all items in the same column, and that unselectable items are ignored.
bool isRowSelected(row, QModelIndex parent) |
Returns true
if all items are selected in the row with the given parent.
Note that this function is usually faster than calling isSelected() on all items in the same row, and that unselectable items are ignored.
bool isSelected(index) |
Returns true
if the given model item index is selected.
void reset() |
Clears the selection model. Does not emit any signals.
bool rowIntersectsSelection(row, QModelIndex parent) |
Returns true
if there are any items selected in the row with the given parent.
void select(selection, SelectionFlags command) |
Selects the item selection using the specified command, and emits selectionChanged().
Valid command values are described in select(index, command).
void select(index, SelectionFlags command) |
Selects the model item index using the specified command, and emits selectionChanged().
Valid values for the command parameter, are:
Constant | Description |
---|---|
NoUpdate | No selection will be made. |
Clear | The complete selection will be cleared. |
Select | All specified indexes will be selected. |
Deselect | All specified indexes will be deselected. |
Toggle | All specified indexes will be selected or deselected depending on their current state. |
Current | The current selection will be updated. |
Rows | All indexes will be expanded to span rows. |
Columns | All indexes will be expanded to span columns. |
SelectCurrent | A combination of Select and Current, provided for convenience. |
ToggleCurrent | A combination of Toggle and Current, provided for convenience. |
ClearAndSelect | A combination of Clear and Select, provided for convenience. |
QModelIndexList selectedColumns(row) |
Returns the indexes in the given row for columns where all rows are selected.
See also selectedRows().
QModelIndexList selectedRows(column) |
Returns the indexes in the given column for the rows where all columns are selected.
See also selectedColumns().
void setCurrentIndex(index, SelectionFlags command) |
Sets the model item index to be the current item, and emits currentChanged(). The current item is used for keyboard navigation and focus indication; it is independent of any selected items, although a selected item can also be the current item.
Depending on the specified command, the index can also become part of the current selection.
Valid command values are described in select(index, command).
See also select().
© 2020 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.