aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/evolution-calendar-control.c
blob: 721a5e871c3359648b58eee15dc9bd0a04ed9c58 (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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */

#include <config.h>
#include <gnome.h>
#include <libgnorba/gnorba.h>
#include <bonobo.h>
#include <bonobo/bonobo-control.h>


#include <cal-util/timeutil.h>
#include <gui/alarm.h>
#include <gui/eventedit.h>
#include <gui/gnome-cal.h>
#include <gui/calendar-commands.h>

#define PROPERTY_CALENDAR_URI "calendar_uri"

#define PROPERTY_CALENDAR_URI_IDX 1


CORBA_Environment ev;
CORBA_ORB orb;


static void
control_activate_cb (BonoboControl *control, 
             gboolean activate, 
             gpointer user_data)
{
    if (activate)
        calendar_control_activate (control, user_data);
    else
        calendar_control_deactivate (control);
}



static void
init_bonobo (int argc, char **argv)
{
    gnome_CORBA_init_with_popt_table (
        "evolution-calendar", "0.0",
        &argc, argv, NULL, 0, NULL, GNORBA_INIT_SERVER_FUNC, &ev);

    orb = gnome_CORBA_ORB ();

    if (bonobo_init (orb, NULL, NULL) == FALSE)
        g_error (_("Could not initialize Bonobo"));
}



static void
get_prop (BonoboPropertyBag *bag,
      BonoboArg         *arg,
      guint              arg_id,
      gpointer           user_data)
{
    GnomeCalendar *gcal = user_data;

    switch (arg_id) {

    case PROPERTY_CALENDAR_URI_IDX:
        /*
        if (fb && fb->uri)
            BONOBO_ARG_SET_STRING (arg, fb->uri);
        else
            BONOBO_ARG_SET_STRING (arg, "");
        */
        break;

    default:
        g_warning ("Unhandled arg %d\n", arg_id);
    }
}

static void
set_prop (BonoboPropertyBag *bag,
      const BonoboArg   *arg,
      guint              arg_id,
      gpointer           user_data)
{
    GnomeCalendar *gcal = user_data;

    switch (arg_id) {

    case PROPERTY_CALENDAR_URI_IDX:
        printf ("set_prop: '%s'\n", BONOBO_ARG_GET_STRING (arg));
        calendar_set_uri (gcal, BONOBO_ARG_GET_STRING (arg));
        break;

    default:
        g_warning ("Unhandled arg %d\n", arg_id);
        break;
    }
}


static void
calendar_properties_init (GnomeCalendar *gcal)
{
    gcal->properties = bonobo_property_bag_new (get_prop, set_prop, gcal);

    bonobo_property_bag_add (gcal->properties,
                 PROPERTY_CALENDAR_URI,
                 PROPERTY_CALENDAR_URI_IDX,
                 BONOBO_ARG_STRING,
                 NULL,
                 _("The URI that the calendar will display"),
                 0);

    bonobo_control_set_property_bag (gcal->control, gcal->properties);
}



static BonoboObject *
calendar_factory (BonoboGenericFactory *Factory, void *closure)
{
    BonoboControl *control;

    /* Create the control. */
    GnomeCalendar *cal = new_calendar (full_name, NULL, NULL, 0);

    gtk_widget_show (GTK_WIDGET (cal));

    control = bonobo_control_new (GTK_WIDGET (cal));
    cal->control = control;

    calendar_properties_init (cal);

    gtk_signal_connect (GTK_OBJECT (control), "activate",
                control_activate_cb, cal);

    return BONOBO_OBJECT (control);
}


static void
calendar_factory_init (void)
{
    static BonoboGenericFactory *calendar_control_factory = NULL;

    if (calendar_control_factory != NULL)
        return;

    calendar_control_factory =
        bonobo_generic_factory_new ("control-factory:calendar",
                        calendar_factory, NULL);

    if (calendar_control_factory == NULL) {
        g_error ("I could not register a Calendar factory.");
    }
}


int
main (int argc, char **argv)
{
    alarm_init ();
    init_calendar ();

    g_log_set_always_fatal ((GLogLevelFlags) 0xFFFF);

    CORBA_exception_init (&ev);

    init_bonobo (argc, argv);

    calendar_factory_init ();

    bonobo_main ();

    return 0;
}