From 5e3f91d87bde1ca8484b4a35fc3cdc2f1ede8a85 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Thu, 27 Jul 2000 01:36:20 +0000 Subject: Fixed a reference. 2000-07-26 Christopher James Lahey * e-table-click-to-add.c: Fixed a reference. * e-table-selection-model.c, e-table-selection-model.h: Added a clear function. * e-table.c, e-table.h: Made going from click to add to the main table and back work better. svn path=/trunk/; revision=4373 --- widgets/table/e-table.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'widgets/table/e-table.h') diff --git a/widgets/table/e-table.h b/widgets/table/e-table.h index a2e608b41e..8b41407d1a 100644 --- a/widgets/table/e-table.h +++ b/widgets/table/e-table.h @@ -21,6 +21,12 @@ BEGIN_GNOME_DECLS #define E_IS_TABLE(o) (GTK_CHECK_TYPE ((o), E_TABLE_TYPE)) #define E_IS_TABLE_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TABLE_TYPE)) +typedef enum { + E_TABLE_CURSOR_LOC_NONE = 0, + E_TABLE_CURSOR_LOC_ETCTA = 1 << 0, + E_TABLE_CURSOR_LOC_TABLE = 1 << 1, +} ETableCursorLoc; + typedef struct { GtkTable parent; @@ -34,6 +40,7 @@ typedef struct { ETableSortInfo *sort_info; ETableSelectionModel *selection; + ETableCursorLoc cursor_loc; int table_model_change_id; int table_row_change_id; -- cgit v1.2.3