diff options
author | Chris Toshok <toshok@src.gnome.org> | 2000-04-17 13:53:32 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2000-04-17 13:53:32 +0800 |
commit | 832bcdf998ea2b015a9b6904f72bfb3949f1b80a (patch) | |
tree | 43af512afb6bb6ef7ca50b3ac3a0d211d928a36c /widgets/e-table/e-cell.h | |
parent | 3f0d6f5cf6914eec8040b569af95898d6e99a0fc (diff) | |
download | gsoc2013-evolution-832bcdf998ea2b015a9b6904f72bfb3949f1b80a.tar gsoc2013-evolution-832bcdf998ea2b015a9b6904f72bfb3949f1b80a.tar.gz gsoc2013-evolution-832bcdf998ea2b015a9b6904f72bfb3949f1b80a.tar.bz2 gsoc2013-evolution-832bcdf998ea2b015a9b6904f72bfb3949f1b80a.tar.lz gsoc2013-evolution-832bcdf998ea2b015a9b6904f72bfb3949f1b80a.tar.xz gsoc2013-evolution-832bcdf998ea2b015a9b6904f72bfb3949f1b80a.tar.zst gsoc2013-evolution-832bcdf998ea2b015a9b6904f72bfb3949f1b80a.zip |
add table-size-test
* Makefile.am (noinst_PROGRAMS): add table-size-test
* .cvsignore: add table-size-test.
* e-cell-text.c (ect_ecent): use e_table_model_is_cell_editable
instead of E_CELL_EDITABLE.
* e-cell-toggle.c (etog_event): same.
* e-cell.c (e_cell_init): don't call e_cell_set_editable. that
info comes from the model.
(e_cell_set_editable): removed function.
* e-cell.h: remove the E_CELL_EDITABLE flag. that should be
retrieved from the model. also, remove the prototype for
e_cell_set_editable.
* e-table-size-test.c: new file, for a stress test of sorts, of a
large, uneditable e-table.
svn path=/trunk/; revision=2468
Diffstat (limited to 'widgets/e-table/e-cell.h')
-rw-r--r-- | widgets/e-table/e-cell.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/widgets/e-table/e-cell.h b/widgets/e-table/e-cell.h index 8098d553f5..8804d2066f 100644 --- a/widgets/e-table/e-cell.h +++ b/widgets/e-table/e-cell.h @@ -14,13 +14,6 @@ typedef struct _ECell ECell; typedef struct _ECellView ECellView; -/* Object flags for ECells */ -enum { - E_CELL_EDITABLE = 1 << 4 -}; - -#define E_CELL_IS_EDITABLE(e) (GTK_OBJECT (e)->flags & E_CELL_EDITABLE) - struct _ECell { GtkObject object; }; @@ -81,6 +74,4 @@ int e_cell_height (ECellView *ecell_view, int model_col, int view_col, void *e_cell_enter_edit (ECellView *ecell_view, int model_col, int view_col, int row); void e_cell_leave_edit (ECellView *ecell_view, int model_col, int view_col, int row, void *edit_context); -void e_cell_set_editable (ECell *ecell, gboolean editable); - #endif /* _E_CELL_H_ */ |