diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-07-27 09:36:20 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-07-27 09:36:20 +0800 |
commit | 5e3f91d87bde1ca8484b4a35fc3cdc2f1ede8a85 (patch) | |
tree | a4e8f215cad48648f602435e6d7c75226c0b9bc2 /widgets/e-table/e-table.h | |
parent | d1cc23165dd9f8d853b6384f038e97afcc51e22c (diff) | |
download | gsoc2013-evolution-5e3f91d87bde1ca8484b4a35fc3cdc2f1ede8a85.tar gsoc2013-evolution-5e3f91d87bde1ca8484b4a35fc3cdc2f1ede8a85.tar.gz gsoc2013-evolution-5e3f91d87bde1ca8484b4a35fc3cdc2f1ede8a85.tar.bz2 gsoc2013-evolution-5e3f91d87bde1ca8484b4a35fc3cdc2f1ede8a85.tar.lz gsoc2013-evolution-5e3f91d87bde1ca8484b4a35fc3cdc2f1ede8a85.tar.xz gsoc2013-evolution-5e3f91d87bde1ca8484b4a35fc3cdc2f1ede8a85.tar.zst gsoc2013-evolution-5e3f91d87bde1ca8484b4a35fc3cdc2f1ede8a85.zip |
Fixed a reference.
2000-07-26 Christopher James Lahey <clahey@helixcode.com>
* 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
Diffstat (limited to 'widgets/e-table/e-table.h')
-rw-r--r-- | widgets/e-table/e-table.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/widgets/e-table/e-table.h b/widgets/e-table/e-table.h index a2e608b41e..8b41407d1a 100644 --- a/widgets/e-table/e-table.h +++ b/widgets/e-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; |