GObject.Object
Gdaui.DataStore
Import line: | Gdaui = imports.gi.Gdaui; |
GIR File: | Gdaui-4.0.gir |
C documentation: | GdauiDataStore |
Class : | DataStore |
Implements: | Gtk.TreeModel |
Extends: | GObject.Object |
Show / Hide Inherited methods, properties and signals |
Properties | Defined By | |
---|---|---|
model : void*
|
Gdaui.DataStore | |
object : GObject.Object
read only
|
Gdaui.DataStore | |
prepend_null_entry : Boolean
|
Gdaui.DataStore | |
priv : Gdaui.DataStorePriv
read only
|
Gdaui.DataStore | |
proxy : void*
read only
|
Gdaui.DataStore |
Method / Constructor | Defined By | |
---|---|---|
new Gdaui.DataStore
(Object properties)
Create a new Gdaui.DataStore
Create a new Gdaui.DataStore
|
||
Create a new Gdaui.DataStore
Create a new Gdaui.DataStore
|
||
|
Gdaui.DataStore | |
delete
(TreeIter iter)
:
none
|
Gdaui.DataStore | |
Calls func on each node in model in a depth-first fashion.
Calls func on each node in model in a depth-first fashion. If func returns TRUE, then the tree ceases to be walked, and gtk_tree_model_foreach() returns.
|
Gtk.TreeModel | |
Gtk.TreeModel | ||
get_flags
()
:
Gtk.TreeModelFlags
Returns a set of flags supported by this interface.
Returns a set of flags supported by this interface. The flags are a bitwise combination of GtkTreeModelFlags. The flags supported should not change during the lifecycle of the tree_model.
|
Gtk.TreeModel | |
Sets iter to a valid iterator pointing to path.
Sets iter to a valid iterator pointing to path.
|
Gtk.TreeModel | |
Initializes iter with the first iterator in the tree (the one at the path "0") and returns TRUE.
Initializes iter with the first iterator in the tree (the one at the path "0") and returns TRUE. Returns FALSE if the tree is empty.
|
Gtk.TreeModel | |
Sets iter to a valid iterator pointing to path_string, if it exists.
Sets iter to a valid iterator pointing to path_string, if it exists. Otherwise, iter is left invalid and FALSE is returned.
|
Gtk.TreeModel | |
|
Gdaui.DataStore | |
get_n_columns
()
:
Number
Returns the number of columns supported by tree_model.
Returns the number of columns supported by tree_model.
|
Gtk.TreeModel | |
get_path
(TreeIter iter)
:
Gtk.TreePath
Returns a newly-created GtkTreePath referenced by iter.
Returns a newly-created GtkTreePath referenced by iter. This path should be freed with gtk_tree_path_free().
|
Gtk.TreeModel | |
get_proxy
()
:
Gda.DataProxy
|
Gdaui.DataStore | |
|
Gdaui.DataStore | |
Generates a string representation of the iter.
Generates a string representation of the iter. This string is a ':' separated list of numbers. For example, "4:10:0:3" would be an acceptable return value for this string.
|
Gtk.TreeModel | |
Initializes and sets value to that at column.
Initializes and sets value to that at column. When done with value, g_value_unset() needs to be called to free any allocated memory.
|
Gtk.TreeModel | |
Sets iter to point to the first child of parent.
Sets iter to point to the first child of parent. If parent has no children, FALSE is returned and iter is set to be invalid. parent will remain a valid node after this function has been called. If parent is NULL returns the first node, equivalent to
|
Gtk.TreeModel | |
Returns TRUE if iter has children, FALSE otherwise.
Returns TRUE if iter has children, FALSE otherwise.
|
Gtk.TreeModel | |
Returns the number of children that iter has.
Returns the number of children that iter has. As a special case, if iter is NULL, then the number of toplevel nodes is returned.
|
Gtk.TreeModel | |
Sets iter to point to the node following it at the current level.
Sets iter to point to the node following it at the current level. If there is no next iter, FALSE is returned and iter is set to be invalid.
|
Gtk.TreeModel | |
Sets iter to be the child of parent, using the given index.
Sets iter to be the child of parent, using the given index. The first index is 0. If n is too big, or parent has no children, iter is set to an invalid iterator and FALSE is returned. parent will remain a valid node after this function has been called. As a special case, if parent is NULL, then the nth root node is set.
|
Gtk.TreeModel | |
Sets iter to be the parent of child.
Sets iter to be the parent of child. If child is at the toplevel, and doesn't have a parent, then iter is set to an invalid iterator and FALSE is returned. child will remain a valid node after this function has been called.
|
Gtk.TreeModel | |
ref_node
(TreeIter iter)
:
none
Lets the tree ref the node.
Lets the tree ref the node. This is an optional method for models to implement. To be more specific, models may ignore this call as it exists primarily for performance reasons. This function is primarily meant as a way for views to let caching model know when nodes are being displayed (and hence, whether or not to cache that node.) For example, a file-system based model would not want to keep the entire file-hierarchy in memory, just the sections that are currently being displayed by every current view. A model should be expected to be able to get an iter independent of its reffed state.
|
Gtk.TreeModel | |
Emits the "row-changed" signal on tree_model.
Emits the "row-changed" signal on tree_model.
|
Gtk.TreeModel | |
row_deleted
(TreePath path)
:
none
Emits the "row-deleted" signal on tree_model.
Emits the "row-deleted" signal on tree_model. This should be called by models after a row has been removed. The location pointed to by path should be the location that the row previously was at. It may not be a valid location anymore.
|
Gtk.TreeModel | |
Emits the "row-has-child-toggled" signal on tree_model.
Emits the "row-has-child-toggled" signal on tree_model. This should be called by models after the child state of a node changes.
|
Gtk.TreeModel | |
Emits the "row-inserted" signal on tree_model
Emits the "row-inserted" signal on tree_model
|
Gtk.TreeModel | |
Emits the "rows-reordered" signal on tree_model.
Emits the "rows-reordered" signal on tree_model. This should be called by models when their rows have been reordered.
|
Gtk.TreeModel | |
|
Gdaui.DataStore | |
undelete
(TreeIter iter)
:
none
|
Gdaui.DataStore | |
unref_node
(TreeIter iter)
:
none
Lets the tree unref the node.
Lets the tree unref the node. This is an optional method for models to implement. To be more specific, models may ignore this call as it exists primarily for performance reasons. For more information on what this means, see gtk_tree_model_ref_node(). Please note that nodes that are deleted are not unreffed.
|
Gtk.TreeModel |
Event | Defined By | |
---|---|---|
This signal is emitted when a row in the model has changed.
This signal is emitted when a row in the model has changed.
|
Gtk.TreeModel | |
This signal is emitted when a row has been deleted.
This signal is emitted when a row has been deleted. Note that no iterator is passed to the signal handler, since the row is already deleted. Implementations of GtkTreeModel must emit row-deleted
|
Gtk.TreeModel | |
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 row has gotten the first child row or lost its last child row.
|
Gtk.TreeModel | |
This signal is emitted when a new row has been inserted in the model.
This signal is emitted when a new row has been inserted in the model. Note that the row may still be empty at this point, since it is a common pattern to first insert an empty row, and then fill it with the desired values.
|
Gtk.TreeModel | |
This signal is emitted when the children of a node in the GtkTreeModel have been reordered.
This signal is emitted when the children of a node in the GtkTreeModel have been reordered. Note that this signal is
|
Gtk.TreeModel |
Class / Namespace | Method / Signal / Properties |
---|---|
Gdaui.DataCellRendererInfo
Property |
store : Gdaui.DataStore
|
Gdaui.DataCellRendererInfo
Method |
new Gdaui.DataCellRendererInfo.c_new
(DataStore store, DataModelIter iter, SetGroup group)
:
Gdaui.DataCellRendererInfo
Create a new Gdaui.DataCellRendererInfo
|