aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-group-leaf.c
diff options
context:
space:
mode:
authorJason Leach <jasonleach@usa.net>2001-04-29 09:14:50 +0800
committerJacob Leach <jleach@src.gnome.org>2001-04-29 09:14:50 +0800
commit2d3c06b3a4157382686a992800c60473bcc61c49 (patch)
tree8a152108d5d609e9bd399d1de077f60fc9a48932 /widgets/table/e-table-group-leaf.c
parent30cc6ee6daceb7089ebab1f833e32287f253bb2a (diff)
downloadgsoc2013-evolution-2d3c06b3a4157382686a992800c60473bcc61c49.tar
gsoc2013-evolution-2d3c06b3a4157382686a992800c60473bcc61c49.tar.gz
gsoc2013-evolution-2d3c06b3a4157382686a992800c60473bcc61c49.tar.bz2
gsoc2013-evolution-2d3c06b3a4157382686a992800c60473bcc61c49.tar.lz
gsoc2013-evolution-2d3c06b3a4157382686a992800c60473bcc61c49.tar.xz
gsoc2013-evolution-2d3c06b3a4157382686a992800c60473bcc61c49.tar.zst
gsoc2013-evolution-2d3c06b3a4157382686a992800c60473bcc61c49.zip
(Make the alternating row colors a option in ETableSpecification instead
2001-04-28 Jason Leach <jasonleach@usa.net> (Make the alternating row colors a option in ETableSpecification instead of a compiled in #define) * e-table-specification.c (e_table_specification_load_from_node): Read in the "alternating-row-colors=bool" option for ETableSpecifications. Default value is true so unless it is specified to be false, row colors will alternate. (e_table_specification_save_to_node): Save the alternating row color options here. * e-table.c (et_build_groups): Pass down the alternating row colors through to the ETableGroup. * e-table-group-container.[ch]: Handle the new alternating row colors option here, passing it to ETableItem. * e-table-group-leaf.[ch]: Here too. * e-table-item.c (eti_get_cell_background_color): Got rid of the #define ALTERNATE_COLORS, replaced with truth check for ETableItem::alternating_row_colors. * e-tree.c: Make ETree recognize alternating row color options as well. svn path=/trunk/; revision=9622
Diffstat (limited to 'widgets/table/e-table-group-leaf.c')
-rw-r--r--widgets/table/e-table-group-leaf.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/widgets/table/e-table-group-leaf.c b/widgets/table/e-table-group-leaf.c
index f3a5630b30..bbc3b663ac 100644
--- a/widgets/table/e-table-group-leaf.c
+++ b/widgets/table/e-table-group-leaf.c
@@ -29,6 +29,7 @@ enum {
ARG_WIDTH,
ARG_MINIMUM_WIDTH,
ARG_FROZEN,
+ ARG_TABLE_ALTERNATING_ROW_COLORS,
ARG_TABLE_HORIZONTAL_DRAW_GRID,
ARG_TABLE_VERTICAL_DRAW_GRID,
ARG_TABLE_DRAW_FOCUS,
@@ -176,6 +177,7 @@ etgl_realize (GnomeCanvasItem *item)
e_table_item_get_type (),
"ETableHeader", E_TABLE_GROUP(etgl)->header,
"ETableModel", etgl->ets,
+ "alternating_row_colors", etgl->alternating_row_colors,
"horizontal_draw_grid", etgl->horizontal_draw_grid,
"vertical_draw_grid", etgl->vertical_draw_grid,
"drawfocus", etgl->draw_focus,
@@ -345,6 +347,15 @@ etgl_set_arg (GtkObject *object, GtkArg *arg, guint arg_id)
}
break;
+ case ARG_TABLE_ALTERNATING_ROW_COLORS:
+ etgl->alternating_row_colors = GTK_VALUE_BOOL (*arg);
+ if (etgl->item) {
+ gnome_canvas_item_set (GNOME_CANVAS_ITEM(etgl->item),
+ "alternating_row_colors", GTK_VALUE_BOOL (*arg),
+ NULL);
+ }
+ break;
+
case ARG_TABLE_HORIZONTAL_DRAW_GRID:
etgl->horizontal_draw_grid = GTK_VALUE_BOOL (*arg);
if (etgl->item) {
@@ -436,7 +447,9 @@ etgl_class_init (GtkObjectClass *object_class)
e_group_class->get_printable = etgl_get_printable;
e_group_class->compute_location = etgl_compute_location;
e_group_class->get_cell_geometry = etgl_get_cell_geometry;
-
+
+ gtk_object_add_arg_type ("ETableGroupLeaf::alternating_row_colors", GTK_TYPE_BOOL,
+ GTK_ARG_WRITABLE, ARG_TABLE_ALTERNATING_ROW_COLORS);
gtk_object_add_arg_type ("ETableGroupLeaf::horizontal_draw_grid", GTK_TYPE_BOOL,
GTK_ARG_WRITABLE, ARG_TABLE_HORIZONTAL_DRAW_GRID);
gtk_object_add_arg_type ("ETableGroupLeaf::vertical_draw_grid", GTK_TYPE_BOOL,
@@ -472,6 +485,7 @@ etgl_init (GtkObject *object)
etgl->ets = NULL;
etgl->item = NULL;
+ etgl->alternating_row_colors = 1;
etgl->horizontal_draw_grid = 1;
etgl->vertical_draw_grid = 1;
etgl->draw_focus = 1;