diff options
author | Chris Toshok <toshok@ximian.com> | 2003-03-19 04:49:59 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2003-03-19 04:49:59 +0800 |
commit | 529a87dfe59ffffb208bcc3f75f1a3a61b3f72a4 (patch) | |
tree | 09e36257b307a03c4ab720b7185fc98397db9810 /widgets/table/e-cell-date.c | |
parent | bc9697c7d284b17fb2372068e738cdc5ba671667 (diff) | |
download | gsoc2013-evolution-529a87dfe59ffffb208bcc3f75f1a3a61b3f72a4.tar.gz gsoc2013-evolution-529a87dfe59ffffb208bcc3f75f1a3a61b3f72a4.tar.zst gsoc2013-evolution-529a87dfe59ffffb208bcc3f75f1a3a61b3f72a4.zip |
add underline_column field.
2003-03-18 Chris Toshok <toshok@ximian.com>
* e-cell-text.h: add underline_column field.
* e-cell-date.c: add underline_column to the comment.
* e-cell-size.c: add underline_column to the comment.
* e-cell-text.c (build_layout): handle underline column.
(ect_show_tooltip): same.
(ect_set_property): same.
(ect_get_property): same.
(e_cell_text_class_init): same.
(e_cell_text_init): same.
(e_cell_text_new): add underline_column to the comment.
svn path=/trunk/; revision=20347
Diffstat (limited to 'widgets/table/e-cell-date.c')
-rw-r--r-- | widgets/table/e-cell-date.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/widgets/table/e-cell-date.c b/widgets/table/e-cell-date.c index 022a3fa517..ce2355197b 100644 --- a/widgets/table/e-cell-date.c +++ b/widgets/table/e-cell-date.c @@ -159,13 +159,14 @@ e_cell_date_init (GtkObject *object) * a finer control of the way the string is displayed. The arguments supported * allow the control of strikeout, bold, color and a date filter. * - * The arguments "strikeout_column", "bold_column" and "color_column" set - * and return an integer that points to a column in the model that controls - * these settings. So controlling the way things are rendered is achieved - * by having special columns in the model that will be used to flag whether - * the date should be rendered with strikeout, or bolded. In the case of - * the "color_column" argument, the column in the model is expected to have - * a string that can be parsed by gdk_color_parse(). + * The arguments "strikeout_column", "underline_column", "bold_column" + * and "color_column" set and return an integer that points to a + * column in the model that controls these settings. So controlling + * the way things are rendered is achieved by having special columns + * in the model that will be used to flag whether the date should be + * rendered with strikeout, underline, or bolded. In the case of the + * "color_column" argument, the column in the model is expected to + * have a string that can be parsed by gdk_color_parse(). * * Returns: an ECell object that can be used to render dates. */ |