aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-col.c
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnu.org>1999-12-02 02:18:35 +0800
committerArturo Espinosa <unammx@src.gnome.org>1999-12-02 02:18:35 +0800
commit9c0f9f1264f8083d177a01bf01e75e8787d587ed (patch)
tree5a966e5e5a992eb4ab01c20ddf7b203db454c97d /widgets/table/e-table-col.c
parent5dd5e9ffe2ba0c27c22281ebe62f9a565d184c38 (diff)
downloadgsoc2013-evolution-9c0f9f1264f8083d177a01bf01e75e8787d587ed.tar
gsoc2013-evolution-9c0f9f1264f8083d177a01bf01e75e8787d587ed.tar.gz
gsoc2013-evolution-9c0f9f1264f8083d177a01bf01e75e8787d587ed.tar.bz2
gsoc2013-evolution-9c0f9f1264f8083d177a01bf01e75e8787d587ed.tar.lz
gsoc2013-evolution-9c0f9f1264f8083d177a01bf01e75e8787d587ed.tar.xz
gsoc2013-evolution-9c0f9f1264f8083d177a01bf01e75e8787d587ed.tar.zst
gsoc2013-evolution-9c0f9f1264f8083d177a01bf01e75e8787d587ed.zip
Removed change cursor from here.
1999-12-01 Miguel de Icaza <miguel@gnu.org> * 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
Diffstat (limited to 'widgets/table/e-table-col.c')
-rw-r--r--widgets/table/e-table-col.c32
1 files changed, 29 insertions, 3 deletions
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 <gtk/gtkobject.h>
#include <gtk/gtksignal.h>
#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,
}
-