aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/gal-view-minicard.c
blob: fcc99b3395352b8dbaf8002dd24b0f26e7b891db (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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
/*
 *
 * gal-view-minicard.c: An Minicard View
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with the program; if not, see <http://www.gnu.org/licenses/>
 *
 *
 * Authors:
 *      Chris Lahey <clahey@ximian.com>
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <libxml/parser.h>

#include "gal-view-minicard.h"

G_DEFINE_TYPE (
    GalViewMinicard,
    gal_view_minicard,
    GAL_TYPE_VIEW)

static void
view_minicard_column_width_changed (EAddressbookView *address_view,
                                    gdouble width)
{
    GalView *view;
    GalViewInstance *view_instance;
    GalViewMinicard *view_minicard;

    view_instance = e_addressbook_view_get_view_instance (address_view);
    view = gal_view_instance_get_current_view (view_instance);
    view_minicard = GAL_VIEW_MINICARD (view);

    if (view_minicard->column_width != width) {
        view_minicard->column_width = width;
        gal_view_changed (view);
    }
}

static void
view_minicard_finalize (GObject *object)
{
    GalViewMinicard *view = GAL_VIEW_MINICARD (object);

    if (view->title != NULL) {
        gal_view_minicard_detach (view);
        g_free (view->title);
        view->title = NULL;
    }

    /* Chain up to parent's finalize() method. */
    G_OBJECT_CLASS (gal_view_minicard_parent_class)->finalize (object);
}

static void
view_minicard_load (GalView *view,
                    const gchar *filename)
{
    GalViewMinicard *view_minicard;
    xmlDoc *doc;
    xmlNode *root;

    view_minicard = GAL_VIEW_MINICARD (view);

    doc = e_xml_parse_file (filename);
    g_return_if_fail (doc != NULL);

    root = xmlDocGetRootElement (doc);
    view_minicard->column_width =
        e_xml_get_double_prop_by_name_with_default (
        root, (guchar *) "column_width", 225);
    xmlFreeDoc (doc);
}

static void
view_minicard_save (GalView *view,
                    const gchar *filename)
{
    GalViewMinicard *view_minicard;
    xmlDoc *doc;
    xmlNode *root;

    view_minicard = GAL_VIEW_MINICARD (view);

    doc = xmlNewDoc ((guchar *) "1.0");
    root = xmlNewNode (NULL, (guchar *) "EMinicardViewState");
    e_xml_set_double_prop_by_name (
        root, (guchar *) "column_width",
        view_minicard->column_width);
    xmlDocSetRootElement (doc, root);
    e_xml_save_file (filename, doc);
    xmlFreeDoc (doc);
}

static const gchar *
view_minicard_get_title (GalView *view)
{
    GalViewMinicard *view_minicard;

    view_minicard = GAL_VIEW_MINICARD (view);

    return view_minicard->title;
}

static void
view_minicard_set_title (GalView *view,
                         const gchar *title)
{
    GalViewMinicard *view_minicard;

    view_minicard = GAL_VIEW_MINICARD (view);

    g_free (view_minicard->title);
    view_minicard->title = g_strdup (title);
}

static const gchar *
view_minicard_get_type_code (GalView *view)
{
    return "minicard";
}

static GalView *
view_minicard_clone (GalView *view)
{
    GalViewMinicard *view_minicard;
    GalViewMinicard *clone;

    view_minicard = GAL_VIEW_MINICARD (view);

    clone = g_object_new (GAL_TYPE_VIEW_MINICARD, NULL);
    clone->column_width = view_minicard->column_width;
    clone->title = g_strdup (view_minicard->title);

    return GAL_VIEW (clone);
}

static void
gal_view_minicard_class_init (GalViewMinicardClass *class)
{
    GObjectClass *object_class;
    GalViewClass *gal_view_class;

    object_class = G_OBJECT_CLASS (class);
    object_class->dispose = view_minicard_finalize;

    gal_view_class = GAL_VIEW_CLASS (class);
    gal_view_class->load = view_minicard_load;
    gal_view_class->save = view_minicard_save;
    gal_view_class->get_title = view_minicard_get_title;
    gal_view_class->set_title = view_minicard_set_title;
    gal_view_class->get_type_code = view_minicard_get_type_code;
    gal_view_class->clone = view_minicard_clone;

}

static void
gal_view_minicard_init (GalViewMinicard *gvm)
{
    gvm->title = NULL;
    gvm->column_width = 225.0;

    gvm->emvw = NULL;
    gvm->emvw_column_width_changed_id = 0;
}

/**
 * gal_view_minicard_new
 * @title: The name of the new view.
 *
 * Returns a new GalViewMinicard.  This is primarily for use by
 * GalViewFactoryMinicard.
 *
 * Returns: The new GalViewMinicard.
 */
GalView *
gal_view_minicard_new (const gchar *title)
{
    return gal_view_minicard_construct (
        g_object_new (GAL_TYPE_VIEW_MINICARD, NULL), title);
}

/**
 * gal_view_minicard_construct
 * @view: The view to construct.
 * @title: The name of the new view.
 *
 * Constructs the GalViewMinicard.  To be used by subclasses and
 * language bindings.
 *
 * Returns: The GalViewMinicard.
 */
GalView *
gal_view_minicard_construct (GalViewMinicard *view,
                             const gchar *title)
{
    view->title = g_strdup (title);

    return GAL_VIEW (view);
}

void
gal_view_minicard_attach (GalViewMinicard *view,
                          EAddressbookView *address_view)
{
    GObject *object;

    g_return_if_fail (GAL_IS_VIEW_MINICARD (view));
    g_return_if_fail (E_IS_ADDRESSBOOK_VIEW (address_view));

    object = e_addressbook_view_get_view_object (address_view);
    g_return_if_fail (E_IS_MINICARD_VIEW_WIDGET (object));

    gal_view_minicard_detach (view);
    view->emvw = g_object_ref (object);

    g_object_set (view->emvw, "column-width", view->column_width, NULL);

    view->emvw_column_width_changed_id =
        g_signal_connect_swapped (
            view->emvw, "column-width-changed",
            G_CALLBACK (view_minicard_column_width_changed),
            address_view);
}

void
gal_view_minicard_detach (GalViewMinicard *view)
{
    g_return_if_fail (GAL_IS_VIEW_MINICARD (view));

    if (view->emvw == NULL)
        return;

    if (view->emvw_column_width_changed_id > 0) {
        g_signal_handler_disconnect (
            view->emvw, view->emvw_column_width_changed_id);
        view->emvw_column_width_changed_id = 0;
    }

    g_object_unref (view->emvw);
    view->emvw = NULL;
}