procedure Destroy (Data : in out User_Data_Type)
type Gtk_Tree_View_Mapping_Func is access procedure
(Tree_View : not null access Gtk.Tree_View.Gtk_Tree_View_Record'Class;
Path : Gtk.Tree_Model.Gtk_Tree_Path;
User_Data : User_Data_Type);
Function used for Gtk.Tree_View.Map_Expanded_Rows.
A Gtk.Tree_View.Gtk_Tree_View
The path that's expanded
user data
procedure Map_Expanded_Rows
(Tree_View : not null access Gtk.Tree_View.Gtk_Tree_View_Record'Class;
Func : Gtk_Tree_View_Mapping_Func;
Data : User_Data_Type)
Calls Func on all expanded rows.
A function to be called
User data to be passed to the function.
type User_Data_Type (<>) is private;