QTreeView#
The QTreeView
class provides a default model/view implementation of a tree view. More…
Inherited by: QTreeWidget, QHelpContentWidget
Synopsis#
Properties#
allColumnsShowFocus
- Whether items should show keyboard focus using all columnsanimated
- Whether animations are enabledautoExpandDelay
- Delay time before items in a tree are opened during a drag and drop operationexpandsOnDoubleClick
- Whether the items can be expanded by double-clickingheaderHidden
- Whether the header is shown or notindentation
- Of the items in the tree viewitemsExpandable
- Whether the items are expandable by the userrootIsDecorated
- Whether to show controls for expanding and collapsing top-level itemssortingEnabled
- Whether sorting is enableduniformRowHeights
- Whether all items in the treeview have the same heightwordWrap
- The item text word-wrapping policy
Functions#
def
allColumnsShowFocus
()def
autoExpandDelay
()def
columnAt
(x)def
columnViewportPosition
(column)def
columnWidth
(column)def
drawTree
(painter, region)def
expandsOnDoubleClick
()def
header
()def
indentation
()def
indexAbove
(index)def
indexBelow
(index)def
indexRowSizeHint
(index)def
isAnimated
()def
isColumnHidden
(column)def
isExpanded
(index)def
isFirstColumnSpanned
(row, parent)def
isHeaderHidden
()def
isRowHidden
(row, parent)def
isSortingEnabled
()def
itemsExpandable
()def
resetIndentation
()def
rootIsDecorated
()def
rowHeight
(index)def
setAllColumnsShowFocus
(enable)def
setAnimated
(enable)def
setAutoExpandDelay
(delay)def
setColumnHidden
(column, hide)def
setColumnWidth
(column, width)def
setExpanded
(index, expand)def
setExpandsOnDoubleClick
(enable)def
setFirstColumnSpanned
(row, parent, span)def
setHeader
(header)def
setHeaderHidden
(hide)def
setIndentation
(i)def
setItemsExpandable
(enable)def
setRootIsDecorated
(show)def
setRowHidden
(row, parent, hide)def
setSortingEnabled
(enable)def
setTreePosition
(logicalIndex)def
setUniformRowHeights
(uniform)def
setWordWrap
(on)def
treePosition
()def
uniformRowHeights
()def
wordWrap
()
Virtual functions#
def
drawBranches
(painter, rect, index)def
drawRow
(painter, options, index)
Slots#
def
collapse
(index)def
collapseAll
()def
columnCountChanged
(oldCount, newCount)def
columnMoved
()def
columnResized
(column, oldSize, newSize)def
expand
(index)def
expandAll
()def
expandRecursively
(index[, depth=-1])def
expandToDepth
(depth)def
hideColumn
(column)def
reexpand
()def
resizeColumnToContents
(column)def
rowsRemoved
(parent, first, last)def
showColumn
(column)def
sortByColumn
(column, order)
Signals#
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description#
Warning
This section contains snippets that were automatically translated from C++ to Python and may contain errors.
A QTreeView
implements a tree representation of items from a model. This class is used to provide standard hierarchical lists that were previously provided by the QListView
class, but using the more flexible approach provided by Qt’s model/view architecture.
The QTreeView
class is one of the Model/View Classes and is part of Qt’s model/view framework .
QTreeView
implements the interfaces defined by the QAbstractItemView
class to allow it to display data provided by models derived from the QAbstractItemModel
class.
It is simple to construct a tree view displaying data from a model. In the following example, the contents of a directory are supplied by a QFileSystemModel
and displayed as a tree:
model = QFileSystemModel() model.setRootPath(QDir.currentPath()) if __name__ == "__main__": app = QApplication([]) splitter = QSplitter() tree.setModel(model)
The model/view architecture ensures that the contents of the tree view are updated as the model changes.
Items that have children can be in an expanded (children are visible) or collapsed (children are hidden) state. When this state changes a collapsed()
or expanded()
signal is emitted with the model index of the relevant item.
The amount of indentation used to indicate levels of hierarchy is controlled by the indentation
property.
Headers in tree views are constructed using the QHeaderView
class and can be hidden using header()->hide()
. Note that each header is configured with its stretchLastSection
property set to true, ensuring that the view does not waste any of the space assigned to it for its header. If this value is set to true, this property will override the resize mode set on the last section in the header.
By default, all columns in a tree view are movable except the first. To disable movement of these columns, use QHeaderView
‘s setSectionsMovable()
function. For more information about rearranging sections, see Moving Header Sections
.
Key Bindings#
QTreeView
supports a set of key bindings that enable the user to navigate in the view and interact with the contents of items:
Key
Action
Up
Moves the cursor to the item in the same column on the previous row. If the parent of the current item has no more rows to navigate to, the cursor moves to the relevant item in the last row of the sibling that precedes the parent.
Down
Moves the cursor to the item in the same column on the next row. If the parent of the current item has no more rows to navigate to, the cursor moves to the relevant item in the first row of the sibling that follows the parent.
Left
Hides the children of the current item (if present) by collapsing a branch.
Minus
Same as Left.
Right
Reveals the children of the current item (if present) by expanding a branch.
Plus
Same as Right.
Asterisk
Expands the current item and all its children (if present).
PageUp
Moves the cursor up one page.
PageDown
Moves the cursor down one page.
Home
Moves the cursor to an item in the same column of the first row of the first top-level item in the model.
End
Moves the cursor to an item in the same column of the last row of the last top-level item in the model.
F2
In editable models, this opens the current item for editing. The Escape key can be used to cancel the editing process and revert any changes to the data displayed.
Improving Performance#
It is possible to give the view hints about the data it is handling in order to improve its performance when displaying large numbers of items. One approach that can be taken for views that are intended to display items with equal heights is to set the uniformRowHeights
property to true.
See also
QListView
QTreeWidget
View ClassesQAbstractItemModel
QAbstractItemView
Dir View Example
- class PySide6.QtWidgets.QTreeView([parent=None])#
- Parameters:
parent –
PySide6.QtWidgets.QWidget
Constructs a tree view with a parent
to represent a model’s data. Use setModel()
to set the model.
See also
QAbstractItemModel
Note
Properties can be used directly when from __feature__ import true_property
is used or via accessor functions otherwise.
- property PᅟySide6.QtWidgets.QTreeView.allColumnsShowFocus: bool#
This property holds whether items should show keyboard focus using all columns.
If this property is true
all columns will show focus, otherwise only one column will show focus.
The default is false.
- Access functions:
setAllColumnsShowFocus
(enable)
- property PᅟySide6.QtWidgets.QTreeView.animated: bool#
This property holds whether animations are enabled.
If this property is true
the treeview will animate expansion and collapsing of branches. If this property is false
, the treeview will expand or collapse branches immediately without showing the animation.
By default, this property is false
.
- Access functions:
isAnimated
()setAnimated
(enable)
- property PᅟySide6.QtWidgets.QTreeView.autoExpandDelay: int#
This property holds The delay time before items in a tree are opened during a drag and drop operation..
This property holds the amount of time in milliseconds that the user must wait over a node before that node will automatically open or close. If the time is set to less then 0 then it will not be activated.
By default, this property has a value of -1, meaning that auto-expansion is disabled.
- Access functions:
setAutoExpandDelay
(delay)
- property PᅟySide6.QtWidgets.QTreeView.expandsOnDoubleClick: bool#
This property holds whether the items can be expanded by double-clicking..
This property holds whether the user can expand and collapse items by double-clicking. The default value is true.
See also
- Access functions:
setExpandsOnDoubleClick
(enable)
- property PᅟySide6.QtWidgets.QTreeView.headerHidden: bool#
This property holds whether the header is shown or not..
If this property is true
, the header is not shown otherwise it is. The default value is false.
See also
- Access functions:
setHeaderHidden
(hide)
- property PᅟySide6.QtWidgets.QTreeView.indentation: int#
This property holds indentation of the items in the tree view..
This property holds the indentation measured in pixels of the items for each level in the tree view. For top-level items, the indentation specifies the horizontal distance from the viewport edge to the items in the first column; for child items, it specifies their indentation from their parent items.
By default, the value of this property is style dependent. Thus, when the style changes, this property updates from it. Calling setIndentation() stops the updates, calling resetIndentation() will restore default behavior.
- Access functions:
indentation
()setIndentation
(i)
- property PᅟySide6.QtWidgets.QTreeView.itemsExpandable: bool#
This property holds whether the items are expandable by the user..
This property holds whether the user can expand and collapse items interactively.
By default, this property is true
.
- Access functions:
setItemsExpandable
(enable)
- property PᅟySide6.QtWidgets.QTreeView.rootIsDecorated: bool#
This property holds whether to show controls for expanding and collapsing top-level items.
Items with children are typically shown with controls to expand and collapse them, allowing their children to be shown or hidden. If this property is false, these controls are not shown for top-level items. This can be used to make a single level tree structure appear like a simple list of items.
By default, this property is true
.
- Access functions:
setRootIsDecorated
(show)
- property PᅟySide6.QtWidgets.QTreeView.sortingEnabled: bool#
This property holds whether sorting is enabled.
If this property is true
, sorting is enabled for the tree; if the property is false, sorting is not enabled. The default value is false.
Note
In order to avoid performance issues, it is recommended that sorting is enabled after inserting the items into the tree. Alternatively, you could also insert the items into a list before inserting the items into the tree.
See also
- Access functions:
setSortingEnabled
(enable)
- property PᅟySide6.QtWidgets.QTreeView.uniformRowHeights: bool#
This property holds whether all items in the treeview have the same height.
This property should only be set to true if it is guaranteed that all items in the view has the same height. This enables the view to do some optimizations.
The height is obtained from the first item in the view. It is updated when the data changes on that item.
Note
If the editor size hint is bigger than the cell size hint, then the size hint of the editor will be used.
By default, this property is false
.
- Access functions:
setUniformRowHeights
(uniform)
- property PᅟySide6.QtWidgets.QTreeView.wordWrap: bool#
This property holds the item text word-wrapping policy.
If this property is true
then the item text is wrapped where necessary at word-breaks; otherwise it is not wrapped at all. This property is false
by default.
Note that even if wrapping is enabled, the cell will not be expanded to fit all text. Ellipsis will be inserted according to the current textElideMode
.
- Access functions:
wordWrap
()setWordWrap
(on)
- PySide6.QtWidgets.QTreeView.allColumnsShowFocus()#
- Return type:
bool
See also
Getter of property allColumnsShowFocus
.
- PySide6.QtWidgets.QTreeView.autoExpandDelay()#
- Return type:
int
See also
Getter of property autoExpandDelay
.
- PySide6.QtWidgets.QTreeView.collapse(index)#
- Parameters:
index –
PySide6.QtCore.QModelIndex
Collapses the model item specified by the index
.
See also
- PySide6.QtWidgets.QTreeView.collapseAll()#
Collapses all expanded items.
See also
- PySide6.QtWidgets.QTreeView.collapsed(index)#
- Parameters:
index –
PySide6.QtCore.QModelIndex
This signal is emitted when the item specified by index
is collapsed.
- PySide6.QtWidgets.QTreeView.columnAt(x)#
- Parameters:
x – int
- Return type:
int
Returns the column in the tree view whose header covers the x
coordinate given.
- PySide6.QtWidgets.QTreeView.columnCountChanged(oldCount, newCount)#
- Parameters:
oldCount – int
newCount – int
Informs the tree view that the number of columns in the tree view has changed from oldCount
to newCount
.
- PySide6.QtWidgets.QTreeView.columnMoved()#
This slot is called whenever a column has been moved.
- PySide6.QtWidgets.QTreeView.columnResized(column, oldSize, newSize)#
- Parameters:
column – int
oldSize – int
newSize – int
This function is called whenever column
's size is changed in the header. oldSize
and newSize
give the previous size and the new size in pixels.
See also
- PySide6.QtWidgets.QTreeView.columnViewportPosition(column)#
- Parameters:
column – int
- Return type:
int
Returns the horizontal position of the column
in the viewport.
- PySide6.QtWidgets.QTreeView.columnWidth(column)#
- Parameters:
column – int
- Return type:
int
Returns the width of the column
.
See also
- PySide6.QtWidgets.QTreeView.drawBranches(painter, rect, index)#
- Parameters:
painter –
PySide6.QtGui.QPainter
rect –
PySide6.QtCore.QRect
index –
PySide6.QtCore.QModelIndex
Draws the branches in the tree view on the same row as the model item index
, using the painter
given. The branches are drawn in the rectangle specified by rect
.
- PySide6.QtWidgets.QTreeView.drawRow(painter, options, index)#
- Parameters:
painter –
PySide6.QtGui.QPainter
options –
PySide6.QtWidgets.QStyleOptionViewItem
index –
PySide6.QtCore.QModelIndex
Draws the row in the tree view that contains the model item index
, using the painter
given. The option
controls how the item is displayed.
See also
- PySide6.QtWidgets.QTreeView.drawTree(painter, region)#
- Parameters:
painter –
PySide6.QtGui.QPainter
region –
PySide6.QtGui.QRegion
Draws the part of the tree intersecting the given region
using the specified painter
.
See also
paintEvent()
- PySide6.QtWidgets.QTreeView.expand(index)#
- Parameters:
index –
PySide6.QtCore.QModelIndex
Expands the model item specified by the index
.
See also
- PySide6.QtWidgets.QTreeView.expandAll()#
Expands all expandable items.
Note
This function will not try to fetch more
data.
Warning
If the model contains a large number of items, this function will take some time to execute.
See also
- PySide6.QtWidgets.QTreeView.expandRecursively(index[, depth=-1])#
- Parameters:
index –
PySide6.QtCore.QModelIndex
depth – int
Expands the item at the given index
and all its children to the given depth
. The depth
is relative to the given index
. A depth
of -1 will expand all children, a depth
of 0 will only expand the given index
.
Note
This function will not try to fetch more
data.
Warning
If the model contains a large number of items, this function will take some time to execute.
See also
- PySide6.QtWidgets.QTreeView.expandToDepth(depth)#
- Parameters:
depth – int
Expands all expandable items to the given depth
.
Note
This function will not try to fetch more
data.
- PySide6.QtWidgets.QTreeView.expanded(index)#
- Parameters:
index –
PySide6.QtCore.QModelIndex
This signal is emitted when the item specified by index
is expanded.
See also
- PySide6.QtWidgets.QTreeView.expandsOnDoubleClick()#
- Return type:
bool
See also
Getter of property expandsOnDoubleClick
.
- PySide6.QtWidgets.QTreeView.header()#
- Return type:
Returns the header for the tree view.
See also
setHeader()
headerData()
- PySide6.QtWidgets.QTreeView.hideColumn(column)#
- Parameters:
column – int
Hides the column
given.
Note
This function should only be called after the model has been initialized, as the view needs to know the number of columns in order to hide column
.
See also
- PySide6.QtWidgets.QTreeView.indentation()#
- Return type:
int
See also
Getter of property indentation
.
- PySide6.QtWidgets.QTreeView.indexAbove(index)#
- Parameters:
index –
PySide6.QtCore.QModelIndex
- Return type:
Returns the model index of the item above index
.
- PySide6.QtWidgets.QTreeView.indexBelow(index)#
- Parameters:
index –
PySide6.QtCore.QModelIndex
- Return type:
Returns the model index of the item below index
.
- PySide6.QtWidgets.QTreeView.indexRowSizeHint(index)#
- Parameters:
index –
PySide6.QtCore.QModelIndex
- Return type:
int
Returns the size hint for the row indicated by index
.
See also
sizeHintForColumn()
uniformRowHeights()
- PySide6.QtWidgets.QTreeView.isAnimated()#
- Return type:
bool
Getter of property animated
.
- PySide6.QtWidgets.QTreeView.isColumnHidden(column)#
- Parameters:
column – int
- Return type:
bool
Returns true
if the column
is hidden; otherwise returns false
.
See also
- PySide6.QtWidgets.QTreeView.isExpanded(index)#
- Parameters:
index –
PySide6.QtCore.QModelIndex
- Return type:
bool
Returns true
if the model item index
is expanded; otherwise returns false.
See also
- PySide6.QtWidgets.QTreeView.isFirstColumnSpanned(row, parent)#
- Parameters:
row – int
parent –
PySide6.QtCore.QModelIndex
- Return type:
bool
Returns true
if the item in first column in the given row
of the parent
is spanning all the columns; otherwise returns false
.
See also
- PySide6.QtWidgets.QTreeView.isHeaderHidden()#
- Return type:
bool
Getter of property headerHidden
.
- PySide6.QtWidgets.QTreeView.isRowHidden(row, parent)#
- Parameters:
row – int
parent –
PySide6.QtCore.QModelIndex
- Return type:
bool
Returns true
if the item in the given row
of the parent
is hidden; otherwise returns false
.
See also
- PySide6.QtWidgets.QTreeView.isSortingEnabled()#
- Return type:
bool
Getter of property sortingEnabled
.
- PySide6.QtWidgets.QTreeView.itemsExpandable()#
- Return type:
bool
See also
Getter of property itemsExpandable
.
- PySide6.QtWidgets.QTreeView.reexpand()#
- PySide6.QtWidgets.QTreeView.resetIndentation()#
Reset function of property indentation
.
- PySide6.QtWidgets.QTreeView.resizeColumnToContents(column)#
- Parameters:
column – int
Resizes the column
given to the size of its contents.
See also
columnWidth()
setColumnWidth()
sizeHintForColumn()
resizeContentsPrecision()
- PySide6.QtWidgets.QTreeView.rootIsDecorated()#
- Return type:
bool
See also
Getter of property rootIsDecorated
.
- PySide6.QtWidgets.QTreeView.rowHeight(index)#
- Parameters:
index –
PySide6.QtCore.QModelIndex
- Return type:
int
Returns the height of the row indicated by the given index
.
See also
- PySide6.QtWidgets.QTreeView.rowsRemoved(parent, first, last)#
- Parameters:
parent –
PySide6.QtCore.QModelIndex
first – int
last – int
Informs the view that the rows from the start
row to the end
row inclusive have been removed from the given parent
model item.
- PySide6.QtWidgets.QTreeView.setAllColumnsShowFocus(enable)#
- Parameters:
enable – bool
See also
Setter of property allColumnsShowFocus
.
- PySide6.QtWidgets.QTreeView.setAnimated(enable)#
- Parameters:
enable – bool
See also
Setter of property animated
.
- PySide6.QtWidgets.QTreeView.setAutoExpandDelay(delay)#
- Parameters:
delay – int
See also
Setter of property autoExpandDelay
.
- PySide6.QtWidgets.QTreeView.setColumnHidden(column, hide)#
- Parameters:
column – int
hide – bool
If hide
is true the column
is hidden, otherwise the column
is shown.
See also
- PySide6.QtWidgets.QTreeView.setColumnWidth(column, width)#
- Parameters:
column – int
width – int
Sets the width of the given column
to the width
specified.
See also
- PySide6.QtWidgets.QTreeView.setExpanded(index, expand)#
- Parameters:
index –
PySide6.QtCore.QModelIndex
expand – bool
Sets the item referred to by index
to either collapse or expanded, depending on the value of expanded
.
See also
- PySide6.QtWidgets.QTreeView.setExpandsOnDoubleClick(enable)#
- Parameters:
enable – bool
See also
Setter of property expandsOnDoubleClick
.
- PySide6.QtWidgets.QTreeView.setFirstColumnSpanned(row, parent, span)#
- Parameters:
row – int
parent –
PySide6.QtCore.QModelIndex
span – bool
If span
is true the item in the first column in the row
with the given parent
is set to span all columns, otherwise all items on the row
are shown.
See also
- PySide6.QtWidgets.QTreeView.setHeader(header)#
- Parameters:
header –
PySide6.QtWidgets.QHeaderView
Sets the header for the tree view, to the given header
.
The view takes ownership over the given header
and deletes it when a new header is set.
See also
headerData()
- PySide6.QtWidgets.QTreeView.setHeaderHidden(hide)#
- Parameters:
hide – bool
See also
Setter of property headerHidden
.
- PySide6.QtWidgets.QTreeView.setIndentation(i)#
- Parameters:
i – int
See also
Setter of property indentation
.
- PySide6.QtWidgets.QTreeView.setItemsExpandable(enable)#
- Parameters:
enable – bool
See also
Setter of property itemsExpandable
.
- PySide6.QtWidgets.QTreeView.setRootIsDecorated(show)#
- Parameters:
show – bool
See also
Setter of property rootIsDecorated
.
- PySide6.QtWidgets.QTreeView.setRowHidden(row, parent, hide)#
- Parameters:
row – int
parent –
PySide6.QtCore.QModelIndex
hide – bool
If hide
is true the row
with the given parent
is hidden, otherwise the row
is shown.
See also
- PySide6.QtWidgets.QTreeView.setSortingEnabled(enable)#
- Parameters:
enable – bool
See also
Setter of property sortingEnabled
.
- PySide6.QtWidgets.QTreeView.setTreePosition(logicalIndex)#
- Parameters:
logicalIndex – int
This specifies that the tree structure should be placed at logical index index
. If set to -1 then the tree will always follow visual index 0.
See also
- PySide6.QtWidgets.QTreeView.setUniformRowHeights(uniform)#
- Parameters:
uniform – bool
See also
Setter of property uniformRowHeights
.
- PySide6.QtWidgets.QTreeView.setWordWrap(on)#
- Parameters:
on – bool
See also
Setter of property wordWrap
.
- PySide6.QtWidgets.QTreeView.showColumn(column)#
- Parameters:
column – int
Shows the given column
in the tree view.
See also
Sorts the model by the values in the given column
and order
.
column
may be -1, in which case no sort indicator will be shown and the model will return to its natural, unsorted order. Note that not all models support this and may even crash in this case.
See also
sortingEnabled
- PySide6.QtWidgets.QTreeView.treePosition()#
- Return type:
int
Return the logical index the tree is set on. If the return value is -1 then the tree is placed on the visual index 0.
See also
- PySide6.QtWidgets.QTreeView.uniformRowHeights()#
- Return type:
bool
See also
Getter of property uniformRowHeights
.
- PySide6.QtWidgets.QTreeView.wordWrap()#
- Return type:
bool
See also
Getter of property wordWrap
.