GtkListStore


Documentation

A list-like data structure that can be used with GtkTreeView and GtkComboBox.

Example:

GtkListStore new: {String. Integer. Float}

 


 

GtkListStore class

new: anArray

Create a GtkListStore which holds the given list of types.

 

GtkListStore

subclasses: GObject

append

Append a new row to the GtkListStore

 

append: anArray

Convenience method to append an array of objects to the list.

 

at: aGtkTreeIter put: anArray

Set anArray of values in the given row.

Example:

listStore at: listStore append put: {'one'. 2. 'three'}"