![]() | Home · All Classes · Modules |
The QTreeWidgetItemIterator class provides a way to iterate over the items in a QTreeWidget instance. More...
The QTreeWidgetItemIterator class provides a way to iterate over the items in a QTreeWidget instance.
The iterator will walk the items in a pre-order traversal order, thus visiting the parent node before it continues to the child nodes.
It is possible to filter out certain types of node by passing certain flags to the constructor of QTreeWidgetItemIterator.
See also QTreeWidget, Model/View Programming, and QTreeWidgetItem.
These flags can be passed to a QTreeWidgetItemIterator constructor (OR-ed together if more than one is used), so that the iterator will only iterate over items that match the given flags.
Constant | Value |
---|---|
QTreeWidgetItemIterator.All | 0x00000000 |
QTreeWidgetItemIterator.Hidden | 0x00000001 |
QTreeWidgetItemIterator.NotHidden | 0x00000002 |
QTreeWidgetItemIterator.Selected | 0x00000004 |
QTreeWidgetItemIterator.Unselected | 0x00000008 |
QTreeWidgetItemIterator.Selectable | 0x00000010 |
QTreeWidgetItemIterator.NotSelectable | 0x00000020 |
QTreeWidgetItemIterator.DragEnabled | 0x00000040 |
QTreeWidgetItemIterator.DragDisabled | 0x00000080 |
QTreeWidgetItemIterator.DropEnabled | 0x00000100 |
QTreeWidgetItemIterator.DropDisabled | 0x00000200 |
QTreeWidgetItemIterator.HasChildren | 0x00000400 |
QTreeWidgetItemIterator.NoChildren | 0x00000800 |
QTreeWidgetItemIterator.Checked | 0x00001000 |
QTreeWidgetItemIterator.NotChecked | 0x00002000 |
QTreeWidgetItemIterator.Enabled | 0x00004000 |
QTreeWidgetItemIterator.Disabled | 0x00008000 |
QTreeWidgetItemIterator.Editable | 0x00010000 |
QTreeWidgetItemIterator.NotEditable | 0x00020000 |
QTreeWidgetItemIterator.UserFlag | 0x01000000 |
The IteratorFlags type is a typedef for QFlags<IteratorFlag>. It stores an OR combination of IteratorFlag values.
Constructs an iterator for the same QTreeWidget as it. The current iterator item is set to point on the current item of it.
Constructs an iterator for the QTreeWidget widget. The iterator is set to point to the first toplevel item (QTreeWidgetItem) of widget or the next matching item if the toplevel item doesn't match the flags.
See also QTreeWidgetItemIterator.IteratorFlag.
Constructs an iterator for the QTreeWidget that contains the item using the flags flags. The iterator is set to point to item or the next matching item if item doesn't match the flags.
See also QTreeWidgetItemIterator.IteratorFlag.
PyQt 4.0.1 for X11 | Copyright © Riverbank Computing Ltd and Trolltech AS 2006 | Qt 4.1.4 |