diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-08-25 00:33:30 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-08-25 00:33:30 +0800 |
commit | f7120120cdd3c8bdfdc201a2bbcff847fa198d0b (patch) | |
tree | ce4b10fd342f9cb159b248f8acb0af59f13f5d1d /widgets/table/e-table-group.h | |
parent | 6c727437ab876b07d1095cc1ac45ad1d0e706c16 (diff) | |
download | gsoc2013-evolution-f7120120cdd3c8bdfdc201a2bbcff847fa198d0b.tar.gz gsoc2013-evolution-f7120120cdd3c8bdfdc201a2bbcff847fa198d0b.tar.zst gsoc2013-evolution-f7120120cdd3c8bdfdc201a2bbcff847fa198d0b.zip |
Added start_drag signals.
2001-08-24 Christopher James Lahey <clahey@ximian.com>
* e-table-group-container.c, e-table-group-leaf.c,
e-table-group-leaf.h, e-table-group.c, e-table-group.h: Added
start_drag signals.
* e-table-item.c, e-table-item.h (eti_event): Send the start_drag
signal. Fixes Ximian bug #807.
* e-table.c, e-table.h, e-tree.c, e-tree.h: Added start_drag
signal. Made default handler start drag & drop if we're set to
automatically handle dnd. Ripped out the code to handle watching
events for dnd since start_drag does this now.
svn path=/trunk/; revision=12437
Diffstat (limited to 'widgets/table/e-table-group.h')
-rw-r--r-- | widgets/table/e-table-group.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/widgets/table/e-table-group.h b/widgets/table/e-table-group.h index 18866b7ad5..3e7e842894 100644 --- a/widgets/table/e-table-group.h +++ b/widgets/table/e-table-group.h @@ -53,6 +53,7 @@ typedef struct { gint (*right_click) (ETableGroup *etg, int row, int col, GdkEvent *event); gint (*click) (ETableGroup *etg, int row, int col, GdkEvent *event); gint (*key_press) (ETableGroup *etg, int row, int col, GdkEvent *event); + gint (*start_drag) (ETableGroup *etg, int row, int col, GdkEvent *event); /* Virtual functions. */ void (*add) (ETableGroup *etg, gint row); @@ -139,6 +140,10 @@ gint e_table_group_key_press (ETableGroup *etg, gint row, gint col, GdkEvent *event); +gint e_table_group_start_drag (ETableGroup *etg, + gint row, + gint col, + GdkEvent *event); GtkType e_table_group_get_type (void); typedef void (*ETableGroupLeafFn) (void *e_table_item, void *closure); |