gtk-sharpGtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details.GLib.ObjectGtk.TreeDragDestGtk.TreeDragSourceGtk.TreeModelGtk.TreeSortableSystem.Collections.IEnumerableThe ListStore is a columned list data structure to be used with widget.
Iteration: In new versions of Gtk# (2.0 and up) this class implements the interface, so code can be written like this:
void DumpColumnValues (ListStore store, int col)
{
foreach (object[] row in store)
Console.WriteLine ("Value of column {0} is {1}", col, row [col]);
}
ConstructorProtected constructor.ConstructorSystem.ParamArray
a Default constructor.Constructor
Pointer to the C object.
Internal constructorThis is an internal constructor, and should not be used by user code.ConstructorSystem.ParamArray
a Creates a new store. The columns' type specified by the argument.
ListStore ls = new ListStore (typeof (string), typeof (int), typeof (double));
...
The above example creates a new three columns list store. The types of the columns are , , and .MethodGtk.TreeIterAppends a new row to the ListStore.a that points to the new row.
The row will be empty before this function is called. To set the
value of the new row, use .
MethodGtk.TreeIter
a with as many elements as the ListStore has columns.
Appends a new row to the ListStore and puts the contents of in it.a pointing to the new rowMethodGtk.TreeIterSystem.ParamArray
a list , one item for each column of a row.
Appends a new row to the ListStore and puts the objects in in it.a pointing to the new rowMethodSystem.VoidEmits a event.MethodSystem.VoidRemoves all data from the store.PropertyGLib.GType[]The types in each column of a ListStore.a
This property is meant primarily for classes that
inherit from , and should
only be used when constructing a new . It will not function after a
row has been added or after a method on the interface has been called.
PropertyGtk.TreeIterCompareFuncThe function that will be used by default to sort columns.a MethodSystem.Boolean
A , the path of the data to delete.
When this ListStore is the data source for a drag operation and the drag operation is a move, this method runs to delete the data after the data has been received by the target widget.A , true if the operation succeeds.MethodSystem.Boolean
a
A Method used when this ListStore is part of a source widget
for a drag-and-drop operation; gets the data that was dragged from the
associated widget.A , true if the operation succeeded.MethodSystem.Boolean
A , the destination path of the drag
A , the data that was dragged
Drags data received into this object.A boolean, true if the data was successfully received.MethodSystem.Void
a
a Fires a event. Call this after changing a row so that the view widget for this ListStore will update.MethodSystem.Void
a to pass to the event.
Fires a event. MethodSystem.Void
a to pass to the event
a to pass to the event
Emits a event. This is meant to be called whenever the child state of a node changes.This is mandated by the , but it
shouldn't get used much for ListStores because they don't generally
have child nodes.MethodSystem.Void
a to pass to the event.
a see cref="T:Gtk.TreeIter" /> to pass to the event.
Fires a event. MethodSystem.Void
To be added.
To be added.
To be added.
To be added.To be added.PropertyGtk.TreeModelFlagsThe flags for this ListStore. A Flags are about the shape of this object's data; see the
class documentation for more details.MethodSystem.Void
A to run over every row.
Runs a method on every row of a ListStore.MethodGLib.GType
a , the column to check
Gets the type of data stored in column number .a MethodSystem.Collections.IEnumeratorReturns a for the current instance. The enumerated items are object arrays containing the column values for each row.A enumerating items of type []. If the elements of the current instance are modified while an enumeration is in progress, a call to or throws .MethodSystem.Boolean
a to set to point to the row.
a Gets an iterator object for the given .A , true if the row existsMethodSystem.Boolean
A to reset
Initializes with the first iterator in the ListStore (the top item).A , true if the operation is successful, false if the ListStore is empty.MethodSystem.Boolean
a to be set by this method
A path string
Marshals a path string into a object that points to a row in this tree.A , true if this string is a valid path for this ListStore.MethodGtk.TreePath
a Turns a specified by into a .a MethodSystem.Boolean
a , gets filled with the column number that's currently used for sorting
a , the current type of sort (ascending or descending)
Report on which column is currently being used to sort this ListStore.a , false if the default sort column for this ListStore is being used, true if some other sort column is being used.MethodSystem.String
a Marshals the given into a path string.a MethodSystem.Void
an object of type
a , pointer to the va_list data structure of arguments (FIXME: clarify what va_lists look like)
Gets the values of child properties for the row pointed to by .MethodSystem.Object
a , the row to look in
a , the column number to look in
Gets the data from row of column
.a MethodSystem.Void
a
a
a Gets the value of row of column
and puts it in .
PropertyGLib.GTypeGType Property.a Returns the native value for .PropertySystem.BooleanFind out whether this ListStore has a default sort function.a , true if there is a default
sort function.To set a default sort function, use the property.MethodGtk.TreeIter
a Inserts a new row at position .a pointing to the new row. If is larger than the number
of rows on the list, then the new row will be appended to the list.
The row will be empty before this function is called. To set the
value of the new row, use .
MethodGtk.TreeIter
a , the row to insert before
Inserts a new row after . If
is null, then the row will be appended
to the end of the list.
a that points to the new row
The row will be empty before this function is called. To set the
value of the new row, use .
MethodGtk.TreeIter
a , the row to insert before
Inserts a new row before . If
is null, then the row will be appended
to the end of the list.
a that points to the new row
The row will be empty before this function is called. To set the
value of the new row, use .
MethodGtk.TreeIterSystem.ParamArray
Insert position.
An array of column values to set.
Inserts a row into the store at a given position with column values.An iter pointing to the inserted row.The values provided should be in column order.MethodSystem.ObsoleteSystem.Int32
a
a
a
a To be addeda To be addedMethodSystem.Boolean
an object of type
Sets to point to the first child of .
an object of type ,
, if has been set to the first child.
If has no children,
is returned and is set to be invalid. will remain a valid
node after this function has been called.
If is returns the first node, equivalent to
gtk_tree_model_get_iter_first (tree_model, iter);MethodSystem.Boolean, an object that will be set to point to the first child.
a , the parent row.
A , true if has children.In general, this will return false, as ListStore isn't tree-shaped. However, if is , will return the list itself, since they're all children of the root.MethodSystem.Boolean
a Tests whether a given row has a child node.A , always false for ListStores.This is mandated by MethodSystem.Boolean
a Test whether is valid for this ListStore.a , true if is valid.WARNING: this method is slow and is only intended for
debugging/testing purposes.MethodSystem.Int32
Returns the number of children that the toplevel node has. Is used to retrieve the number of rows in the .
an object of type , the number of children of .As a special case, if is , then the number
of toplevel nodes is returned.MethodSystem.Int32
a Returns the number of children that has. If is null, as in the case of all ListStore objects, this will return the number of top-level items.a FIXME: Why does ListStore.custom call gtk_tree_model_iter_n_children?MethodSystem.Boolean
a Advances to the next row.a for whether the operation succeeded.MethodSystem.Boolean
a
a Sets to be the child of this ListStore, using the given index. The first index is 0. If is too big, or this ListStore has no rows, is set to an invalid iterator and false is returned. For ListStore objects, the th root node is set, since they don't have a tree-like structure.
a , true if has an th child.This is a custom binding for Gtk# which assumes that the current object is the parent. An alternate invocation form that parallels the C API is available.MethodSystem.Boolean
a
To be added.
a Sets to be the child of , using the given index. The first index is 0. If is too big, or has no children, is set to an invalid iterator and false is returned. will remain a valid node after this function has been called. As a special case, if is , then the th root node is set.
a , true if has an th child.This invocation form is closer to the underlying C API, but it's probably less useful for most C# purposes.MethodSystem.Boolean
a to set to point to the row.
a , the child row whose parent we want to get
Gets the parent row of .A , true if the parent exists. Since ListStore objects aren't tree-shaped, this will always return false.MethodSystem.Boolean
To be added.
To be added.To be added.To be added.MethodSystem.Void
a
a Move the row pointed to by to the
position after . If
is ,
will be moved to point to the start
of the list.
This only works in unsorted stores.MethodSystem.Void
a
a Move the row pointed to by to the
position before . If
is ,
will be moved to point to the end
of the list.
This only works in unsorted stores.PropertySystem.Int32The number of columns in this ListStore.A MethodGLib.DefaultSignalHandler(ConnectionMethod="OverrideRowChanged", Type=typeof(Gtk.ListStore))System.Void
a
a Default handler for the event.Override this method in a subclass to provide a default handler for the event.MethodGLib.DefaultSignalHandler(ConnectionMethod="OverrideRowDeleted", Type=typeof(Gtk.ListStore))System.Void
a Default handler for the event.Override this method in a subclass to provide a default handler for the event.MethodGLib.DefaultSignalHandler(ConnectionMethod="OverrideRowHasChildToggled", Type=typeof(Gtk.ListStore))System.Void
a
a Default handler for the event.Override this method in a subclass to provide a default handler for the event.MethodGLib.DefaultSignalHandler(ConnectionMethod="OverrideRowInserted", Type=typeof(Gtk.ListStore))System.Void
a
a Default handler for the event.Override this method in a subclass to provide a default handler for the event.MethodGLib.DefaultSignalHandler(ConnectionMethod="OverrideRowsReordered", Type=typeof(Gtk.ListStore))System.Void
Path to the reordered parent node.
Iter corresponding to the reordered parent node.
An array of the old indices.
Default handler for the RowsReordered event.MethodGLib.DefaultSignalHandler(ConnectionMethod="OverrideSortColumnChanged", Type=typeof(Gtk.ListStore))System.VoidDefault handler for the event.Override this method in a subclass to provide a default handler for the event.MethodGtk.TreeIterAdds a new row to the beginning of the list.a pointing to the new row.
The row will be empty before this function is called. To set the
value of the new row, use .
MethodSystem.Void
a Lets the ListStore reference the row pointed to by . 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.MethodSystem.Boolean
a Removes a row from the store.a After being removed, is set to be the next valid row, or invalidated if it pointed to the last row in the store.MethodSystem.Void
To be added.
To be added.To be added.EventGLib.Signal("row-changed")Gtk.RowChangedHandlerRaised when a row has changed.EventGLib.Signal("row-deleted")Gtk.RowDeletedHandlerRaised when a row is deleted.MethodSystem.Boolean
a Returns whether or not a given row can be dragged.A boolean, true if the row is draggable.MethodSystem.Boolean
A
A Returns true if the row at can
have dropped on it.A boolean.EventGLib.Signal("row-has-child-toggled")Gtk.RowHasChildToggledHandlerRaised when the display of a given row's children is toggled.EventGLib.Signal("row-inserted")Gtk.RowInsertedHandlerRaised when a row of data is inserted.EventGLib.Signal("rows_reordered")Gtk.RowsReorderedHandlerRaised when the order of rows has changed.MethodSystem.Void
A , the column number to sort by.
A Sets the column number to sort by.MethodSystem.Void
A for the column number.
A Sets a sort function to be used for the column .MethodSystem.Void
an object of type
a , pointer to the va_list data structure of arguments (FIXME: clarify what va_lists look like)
Sets the values of child properties for the row pointed to by .MethodSystem.Void
a
a , the column number
a Sets the value of the specified column in the row pointed by .The type of specified column must be a .MethodSystem.Void
a
a
a Sets the value of the specified column in the row pointed by iter.The type of specified column must be a .MethodSystem.Void
a
a
a Sets the value of the specified column in the row pointed by iter.The type of specified column must be a .MethodSystem.Void
a
a
a Sets the value of the specified column in the row pointed by iter.The type of specified column must be an .MethodSystem.Void
a
a
a Sets the value of the specified column in the row pointed by iter.The type of specified column must be an .MethodSystem.Void
a
a
a Sets the value of the specified column in the row pointed by iter.The type of specified column must be an MethodSystem.Void
a
a
a Sets the value of the specified column in the row pointed by iter.The type of specified column must be a .MethodSystem.Void
a
a
a Sets the value of the specified column in the row pointed by iter.The type of specified column must be an .MethodSystem.VoidSystem.ParamArray
Update position.
An array of column values to set.
Sets the column values for a given row.The values provided must be in column order.EventGLib.Signal("sort-column-changed")System.EventHandlerRaised when the sorting column has changed.MethodSystem.Void
a
a Swaps rows a and b in the store.This is only works in unsorted stores.MethodSystem.Void
a Lets the ListStore unref the row at .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
. Please note that
nodes that are deleted are not unreffed.