A list-like data structure that can be used with GtkTreeView and GtkComboBox.
Example:
| GtkListStore new: {String. Integer. Float} |
new: anArray
Create a GtkListStore which holds the given list of types.
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'}" |
Comments (0)
You don't have permission to comment on this page.