aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/control-factory.c
blob: a17790f197ad48a331ca56a99b62b59680ea8adc (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
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* control-factory.c
 *
 * Copyright (C) 2000  Ximian, Inc.
 * Copyright (C) 2000  Ximian, Inc.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * Author: Ettore Perazzoli <ettore@ximian.com>
 */

#include <config.h>
#include <glade/glade.h>
#include <bonobo/bonobo-control.h>
#include <bonobo/bonobo-generic-factory.h>
#include <bonobo/bonobo-persist-file.h>
#include <bonobo/bonobo-context.h>
#include <glade/glade.h>

#include <liboaf/liboaf.h>

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

#include "control-factory.h"

#define PROPERTY_CALENDAR_URI      "folder_uri"
#define PROPERTY_CALENDAR_URI_IDX  1

#define PROPERTY_CALENDAR_VIEW     "view"
#define PROPERTY_CALENDAR_VIEW_IDX 2

#define CONTROL_FACTORY_ID   "OAFIID:GNOME_Evolution_Calendar_ControlFactory"


CORBA_Environment ev;
CORBA_ORB orb;


static void
control_activate_cb (BonoboControl *control, gboolean activate, gpointer data)
{
    GnomeCalendar *gcal;

    gcal = GNOME_CALENDAR (data);

    if (activate)
        calendar_control_activate (control, gcal);
    else
        calendar_control_deactivate (control, gcal);
}

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

    switch (arg_id) {

    case PROPERTY_CALENDAR_URI_IDX:
        uri = cal_client_get_uri (gnome_calendar_get_cal_client (gcal));
        BONOBO_ARG_SET_STRING (arg, uri);
        break;

    case PROPERTY_CALENDAR_VIEW_IDX:
        switch (gnome_calendar_get_view (gcal)) {
        case GNOME_CAL_DAY_VIEW:
            BONOBO_ARG_SET_STRING (arg, "day");
            break;
        case GNOME_CAL_WEEK_VIEW:
            BONOBO_ARG_SET_STRING (arg, "week");
            break;
        case GNOME_CAL_WORK_WEEK_VIEW:
            BONOBO_ARG_SET_STRING (arg, "workweek");
            break;
        case GNOME_CAL_MONTH_VIEW:
            BONOBO_ARG_SET_STRING (arg, "month");
            break;
        }
        break;

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


static void
set_prop (BonoboPropertyBag *bag,
      const BonoboArg   *arg,
      guint              arg_id,
      CORBA_Environment *ev,
      gpointer           user_data)
{
    GnomeCalendar *gcal = user_data;
    char *string;
    GnomeCalendarViewType view;

    switch (arg_id) {
    case PROPERTY_CALENDAR_URI_IDX:
        string = BONOBO_ARG_GET_STRING (arg);
        if (!gnome_calendar_open (gcal, string)) {
            char *msg;

            msg = g_strdup_printf (_("Could not open the folder in '%s'"), string);
            gnome_error_dialog_parented (
                msg,
                GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (gcal))));
            g_free (msg);
        }
        break;

    case PROPERTY_CALENDAR_VIEW_IDX:
        string = BONOBO_ARG_GET_STRING (arg);
        if (!g_strcasecmp (string, "week"))
            view = GNOME_CAL_WEEK_VIEW;
        else if (!g_strcasecmp (string, "workweek"))
            view = GNOME_CAL_WORK_WEEK_VIEW;
        else if (!g_strcasecmp (string, "month"))
            view = GNOME_CAL_MONTH_VIEW;
        else
            view = GNOME_CAL_DAY_VIEW;

        /* This doesn't actually work, because the GalView
         * comes along and resets the view. FIXME.
         */
        gnome_calendar_set_view (gcal, view, FALSE, TRUE);
        break;

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


static void
calendar_properties_init (GnomeCalendar *gcal, BonoboControl *control)
{
    BonoboPropertyBag *pbag;

    pbag = bonobo_property_bag_new (get_prop, set_prop, gcal);

    bonobo_property_bag_add (pbag,
                 PROPERTY_CALENDAR_URI,
                 PROPERTY_CALENDAR_URI_IDX,
                 BONOBO_ARG_STRING,
                 NULL,
                 _("The URI that the calendar will display"),
                 0);
    bonobo_property_bag_add (pbag,
                 PROPERTY_CALENDAR_VIEW,
                 PROPERTY_CALENDAR_VIEW_IDX,
                 BONOBO_ARG_STRING,
                 NULL,
                 _("The type of view to show"),
                 0);

    bonobo_control_set_properties (control, pbag);
    bonobo_object_unref (BONOBO_OBJECT (pbag));
}

/* Callback factory function for calendar controls */
static BonoboObject *
control_factory_fn (BonoboGenericFactory *Factory, void *data)
{
    BonoboControl *control;

    control = control_factory_new_control ();

    if (control)
        return BONOBO_OBJECT (control);
    else
        return NULL;
}


void
control_factory_init (void)
{
    static BonoboGenericFactory *factory = NULL;

    if (factory != NULL)
        return;

    factory = bonobo_generic_factory_new (CONTROL_FACTORY_ID, control_factory_fn, NULL);
    bonobo_running_context_auto_exit_unref (BONOBO_OBJECT (factory));
    
    if (factory == NULL)
        g_error ("I could not register a Calendar control factory.");
}

#if 0
static int
load_calendar (BonoboPersistFile *pf, const CORBA_char *filename, CORBA_Environment *ev, void *closure)
{
    GnomeCalendar *gcal = closure;
    
    return gnome_calendar_open (gcal, filename);
}

static int
save_calendar (BonoboPersistFile *pf, const CORBA_char *filename,
           CORBA_Environment *ev,
           void *closure)
{
    /* Do not know how to save stuff yet */
    return -1;
}

static void
calendar_persist_init (GnomeCalendar *gcal, BonoboControl *control)
{
    BonoboPersistFile *f;

    f = bonobo_persist_file_new (load_calendar, save_calendar, gcal);
    bonobo_object_add_interface (BONOBO_OBJECT (control), BONOBO_OBJECT (f));
}
#endif

BonoboControl *
control_factory_new_control (void)
{
    BonoboControl *control;
    GnomeCalendar *gcal;

    gcal = new_calendar ();
    if (!gcal)
        return NULL;

    gtk_widget_show (GTK_WIDGET (gcal));

    control = bonobo_control_new (GTK_WIDGET (gcal));
    if (!control) {
        g_message ("control_factory_fn(): could not create the control!");
        return NULL;
    }
    gtk_object_set_data (GTK_OBJECT (gcal), "control", control);

    calendar_properties_init (gcal, control);
#if 0
    calendar_persist_init (gcal, control);
#endif
                          
    gtk_signal_connect (GTK_OBJECT (control), "activate",
                GTK_SIGNAL_FUNC (control_activate_cb), gcal);

    return control;
}