diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-12-08 07:28:30 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-12-08 07:28:30 +0800 |
commit | 640883f04d9d76a933a2410ef3f100848ad7ddfd (patch) | |
tree | a814976e78141ed39eda422c01647cd55935a3d7 /widgets/table/e-table-group.h | |
parent | 042281235aa1d98f24f7c7e7af69b1ba1b5d6ff0 (diff) | |
download | gsoc2013-evolution-640883f04d9d76a933a2410ef3f100848ad7ddfd.tar.gz gsoc2013-evolution-640883f04d9d76a933a2410ef3f100848ad7ddfd.tar.zst gsoc2013-evolution-640883f04d9d76a933a2410ef3f100848ad7ddfd.zip |
Add column and GdkEvent * parameters to the double click signal.
2000-12-07 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.c,
e-table.h: Add column and GdkEvent * parameters to the double
click signal.
* e-table-header-item: Unref the ETableFullHeader when we're done
with it.
* e-table-scrolled.c, e-table-scrolled.h: Remove all of the
proxies and add a function e_table_scrolled_get_table and a gtk
argument "table".
svn path=/trunk/; revision=6850
Diffstat (limited to 'widgets/table/e-table-group.h')
-rw-r--r-- | widgets/table/e-table-group.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/widgets/table/e-table-group.h b/widgets/table/e-table-group.h index f9de386ff7..1791d08aee 100644 --- a/widgets/table/e-table-group.h +++ b/widgets/table/e-table-group.h @@ -46,7 +46,7 @@ typedef struct { /* Signals */ void (*cursor_change) (ETableGroup *etg, int row); - void (*double_click) (ETableGroup *etg, int row); + void (*double_click) (ETableGroup *etg, int row, int col, GdkEvent *event); 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); @@ -117,7 +117,9 @@ void e_table_group_construct (GnomeCanvasGroup *parent, void e_table_group_cursor_change (ETableGroup *etg, gint row); void e_table_group_double_click (ETableGroup *etg, - gint row); + gint row, + gint col, + GdkEvent *event); gint e_table_group_right_click (ETableGroup *etg, gint row, gint col, |