Provides a tree view with scroll bars, styling and header sections. 更多...
import 语句: | import QtQuick.Controls 1.4 |
Since: | Qt 5.5 |
继承: |
A TreeView implements a tree representation of items from a model.
Data for each row in the TreeView is provided by the model. TreeView accepts models derived from the QAbstractItemModel 类。
You provide title and size of a column header by adding a TableViewColumn as demonstrated below.
TreeView { TableViewColumn { title: "Name" role: "fileName" width: 300 } TableViewColumn { title: "Permissions" role: "filePermissions" width: 100 } model: fileSystemModel }
The header sections are attached to values in the model by defining the model role they attach to. Each property in the model will then be shown in their corresponding column.
You can customize the look by overriding the itemDelegate , rowDelegate, or headerDelegate properties.
The view itself does not provide sorting. This has to be done on the model itself. However you can provide sorting on the model, and enable sort indicators on headers.
You can create a custom appearance for a TreeView by assigning a TreeViewStyle .
alternatingRowColors : bool |
This property is set to
true
if the view alternates the row color. The default value is
true
.
backgroundVisible : bool |
This property determines if the background should be filled or not.
默认值为
true
.
注意: The rowDelegate is not affected by this property
[read-only] columnCount : int |
The current number of columns
: |
This is the content footer of the view.
contentHeader : Component |
This is the content header of the view.
The model index of the current row in the tree view.
headerDelegate : Component |
This property defines a delegate to draw a header.
In the header delegate you have access to the following special properties:
headerVisible : bool |
This property determines if the header is visible. The default value is
true
.
itemDelegate : Component |
This property defines a delegate to draw a specific cell.
In the item delegate you have access to the following special properties:
范例:
itemDelegate: Item { Text { anchors.verticalCenter: parent.verticalCenter color: styleData.textColor elide: styleData.elideMode text: styleData.value } }
注意:
For performance reasons, created delegates can be recycled across multiple table rows. This implies that when you make use of implicit properties such as
styleData.row
or
model
, these values can change after the delegate has been constructed. This means that you should not assume that content is fixed when
Component.onCompleted
is called, but instead rely on bindings to such properties.
This property holds the model providing data for the tree view.
The model provides the set of data that is displayed by the view. The TreeView accept models derived from the QAbstractItemModel 类。
The model index of the root item in the tree view. The root item is the parent item to the view's top-level items. Only items descending from the root item will be visible in the view.
Its default value is an invalid
QModelIndex
, which means the whole model data is shown by the tree view (assigning
undefined
to this proprety resets it to its default value.)
This property was introduced in QtQuick.Controls 1.5.
rowDelegate : Component |
This property defines a delegate to draw a row.
In the row delegate you have access to the following special properties:
注意:
For performance reasons, created delegates can be recycled across multiple table rows. This implies that when you make use of implicit properties such as
styleData.row
or
model
, these values can change after the delegate has been constructed. This means that you should not assume that content is fixed when
Component.onCompleted
is called, but instead rely on bindings to such properties.
section group |
---|
section.criteria : enumeration |
section.delegate : Component |
section.labelPositioning : enumeration |
section.property : string |
These properties determine the section labels.
另请参阅 ListView.section .
By default the selection model is
null
and only single selection is supported.
To use a different selection mode as described in selectionMode , an ItemSelectionModel must by set to the selection.
例如:
TreeView { model: myModel selection: ItemSelectionModel { model: myModel } TableViewColumn { role: "name" title: "Name } }
另请参阅 selectionMode .
selectionMode : int |
此枚举指示视图如何响应用户选择:
The possible modes are:
This property was introduced in QtQuick.Controls 1.1.
sortIndicatorColumn : int |
Index of the current sort column. The default value is
0
.
sortIndicatorOrder : int |
This sets the sorting order of the sort indicator The allowed values are:
sortIndicatorVisible : bool |
This property shows or hides the sort indicator The default value is
false
.
注意: The view itself does not sort the data.
Emitted when the user activates a row in the tree by mouse or keyboard interaction. Mouse activation is triggered by single- or double-clicking, depending on the platform.
index is the model index of the activated row in the tree.
注意: This signal is only emitted for mouse interaction that is not blocked in the row or item delegate.
相应处理程序是
onActivated
.
注意:
相应处理程序是
onActivated
.
Emitted when the user clicks a valid row in the tree by single clicking
index is the model index of the clicked row in the tree.
注意: This signal is only emitted if the row or item delegate does not accept mouse events.
相应处理程序是
onClicked
.
注意:
相应处理程序是
onClicked
.
Emitted when a valid row in the tree is collapsed, hiding its children.
index is the model index of the collapsed row in the tree.
注意: This signal is only emitted if the row or item delegate does not accept mouse events.
相应处理程序是
onCollapsed
.
注意:
相应处理程序是
onCollapsed
.
Emitted when the user double clicks a valid row.
index is the model index of the double clicked row in the tree.
注意: This signal is only emitted if the row or item delegate does not accept mouse events.
相应处理程序是
onDoubleClicked
.
注意:
相应处理程序是
onDoubleClicked
.
Emitted when a valid row in the tree is expanded, displaying its children.
index is the model index of the expanded row in the tree.
注意: This signal is only emitted if the row or item delegate does not accept mouse events.
相应处理程序是
onExpanded
.
注意:
相应处理程序是
onExpanded
.
Emitted when the user presses and holds a valid row in the tree.
index is the model index of the pressed row in the tree.
注意: This signal is only emitted if the row or item delegate does not accept mouse events.
相应处理程序是
onPressAndHold
.
注意:
相应处理程序是
onPressAndHold
.
TableViewColumn addColumn ( 对象 column ) |
添加 column and returns the added column.
The
column
argument can be an instance of
TableViewColumn
, or a Component. The component has to contain a
TableViewColumn
. Otherwise
null
被返回。
折叠的模型项指定通过 index .
另请参阅 collapsed and isExpanded .
Expands the model item specified by the index .
另请参阅 expanded and isExpanded .
TableViewColumn getColumn ( int index ) |
Returns the column at the given
index
or
null
若
index
无效。
Returns the model index of the visible row at the point x , y in content coordinates. If there is no visible row at the point specified, an invalid QModelIndex 被返回。
注意: This method should only be called after the component has completed.
TableViewColumn insertColumn ( int index , 对象 column ) |
插入 column 在给定 index and returns the inserted column.
The
column
argument can be an instance of
TableViewColumn
, or a Component. The component has to contain a
TableViewColumn
. Otherwise
null
被返回。
bool isExpanded ( QModelIndex index ) |
Returns true if the model item at index 被展开;否则返回 false。
Moves a column from index to another.
void removeColumn ( int index ) |
Removes and destroys a column at the given index .
Resizes all columns to ensure that the column contents and the headers will fit.
This method was introduced in QtQuick.Controls 1.2.