Index

Package: Row_Data (generic)

Description

generic
      --  
      type Data_Type (<>) is private;
      --  
   package Row_Data is

Types

Data_Type

type Data_Type (<>) is private;
<doc_ignore>

Subprograms & Entries

Get

function Get 
(Object: access Gtk_Clist_Record'Class;
Row: in Gint) return Data_Type;
Get the data associated to a specific row.

Get

function Get 
(Object: access Gtk_Clist_Record'Class;
Row: in Gtk_Clist_Row) return Data_Type;
Same as above, but acts directly on a row obtained through Get_Row_List. This is faster for big lists.

Set

procedure Set 
(Object: access Gtk_Clist_Record'Class;
Row: in Gint;
Data: in Data_Type);
Modify the data associated with a row

Set

procedure Set 
(Object: access Gtk_Clist_Record'Class;
Row: in Gtk_Clist_Row;
Data: in Data_Type);
Same as above but acts directly on a row obtained through Get_Row_List. This is faster for big lists.