Wiki Markup |
---|
{alias:qsetheaderlabels} |
Name
qsetheaderlabels — set column headers in a QTreeWidget
...
The qsetheaderlabels command sets the columns headers in a QTreeWidget qtreewidget. The labels must be provided as a Tcl list. The QTreeWidget may be given as the first argument, or else the current widget (assuming it is a QTreeWidget) will be used.
Note |
---|
No items can be added to a treewidget before the header columns are in place. |
Arguments
treewidget
A QTreeWidget that will have the columns headers.
headers
A Tcl list containing the header labels.
Examples
Ex.1: qsetheaderlabels
...
No Format | ||||
---|---|---|---|---|
| ||||
set w [qwidget]
qsetwindowtitle QTreeWidget
qvboxlayout {
set tree [qtreewidget]
qsetheaderlabels { File Path }
qtreewidgetitem $tree { "File" c:/File } 1
}
qshow $w
|
...