aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-state.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2001-01-11 02:15:13 +0800
committerChris Lahey <clahey@src.gnome.org>2001-01-11 02:15:13 +0800
commita1ca83afd9f3fa742d9f2c07b990b576d3867668 (patch)
treeb1eedc6f181835247d45a991072458711737bafc /widgets/table/e-table-state.c
parent54c085cc3cec41cc3d5a77efadb98450a7c5b4b6 (diff)
downloadgsoc2013-evolution-a1ca83afd9f3fa742d9f2c07b990b576d3867668.tar
gsoc2013-evolution-a1ca83afd9f3fa742d9f2c07b990b576d3867668.tar.gz
gsoc2013-evolution-a1ca83afd9f3fa742d9f2c07b990b576d3867668.tar.bz2
gsoc2013-evolution-a1ca83afd9f3fa742d9f2c07b990b576d3867668.tar.lz
gsoc2013-evolution-a1ca83afd9f3fa742d9f2c07b990b576d3867668.tar.xz
gsoc2013-evolution-a1ca83afd9f3fa742d9f2c07b990b576d3867668.tar.zst
gsoc2013-evolution-a1ca83afd9f3fa742d9f2c07b990b576d3867668.zip
Added expansions field and loading and saving of that field.
2001-01-10 Christopher James Lahey <clahey@helixcode.com> * e-table-state.c, e-table-state.h: Added expansions field and loading and saving of that field. * e-table.c: Load and save expansion data. svn path=/trunk/; revision=7366
Diffstat (limited to 'widgets/table/e-table-state.c')
-rw-r--r--widgets/table/e-table-state.c33
1 files changed, 27 insertions, 6 deletions
diff --git a/widgets/table/e-table-state.c b/widgets/table/e-table-state.c
index 5bfc9c390b..9d24269322 100644
--- a/widgets/table/e-table-state.c
+++ b/widgets/table/e-table-state.c
@@ -41,7 +41,14 @@ etst_class_init (GtkObjectClass *klass)
klass->destroy = etst_destroy;
}
-E_MAKE_TYPE(e_table_state, "ETableState", ETableState, etst_class_init, NULL, PARENT_TYPE);
+static void
+etst_init (ETableState *state)
+{
+ state->columns = NULL;
+ state->expansions = NULL;
+}
+
+E_MAKE_TYPE(e_table_state, "ETableState", ETableState, etst_class_init, etst_init, PARENT_TYPE);
ETableState *
e_table_state_new (void)
@@ -79,6 +86,12 @@ e_table_state_load_from_string (ETableState *state,
}
}
+typedef struct
+{
+ int column;
+ double expansion;
+} int_and_double;
+
void
e_table_state_load_from_node (ETableState *state,
const xmlNode *node)
@@ -95,22 +108,27 @@ e_table_state_load_from_node (ETableState *state,
state->sort_info = NULL;
for (children = node->xmlChildrenNode; children; children = children->next) {
if (!strcmp(children->name, "column")) {
- int *column = g_new(int, 1);
+ int_and_double *column_info = g_new(int_and_double, 1);
- *column = e_xml_get_integer_prop_by_name(children, "source");
+ column_info->column = e_xml_get_integer_prop_by_name(children, "source");
+ column_info->expansion = e_xml_get_double_prop_by_name_with_default(children, "expansion", -2);
- list = g_list_append(list, column);
+ list = g_list_append(list, column_info);
} else if (state->sort_info == NULL && !strcmp(children->name, "grouping")) {
state->sort_info = e_table_sort_info_new();
e_table_sort_info_load_from_node(state->sort_info, children, state_version);
}
}
g_free(state->columns);
+ g_free(state->expansions);
state->col_count = g_list_length(list);
state->columns = g_new(int, state->col_count);
+ state->expansions = g_new(double, state->col_count);
for (iterator = list, i = 0; iterator; iterator = g_list_next(iterator), i++) {
- state->columns[i] = *(int *)iterator->data;
- g_free(iterator->data);
+ int_and_double *column_info = iterator->data;
+ state->columns[i] = column_info->column;
+ state->expansions[i] = column_info->expansion;
+ g_free(column_info);
}
g_list_free(list);
}
@@ -160,10 +178,13 @@ e_table_state_save_to_node (ETableState *state,
for (i = 0; i < state->col_count; i++) {
int column = state->columns[i];
+ double expansion = state->expansions[i];
xmlNode *new_node;
new_node = xmlNewChild(node, NULL, "column", NULL);
e_xml_set_integer_prop_by_name (new_node, "source", column);
+ if (expansion >= -1)
+ e_xml_set_double_prop_by_name(new_node, "expansion", expansion);
}