aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-group.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-06-06 13:50:12 +0800
committerChris Lahey <clahey@src.gnome.org>2000-06-06 13:50:12 +0800
commit06978bc7368680efabec6a2cde14c74ca5201d04 (patch)
tree9b01fb6ea232dbb144e7ae5687a004c98bf1272b /widgets/table/e-table-group.h
parentce74cc7bb1d1a3f27d93dfa2842a9f13e461714f (diff)
downloadgsoc2013-evolution-06978bc7368680efabec6a2cde14c74ca5201d04.tar
gsoc2013-evolution-06978bc7368680efabec6a2cde14c74ca5201d04.tar.gz
gsoc2013-evolution-06978bc7368680efabec6a2cde14c74ca5201d04.tar.bz2
gsoc2013-evolution-06978bc7368680efabec6a2cde14c74ca5201d04.tar.lz
gsoc2013-evolution-06978bc7368680efabec6a2cde14c74ca5201d04.tar.xz
gsoc2013-evolution-06978bc7368680efabec6a2cde14c74ca5201d04.tar.zst
gsoc2013-evolution-06978bc7368680efabec6a2cde14c74ca5201d04.zip
Added a right click signal.
2000-06-06 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 right click signal. * e-table-sorted-variable.c: Fixed a buffer overrun. svn path=/trunk/; revision=3437
Diffstat (limited to 'widgets/table/e-table-group.h')
-rw-r--r--widgets/table/e-table-group.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/widgets/table/e-table-group.h b/widgets/table/e-table-group.h
index 2260168cd4..8f9e047959 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 (*right_click) (ETableGroup *etg, int row, int col, GdkEvent *event);
gint (*key_press) (ETableGroup *etg, int row, int col, GdkEvent *event);
/* Virtual functions. */
@@ -107,6 +108,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_right_click (ETableGroup *etg,
+ gint row,
+ gint col,
+ GdkEvent *event);
gint e_table_group_key_press (ETableGroup *etg,
gint row,
gint col,