diff options
author | nobody <nobody@localhost> | 2000-02-23 03:53:43 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2000-02-23 03:53:43 +0800 |
commit | a9b3912cae7a0f4909152e4cb3578a57b4ec1591 (patch) | |
tree | 69169ddea49329e7b02ddce99392125798c25b59 /widgets/e-table/e-table-simple.h | |
parent | 2a8de7c53dfed4beec4a51ba41160d45c1bffd8b (diff) | |
download | gsoc2013-evolution-BUG_BUDDY_0_7.tar.gz gsoc2013-evolution-BUG_BUDDY_0_7.tar.zst gsoc2013-evolution-BUG_BUDDY_0_7.zip |
This commit was manufactured by cvs2svn to create tagBUG_BUDDY_0_7
'BUG_BUDDY_0_7'.
svn path=/tags/BUG_BUDDY_0_7/; revision=1906
Diffstat (limited to 'widgets/e-table/e-table-simple.h')
-rw-r--r-- | widgets/e-table/e-table-simple.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/widgets/e-table/e-table-simple.h b/widgets/e-table/e-table-simple.h deleted file mode 100644 index d890245386..0000000000 --- a/widgets/e-table/e-table-simple.h +++ /dev/null @@ -1,37 +0,0 @@ -#ifndef _E_TABLE_SIMPLE_H_ -#define _E_TABLE_SIMPLE_H_ - -#include "e-table-model.h" - -typedef int (*ETableSimpleColumnCountFn) (ETableModel *etm, void *data); -typedef int (*ETableSimpleRowCountFn) (ETableModel *etm, void *data); -typedef void *(*ETableSimpleValueAtFn) (ETableModel *etm, int col, int row, void *data); -typedef void (*ETableSimpleSetValueAtFn) (ETableModel *etm, int col, int row, const void *val, void *data); -typedef gboolean (*ETableSimpleIsCellEditableFn) (ETableModel *etm, int col, int row, void *data); - -typedef struct { - ETableModel parent; - - ETableSimpleColumnCountFn col_count; - ETableSimpleRowCountFn row_count; - ETableSimpleValueAtFn value_at; - ETableSimpleSetValueAtFn set_value_at; - ETableSimpleIsCellEditableFn is_cell_editable; - void *data; -} ETableSimple; - -typedef struct { - ETableModelClass parent_class; -} ETableSimpleClass; - -GtkType e_table_simple_get_type (void); - -ETableModel *e_table_simple_new (ETableSimpleColumnCountFn col_count, - ETableSimpleRowCountFn row_count, - ETableSimpleValueAtFn value_at, - ETableSimpleSetValueAtFn set_value_at, - ETableSimpleIsCellEditableFn is_cell_editable, - void *data); - -#endif /* _E_TABLE_SIMPLE_H_ */ - |