aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/e-summary-factory.c
blob: e6e5f75e851d091eb96f3e513873321c3ebe7ca9 (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
/*
 * e-summary-factory.c: Executive Summary Factory.
 *
 * Copyright (C) 2001 Ximian, Inc.
 *
 * Authors:  Iain Holmes <iain@ximian.com>
 */

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

#include <gtk/gtk.h>
#include <bonobo/bonobo-control.h>
#include <bonobo/bonobo-exception.h>
#include <bonobo/bonobo-ui-util.h>

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

#include "e-summary.h"
#include "e-summary-factory.h"
#include "e-summary-offline-handler.h"
#include "e-summary-preferences.h"
#include "evolution-shell-component-utils.h" /* For E_PIXMAP */

BonoboUIVerb verbs[] = {
    BONOBO_UI_VERB ("PrintMyEvolution", e_summary_print),
    BONOBO_UI_VERB ("ToolsSettings", e_summary_configure),
    BONOBO_UI_VERB_END
};


static EPixmap pixmaps [] = {
    E_PIXMAP ("/commands/PrintMyEvolution", "print.xpm"),
    E_PIXMAP ("/commands/ToolsSettings", "configure_16_mail.xpm"),
    E_PIXMAP ("/Toolbar/PrintMyEvolution", "buttons/print.png"),
    E_PIXMAP_END
};

static void
control_activate (BonoboControl *control,
          BonoboUIComponent *ui_component,
          ESummary *summary)
{
    Bonobo_UIContainer container;

    container = bonobo_control_get_remote_ui_container (control);
    bonobo_ui_component_set_container (ui_component, container);
    bonobo_object_release_unref (container, NULL);

    bonobo_ui_component_add_verb_list_with_data (ui_component, verbs, summary);
    bonobo_ui_component_freeze (ui_component, NULL);

    bonobo_ui_util_set_ui (ui_component, EVOLUTION_DATADIR,
                   "my-evolution.xml", "my-evolution");
    e_pixmaps_update (ui_component, pixmaps); 

    bonobo_ui_component_thaw (ui_component, NULL);
}

static void
control_deactivate (BonoboControl *control,
            BonoboUIComponent *ui_component,
            ESummary *summary)
{
    bonobo_ui_component_unset_container (ui_component);
}

static void
control_activate_cb (BonoboControl *control,
             gboolean activate,
             ESummary *summary)
{
    BonoboUIComponent *ui_component;
    
    ui_component = bonobo_control_get_ui_component (control);
    
    if (summary->shell_view_interface == NULL) {
        Bonobo_ControlFrame control_frame;
        CORBA_Environment ev;

        control_frame = bonobo_control_get_control_frame (control);
        if (control_frame == NULL) {
            goto out;
        }

        CORBA_exception_init (&ev);
        summary->shell_view_interface = Bonobo_Unknown_queryInterface (control_frame, "IDL:GNOME/Evolution/ShellView:1.0", &ev);

        if (BONOBO_EX (&ev)) {
            g_warning ("Error getting ShellView. %s", CORBA_exception_id (&ev));
            summary->shell_view_interface = CORBA_OBJECT_NIL;
        }
        CORBA_exception_free (&ev);
    }
 out:

    if (activate)
        control_activate (control, ui_component, summary);
    else
        control_deactivate (control, ui_component, summary);
}

static void
control_destroy_cb (BonoboControl *control,
            ESummary *summary)
{
    gtk_object_destroy (GTK_OBJECT (summary));
}

BonoboControl *
e_summary_factory_new_control (const char *uri,
                   const GNOME_Evolution_Shell shell,
                   ESummaryOfflineHandler *handler)
{
    BonoboControl *control;
    GtkWidget *summary;

    summary = e_summary_new (shell);
    if (summary == NULL) {
        return NULL;
    }

    e_summary_offline_handler_set_summary (handler, E_SUMMARY (summary));
    gtk_widget_show (summary);
    
    control = bonobo_control_new (summary);

    if (control == NULL) {
        gtk_object_destroy (GTK_OBJECT (summary));
        return NULL;
    }

    gtk_signal_connect (GTK_OBJECT (control), "activate",
                control_activate_cb, summary);
    gtk_signal_connect (GTK_OBJECT (control), "destroy",
                control_destroy_cb, summary);

    return control;
}