aboutsummaryrefslogtreecommitdiffstats
path: root/mail/folder-browser-factory.c
blob: b999d822bcd19e1469cbfbd894c9ed6cb366139b (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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * folder-browser-factory.c: A Bonobo Control factory for Folder Browsers
 *
 * Author:
 *   Miguel de Icaza (miguel@helixcode.com)
 *
 * (C) 2000 Helix Code, Inc.
 */
#include <config.h>
#include <gnome.h>
#include <bonobo/bonobo-main.h>
#include <bonobo/bonobo-object.h>
#include <bonobo/bonobo-generic-factory.h>
#include <bonobo/bonobo-control.h> 
#include "e-util/e-util.h"
#include "e-util/e-gui-utils.h"
#include "folder-browser.h"
#include "mail.h"
#include "shell/Evolution.h"
#include "shell/evolution-service-repository.h"

#ifdef USING_OAF
#define CONTROL_FACTORY_ID "OAFIID:control-factory:evolution-mail:25902062-543b-4f44-8702-d90145fcdbf2"
#else
#define CONTROL_FACTORY_ID "control-factory:evolution-mail"
#endif
            
static void
folder_browser_set_shell (EvolutionServiceRepository *sr,
              Evolution_Shell shell, 
              void *closure)
{
    FolderBrowser *folder_browser;
    CORBA_Environment ev;

    g_return_if_fail (closure);
    g_return_if_fail (IS_FOLDER_BROWSER (closure));
    g_return_if_fail (shell != CORBA_OBJECT_NIL);

    CORBA_exception_init (&ev);

    folder_browser = FOLDER_BROWSER (closure);

    folder_browser->shell = shell;

    /* test the component->shell registration */
    Evolution_Shell_register_service (shell, Evolution_Shell_MAIL_STORE, "a_service", &ev);

    CORBA_exception_free (&ev);
}

static void 
folder_browser_control_add_service_repository_interface (BonoboControl *control,
                             GtkWidget *folder_browser)
{
    EvolutionServiceRepository *sr;

    /* 
     * create an implementation for the Evolution::ServiceRepository
     * interface
     */
    sr = evolution_service_repository_new (folder_browser_set_shell,
                           (void *)folder_browser);
    
    /* add the interface to the control */
    bonobo_object_add_interface (BONOBO_OBJECT (control), 
                     BONOBO_OBJECT (sr));
}


static int
development_warning ()
{
    gint result;
    GtkWidget *label, *warning_dialog;

    warning_dialog = gnome_dialog_new (
        "Evolution 0.0",
        GNOME_STOCK_BUTTON_OK,
        NULL);

    label = gtk_label_new (
        _(
          "Hi.  Thanks for taking the time to download this preview release of\n"
          "the Evolution groupware suite.\n"
          "\n"
          "The Evolution team has worked hard to make Evolution as robust,\n"
          "extensible, pretty, fast and well-suited to heavy internet users as\n"
          "possible.  And we're very tired.  But we're not done -- not yet.\n"
          "\n"
          "As you explore Evolution, please understand that most of our work has\n"
          "been focused on the backend engine which drives the entire system and\n"
          "not on the user interface.  We are just cresting the hill now, though,\n"
          "and will be pouring most of our love and attention into the UI from\n"
          "here out.  But at least you know that you're not using demoware.\n"
          "\n"
          "So, time for the nerdy disclaimer.  Evolution will: crash, lose your\n"
          "mail, leave stray processes running, consume 100% CPU, race, lock,\n"
          "send HTML mail to random mailing lists, and embarass you in front of\n"
          "your friends and co-workers.  Use at your own risk.\n"
          "\n"
          "We hope that you enjoy the results of our hard work, and we eagerly\n"
          "await your contributions!\n"
          ));
    gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_LEFT);
    gtk_widget_show (label);

    gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (warning_dialog)->vbox), 
                label, TRUE, TRUE, 0);

    label = gtk_label_new (
        _(
          "Thanks\n"
          "The Evolution Team\n"
          ));
    gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_RIGHT);
    gtk_misc_set_alignment(GTK_MISC(label), 1, .5);
    gtk_widget_show (label);

    gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (warning_dialog)->vbox), 
                label, TRUE, TRUE, 0);

    result = gnome_dialog_run (GNOME_DIALOG (warning_dialog));
    
    gtk_object_destroy (GTK_OBJECT (warning_dialog));

    return result;
} 

static void
random_cb (GtkWidget *button, gpointer user_data)
{
    printf ("Yow! I am called back!\n");
}

static GnomeUIInfo gnome_toolbar [] = {
    GNOMEUIINFO_ITEM_STOCK (N_("Get mail"), N_("Check for new mail"), fetch_mail, GNOME_STOCK_PIXMAP_MAIL_RCV),
    GNOMEUIINFO_ITEM_STOCK (N_("Send"), N_("Send a new message"), send_msg, GNOME_STOCK_PIXMAP_MAIL_SND),
    GNOMEUIINFO_ITEM_STOCK (N_("Find"), N_("Find messages"), random_cb, GNOME_STOCK_PIXMAP_SEARCH),

    GNOMEUIINFO_SEPARATOR,

    GNOMEUIINFO_ITEM_STOCK (N_("Reply"), N_("Reply to the sender of this message"), reply_to_sender, GNOME_STOCK_PIXMAP_MAIL_RPL),
    GNOMEUIINFO_ITEM_STOCK (N_("Reply to All"), N_("Reply to all recipients of this message"), reply_to_all, GNOME_STOCK_PIXMAP_MAIL_RPL),

    GNOMEUIINFO_ITEM_STOCK (N_("Forward"), N_("Forward this message"), forward_msg, GNOME_STOCK_PIXMAP_MAIL_FWD),

    GNOMEUIINFO_SEPARATOR,

    GNOMEUIINFO_ITEM_STOCK (N_("Print"), N_("Print the selected message"), random_cb, GNOME_STOCK_PIXMAP_PRINT),

    GNOMEUIINFO_ITEM_STOCK (N_("Delete"), N_("Delete this message"), delete_msg, GNOME_STOCK_PIXMAP_TRASH),

    GNOMEUIINFO_END
};

static void
control_activate (BonoboControl *control, BonoboUIHandler *uih)
{
    Bonobo_UIHandler  remote_uih;
    BonoboControl *toolbar_control;
    GtkWidget *toolbar, *folder_browser;

    remote_uih = bonobo_control_get_remote_ui_handler (control);
    bonobo_ui_handler_set_container (uih, remote_uih);      

    folder_browser = bonobo_control_get_widget (control);

    bonobo_ui_handler_menu_new_item (uih, "/Tools/Expunge", N_("_Expunge"),
                     NULL, -1,
                     BONOBO_UI_HANDLER_PIXMAP_STOCK,
                     GNOME_STOCK_PIXMAP_TRASH,
                     0, 0, expunge_folder, folder_browser);

    toolbar = gtk_toolbar_new (GTK_ORIENTATION_HORIZONTAL,
                   GTK_TOOLBAR_BOTH);

    gnome_app_fill_toolbar_with_data (GTK_TOOLBAR (toolbar),
                      gnome_toolbar,
                      NULL, folder_browser);

    gtk_widget_show_all (toolbar);

    toolbar_control = bonobo_control_new (toolbar);
    bonobo_ui_handler_dock_add (uih, "/Toolbar",
                    bonobo_object_corba_objref (BONOBO_OBJECT (toolbar_control)),
                    GNOME_DOCK_ITEM_BEH_EXCLUSIVE,
                    GNOME_DOCK_TOP,
                    1, 1, 0);
}

static void
control_deactivate (BonoboControl *control, BonoboUIHandler *uih)
{
    bonobo_ui_handler_menu_remove (uih, "/File/Mail");
    bonobo_ui_handler_menu_remove (uih, "/Tools/Expunge");
    bonobo_ui_handler_dock_remove (uih, "/Toolbar");
}

static void
control_activate_cb (BonoboControl *control, 
             gboolean activate, 
             gpointer user_data)
{
    BonoboUIHandler  *uih;

    uih = bonobo_control_get_ui_handler (control);
    g_assert (uih);
    
    if (activate)
        control_activate (control, uih);
    else
        control_deactivate (control, uih);
}

static void
control_destroy_cb (BonoboControl *control,
            gpointer       user_data)
{
    GtkWidget *folder_browser = user_data;

    gtk_object_destroy (GTK_OBJECT (folder_browser));
}

/*
 * Creates the Folder Browser, wraps it in a Bonobo Control, and
 * sets the Bonobo Control properties to point to the Folder Browser
 * Properties
 */
static BonoboObject *
folder_browser_factory (BonoboGenericFactory *factory, void *closure)
{
    BonoboControl *control;
    GtkWidget *folder_browser;
    gint warning_result = 0;


    if (!getenv ("EVOLVE_ME_HARDER"))
        warning_result = development_warning ();
    
    if (warning_result) 
        folder_browser = gtk_label_new ("This should be the mail component");
    else
        folder_browser = folder_browser_new ();

    if (folder_browser == NULL)
        return NULL;

    gtk_widget_show(folder_browser);
    
    control = bonobo_control_new (folder_browser);
    
    if (control == NULL){
        gtk_object_destroy (GTK_OBJECT (folder_browser));
        return NULL;
    }
    
    gtk_signal_connect (GTK_OBJECT (control), "activate",
                control_activate_cb, NULL);

    gtk_signal_connect (GTK_OBJECT (control), "destroy",
                control_destroy_cb, folder_browser);    
    
    bonobo_control_set_property_bag (control,
                     FOLDER_BROWSER (folder_browser)->properties);

    /* for the moment, the control has the ability to register 
     * some services itself, but this should not last. 
     * 
     * It's not the way to do it, but we don't have the 
     * correct infrastructure in the shell now.    
     */
    folder_browser_control_add_service_repository_interface (control, folder_browser);          
    return BONOBO_OBJECT (control);
}

void
folder_browser_factory_init (void)
{
    static BonoboGenericFactory *bonobo_folder_browser_factory = NULL;
    
    if (bonobo_folder_browser_factory != NULL)
        return;

    bonobo_folder_browser_factory = bonobo_generic_factory_new (CONTROL_FACTORY_ID,
                                    folder_browser_factory,
                                    NULL);

    if (bonobo_folder_browser_factory == NULL){
        e_notice (NULL, GNOME_MESSAGE_BOX_ERROR,
              _("We are sorry, Evolution's Folder Browser can not be initialized.")); 
        exit (1);
    }
}