QItemSelection

PyQt5.QtCore.QItemSelection

Description

The QItemSelection class manages information about selected items in a model.

A QItemSelection describes the items in a model that have been selected by the user. A QItemSelection is basically a list of selection ranges, see QItemSelectionRange. It provides functions for creating and manipulating selections, and selecting a range of items from a model.

The QItemSelection class is one of the Model/View Classes and is part of Qt鈥檚 model/view framework.

An item selection can be constructed and initialized to contain a range of items from an existing model. The following example constructs a selection that contains a range of items from the given model, beginning at the topLeft, and ending at the bottomRight.

# QItemSelection *selection = new QItemSelection(topLeft, bottomRight);

An empty item selection can be constructed, and later populated as required. So, if the model is going to be unavailable when we construct the item selection, we can rewrite the above code in the following way:

# QItemSelection *selection = new QItemSelection();
# ...
# selection->select(topLeft, bottomRight);

QItemSelection saves memory, and avoids unnecessary work, by working with selection ranges rather than recording the model item index for each item in the selection. Generally, an instance of this class will contain a list of non-overlapping selection ranges.

Use merge() to merge one item selection into another without making overlapping ranges. Use split() to split one selection range into smaller ranges based on a another selection range.

Methods

__init__()

TODO


__init__(QItemSelection)

TODO


__init__(QModelIndex, QModelIndex)

TODO


append(QItemSelectionRange)

TODO


clear()

TODO


__contains__(QModelIndex) → int

TODO


contains(QModelIndex) → bool

Returns true if the selection contains the given index; otherwise returns false.


count() → int

TODO


count(QItemSelectionRange) → int

TODO


__delitem__(int)

TODO


__delitem__(slice)

TODO


__eq__(QItemSelection) → bool

TODO


first() → QItemSelectionRange

TODO


__getitem__(int) → QItemSelectionRange

TODO


__getitem__(slice) → QItemSelection

TODO


__iadd__(QItemSelection) → QItemSelection

TODO


__iadd__(QItemSelectionRange) → QItemSelection

TODO


indexes() → List[QModelIndex]

Returns a list of model indexes that correspond to the selected items.


indexOf(QItemSelectionRange, from: int = 0) → int

TODO


insert(int, QItemSelectionRange)

TODO


isEmpty() → bool

TODO


last() → QItemSelectionRange

TODO


lastIndexOf(QItemSelectionRange, from: int = -1) → int

TODO


__len__() → int

TODO


merge(QItemSelection, Union[SelectionFlags, SelectionFlag])

Merges the other selection with this QItemSelection using the command given. This method guarantees that no ranges are overlapping.

Note that only Select, Deselect, and Toggle are supported.

See also

split().


move(int, int)

TODO


__ne__(QItemSelection) → bool

TODO


prepend(QItemSelectionRange)

TODO


removeAll(QItemSelectionRange) → int

TODO


removeAt(int)

TODO


replace(int, QItemSelectionRange)

TODO


select(QModelIndex, QModelIndex)

Adds the items in the range that extends from the top-left model item, specified by the topLeft index, to the bottom-right item, specified by bottomRight to the list.

Note: topLeft and bottomRight must have the same parent.


__setitem__(int, QItemSelectionRange)

TODO


__setitem__(slice, QItemSelection)

TODO


@staticmethod
split(QItemSelectionRange, QItemSelectionRange, QItemSelection)

Splits the selection range using the selection other range. Removes all items in other from range and puts the result in result. This can be compared with the semantics of the subtract operation of a set.

See also

merge().


swap(int, int)

TODO


takeAt(int) → QItemSelectionRange

TODO


takeFirst() → QItemSelectionRange

TODO


takeLast() → QItemSelectionRange

TODO