From 385ccbd512c4c43305dee900f86d0f51f94b1200 Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Thu, 25 Nov 1999 08:02:13 +0000 Subject: Realize cells. 1999-11-25 Miguel de Icaza * e-table-header-item.c (ethi_realize): Realize cells. * e-table-item.c (eti_header_dim_changed): redraw before and after. * e-table-header-item.c (ethi_event): Add continuous resizing. 1999-11-24 Miguel de Icaza * e-table-subset.h, e-table-subset.c: New files, used to implement subset tables. * e-table-sorted.h, e-table-sorted.c: Now they derive from e-table-subset. * e-cell.c, e-cell.h: realize method now return per view instance data. svn path=/trunk/; revision=1434 --- widgets/e-cell-text.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'widgets/e-cell-text.h') diff --git a/widgets/e-cell-text.h b/widgets/e-cell-text.h index 19d913a678..24def9f0f8 100644 --- a/widgets/e-cell-text.h +++ b/widgets/e-cell-text.h @@ -12,6 +12,13 @@ typedef struct { ECell parent; + + GdkGC *gc; + GdkFont *font; + GtkJustification justify; + + char *font_name; + GnomeCanvas *canvas; } ECellText; typedef struct { @@ -19,6 +26,6 @@ typedef struct { } ECellTextClass; GtkType e_cell_text_get_type (void); -ECell *e_cell_text_new (void); +ECell *e_cell_text_new (const char *fontname, GtkJustification justify); #endif /* _E_CELL_TEXT_H_ */ -- cgit