aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-state.c
blob: 4c6467ce8e0d0e06c9fb6acc918c3af5ae04e780 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * E-table-state.c: Savable state of a table.
 *
 * Authors:
 *   Chris Lahey <clahey@ximian.com>
 *   Miguel de Icaza (miguel@ximian.com)
 *
 * (C) 2000 Ximian, Inc.
 */
#include <config.h>
#include <stdlib.h>
#include <string.h>
#include <gtk/gtksignal.h>
#include <gtk/gtkobject.h>
#include <gnome-xml/parser.h>
#include <gnome-xml/xmlmemory.h>
#include "gal/util/e-util.h"
#include "gal/util/e-xml-utils.h"
#include "e-table-state.h"


#define PARENT_TYPE (gtk_object_get_type())

#define STATE_VERSION 0.1

static GtkObjectClass *etst_parent_class;

static void
etst_destroy (GtkObject *object)
{
    ETableState *etst = E_TABLE_STATE (object);

    gtk_object_unref (GTK_OBJECT (etst->sort_info));
    if (etst->columns) {
        g_free (etst->columns);
        etst->columns = NULL;
    }

    if (etst->expansions) {
        g_free (etst->expansions);
        etst->expansions = NULL;
    }
    
    GTK_OBJECT_CLASS (etst_parent_class)->destroy (object);
}

static void
etst_class_init (GtkObjectClass *klass)
{
    etst_parent_class = gtk_type_class (PARENT_TYPE);
    
    klass->destroy = etst_destroy;
}

static void
etst_init (ETableState *state)
{
    GTK_OBJECT_UNSET_FLAGS (GTK_OBJECT (state), GTK_FLOATING);

    state->columns = NULL;
    state->expansions = NULL;
    state->sort_info = e_table_sort_info_new();
}

E_MAKE_TYPE(e_table_state, "ETableState", ETableState, etst_class_init, etst_init, PARENT_TYPE);

ETableState *
e_table_state_new (void)
{
    ETableState *etst = gtk_type_new (E_TABLE_STATE_TYPE);

    return (ETableState *) etst;
}

gboolean
e_table_state_load_from_file    (ETableState *state,
                 const char          *filename)
{
    xmlDoc *doc;
    doc = xmlParseFile (filename);
    if (doc) {
        xmlNode *node = xmlDocGetRootElement(doc);
        e_table_state_load_from_node(state, node);
        xmlFreeDoc(doc);
        return TRUE;
    }
    return FALSE;
}

void 
e_table_state_load_from_string  (ETableState *state,
                 const char          *xml)
{
    xmlDoc *doc;
    doc = xmlParseMemory ((char *) xml, strlen(xml));
    if (doc) {
        xmlNode *node = xmlDocGetRootElement(doc);
        e_table_state_load_from_node(state, node);
        xmlFreeDoc(doc);
    }
}

typedef struct {
    int column;
    double expansion;
} int_and_double;

void
e_table_state_load_from_node (ETableState *state,
                  const xmlNode *node)
{
    xmlNode *children;
    GList *list = NULL, *iterator;
    gdouble state_version;
    int i;

    state_version = e_xml_get_double_prop_by_name_with_default (
        node, "state-version", STATE_VERSION);

    if (state->sort_info)
        gtk_object_unref (GTK_OBJECT(state->sort_info));

    state->sort_info = NULL;
    children = node->xmlChildrenNode;
    for (; children; children = children->next) {
        if (!strcmp (children->name, "column")) {
            int_and_double *column_info = g_new(int_and_double, 1);

            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", 1);

            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; i++) {
        int_and_double *column_info = iterator->data;
        
        state->columns [i] = column_info->column;
        state->expansions [i] = column_info->expansion;
        g_free (column_info);
        iterator = g_list_next (iterator);
    }
    g_list_free(list);
}

void
e_table_state_save_to_file      (ETableState *state,
                 const char          *filename)
{
    xmlDoc *doc;
    doc = xmlNewDoc("1.0");
    xmlDocSetRootElement(doc, e_table_state_save_to_node(state, NULL));
    xmlSaveFile(filename, doc);
    xmlFreeDoc(doc);
}

char *
e_table_state_save_to_string    (ETableState *state)
{
    char *ret_val;
    xmlChar *string;
    int length;
    xmlDoc *doc;

    doc = xmlNewDoc("1.0");
    xmlDocSetRootElement(doc, e_table_state_save_to_node(state, NULL));
    xmlDocDumpMemory(doc, &string, &length);
    xmlFreeDoc(doc);

    ret_val = g_strdup(string);
    xmlFree(string);
    return ret_val;
}

xmlNode *
e_table_state_save_to_node      (ETableState *state,
                 xmlNode     *parent)
{
    int i;
    xmlNode *node;

    if (parent)
        node = xmlNewChild (parent, NULL, "ETableState", NULL);
    else
        node = xmlNewNode (NULL, "ETableState");

    e_xml_set_double_prop_by_name(node, "state-version", STATE_VERSION);

    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);
    }


    e_table_sort_info_save_to_node(state->sort_info, node);

    return node;
}

/**
 * e_table_state_duplicate:
 * @state: The ETableState to duplicate
 *
 * This creates a copy of the %ETableState @state
 *
 * Returns: The duplicated %ETableState.
 */
ETableState *
e_table_state_duplicate (ETableState *state)
{
    ETableState *new_state;
    char *copy;
    
    g_return_val_if_fail (state != NULL, NULL);
    g_return_val_if_fail (E_IS_TABLE_STATE (state), NULL);

    new_state = e_table_state_new ();
    copy = e_table_state_save_to_string (state);
    e_table_state_load_from_string (new_state, copy);
    g_free (copy);

    return new_state;
}