aboutsummaryrefslogtreecommitdiffstats
path: root/mail/folder-browser-factory.c
blob: 213e1408ad7544bfc402a267ec7255ba5e3c30db (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
/* -*- 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 "main.h"
#include "shell/Evolution.h"
#include "shell/evolution-service-repository.h"


static const gchar *warning_dialog_buttons[] = {
    "Cancel",
    "OK",
    NULL
};
            
static void
folder_browser_set_shell (EvolutionServiceRepository *sr,
              Evolution_Shell shell, 
              void *closure)
{
    FolderBrowser *folder_browser;

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

    folder_browser = FOLDER_BROWSER (closure);
    
    /* FIXME : ref the shell here */
    folder_browser->shell = shell;
    
}

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 ("Don't do that",
                   "I know what I'm doing,\nI want to crash my mail files",
                   "I'll try it later",
                   NULL);

    label = gtk_label_new ("This is a developement version of Evolution.\n "
                   "Using the mail component on your mail files\n "
                   "is extremely hazardous.\n"
                   "Please backup all your mails before trying\n "
                   "this program. \n     You have been warned\n");
    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 (label));
    gtk_object_destroy (GTK_OBJECT (warning_dialog));

    return result;
    
} 

/*
 * 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;

    warning_result = development_warning ();
    
    if (warning_result) 
        folder_browser = gtk_label_new ("This should be the mail component");
    else {
        folder_browser = folder_browser_new ();
        folder_browser_set_uri (FOLDER_BROWSER (folder_browser), "inbox");
    }
    
    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;
    }
    
    if (!warning_result)
        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 (
            "GOADID:Evolution:FolderBrowserFactory:1.0",
            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);
    }
}