aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-cell-text.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-08-25 03:06:54 +0800
committerChris Lahey <clahey@src.gnome.org>2000-08-25 03:06:54 +0800
commit695baf618d363f760ec81d109c6e6185e510b1e7 (patch)
tree40d7700b26e6041ac8c8ef7e40cc15fe25ba43c0 /widgets/table/e-cell-text.c
parent483c3d3ffc0addb346611c0a544f214784e349b1 (diff)
downloadgsoc2013-evolution-695baf618d363f760ec81d109c6e6185e510b1e7.tar
gsoc2013-evolution-695baf618d363f760ec81d109c6e6185e510b1e7.tar.gz
gsoc2013-evolution-695baf618d363f760ec81d109c6e6185e510b1e7.tar.bz2
gsoc2013-evolution-695baf618d363f760ec81d109c6e6185e510b1e7.tar.lz
gsoc2013-evolution-695baf618d363f760ec81d109c6e6185e510b1e7.tar.xz
gsoc2013-evolution-695baf618d363f760ec81d109c6e6185e510b1e7.tar.zst
gsoc2013-evolution-695baf618d363f760ec81d109c6e6185e510b1e7.zip
Added infrastructure for setting the justification of columns. Still need
2000-08-24 Christopher James Lahey <clahey@helixcode.com> * e-cell-text.c, e-cell-toggle.c, e-cell-tree.c, e-cell.c, e-cell.h, e-table-col.c, e-table-col.h, e-table-item.c: Added infrastructure for setting the justification of columns. Still need to change the cells to support it and need to add user interface to change the justification. svn path=/trunk/; revision=5010
Diffstat (limited to 'widgets/table/e-cell-text.c')
-rw-r--r--widgets/table/e-cell-text.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/widgets/table/e-cell-text.c b/widgets/table/e-cell-text.c
index 5a7f8d514e..10e3f7b8c6 100644
--- a/widgets/table/e-cell-text.c
+++ b/widgets/table/e-cell-text.c
@@ -422,7 +422,7 @@ ect_free_color (gchar *color_spec, GdkColor *color, GdkColormap *colormap)
*/
static void
ect_draw (ECellView *ecell_view, GdkDrawable *drawable,
- int model_col, int view_col, int row, gboolean selected,
+ int model_col, int view_col, int row, ECellFlags flags,
int x1, int y1, int x2, int y2)
{
/* New ECellText */
@@ -444,9 +444,12 @@ ect_draw (ECellView *ecell_view, GdkDrawable *drawable,
ECellTextLineBreaks *linebreaks;
GdkColor *foreground, *cell_foreground, *cursor_color;
gchar *color_spec;
+ gboolean selected;
EFontStyle style = E_FONT_PLAIN;
+ selected = flags & E_CELL_SELECTED;
+
if (ect->bold_column >= 0 && e_table_model_value_at(ecell_view->e_table_model, ect->bold_column, row))
style = E_FONT_BOLD;