aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell.c
blob: 2713df39213b64b87783e7544c787eb1070654b7 (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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */

/*
 * E-shell.c: Shell object for Evolution
 *
 * Authors:
 *   Miguel de Icaza (miguel@helixcode.com)
 *
 * (C) 1999 Miguel de Icaza
 * (C) 2000 Helix Code, Inc.
 */

#include <config.h>
#include <gtk/gtkmain.h>
#include <libgnome/libgnome.h>
#include "Evolution.h"
#include "e-util/e-util.h"
#include "e-shell.h"

#define PARENT_TYPE (bonobo_object_get_type ())

static BonoboObjectClass *e_shell_parent_class;
POA_Evolution_Shell__vepv eshell_vepv;

GtkType e_shell_get_type (void);

void
e_shell_new_appointment (EShell *eshell)
{
    printf ("Unimplemented function invoked: %s\n", __FUNCTION__);
}

void
e_shell_new_meeting_request (EShell *eshell)
{
    printf ("Unimplemented function invoked: %s\n", __FUNCTION__);
}

void
e_shell_new_task (EShell *eshell)
{
    printf ("Unimplemented function invoked: %s\n", __FUNCTION__);
}

void
e_shell_new_task_request (EShell *eshell)
{
    printf ("Unimplemented function invoked: %s\n", __FUNCTION__);
}

void
e_shell_new_contact (EShell *eshell)
{
    printf ("Unimplemented function invoked: %s\n", __FUNCTION__);
}

void
e_shell_new_mail_message (EShell *eshell)
{
    printf ("Unimplemented function invoked: %s\n", __FUNCTION__);
}

void
e_shell_new_distribution_list (EShell *eshell)
{
    printf ("Unimplemented function invoked: %s\n", __FUNCTION__);
}

void
e_shell_new_journal_entry (EShell *eshell)
{
    printf ("Unimplemented function invoked: %s\n", __FUNCTION__);
}

void
e_shell_new_note (EShell *eshell)
{
    printf ("Unimplemented function invoked: %s\n", __FUNCTION__);
}

static void
EShell_cmd_new (PortableServer_Servant servant,
        const Evolution_Shell_NewType type,
        CORBA_Environment *ev)
{
    EShell *eshell = E_SHELL (bonobo_object_from_servant (servant));

    switch (type){
    case Evolution_Shell_APPOINTMENT:
        e_shell_new_appointment (eshell);
        break;
        
    case Evolution_Shell_MEETING_REQUEST:
        e_shell_new_meeting_request (eshell);
        break;

    case Evolution_Shell_TASK:
        e_shell_new_task (eshell);
        break;

    case Evolution_Shell_TASK_REQUEST:
        e_shell_new_task_request (eshell);
        break;

    case Evolution_Shell_CONTACT:
        e_shell_new_contact (eshell);
        break;

    case Evolution_Shell_MAIL_MESSAGE:
        e_shell_new_mail_message (eshell);
        break;

    case Evolution_Shell_DISTRIBUTION_LIST:
        e_shell_new_distribution_list (eshell);
        break;

    case Evolution_Shell_JOURNAL_ENTRY:
        e_shell_new_journal_entry (eshell);
        break;
        
    case Evolution_Shell_NOTE:
        e_shell_new_note (eshell);
        break;
        
    default:
    }
}

static void 
EShell_register_service (PortableServer_Servant servant,
             const Evolution_Shell_ServiceType type,
             const CORBA_char *uri,
             CORBA_Environment *ev)
{
    char *service_type_desc = NULL;

    switch (type) {

    case Evolution_Shell_MAIL_STORE :
        service_type_desc = "store";
        break;
    case Evolution_Shell_MAIL_TRANSPORT :
        service_type_desc = "transport";
        break;
    default :
        service_type_desc = "service of unknown type";
    }
                    
    printf ("A component has registered a %s with uri \"%s\"\n", service_type_desc, uri);

}


static POA_Evolution_Shell__epv *
e_shell_get_epv (void)
{
    POA_Evolution_Shell__epv *epv;

    epv = g_new0 (POA_Evolution_Shell__epv, 1);

    epv->new = EShell_cmd_new;
    epv->register_service = EShell_register_service;

    return epv;
}

static void
init_e_shell_corba_class (void)
{
    eshell_vepv.Bonobo_Unknown_epv = bonobo_object_get_epv ();
    eshell_vepv.Evolution_Shell_epv = e_shell_get_epv ();
}

static void
es_destroy_default_folders (EShell *eshell)
{
    gtk_object_unref (GTK_OBJECT (eshell->default_folders.inbox));
    gtk_object_unref (GTK_OBJECT (eshell->default_folders.outbox));
    gtk_object_unref (GTK_OBJECT (eshell->default_folders.drafts));
    gtk_object_unref (GTK_OBJECT (eshell->default_folders.calendar));
    gtk_object_unref (GTK_OBJECT (eshell->default_folders.tasks));
}

static void
e_shell_destroy (GtkObject *object)
{
    EShell *eshell = E_SHELL (object);

    gtk_object_unref (GTK_OBJECT (eshell->shortcut_bar));
    es_destroy_default_folders (eshell);
    
    GTK_OBJECT_CLASS (e_shell_parent_class)->destroy (object);
}

static void
e_shell_class_init (GtkObjectClass *object_class)
{
    e_shell_parent_class = gtk_type_class (PARENT_TYPE);
    init_e_shell_corba_class ();

    object_class->destroy = e_shell_destroy;
}

static void
e_shell_destroy_views (EShell *eshell)
{

    /*
     * Notice that eshell->views is updated by the various views
     * during unregistration
     */
    while (eshell->views){
        EShellView *view = eshell->views->data;

        gtk_object_destroy (GTK_OBJECT (view));
    }
}

void
e_shell_quit (EShell *eshell)
{
    g_return_if_fail (eshell != NULL);
    g_return_if_fail (E_IS_SHELL (eshell));

    e_shell_destroy_views (eshell);
    
    gtk_main_quit ();
}

static CORBA_Object
create_corba_eshell (BonoboObject *object)
{
    POA_Evolution_Shell *servant;
    CORBA_Environment ev;

    servant = (POA_Evolution_Shell *)g_new0 (BonoboObjectServant, 1);
    servant->vepv = &eshell_vepv;

    CORBA_exception_init (&ev);

    POA_Evolution_Shell__init ((PortableServer_Servant) servant, &ev);
    if (ev._major != CORBA_NO_EXCEPTION){
        CORBA_exception_free (&ev);
        g_free (servant);
        return CORBA_OBJECT_NIL;
    }

    CORBA_exception_free (&ev);

    return bonobo_object_activate_servant (object, servant);
}

static void
e_shell_setup_default_folders (EShell *eshell)
{
    eshell->default_folders.summary = e_folder_new (
        E_FOLDER_SUMMARY, "internal:summary", _("Today"), _("Executive Summary"),
        NULL, "internal:");
    eshell->default_folders.inbox = e_folder_new (
        E_FOLDER_MAIL, "internal:inbox", _("Inbox"), _("New mail messages"),
        NULL, "internal:mail_view");
    eshell->default_folders.outbox = e_folder_new (
        E_FOLDER_MAIL, "internal:outbox", _("Sent messages"), _("Sent mail messages"),
        NULL, "internal:mail_view");
    eshell->default_folders.drafts = e_folder_new (
        E_FOLDER_MAIL, "internal:drafts", _("Drafts"), _("Draft mail messages"),
        NULL, "internal:mail_view");
    eshell->default_folders.calendar = e_folder_new (
        E_FOLDER_CALENDAR, "internal:personal_calendar", _("Calendar"), _("Your calendar"),
        NULL, "internal:calendar_daily");
    eshell->default_folders.contacts = e_folder_new (
        E_FOLDER_CONTACTS, "internal:personal_contacts", _("Contacts"), _("Your contacts list"),
        NULL, "internal:contact_view");
    eshell->default_folders.tasks = e_folder_new (
        E_FOLDER_TASKS, "internal:personal_calendar", _("Tasks"), _("Tasks list"),
        NULL, "internal:tasks_view");
}

static EShortcutGroup *
setup_main_shortcuts (EShell *eshell)
{
    EShortcutGroup *m;

    m = e_shortcut_group_new (_("Main Shortcuts"), FALSE);
    e_shortcut_group_append (m, e_shortcut_new (eshell->default_folders.summary));
    e_shortcut_group_append (m, e_shortcut_new (eshell->default_folders.inbox));
    e_shortcut_group_append (m, e_shortcut_new (eshell->default_folders.calendar));
    e_shortcut_group_append (m, e_shortcut_new (eshell->default_folders.contacts));
    e_shortcut_group_append (m, e_shortcut_new (eshell->default_folders.tasks));

    return m;
}

static EShortcutGroup *
setup_secondary_shortcuts (EShell *eshell)
{
    EShortcutGroup *sec;

    sec = e_shortcut_group_new (_("Other Shortcuts"), TRUE);
    
    e_shortcut_group_append (sec, e_shortcut_new (eshell->default_folders.drafts));
    e_shortcut_group_append (sec, e_shortcut_new (eshell->default_folders.outbox));

    return sec;
}

static void
e_shell_setup_default_shortcuts (EShell *eshell)
{
    eshell->shortcut_bar = e_shortcut_bar_model_new ();
    e_shortcut_bar_model_append (
        eshell->shortcut_bar,
        setup_main_shortcuts (eshell));
    e_shortcut_bar_model_append (
        eshell->shortcut_bar,
        setup_secondary_shortcuts (eshell));
}

static void
e_shell_init (GtkObject *object)
{
    EShell *eshell = E_SHELL (object);
    
    e_shell_setup_default_folders (eshell);
    e_shell_setup_default_shortcuts (eshell);
}

static void
e_shell_construct (EShell *eshell, Evolution_Shell corba_eshell)
{
    bonobo_object_construct (BONOBO_OBJECT (eshell), corba_eshell);
}

EShell *
e_shell_new (void)
{
    Evolution_Shell corba_eshell;
    EShell *eshell;

    eshell = gtk_type_new (e_shell_get_type ());

    corba_eshell = create_corba_eshell (BONOBO_OBJECT (eshell));
    if (corba_eshell == CORBA_OBJECT_NIL){
        gtk_object_destroy (GTK_OBJECT (eshell));
        return NULL;
    }
    
    e_shell_construct (eshell, corba_eshell);

    return eshell;
}

void
e_shell_register_view (EShell *eshell, EShellView *eshell_view)
{
    g_return_if_fail (eshell != NULL);
    g_return_if_fail (E_IS_SHELL (eshell));
    g_return_if_fail (eshell_view != NULL);

    eshell->views = g_slist_prepend (eshell->views, eshell_view);
}

void
e_shell_unregister_view (EShell *eshell, EShellView *eshell_view)
{
    g_return_if_fail (eshell != NULL);
    g_return_if_fail (E_IS_SHELL (eshell));
    g_return_if_fail (eshell_view != NULL);

    eshell->views = g_slist_remove (eshell->views, eshell_view);
}

E_MAKE_TYPE (e_shell, "EShell", EShell, e_shell_class_init, e_shell_init, PARENT_TYPE);