From 384b3e38f2b049f808d1b4a72ca1d396ae6e2fb2 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Tue, 25 Jul 2000 20:05:29 +0000 Subject: New files for doing a selection model. Not finished yet and thus not in 2000-07-25 Christopher James Lahey * 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 --- widgets/table/e-table.h | 90 ++++++++++++++++++++++++------------------------- 1 file changed, 45 insertions(+), 45 deletions(-) (limited to 'widgets/table/e-table.h') 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); -- cgit v1.2.3