From 9c0f9f1264f8083d177a01bf01e75e8787d587ed Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Wed, 1 Dec 1999 18:18:35 +0000 Subject: Removed change cursor from here. 1999-12-01 Miguel de Icaza * e-table-header-item.c (ethi_unrealize): Removed change cursor from here. * e-cell-text.c (ect_draw): Memory leak fix. * table-test.c (main): Enhance the demo to load sample.table automatically, to get memprof working. * e-table-header.c (eth_do_remove): Take an argument: do -remove. * e-table-header.c (e_table_header_add_column): Sink ETableCol to own the object. * e-table-col.h: Made ETableCol a GtkObject to make reference counting the lifecycle method for these objects. * e-table-col.c (e_table_col_destroy): New API call. * e-table-subset.c (e_table_subset_get_toplevel): New API call. svn path=/trunk/; revision=1450 --- widgets/table/e-table-col.c | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) (limited to 'widgets/table/e-table-col.c') diff --git a/widgets/table/e-table-col.c b/widgets/table/e-table-col.c index 3d940fce04..cca7bd13d6 100644 --- a/widgets/table/e-table-col.c +++ b/widgets/table/e-table-col.c @@ -10,9 +10,35 @@ #include #include #include "e-table-col.h" +#include "e-util.h" + +#define PARENT_TYPE (gtk_object_get_type ()) + +static GtkObjectClass *parent_class; + +static void +etc_destroy (GtkObject *object) +{ + ETableCol *etc = E_TABLE_COL (object); + + printf ("Destroying columns: %s %s\n", etc->id, etc->text); + g_free (etc->id); + g_free (etc->text); + + (*parent_class->destroy)(object); +} + +static void +e_table_col_class_init (GtkObjectClass *object_class) +{ + parent_class = gtk_type_class (PARENT_TYPE); + object_class->destroy = etc_destroy; +} + +E_MAKE_TYPE(e_table_col, "ETableCol", ETableCol, e_table_col_class_init, NULL, PARENT_TYPE); ETableCol * -e_table_col_new (const char *id, int width, int min_width, +e_table_col_new (const char *id, const char *text, int width, int min_width, ECell *ecell, GCompareFunc compare, gboolean resizable) { ETableCol *etc; @@ -23,9 +49,10 @@ e_table_col_new (const char *id, int width, int min_width, g_return_val_if_fail (width >= min_width, NULL); g_return_val_if_fail (compare != NULL, NULL); - etc = g_new (ETableCol, 1); + etc = gtk_type_new (E_TABLE_COL_TYPE); etc->id = g_strdup (id); + etc->text = g_strdup (text); etc->width = width; etc->min_width = min_width; etc->ecell = ecell; @@ -38,4 +65,3 @@ e_table_col_new (const char *id, int width, int min_width, } - -- cgit v1.2.3