Gtk.List_Store

Entities

Tagged Types

Access Types

Subprograms

Generic Instantiations

Description

The Gtk.List_Store.Gtk_List_Store object is a list model for use with a Gtk.Tree_View.Gtk_Tree_View widget. It implements the Gtk.Tree_Model.Gtk_Tree_Model interface, and consequentialy, can use all of the methods available there. It also implements the Gtk.Tree_Sortable.Gtk_Tree_Sortable interface so it can be sorted by the view. Finally, it also implements the tree [drag and drop][gtk3-GtkTreeView-drag-and-drop] interfaces.

The Gtk.List_Store.Gtk_List_Store can accept most GObject types as a column type, though it can't accept all custom types. Internally, it will keep a copy of data passed in (such as a string or a boxed pointer). Columns that accept GObjects are handled a little differently. The Gtk.List_Store.Gtk_List_Store will keep a reference to the object instead of copying the value. As a result, if the object is modified, it is up to the application writer to call Gtk.Tree_Model.Row_Changed to emit the Gtk.Tree_Model.Gtk_Tree_Model::row_changed signal. This most commonly affects lists with Gdk_Pixbufs stored.

An example for creating a simple list store:

enum {
  COLUMN_STRING,
  COLUMN_INT,
  COLUMN_BOOLEAN,
  N_COLUMNS
};

{
  GtkListStore *list_store;
  GtkTreePath *path;
  GtkTreeIter iter;
  gint i;

  list_store = gtk_list_store_new (N_COLUMNS,
                                   G_TYPE_STRING,
                                   G_TYPE_INT,
                                   G_TYPE_BOOLEAN);

  for (i = 0; i < 10; i++)
    {
      gchar *some_data;

      some_data = get_some_data (i);

      // Add a new row to the model
      gtk_list_store_append (list_store, &iter);
      gtk_list_store_set (list_store, &iter,
                          COLUMN_STRING, some_data,
                          COLUMN_INT, i,
                          COLUMN_BOOLEAN,  FALSE,
                          -1);

      // As the store will keep a copy of the string internally,
      // we free some_data.
      g_free (some_data);
    }

  // Modify a particular row
  path = gtk_tree_path_new_from_string ("4");
  gtk_tree_model_get_iter (GTK_TREE_MODEL (list_store),
                           &iter,
                           path);
  gtk_tree_path_free (path);
  gtk_list_store_set (list_store, &iter,
                      COLUMN_BOOLEAN, TRUE,
                      -1);
}

# Performance Considerations

Internally, the Gtk.List_Store.Gtk_List_Store was implemented with a linked list with a tail pointer prior to GTK+ 2.6. As a result, it was fast at data insertion and deletion, and not fast at random data access. The Gtk.List_Store.Gtk_List_Store sets the GTK_TREE_MODEL_ITERS_PERSIST flag, which means that Gtk_Tree_Iters can be cached while the row exists. Thus, if access to a particular row is needed often and your code is expected to run on older versions of GTK+, it is worth keeping the iter around.

# Atomic Operations

It is important to note that only the methods gtk_list_store_insert_with_values and gtk_list_store_insert_with_valuesv are atomic, in the sense that the row is being appended to the store and the values filled in in a single operation with regard to Gtk.Tree_Model.Gtk_Tree_Model signaling. In contrast, using e.g. Gtk.List_Store.Append and then gtk_list_store_set will first create a row, which triggers the Gtk.Tree_Model.Gtk_Tree_Model::row-inserted signal on Gtk.List_Store.Gtk_List_Store. The row, however, is still empty, and any signal handler connecting to Gtk.Tree_Model.Gtk_Tree_Model::row-inserted on this particular store should be prepared for the situation that the row might be empty. This is especially important if you are wrapping the Gtk.List_Store.Gtk_List_Store inside a Gtk.Tree_Model_Filter.Gtk_Tree_Model_Filter and are using a Gtk_Tree_Model_Filter_Visible_Func. Using any of the non-atomic operations to append rows to the Gtk.List_Store.Gtk_List_Store will cause the Gtk_Tree_Model_Filter_Visible_Func to be visited with an empty row first; the function must be prepared for that.

# GtkListStore as GtkBuildable

The GtkListStore 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.

Additionally, it is possible to specify content for the list store in the UI definition, with the <data> element. It can contain multiple <row> elements, each specifying to content for one row of the list model. Inside a <row>, the <col> elements specify the content for individual cells.

Note that it is probably more common to define your models in the code, and one might consider it a layering violation to specify the content of a list store in a UI definition, data, not presentation, and common wisdom is to separate the two, as far as possible.

An example of a UI Definition fragment for a list store:

<object class="GtkListStore">
  <columns>
    <column type="gchararray"/>
    <column type="gchararray"/>
    <column type="gint"/>
  </columns>
  <data>
    <row>
      <col id="0">John</col>
      <col id="1">Doe</col>
      <col id="2">25</col>
    </row>
    <row>
      <col id="0">Johan</col>
      <col id="1">Dahlin</col>
      <col id="2">50</col>
    </row>
  </data>
</object>

"+"

function "+"
  (Widget : access Gtk_List_Store_Record'Class)
return Gtk.Buildable.Gtk_Buildable
Parameters
Widget
Return Value

"+"

function "+"
  (Widget : access Gtk_List_Store_Record'Class)
return Gtk.Tree_Drag_Dest.Gtk_Tree_Drag_Dest
Parameters
Widget
Return Value

"+"

function "+"
  (Widget : access Gtk_List_Store_Record'Class)
return Gtk.Tree_Drag_Source.Gtk_Tree_Drag_Source
Parameters
Widget
Return Value

"+"

function "+"
  (Widget : access Gtk_List_Store_Record'Class)
return Gtk.Tree_Model.Gtk_Tree_Model
Parameters
Widget
Return Value

"+"

function "+"
  (Widget : access Gtk_List_Store_Record'Class)
return Gtk.Tree_Sortable.Gtk_Tree_Sortable
Parameters
Widget
Return Value

"-"

function "-"
  (Interf : Gtk.Buildable.Gtk_Buildable)
return Gtk_List_Store
Parameters
Interf
Return Value

"-"

function "-"
  (Interf : Gtk.Tree_Drag_Dest.Gtk_Tree_Drag_Dest)
return Gtk_List_Store
Parameters
Interf
Return Value

"-"

function "-"
  (Interf : Gtk.Tree_Drag_Source.Gtk_Tree_Drag_Source)
return Gtk_List_Store
Parameters
Interf
Return Value

"-"

function "-"
  (Interf : Gtk.Tree_Model.Gtk_Tree_Model)
return Gtk_List_Store
Parameters
Interf
Return Value

"-"

function "-"
  (Interf : Gtk.Tree_Sortable.Gtk_Tree_Sortable)
return Gtk_List_Store
Parameters
Interf
Return Value

Append

procedure Append
   (List_Store : not null access Gtk_List_Store_Record;
    Iter       : out Gtk.Tree_Model.Gtk_Tree_Iter)

Appends a new row to List_Store. Iter will be changed to point to this new row. The row will be empty after this function is called. To fill in values, you need to call gtk_list_store_set or Gtk.List_Store.Set_Value.

Parameters
List_Store
Iter

An unset Gtk.Tree_Model.Gtk_Tree_Iter to set to the appended row

Children

function Children
   (Tree_Model : not null access Gtk_List_Store_Record;
    Parent     : Gtk.Tree_Model.Gtk_Tree_Iter)
    return Gtk.Tree_Model.Gtk_Tree_Iter
Parameters
Tree_Model
Parent
Return Value

Clear

procedure Clear (List_Store : not null access Gtk_List_Store_Record)

Removes all rows from the list store.

Parameters
List_Store

Drag_Data_Delete

function Drag_Data_Delete
   (Self : not null access Gtk_List_Store_Record;
    Path : Gtk.Tree_Model.Gtk_Tree_Path) return Boolean
Parameters
Self
Path
Return Value

Drag_Data_Get

function Drag_Data_Get
   (Self           : not null access Gtk_List_Store_Record;
    Path           : Gtk.Tree_Model.Gtk_Tree_Path;
    Selection_Data : Gtk.Selection_Data.Gtk_Selection_Data)
    return Boolean
Parameters
Self
Path
Selection_Data
Return Value

Drag_Data_Received

function Drag_Data_Received
   (Self           : not null access Gtk_List_Store_Record;
    Dest           : Gtk.Tree_Model.Gtk_Tree_Path;
    Selection_Data : Gtk.Selection_Data.Gtk_Selection_Data)
    return Boolean
Parameters
Self
Dest
Selection_Data
Return Value

Foreach

procedure Foreach
   (Tree_Model : not null access Gtk_List_Store_Record;
    Func       : Gtk_Tree_Model_Foreach_Func)

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.

Parameters
Tree_Model
Func

a function to be called on each row

Get_Column_Type

function Get_Column_Type
   (Tree_Model : not null access Gtk_List_Store_Record;
    Index      : Glib.Gint) return GType
Parameters
Tree_Model
Index
Return Value

Get_Flags

function Get_Flags
   (Tree_Model : not null access Gtk_List_Store_Record)
    return Gtk.Tree_Model.Tree_Model_Flags
Parameters
Tree_Model
Return Value

Get_Iter

function Get_Iter
   (Tree_Model : not null access Gtk_List_Store_Record;
    Path       : Gtk.Tree_Model.Gtk_Tree_Path)
    return Gtk.Tree_Model.Gtk_Tree_Iter
Parameters
Tree_Model
Path
Return Value

Get_Iter_First

function Get_Iter_First
   (Tree_Model : not null access Gtk_List_Store_Record)
    return Gtk.Tree_Model.Gtk_Tree_Iter
Parameters
Tree_Model
Return Value

Get_Iter_From_String

function Get_Iter_From_String
   (Tree_Model  : not null access Gtk_List_Store_Record;
    Path_String : UTF8_String) return Gtk.Tree_Model.Gtk_Tree_Iter
Parameters
Tree_Model
Path_String
Return Value

Get_N_Columns

function Get_N_Columns
   (Tree_Model : not null access Gtk_List_Store_Record) return Glib.Gint
Parameters
Tree_Model
Return Value

Get_Path

function Get_Path
   (Tree_Model : not null access Gtk_List_Store_Record;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter)
    return Gtk.Tree_Model.Gtk_Tree_Path
Parameters
Tree_Model
Iter
Return Value

Get_Sort_Column_Id

procedure Get_Sort_Column_Id
   (Sortable       : not null access Gtk_List_Store_Record;
    Sort_Column_Id : out Glib.Gint;
    Order          : out Gtk.Enums.Gtk_Sort_Type)
Parameters
Sortable
Sort_Column_Id
Order

Get_String_From_Iter

function Get_String_From_Iter
   (Tree_Model : not null access Gtk_List_Store_Record;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter) return UTF8_String
Parameters
Tree_Model
Iter
Return Value

Get_Type

function Get_Type return Glib.GType
Return Value

Get_Value

procedure Get_Value
   (Tree_Model : not null access Gtk_List_Store_Record;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter;
    Column     : Glib.Gint;
    Value      : out Glib.Values.GValue)
Parameters
Tree_Model
Iter
Column
Value

Gtk_List_Store

type Gtk_List_Store is access all Gtk_List_Store_Record'Class;

Gtk_List_Store_Newv

function Gtk_List_Store_Newv (Types : GType_Array) return Gtk_List_Store

Non-vararg creation function. Used primarily by language bindings.

Parameters
Types

an array of GType types for the columns, from first to last

Return Value

Gtk_List_Store_Record

type Gtk_List_Store_Record is new Gtk_Root_Tree_Model_Record with null record;

Gtk_New

procedure Gtk_New (List_Store : out Gtk_List_Store; Types : GType_Array)

Non-vararg creation function. Used primarily by language bindings. Initialize does nothing if the object was already created with another call to Initialize* or G_New.

Parameters
List_Store
Types

an array of GType types for the columns, from first to last

Gtk_Tree_Iter_Compare_Func

type Gtk_Tree_Iter_Compare_Func is access function
  (Model : Gtk.Tree_Model.Gtk_Tree_Model;
   A     : Gtk.Tree_Model.Gtk_Tree_Iter;
   B     : Gtk.Tree_Model.Gtk_Tree_Iter) return Glib.Gint;

A GtkTreeIterCompareFunc should return a negative integer, zero, or a positive integer if A sorts before B, A sorts with B, or A sorts after B respectively. If two iters compare as equal, their order in the sorted model is undefined. In order to ensure that the Gtk.Tree_Sortable.Gtk_Tree_Sortable behaves as expected, the GtkTreeIterCompareFunc must define a partial order on the model, i.e. it must be reflexive, antisymmetric and transitive. For example, if Model is a product catalogue, then a compare function for the "price" column could be one which returns price_of(A) - price_of(B).

Parameters
Model

The Gtk.Tree_Model.Gtk_Tree_Model the comparison is within

A

A Gtk.Tree_Model.Gtk_Tree_Iter in Model

B

Another Gtk.Tree_Model.Gtk_Tree_Iter in Model

Return Value

a negative integer, zero or a positive integer depending on whether A sorts before, with or after B

Gtk_Tree_Model_Foreach_Func

type Gtk_Tree_Model_Foreach_Func is access function
  (Model : Gtk.Tree_Model.Gtk_Tree_Model;
   Path  : Gtk.Tree_Model.Gtk_Tree_Path;
   Iter  : Gtk.Tree_Model.Gtk_Tree_Iter) return Boolean;

Type of the callback passed to Gtk.Tree_Model.Foreach to iterate over the rows in a tree model.

Parameters
Model

the Gtk.Tree_Model.Gtk_Tree_Model being iterated

Path

the current Gtk.Tree_Model.Gtk_Tree_Path

Iter

the current Gtk.Tree_Model.Gtk_Tree_Iter

Return Value

True to stop iterating, False to continue

Has_Child

function Has_Child
   (Tree_Model : not null access Gtk_List_Store_Record;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter) return Boolean
Parameters
Tree_Model
Iter
Return Value

Has_Default_Sort_Func

function Has_Default_Sort_Func
   (Sortable : not null access Gtk_List_Store_Record) return Boolean
Parameters
Sortable
Return Value

Implements_Gtk_Buildable

package Implements_Gtk_Buildable is new Glib.Types.Implements
  (Gtk.Buildable.Gtk_Buildable, Gtk_List_Store_Record, Gtk_List_Store);

Implements_Gtk_Tree_Drag_Dest

package Implements_Gtk_Tree_Drag_Dest is new Glib.Types.Implements
  (Gtk.Tree_Drag_Dest.Gtk_Tree_Drag_Dest, Gtk_List_Store_Record, Gtk_List_Store);

Implements_Gtk_Tree_Drag_Source

package Implements_Gtk_Tree_Drag_Source is new Glib.Types.Implements
  (Gtk.Tree_Drag_Source.Gtk_Tree_Drag_Source, Gtk_List_Store_Record, Gtk_List_Store);

Implements_Gtk_Tree_Model

package Implements_Gtk_Tree_Model is new Glib.Types.Implements
  (Gtk.Tree_Model.Gtk_Tree_Model, Gtk_List_Store_Record, Gtk_List_Store);

Implements_Gtk_Tree_Sortable

package Implements_Gtk_Tree_Sortable is new Glib.Types.Implements
  (Gtk.Tree_Sortable.Gtk_Tree_Sortable, Gtk_List_Store_Record, Gtk_List_Store);

Initialize

procedure Initialize
   (List_Store : not null access Gtk_List_Store_Record'Class;
    Types      : GType_Array)

Non-vararg creation function. Used primarily by language bindings. Initialize does nothing if the object was already created with another call to Initialize* or G_New.

Parameters
List_Store
Types

an array of GType types for the columns, from first to last

Insert

procedure Insert
   (List_Store : not null access Gtk_List_Store_Record;
    Iter       : out Gtk.Tree_Model.Gtk_Tree_Iter;
    Position   : Glib.Gint)

Creates a new row at Position. Iter will be changed to point to this new row. If Position is -1 or 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 after this function is called. To fill in values, you need to call gtk_list_store_set or Gtk.List_Store.Set_Value.

Parameters
List_Store
Iter

An unset Gtk.Tree_Model.Gtk_Tree_Iter to set to the new row

Position

position to insert the new row, or -1 for last

Insert_After

procedure Insert_After
   (List_Store : not null access Gtk_List_Store_Record;
    Iter       : out Gtk.Tree_Model.Gtk_Tree_Iter;
    Sibling    : Gtk.Tree_Model.Gtk_Tree_Iter)

Inserts a new row after Sibling. If Sibling is null, then the row will be prepended to the beginning of the list. Iter will be changed to point to this new row. The row will be empty after this function is called. To fill in values, you need to call gtk_list_store_set or Gtk.List_Store.Set_Value.

Parameters
List_Store
Iter

An unset Gtk.Tree_Model.Gtk_Tree_Iter to set to the new row

Sibling

A valid Gtk.Tree_Model.Gtk_Tree_Iter, or null

Insert_Before

procedure Insert_Before
   (List_Store : not null access Gtk_List_Store_Record;
    Iter       : out Gtk.Tree_Model.Gtk_Tree_Iter;
    Sibling    : Gtk.Tree_Model.Gtk_Tree_Iter)

Inserts a new row before Sibling. If Sibling is null, then the row will be appended to the end of the list. Iter will be changed to point to this new row. The row will be empty after this function is called. To fill in values, you need to call gtk_list_store_set or Gtk.List_Store.Set_Value.

Parameters
List_Store
Iter

An unset Gtk.Tree_Model.Gtk_Tree_Iter to set to the new row

Sibling

A valid Gtk.Tree_Model.Gtk_Tree_Iter, or null

Iter_Is_Valid

function Iter_Is_Valid
   (List_Store : not null access Gtk_List_Store_Record;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter) return Boolean

> This function is slow. Only use it for debugging and/or testing > purposes. Checks if the given iter is a valid iter for this Gtk.List_Store.Gtk_List_Store. Since: gtk+ 2.2

Parameters
List_Store
Iter

A Gtk.Tree_Model.Gtk_Tree_Iter.

Return Value

True if the iter is valid, False if the iter is invalid.

Move_After

procedure Move_After
   (List_Store : not null access Gtk_List_Store_Record;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter;
    Position   : Gtk.Tree_Model.Gtk_Tree_Iter)

Moves Iter in Store to the position after Position. Note that this function only works with unsorted stores. If Position is null, Iter will be moved to the start of the list. Since: gtk+ 2.2

Parameters
List_Store
Iter

A Gtk.Tree_Model.Gtk_Tree_Iter.

Position

A Gtk.Tree_Model.Gtk_Tree_Iter or null.

Move_Before

procedure Move_Before
   (List_Store : not null access Gtk_List_Store_Record;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter;
    Position   : Gtk.Tree_Model.Gtk_Tree_Iter)

Moves Iter in Store to the position before Position. Note that this function only works with unsorted stores. If Position is null, Iter will be moved to the end of the list. Since: gtk+ 2.2

Parameters
List_Store
Iter

A Gtk.Tree_Model.Gtk_Tree_Iter.

Position

A Gtk.Tree_Model.Gtk_Tree_Iter, or null.

N_Children

function N_Children
   (Tree_Model : not null access Gtk_List_Store_Record;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter := Gtk.Tree_Model.Null_Iter)
    return Glib.Gint
Parameters
Tree_Model
Iter
Return Value

Next

procedure Next
   (Tree_Model : not null access Gtk_List_Store_Record;
    Iter       : in out Gtk.Tree_Model.Gtk_Tree_Iter)
Parameters
Tree_Model
Iter

Nth_Child

function Nth_Child
   (Tree_Model : not null access Gtk_List_Store_Record;
    Parent     : Gtk.Tree_Model.Gtk_Tree_Iter;
    N          : Glib.Gint) return Gtk.Tree_Model.Gtk_Tree_Iter
Parameters
Tree_Model
Parent
N
Return Value

Parent

function Parent
   (Tree_Model : not null access Gtk_List_Store_Record;
    Child      : Gtk.Tree_Model.Gtk_Tree_Iter)
    return Gtk.Tree_Model.Gtk_Tree_Iter
Parameters
Tree_Model
Child
Return Value

Prepend

procedure Prepend
   (List_Store : not null access Gtk_List_Store_Record;
    Iter       : out Gtk.Tree_Model.Gtk_Tree_Iter)

Prepends a new row to List_Store. Iter will be changed to point to this new row. The row will be empty after this function is called. To fill in values, you need to call gtk_list_store_set or Gtk.List_Store.Set_Value.

Parameters
List_Store
Iter

An unset Gtk.Tree_Model.Gtk_Tree_Iter to set to the prepend row

Previous

procedure Previous
   (Tree_Model : not null access Gtk_List_Store_Record;
    Iter       : in out Gtk.Tree_Model.Gtk_Tree_Iter)
Parameters
Tree_Model
Iter

Ref_Node

procedure Ref_Node
   (Tree_Model : not null access Gtk_List_Store_Record;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter)
Parameters
Tree_Model
Iter

Remove

procedure Remove
   (List_Store : not null access Gtk_List_Store_Record;
    Iter       : in out Gtk.Tree_Model.Gtk_Tree_Iter)

Removes the given row from the list store. After being removed, Iter is set to be the next valid row, or invalidated if it pointed to the last row in List_Store.

Parameters
List_Store
Iter

A valid Gtk.Tree_Model.Gtk_Tree_Iter

Reorder

procedure Reorder
   (List_Store : not null access Gtk_List_Store_Record;
    New_Order  : Gint_Array)

Reorders Store to follow the order indicated by New_Order. Note that this function only works with unsorted stores. Since: gtk+ 2.2

Parameters
List_Store
New_Order

an array of integers mapping the new position of each child to its old position before the re-ordering, i.e. New_Order[newpos] = oldpos. It must have exactly as many items as the list store's length.

Row_Changed

procedure Row_Changed
   (Tree_Model : not null access Gtk_List_Store_Record;
    Path       : Gtk.Tree_Model.Gtk_Tree_Path;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter)
Parameters
Tree_Model
Path
Iter

Row_Deleted

procedure Row_Deleted
   (Tree_Model : not null access Gtk_List_Store_Record;
    Path       : Gtk.Tree_Model.Gtk_Tree_Path)
Parameters
Tree_Model
Path

Row_Draggable

function Row_Draggable
   (Self : not null access Gtk_List_Store_Record;
    Path : Gtk.Tree_Model.Gtk_Tree_Path) return Boolean
Parameters
Self
Path
Return Value

Row_Drop_Possible

function Row_Drop_Possible
   (Self           : not null access Gtk_List_Store_Record;
    Dest_Path      : Gtk.Tree_Model.Gtk_Tree_Path;
    Selection_Data : Gtk.Selection_Data.Gtk_Selection_Data)
    return Boolean
Parameters
Self
Dest_Path
Selection_Data
Return Value

Row_Has_Child_Toggled

procedure Row_Has_Child_Toggled
   (Tree_Model : not null access Gtk_List_Store_Record;
    Path       : Gtk.Tree_Model.Gtk_Tree_Path;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter)
Parameters
Tree_Model
Path
Iter

Row_Inserted

procedure Row_Inserted
   (Tree_Model : not null access Gtk_List_Store_Record;
    Path       : Gtk.Tree_Model.Gtk_Tree_Path;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter)
Parameters
Tree_Model
Path
Iter

Rows_Reordered

procedure Rows_Reordered
   (Tree_Model : not null access Gtk_List_Store_Record;
    Path       : Gtk.Tree_Model.Gtk_Tree_Path;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter;
    New_Order  : Gint_Array)
Parameters
Tree_Model
Path
Iter
New_Order

Rows_Reordered_With_Length

procedure Rows_Reordered_With_Length
   (Tree_Model : not null access Gtk_List_Store_Record;
    Path       : Gtk.Tree_Model.Gtk_Tree_Path;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter;
    New_Order  : Gint_Array;
    Length     : Glib.Gint)
Parameters
Tree_Model
Path
Iter
New_Order
Length

Set

procedure Set
  (Tree_Store : access Gtk_List_Store_Record;
   Iter       : Gtk.Tree_Model.Gtk_Tree_Iter;
   Column     : Gint;
   Value      : Gdk.Pixbuf.Gdk_Pixbuf)
Parameters
Tree_Store
Iter
Column
Value

Set

procedure Set
  (Tree_Store : access Gtk_List_Store_Record;
   Iter       : Gtk.Tree_Model.Gtk_Tree_Iter;
   Column     : Gint;
   Value      : Gint)
Parameters
Tree_Store
Iter
Column
Value

Set

procedure Set
  (Tree_Store : access Gtk_List_Store_Record;
   Iter       : Gtk.Tree_Model.Gtk_Tree_Iter;
   Column     : Gint;
   Value      : UTF8_String)
Parameters
Tree_Store
Iter
Column
Value

Set

procedure Set
  (Tree_Store : access Gtk_List_Store_Record;
   Iter       : Gtk.Tree_Model.Gtk_Tree_Iter;
   Column     : Gint;
   Value      : Boolean)
Parameters
Tree_Store
Iter
Column
Value

Set

procedure Set
  (Self       : not null access Gtk_List_Store_Record;
   Iter       : Gtk.Tree_Model.Gtk_Tree_Iter;
   Columns    : Glib.Gint_Array;
   Values     : Glib.Values.GValue_Array)

A variant of Set which takes the columns and valus as two arrays. This is more efficient when changing multiple values than calling one of the Set procedures above multiple times.

Parameters
Self
Iter
Columns
Values

Set

procedure Set
  (Self       : not null access Gtk_List_Store_Record;
   Iter       : Gtk.Tree_Model.Gtk_Tree_Iter;
   Values     : Glib.Values.GValue_Array)

A variant of the above that is used to set all the columns.

Parameters
Self
Iter
Values

Set_Column_Types

procedure Set_Column_Types
   (List_Store : not null access Gtk_List_Store_Record;
    Types      : GType_Array)

This function is meant primarily for GObjects that inherit from Gtk.List_Store.Gtk_List_Store, and should only be used when constructing a new Gtk.List_Store.Gtk_List_Store. It will not function after a row has been added, or a method on the Gtk.Tree_Model.Gtk_Tree_Model interface is called.

Parameters
List_Store
Types

An array length n of GTypes

Set_Default_Sort_Func

procedure Set_Default_Sort_Func
   (Sortable  : not null access Gtk_List_Store_Record;
    Sort_Func : Gtk_Tree_Iter_Compare_Func)

Sets the default comparison function used when sorting to be Sort_Func. If the current sort column id of Sortable is GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID, then the model will sort using this function. If Sort_Func is null, then there will be no default comparison function. This means that once the model has been sorted, it can't go back to the default state. In this case, when the current sort column id of Sortable is GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID, the model will be unsorted.

Parameters
Sortable
Sort_Func

The comparison function

Set_Sort_Column_Id

procedure Set_Sort_Column_Id
   (Sortable       : not null access Gtk_List_Store_Record;
    Sort_Column_Id : Glib.Gint;
    Order          : Gtk.Enums.Gtk_Sort_Type)
Parameters
Sortable
Sort_Column_Id
Order

Set_Sort_Func

procedure Set_Sort_Func
   (Sortable       : not null access Gtk_List_Store_Record;
    Sort_Column_Id : Glib.Gint;
    Sort_Func      : Gtk_Tree_Iter_Compare_Func)

Sets the comparison function used when sorting to be Sort_Func. If the current sort column id of Sortable is the same as Sort_Column_Id, then the model will sort using this function.

Parameters
Sortable
Sort_Column_Id

the sort column id to set the function for

Sort_Func

The comparison function

Set_Value

procedure Set_Value
   (List_Store : not null access Gtk_List_Store_Record;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter;
    Column     : Glib.Gint;
    Value      : Glib.Values.GValue)

Sets the data in the cell specified by Iter and Column. The type of Value must be convertible to the type of the column.

Parameters
List_Store
Iter

A valid Gtk.Tree_Model.Gtk_Tree_Iter for the row being modified

Column

column number to modify

Value

new value for the cell

Sort_Column_Changed

procedure Sort_Column_Changed
   (Sortable : not null access Gtk_List_Store_Record)
Parameters
Sortable

Swap

procedure Swap
   (List_Store : not null access Gtk_List_Store_Record;
    A          : Gtk.Tree_Model.Gtk_Tree_Iter;
    B          : Gtk.Tree_Model.Gtk_Tree_Iter)

Swaps A and B in Store. Note that this function only works with unsorted stores. Since: gtk+ 2.2

Parameters
List_Store
A

A Gtk.Tree_Model.Gtk_Tree_Iter.

B

Another Gtk.Tree_Model.Gtk_Tree_Iter.

Unref_Node

procedure Unref_Node
   (Tree_Model : not null access Gtk_List_Store_Record;
    Iter       : Gtk.Tree_Model.Gtk_Tree_Iter)
Parameters
Tree_Model
Iter