| 
  • If you are citizen of an European Union member nation, you may not use this service unless you are at least 16 years old.

  • You already know Dokkio is an AI-powered assistant to organize & manage your digital files & messages. Very soon, Dokkio will support Outlook as well as One Drive. Check it out today!

View
 

GtkListStore

Page history last edited by PBworks 17 years, 10 months ago

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'}"

Comments (0)

You don't have permission to comment on this page.