aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/gal-view-minicard.c
blob: 9abf8124c471f0e7c42f8e2c17e0b757b1cfeb90 (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
/*
 *
 * 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);

    gal_view_minicard_detach (view);

    /* 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_type_code (GalView *view)
{
    return "minicard";
}

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

    /* Chain up to parent's clone() method. */
    clone = GAL_VIEW_CLASS (gal_view_minicard_parent_class)->clone (view);

    view_minicard = GAL_VIEW_MINICARD (view);
    GAL_VIEW_MINICARD (clone)->column_width = view_minicard->column_width;

    return 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->finalize = 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_type_code = view_minicard_get_type_code;
    gal_view_class->clone = view_minicard_clone;

}

static void
gal_view_minicard_init (GalViewMinicard *gvm)
{
    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 g_object_new (GAL_TYPE_VIEW_MINICARD, "title", title, NULL);
}

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