diff options
Diffstat (limited to 'widgets/e-cell-text.h')
-rw-r--r-- | widgets/e-cell-text.h | 9 |
1 files changed, 8 insertions, 1 deletions
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_ */ |