function "+" (W : Gtk_Tree_Drag_Dest) return Gtk_Tree_Drag_Dest
function Drag_Data_Received
(Self : Gtk_Tree_Drag_Dest;
Dest : Gtk.Tree_Model.Gtk_Tree_Path;
Selection_Data : Gtk.Selection_Data.Gtk_Selection_Data)
return Boolean
Asks the Gtk.Tree_Drag_Dest.Gtk_Tree_Drag_Dest to insert a row before the path Dest, deriving the contents of the row from Selection_Data. If Dest is outside the tree so that inserting before it is impossible, False will be returned. Also, False may be returned if the new row is not created for some model-specific reason. Should robustly handle a Dest no longer found in the model!
row to drop in front of
data to drop
whether a new row was created before position Dest
function Get_Type return Glib.GType
type Gtk_Tree_Drag_Dest is new Glib.Types.GType_Interface;
Null_Gtk_Tree_Drag_Dest : constant Gtk_Tree_Drag_Dest;
function Row_Drop_Possible
(Self : Gtk_Tree_Drag_Dest;
Dest_Path : Gtk.Tree_Model.Gtk_Tree_Path;
Selection_Data : Gtk.Selection_Data.Gtk_Selection_Data)
return Boolean
Determines whether a drop is possible before the given Dest_Path, at the same depth as Dest_Path. i.e., can we drop the data in Selection_Data at that location. Dest_Path does not have to exist; the return value will almost certainly be False if the parent of Dest_Path doesn't exist, though.
destination row
the data being dragged
True if a drop is possible before Dest_Path
procedure Set_Drag_Data_Received
(Self : Tree_Drag_Dest_Interface_Descr;
Handler : Virtual_Drag_Data_Received)
procedure Set_Row_Drop_Possible
(Self : Tree_Drag_Dest_Interface_Descr;
Handler : Virtual_Row_Drop_Possible)
See Glib.Object.Add_Interface
subtype Tree_Drag_Dest_Interface_Descr is Glib.Object.Interface_Description;
type Virtual_Drag_Data_Received is access function
(Self : Gtk_Tree_Drag_Dest;
Dest : System.Address;
Selection_Data : System.Address) return Glib.Gboolean;
Asks the Gtk.Tree_Drag_Dest.Gtk_Tree_Drag_Dest to insert a row before the path Dest, deriving the contents of the row from Selection_Data. If Dest is outside the tree so that inserting before it is impossible, False will be returned. Also, False may be returned if the new row is not created for some model-specific reason. Should robustly handle a Dest no longer found in the model!
row to drop in front of
data to drop
whether a new row was created before position Dest
type Virtual_Row_Drop_Possible is access function
(Self : Gtk_Tree_Drag_Dest;
Dest_Path : System.Address;
Selection_Data : System.Address) return Glib.Gboolean;
Determines whether a drop is possible before the given Dest_Path, at the same depth as Dest_Path. i.e., can we drop the data in Selection_Data at that location. Dest_Path does not have to exist; the return value will almost certainly be False if the parent of Dest_Path doesn't exist, though.
destination row
the data being dragged
True if a drop is possible before Dest_Path