diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1999-11-02 04:35:26 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1999-11-02 04:35:26 +0800 |
commit | c5e2fd8592f00928776550e078f9eeba31caa163 (patch) | |
tree | 5be84c3f277c1ce679b644c04ad8334c7f345a2a /widgets/e-table-simple.c | |
parent | c8d14b53ef41de80458405ffadb0721458b7add9 (diff) | |
download | gsoc2013-evolution-c5e2fd8592f00928776550e078f9eeba31caa163.tar gsoc2013-evolution-c5e2fd8592f00928776550e078f9eeba31caa163.tar.gz gsoc2013-evolution-c5e2fd8592f00928776550e078f9eeba31caa163.tar.bz2 gsoc2013-evolution-c5e2fd8592f00928776550e078f9eeba31caa163.tar.lz gsoc2013-evolution-c5e2fd8592f00928776550e078f9eeba31caa163.tar.xz gsoc2013-evolution-c5e2fd8592f00928776550e078f9eeba31caa163.tar.zst gsoc2013-evolution-c5e2fd8592f00928776550e078f9eeba31caa163.zip |
Added my widgets stuff -miguel
svn path=/trunk/; revision=1364
Diffstat (limited to 'widgets/e-table-simple.c')
-rw-r--r-- | widgets/e-table-simple.c | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/widgets/e-table-simple.c b/widgets/e-table-simple.c new file mode 100644 index 0000000000..b586712942 --- /dev/null +++ b/widgets/e-table-simple.c @@ -0,0 +1,120 @@ +/* + * e-table-model.c: a simple table model implementation that uses function + * pointers to simplify the creation of new, exotic and colorful tables in + * no time. + * + * Author: + * Miguel de Icaza (miguel@gnu.org) + * + * (C) 1999 International GNOME Support. + */ + +#include <config.h> +#include "e-table-simple.h" + +static int +simple_column_count (ETableModel *etm) +{ + ETableSimple *simple = (ETableSimple *)etm; + + return simple->col_count (etm) +} + +static const char * +simple_column_name (ETableModel *etm, int col) +{ + ETableSimple *simple = (ETableSimple *)etm; + + return simple->col_name (etm, col); +} + +static int +simple_row_count (ETableModel *etm) +{ + ETableSimple *simple = (ETableSimple *)etm; + + return simple->row_count (etm); +} + +static void +simple_value_at (ETableModel *etm, int col, int row) +{ + ETableSimple *simple = (ETableSimple *)etm; + + return simple->value_at (etm, col, row); +} + +static void +simple_set_value_at (ETableModel *etm, int col, int row, void *data) +{ + ETableSimple *simple = (ETableSimple *)etm; + + return simple->set_value_at (etm, col, row, data); +} + +static gboolean +simple_is_cell_editable (ETableModel *etm, int col, int row) +{ + ETableSimple *simple = (ETableSimple *)etm; + + return simple->is_cell_editable (etm, col, row, data); +} + +static void +e_table_simple_class_init (GtkObjectClass *object_class) +{ + ETableSimpleClass *simple_class = (ETableSimpleClass *) object_class; + + simple_class->column_count = simple_column_count; + simple_class->column_name = simple_column_name; + simple_class->row_count = simple_row_count; + simple_class->value_at = simple_value_at; + simple_class->set_value_at = simple_set_value_at; + simple_class->is_cell_editable = simple_is_cell_editable; +} + +GtkType +e_table_simple_get_type (void) +{ + static GtkType type = 0; + + if (!type){ + GtkTypeInfo info = { + "ETableSimple", + sizeof (ETableSimple), + sizeof (ETableSimpleClass), + (GtkClassInitFunc) e_table_simple_class_init, + (GtkObjectInitFunc) NULL, + NULL, /* reserved 1 */ + NULL, /* reserved 2 */ + (GtkClassInitFunc) NULL + }; + + type = gtk_type_unique (e_table_model_get_type (), &info); + } + + return type; +} + +ETable * +e_table_simple_new (ETableSimpleColumnCountFn col_count, + ETableSimpleColumnNameFn col_name, + ETableSimpleRowCountFn row_count, + ETableSimpleValueAtFn value_at, + ETableSimpleSetValueAtFn set_value_at, + ETableSimpleIsCellEditableFn is_cell_editable, + void *data) +{ + ETableSimple *et; + + et = gtk_type_new (e_table_simple_get_type ()); + + et->col_count = col_count; + et->col_name = col_name; + et->row_count = row_count; + et->value_at = value_at; + et->set_value_at = set_value_at; + et->is_cell_editable = is_cell_editable; + + return (ETable *) et; +} |