TreeStore
⚠️ Deprecated ⚠️
This is deprecated since version 4.10.
Use class@Gtk.TreeListModel instead
---A tree-like data structure that can be used with the class@Gtk.TreeView.
The GtkTreeStore
object is a list model for use with a GtkTreeView
widget. It implements the iface@Gtk.TreeModel interface, and consequently, can use all of the methods available there. It also implements the iface@Gtk.TreeSortable interface so it can be sorted by the view. Finally, it also implements the tree iface@Gtk.TreeDragSource and iface@Gtk.TreeDragDest interfaces.
GtkTreeStore
is deprecated since GTK 4.10, and should not be used in newly written code. You should use class@Gtk.TreeListModel for a tree-like model object.
GtkTreeStore as GtkBuildable
The GtkTreeStore implementation of the GtkBuildable
interface allows to specify the model columns with a <columns>
element that may contain multiple <column>
elements, each specifying one model column. The “type” attribute specifies the data type for the column.
An example of a UI Definition fragment for a tree store:
<object class="GtkTreeStore">
<columns>
<column type="gchararray"/>
<column type="gchararray"/>
<column type="gint"/>
</columns>
</object>
Skipped during bindings generation
parameter
columns
: Array parameter of type gint is not supportedparameter
new_order
: Array parameter of type gint is not supportedparameter
types
: Array parameter of type GType is not supportedparameter
var_args
: va_list type is not supportedparameter
columns
: Array parameter of type gint is not supportedparameter
types
: Array parameter of type GType is not supported
Constructors
Properties
Functions
This is deprecated since version 4.10.
This is deprecated since version 4.10.
This is deprecated since version 4.10.
This is deprecated since version 4.10.
---Gets the ID of the @buildable object.
This is deprecated since version 4.10.
---This is deprecated since version 4.10.
---This is deprecated since version 4.10.
---This is deprecated since version 4.10.
---This is deprecated since version 4.10.
---This is deprecated since version 4.10.
---This is deprecated since version 4.10.
---This is deprecated since version 4.10.
This is deprecated since version 4.10.
This is deprecated since version 4.10.
This is deprecated since version 4.10.
---This is deprecated since version 4.10.
---This is deprecated since version 4.10.
This is deprecated since version 4.10.
---This is deprecated since version 4.10.
---This is deprecated since version 4.10.
---This is deprecated since version 4.10.
---This is deprecated since version 4.10.
This signal is emitted when a row in the model has changed.
This signal is emitted when a row has been deleted.
This signal is emitted when a row has gotten the first child row or lost its last child row.
This signal is emitted when a new row has been inserted in the model.
This signal is emitted when the children of a node in the GtkTreeModel
have been reordered.
The ::sort-column-changed signal is emitted when the sort column or sort order of @sortable is changed. The signal is emitted before the contents of @sortable are resorted.
This is deprecated since version 4.10.
---This is deprecated since version 4.10.
---This is deprecated since version 4.10.
This is deprecated since version 4.10.
This is deprecated since version 4.10.
---This is deprecated since version 4.10.
---This is deprecated since version 4.10.
---This is deprecated since version 4.10.
---This is deprecated since version 4.10.
---This is deprecated since version 4.10.
---