docs: add docs for GtkTreeDragDestIface

This commit is contained in:
William Jon McCann 2014-01-20 23:19:55 -05:00
parent 094350df26
commit 4f8ae44594

View File

@ -93,10 +93,21 @@ gboolean gtk_tree_drag_source_drag_data_get (GtkTreeDragSource *drag_source,
typedef struct _GtkTreeDragDest GtkTreeDragDest; /* Dummy typedef */
typedef struct _GtkTreeDragDestIface GtkTreeDragDestIface;
/**
* GtkTreeDragDestIface:
* @drag_data_received: Asks the #GtkTreeDragDest to insert a row
* before the path dest, deriving the contents of the row from
* selection_data.
* @row_drop_possible: Determines whether a drop is possible before
* the given dest_path, at the same depth as dest_path.
*/
struct _GtkTreeDragDestIface
{
/*< private >*/
GTypeInterface g_iface;
/*< public >*/
/* VTable - not signals */
gboolean (* drag_data_received) (GtkTreeDragDest *drag_dest,