diff options
Diffstat (limited to 'widgets/table/e-cell-text.c')
-rw-r--r-- | widgets/table/e-cell-text.c | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/widgets/table/e-cell-text.c b/widgets/table/e-cell-text.c new file mode 100644 index 0000000000..c30e42cfd3 --- /dev/null +++ b/widgets/table/e-cell-text.c @@ -0,0 +1,48 @@ +/* + * e-cell-text.c: Text cell renderer + * + * Author: + * Miguel de Icaza (miguel@kernel.org) + * + * (C) 1999 Helix Code, Inc + */ +#include <config.h> +#include "e-cell-text.h" +#include "e-util.h" + +#define PARENT_TYPE gtk_object_get_type() + +static void +ec_realize (ECell *e_cell, GnomeCanvas *canvas) +{ +} + +static void +ec_unrealize (ECell *e_cell) +{ +} + +static void +ec_draw (ECell *ecell, int x1, int y1, int x2, int y2) +{ +} + +static gint +ec_event (ECell *ecell, GdkEvent *event) +{ +} + +static void +e_cell_class_init (GtkObjectClass *object_class) +{ + ECellClass *ecc = (ECellClass *) object_class; + + ecc->realize = ec_realize; + ecc->unrealize = ec_unrealize; + ecc->draw = ec_draw; + ecc->event = ec_event; +} + +E_MAKE_TYPE(e_cell, "ECell", ECell, e_cell_class_init, NULL, PARENT_TYPE); + + |