From 2d3c06b3a4157382686a992800c60473bcc61c49 Mon Sep 17 00:00:00 2001 From: Jason Leach Date: Sun, 29 Apr 2001 01:14:50 +0000 Subject: (Make the alternating row colors a option in ETableSpecification instead 2001-04-28 Jason Leach (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 --- widgets/table/e-table.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'widgets/table/e-table.c') diff --git a/widgets/table/e-table.c b/widgets/table/e-table.c index ab0af124bc..cf70454eff 100644 --- a/widgets/table/e-table.c +++ b/widgets/table/e-table.c @@ -208,6 +208,7 @@ e_table_init (GtkObject *object) e_table->group_info_change_id = 0; e_table->reflow_idle_id = 0; + e_table->alternating_row_colors = 1; e_table->horizontal_draw_grid = 1; e_table->vertical_draw_grid = 1; e_table->draw_focus = 1; @@ -594,6 +595,7 @@ et_build_groups (ETable *et) 0); e_canvas_vbox_add_item(E_CANVAS_VBOX(et->canvas_vbox), GNOME_CANVAS_ITEM(et->group)); gnome_canvas_item_set(GNOME_CANVAS_ITEM(et->group), + "alternating_row_colors", et->alternating_row_colors, "horizontal_draw_grid", et->horizontal_draw_grid, "vertical_draw_grid", et->vertical_draw_grid, "drawfocus", et->draw_focus, @@ -970,6 +972,7 @@ et_real_construct (ETable *e_table, ETableModel *etm, ETableExtras *ete, e_table->use_click_to_add = specification->click_to_add; e_table->click_to_add_message = e_utf8_from_locale_string (gettext (specification->click_to_add_message)); + e_table->alternating_row_colors = specification->alternating_row_colors; e_table->horizontal_draw_grid = specification->horizontal_draw_grid; e_table->vertical_draw_grid = specification->vertical_draw_grid; e_table->draw_focus = specification->draw_focus; -- cgit