aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-07-26 04:05:29 +0800
committerChris Lahey <clahey@src.gnome.org>2000-07-26 04:05:29 +0800
commit384b3e38f2b049f808d1b4a72ca1d396ae6e2fb2 (patch)
treed0fa89ff2f5e70c8cdb33353381c0e6bc6e20428 /widgets/table/e-table.h
parent1f1872ec3c71546fd66e0d4bb9bc82f0738cde80 (diff)
downloadgsoc2013-evolution-384b3e38f2b049f808d1b4a72ca1d396ae6e2fb2.tar
gsoc2013-evolution-384b3e38f2b049f808d1b4a72ca1d396ae6e2fb2.tar.gz
gsoc2013-evolution-384b3e38f2b049f808d1b4a72ca1d396ae6e2fb2.tar.bz2
gsoc2013-evolution-384b3e38f2b049f808d1b4a72ca1d396ae6e2fb2.tar.lz
gsoc2013-evolution-384b3e38f2b049f808d1b4a72ca1d396ae6e2fb2.tar.xz
gsoc2013-evolution-384b3e38f2b049f808d1b4a72ca1d396ae6e2fb2.tar.zst
gsoc2013-evolution-384b3e38f2b049f808d1b4a72ca1d396ae6e2fb2.zip
New files for doing a selection model. Not finished yet and thus not in
2000-07-25 Christopher James Lahey <clahey@helixcode.com> * e-table-selection-model.c, e-table-selection-model.h: New files for doing a selection model. Not finished yet and thus not in Makefile.am. * e-table.c, e-table.h: Renamed the new dnd signals so that they won't conflict with the widget signals. svn path=/trunk/; revision=4326
Diffstat (limited to 'widgets/table/e-table.h')
-rw-r--r--widgets/table/e-table.h90
1 files changed, 45 insertions, 45 deletions
diff --git a/widgets/table/e-table.h b/widgets/table/e-table.h
index 85d0e387bd..7612cddebe 100644
--- a/widgets/table/e-table.h
+++ b/widgets/table/e-table.h
@@ -88,55 +88,55 @@ typedef struct {
GtkAdjustment *vadjustment);
/* Source side drag signals */
- void (* drag_begin) (ETable *table,
+ void (* table_drag_begin) (ETable *table,
+ int row,
+ int col,
+ GdkDragContext *context);
+ void (* table_drag_end) (ETable *table,
int row,
int col,
GdkDragContext *context);
- void (* drag_end) (ETable *table,
- int row,
- int col,
- GdkDragContext *context);
- void (* drag_data_get) (ETable *table,
- int row,
- int col,
- GdkDragContext *context,
- GtkSelectionData *selection_data,
- guint info,
- guint time);
- void (* drag_data_delete) (ETable *table,
- int row,
- int col,
- GdkDragContext *context);
-
+ void (* table_drag_data_get) (ETable *table,
+ int row,
+ int col,
+ GdkDragContext *context,
+ GtkSelectionData *selection_data,
+ guint info,
+ guint time);
+ void (* table_drag_data_delete) (ETable *table,
+ int row,
+ int col,
+ GdkDragContext *context);
+
/* Target side drag signals */
- void (* drag_leave) (ETable *table,
- int row,
- int col,
- GdkDragContext *context,
- guint time);
- gboolean (* drag_motion) (ETable *table,
- int row,
- int col,
- GdkDragContext *context,
- gint x,
- gint y,
- guint time);
- gboolean (* drag_drop) (ETable *table,
- int row,
- int col,
- GdkDragContext *context,
- gint x,
- gint y,
- guint time);
- void (* drag_data_received) (ETable *table,
- int row,
- int col,
- GdkDragContext *context,
- gint x,
- gint y,
- GtkSelectionData *selection_data,
- guint info,
- guint time);
+ void (* table_drag_leave) (ETable *table,
+ int row,
+ int col,
+ GdkDragContext *context,
+ guint time);
+ gboolean (* table_drag_motion) (ETable *table,
+ int row,
+ int col,
+ GdkDragContext *context,
+ gint x,
+ gint y,
+ guint time);
+ gboolean (* table_drag_drop) (ETable *table,
+ int row,
+ int col,
+ GdkDragContext *context,
+ gint x,
+ gint y,
+ guint time);
+ void (* table_drag_data_received) (ETable *table,
+ int row,
+ int col,
+ GdkDragContext *context,
+ gint x,
+ gint y,
+ GtkSelectionData *selection_data,
+ guint info,
+ guint time);
} ETableClass;
GtkType e_table_get_type (void);