diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-06-02 10:57:39 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-06-02 10:57:39 +0800 |
commit | f9b79bb0f6f9f372539af46e26c93c1669762c79 (patch) | |
tree | 4c2bec08f2921cbfba3d079034820c17c201579c /widgets/table/e-table-group.h | |
parent | df398954171eb8e1acdeb9c890583521821f2984 (diff) | |
download | gsoc2013-evolution-f9b79bb0f6f9f372539af46e26c93c1669762c79.tar gsoc2013-evolution-f9b79bb0f6f9f372539af46e26c93c1669762c79.tar.gz gsoc2013-evolution-f9b79bb0f6f9f372539af46e26c93c1669762c79.tar.bz2 gsoc2013-evolution-f9b79bb0f6f9f372539af46e26c93c1669762c79.tar.lz gsoc2013-evolution-f9b79bb0f6f9f372539af46e26c93c1669762c79.tar.xz gsoc2013-evolution-f9b79bb0f6f9f372539af46e26c93c1669762c79.tar.zst gsoc2013-evolution-f9b79bb0f6f9f372539af46e26c93c1669762c79.zip |
Added a "key_press" signal.
2000-06-01 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 a "key_press" signal.
svn path=/trunk/; revision=3366
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 22e2a3dc8e..2260168cd4 100644 --- a/widgets/table/e-table-group.h +++ b/widgets/table/e-table-group.h @@ -46,6 +46,7 @@ typedef struct { void (*row_selection) (ETableGroup *etg, int row, gboolean selected); void (*cursor_change) (ETableGroup *etg, int row); void (*double_click) (ETableGroup *etg, int row); + gint (*key_press) (ETableGroup *etg, int row, int col, GdkEvent *event); /* Virtual functions. */ void (*add) (ETableGroup *etg, gint row); @@ -106,6 +107,10 @@ void e_table_group_cursor_change (ETableGroup *etg, gint row); void e_table_group_double_click (ETableGroup *etg, gint row); +gint e_table_group_key_press (ETableGroup *etg, + gint row, + gint col, + GdkEvent *event); GtkType e_table_group_get_type (void); |