aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-corba-shortcuts.c
blob: 076b49d796bd8e968f5b06fa361df00dd6041bf6 (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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* e-corba-shortcuts.c
 *
 * Copyright (C) 2001  Ximian, Inc.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * 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
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * Author: Ettore Perazzoli <ettore@ximian.com>
 */

/* FIXME: Doesn't throw exceptions properly.  */

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

#include "e-corba-shortcuts.h"

#include "e-util/e-corba-utils.h"

#include <gal/util/e-util.h>


#define PARENT_TYPE bonobo_x_object_get_type ()
static BonoboXObjectClass *parent_class = NULL;

struct _ECorbaShortcutsPrivate {
    EShortcuts *shortcuts;
};


/* Utility functions.  */

static const char *
string_from_corba (CORBA_char *corba_string)
{
    if (corba_string[0] == '\0')
        return NULL;

    return corba_string;
}

static void
shortcut_list_to_corba (const GSList *shortcut_list,
            GNOME_Evolution_Shortcuts_ShortcutList *shortcut_list_return)
{
    GNOME_Evolution_Shortcuts_Shortcut *buffer;
    const GSList *p;
    int num_shortcuts;
    int i;

    num_shortcuts = g_slist_length ((GSList *) shortcut_list); /* safe cast, GLib sucks */

    shortcut_list_return->_maximum = num_shortcuts;
    shortcut_list_return->_length = num_shortcuts;

    buffer = CORBA_sequence_GNOME_Evolution_Shortcuts_Shortcut_allocbuf (num_shortcuts);
    shortcut_list_return->_buffer = buffer;

    for (p = shortcut_list, i = 0; p != NULL; p = p->next, i++) {
        const EShortcutItem *item;

        item = (const EShortcutItem *) p->data;

        buffer[i].uri  = CORBA_string_dup (e_safe_corba_string (item->uri));
        buffer[i].name = CORBA_string_dup (e_safe_corba_string (item->name));
        buffer[i].type = CORBA_string_dup (e_safe_corba_string (item->type));
    }

    CORBA_sequence_set_release (shortcut_list_return, TRUE);
}


/* GtkObject methods.  */

static void
impl_destroy (GtkObject *object)
{
    ECorbaShortcuts *corba_shortcuts;
    ECorbaShortcutsPrivate *priv;

    corba_shortcuts = E_CORBA_SHORTCUTS (object);
    priv = corba_shortcuts->priv;

    gtk_object_unref (GTK_OBJECT (priv->shortcuts));

    g_free (priv);

    (* GTK_OBJECT_CLASS (parent_class)->destroy) (object);
}


static void
impl_add (PortableServer_Servant servant,
      const CORBA_short group_num,
      const CORBA_short position,
      const GNOME_Evolution_Shortcuts_Shortcut *shortcut,
      CORBA_Environment *ev)
{
    ECorbaShortcuts *corba_shortcuts;
    ECorbaShortcutsPrivate *priv;

    corba_shortcuts = E_CORBA_SHORTCUTS (bonobo_object_from_servant (servant));
    priv = corba_shortcuts->priv;

    e_shortcuts_add_shortcut (priv->shortcuts, group_num, position,
                  string_from_corba (shortcut->uri),
                  string_from_corba (shortcut->name),
                  0,
                  string_from_corba (shortcut->type));
}

static void
impl_remove (PortableServer_Servant servant,
         const CORBA_short group_num,
         const CORBA_short item_num,
         CORBA_Environment *ev)
{
    ECorbaShortcuts *corba_shortcuts;
    ECorbaShortcutsPrivate *priv;

    corba_shortcuts = E_CORBA_SHORTCUTS (bonobo_object_from_servant (servant));
    priv = corba_shortcuts->priv;

    e_shortcuts_remove_shortcut (priv->shortcuts, group_num, item_num);
}

static GNOME_Evolution_Shortcuts_Shortcut *
impl_get (PortableServer_Servant servant,
      const CORBA_short group_num,
      const CORBA_short item_num,
      CORBA_Environment *ev)
{
    ECorbaShortcuts *corba_shortcuts;
    ECorbaShortcutsPrivate *priv;
    GNOME_Evolution_Shortcuts_Shortcut *retval;
    const EShortcutItem *item;

    corba_shortcuts = E_CORBA_SHORTCUTS (bonobo_object_from_servant (servant));
    priv = corba_shortcuts->priv;

    item = e_shortcuts_get_shortcut (priv->shortcuts, group_num, item_num);
    if (item == NULL) {
        CORBA_exception_set (ev, CORBA_USER_EXCEPTION,
                     ex_GNOME_Evolution_Shortcuts_NotFound, NULL);
        return NULL;
    }

    retval = GNOME_Evolution_Shortcuts_Shortcut__alloc ();
    retval->uri  = CORBA_string_dup (e_safe_corba_string (item->uri));
    retval->name = CORBA_string_dup (e_safe_corba_string (item->name));
    retval->type = CORBA_string_dup (e_safe_corba_string (item->type));

    return retval;
}

static void
impl_addGroup (PortableServer_Servant servant,
           const CORBA_short position,
           const CORBA_char *name,
           CORBA_Environment *ev)
{
    ECorbaShortcuts *corba_shortcuts;
    ECorbaShortcutsPrivate *priv;

    corba_shortcuts = E_CORBA_SHORTCUTS (bonobo_object_from_servant (servant));
    priv = corba_shortcuts->priv;

    e_shortcuts_add_group (priv->shortcuts, position, name);
}

static void
impl_removeGroup (PortableServer_Servant servant,
          const CORBA_short group_num,
          CORBA_Environment *ev)
{
    ECorbaShortcuts *corba_shortcuts;
    ECorbaShortcutsPrivate *priv;

    corba_shortcuts = E_CORBA_SHORTCUTS (bonobo_object_from_servant (servant));
    priv = corba_shortcuts->priv;

    e_shortcuts_remove_group (priv->shortcuts, group_num);
}

static GNOME_Evolution_Shortcuts_Group *
impl_getGroup (PortableServer_Servant servant,
           const CORBA_short group_num,
           CORBA_Environment *ev)
{
    ECorbaShortcuts *corba_shortcuts;
    ECorbaShortcutsPrivate *priv;
    GNOME_Evolution_Shortcuts_Group *group;
    const GSList *list;

    corba_shortcuts = E_CORBA_SHORTCUTS (bonobo_object_from_servant (servant));
    priv = corba_shortcuts->priv;

    list = e_shortcuts_get_shortcuts_in_group (priv->shortcuts, group_num);

    group = GNOME_Evolution_Shortcuts_Group__alloc ();

    group->name = CORBA_string_dup (e_shortcuts_get_group_title (priv->shortcuts, group_num));

    shortcut_list_to_corba (list, & group->shortcuts);

    return group;
}

static CORBA_sequence_GNOME_Evolution_Shortcuts_Group *
impl__get_groups (PortableServer_Servant servant,
          CORBA_Environment *ev)
{
    GNOME_Evolution_Shortcuts_GroupList *list;
    ECorbaShortcuts *corba_shortcuts;
    ECorbaShortcutsPrivate *priv;
    GSList *group_titles;
    const GSList *p;
    int i;

    corba_shortcuts = E_CORBA_SHORTCUTS (bonobo_object_from_servant (servant));
    priv = corba_shortcuts->priv;

    list = GNOME_Evolution_Shortcuts_GroupList__alloc ();
    list->_length = e_shortcuts_get_num_groups (priv->shortcuts);
    list->_maximum = list->_length;
    list->_buffer = CORBA_sequence_GNOME_Evolution_Shortcuts_Group_allocbuf (list->_maximum);

    CORBA_sequence_set_release (list, TRUE);

    group_titles = e_shortcuts_get_group_titles (priv->shortcuts);
    for (p = group_titles, i = 0; p != NULL; p = p->next, i ++) {
        char *group_title;
        const GSList *shortcuts;

        group_title = (char *) p->data;

        shortcuts = e_shortcuts_get_shortcuts_in_group (priv->shortcuts, i);

        list->_buffer[i].name = CORBA_string_dup (group_title);
        shortcut_list_to_corba (shortcuts, &list->_buffer[i].shortcuts);

        g_free (group_title);
    }

    g_slist_free (group_titles);

    return list;
}


static void
class_init (GtkObjectClass *object_class)
{
    ECorbaShortcutsClass *corba_shortcuts_class;
    POA_GNOME_Evolution_Shortcuts__epv *epv;

    parent_class = gtk_type_class (PARENT_TYPE);

    object_class->destroy = impl_destroy;

    corba_shortcuts_class = E_CORBA_SHORTCUTS_CLASS (object_class);

    epv = & corba_shortcuts_class->epv;
    epv->add         = impl_add;
    epv->remove      = impl_remove;
    epv->get         = impl_get;
    epv->addGroup    = impl_addGroup;
    epv->removeGroup = impl_removeGroup;
    epv->getGroup    = impl_getGroup;
    epv->_get_groups = impl__get_groups;
}

static void
init (ECorbaShortcuts *corba_shortcuts)
{
    ECorbaShortcutsPrivate *priv;

    priv = g_new (ECorbaShortcutsPrivate, 1);
    priv->shortcuts = NULL;

    corba_shortcuts->priv = priv;
}


ECorbaShortcuts *
e_corba_shortcuts_new (EShortcuts *shortcuts)
{
    ECorbaShortcuts *corba_shortcuts;

    g_return_val_if_fail (shortcuts != NULL, NULL);
    g_return_val_if_fail (E_IS_SHORTCUTS (shortcuts), NULL);

    corba_shortcuts = gtk_type_new (e_corba_shortcuts_get_type ());

    gtk_object_ref (GTK_OBJECT (shortcuts));
    corba_shortcuts->priv->shortcuts = shortcuts;

    return corba_shortcuts;
}


E_MAKE_X_TYPE (e_corba_shortcuts, "ECorbaShortcuts", ECorbaShortcuts,
           class_init, init, PARENT_TYPE,
           POA_GNOME_Evolution_Shortcuts__init,
           GTK_STRUCT_OFFSET (ECorbaShortcutsClass, epv))