diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-05-28 12:25:22 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-05-28 12:25:22 +0800 |
commit | f91435fc0c0186d48079dc44d8626135eba92462 (patch) | |
tree | e8e3cac32823d3ff377dbebfa72351a0d2e8eb50 /widgets/e-table/e-table-group.h | |
parent | 0473e106f01671731351f69bdf29f3d438b75b05 (diff) | |
download | gsoc2013-evolution-f91435fc0c0186d48079dc44d8626135eba92462.tar gsoc2013-evolution-f91435fc0c0186d48079dc44d8626135eba92462.tar.gz gsoc2013-evolution-f91435fc0c0186d48079dc44d8626135eba92462.tar.bz2 gsoc2013-evolution-f91435fc0c0186d48079dc44d8626135eba92462.tar.lz gsoc2013-evolution-f91435fc0c0186d48079dc44d8626135eba92462.tar.xz gsoc2013-evolution-f91435fc0c0186d48079dc44d8626135eba92462.tar.zst gsoc2013-evolution-f91435fc0c0186d48079dc44d8626135eba92462.zip |
Added double click handling.
2000-05-28 Christopher James Lahey <clahey@helixcode.com>
* e-table-group-container.c, e-table-group-leaf.c,
e-table-group.c, e-table-group.h, e-table-item.c, e-table-item.h,
e-table.c, e-table.h: Added double click handling.
svn path=/trunk/; revision=3238
Diffstat (limited to 'widgets/e-table/e-table-group.h')
-rw-r--r-- | widgets/e-table/e-table-group.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/widgets/e-table/e-table-group.h b/widgets/e-table/e-table-group.h index dd0771745b..8226ad055c 100644 --- a/widgets/e-table/e-table-group.h +++ b/widgets/e-table/e-table-group.h @@ -41,8 +41,12 @@ typedef struct { typedef struct { GnomeCanvasGroupClass parent_class; - void (*row_selection) (ETableGroup *etg, int row, gboolean selected); + /* Signals */ + void (*row_selection) (ETableGroup *etg, int row, gboolean selected); + void (*double_click) (ETableGroup *etg, int row); + + /* Virtual functions. */ void (*add) (ETableGroup *etg, gint row); void (*add_all) (ETableGroup *etg); gboolean (*remove) (ETableGroup *etg, gint row); @@ -88,6 +92,8 @@ void e_table_group_construct (GnomeCanvasGroup *parent, void e_table_group_row_selection (ETableGroup *etg, gint row, gboolean selected); +void e_table_group_double_click (ETableGroup *etg, + gint row); GtkType e_table_group_get_type (void); |