aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/calendar-commands.c
blob: 29557e2d682dd88fac19f46188dc93dc551c417f (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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* Evolution calendar - Commands for the calendar GUI control
 *
 * Copyright (C) 1998 The Free Software Foundation
 * Copyright (C) 2000 Helix Code, Inc.
 * Copyright (C) 2000 Ximian, Inc.
 *
 * Authors: Miguel de Icaza <miguel@ximian.com>
 *          Federico Mena-Quintero <federico@ximian.com>
 *          Seth Alves <alves@hungry.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * 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.
 */

#include <config.h>
#include <pwd.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include <glib.h>
#include <libgnome/gnome-defs.h>
#include <libgnome/gnome-i18n.h>
#include <libgnomeui/gnome-messagebox.h>
#include <libgnorba/gnorba.h>
#include <bonobo.h>
#include <cal-util/timeutil.h>
#include "calendar-commands.h"
#include "gnome-cal.h"
#include "goto.h"
#include "print.h"
#include "dialogs/cal-prefs-dialog.h"


/* A list of all of the calendars started */
static GList *all_calendars = NULL;

/* We have one global preferences dialog. */
static CalPrefsDialog *preferences_dialog = NULL;

/* Callback for the new appointment command */
static void
new_appointment_cb (BonoboUIComponent *uic, gpointer data, const char *path)
{
    GnomeCalendar *gcal;

    gcal = GNOME_CALENDAR (data);
    gnome_calendar_new_appointment (gcal);
}

/* Prints the calendar at its current view and time range */
static void
print (GnomeCalendar *gcal, gboolean preview)
{
    time_t start;
    const char *view;
    PrintView print_view;

    gnome_calendar_get_current_time_range (gcal, &start, NULL);
    view = gnome_calendar_get_current_view_name (gcal);

    if (strcmp (view, "dayview") == 0)
        print_view = PRINT_VIEW_DAY;
    else if (strcmp (view, "workweekview") == 0 || strcmp (view, "weekview") == 0)
        print_view = PRINT_VIEW_WEEK;
    else if (strcmp (view, "monthview") == 0)
        print_view = PRINT_VIEW_MONTH;
    else {
        g_assert_not_reached ();
        print_view = PRINT_VIEW_DAY;
    }

    print_calendar (gcal, preview, start, print_view);
}

/* File/Print callback */
static void
file_print_cb (BonoboUIComponent *uic, gpointer data, const char *path)
{
    GnomeCalendar *gcal;

    gcal = GNOME_CALENDAR (data);
    print (gcal, FALSE);
}


/* This iterates over each calendar telling them to update their config
   settings. */
void
update_all_config_settings (void)
{
    GList *l;

    for (l = all_calendars; l; l = l->next)
        gnome_calendar_update_config_settings (GNOME_CALENDAR (l->data), FALSE);
}


/* Sets a clock cursor for the specified calendar window */
static void
set_clock_cursor (GnomeCalendar *gcal)
{
    GdkCursor *cursor;

    cursor = gdk_cursor_new (GDK_WATCH);
    gdk_window_set_cursor (GTK_WIDGET (gcal)->window, cursor);
    gdk_cursor_destroy (cursor);
    gdk_flush ();
}

/* Resets the normal cursor for the specified calendar window */
static void
set_normal_cursor (GnomeCalendar *gcal)
{
    gdk_window_set_cursor (GTK_WIDGET (gcal)->window, NULL);
    gdk_flush ();
}

static void
previous_clicked (BonoboUIComponent *uic, gpointer data, const char *path)
{
    GnomeCalendar *gcal;

    gcal = GNOME_CALENDAR (data);

    set_clock_cursor (gcal);
    gnome_calendar_previous (gcal);
    set_normal_cursor (gcal);
}

static void
next_clicked (BonoboUIComponent *uic, gpointer data, const char *path)
{
    GnomeCalendar *gcal;

    gcal = GNOME_CALENDAR (data);

    set_clock_cursor (gcal);
    gnome_calendar_next (gcal);
    set_normal_cursor (gcal);
}

static void
today_clicked (BonoboUIComponent *uic, gpointer data, const char *path)
{
    GnomeCalendar *gcal;

    gcal = GNOME_CALENDAR (data);

    set_clock_cursor (gcal);
    gnome_calendar_goto_today (gcal);
    set_normal_cursor (gcal);
}

static void
goto_clicked (BonoboUIComponent *uic, gpointer data, const char *path)
{
    GnomeCalendar *gcal;

    gcal = GNOME_CALENDAR (data);

    goto_dialog (gcal);
}

static void
show_day_view_clicked (BonoboUIComponent *uic, gpointer data, const char *path)
{
    GnomeCalendar *gcal;

    gcal = GNOME_CALENDAR (data);

    gnome_calendar_set_view (gcal, "dayview", FALSE, TRUE);
}

static void
show_work_week_view_clicked (BonoboUIComponent *uic, gpointer data, const char *path)
{
    GnomeCalendar *gcal;

    gcal = GNOME_CALENDAR (data);

    gnome_calendar_set_view (gcal, "workweekview", FALSE, TRUE);
}

static void
show_week_view_clicked (BonoboUIComponent *uic, gpointer data, const char *path)
{
    GnomeCalendar *gcal;

    gcal = GNOME_CALENDAR (data);

    gnome_calendar_set_view (gcal, "weekview", FALSE, TRUE);
}

static void
show_month_view_clicked (BonoboUIComponent *uic, gpointer data, const char *path)
{
    GnomeCalendar *gcal;

    gcal = GNOME_CALENDAR (data);

    gnome_calendar_set_view (gcal, "monthview", FALSE, TRUE);
}


static void
new_calendar_cmd (BonoboUIComponent *uic, gpointer data, const char *path)
{
    new_calendar ();
}

static void
open_ok (GtkWidget *widget, GtkFileSelection *fs)
{
    GtkWidget *error_dialog;
    int ret;
    if(!g_file_exists (gtk_file_selection_get_filename (fs))) {
        error_dialog = gnome_message_box_new (
            _("File not found"),
            GNOME_MESSAGE_BOX_ERROR,
            GNOME_STOCK_BUTTON_OK,
            NULL);

        gnome_dialog_set_parent (GNOME_DIALOG (error_dialog), GTK_WINDOW (fs));
        ret = gnome_dialog_run (GNOME_DIALOG (error_dialog));
    } else {
        /* FIXME: find out who owns this calendar and use that name */
#ifndef NO_WARNINGS
#warning "FIXME: find out who owns this calendar and use that name"
#endif
        /*
        new_calendar ("Somebody", gtk_file_selection_get_filename (fs));
        */
        gtk_widget_destroy (GTK_WIDGET (fs));
    }
}

static void
open_calendar_cmd (BonoboUIComponent *uic, gpointer data, const char *path)
{
    GtkFileSelection *fs;

    fs = GTK_FILE_SELECTION (gtk_file_selection_new (_("Open calendar")));

    gtk_signal_connect (GTK_OBJECT (fs->ok_button), "clicked",
                (GtkSignalFunc) open_ok,
                fs);
    gtk_signal_connect_object (GTK_OBJECT (fs->cancel_button), "clicked",
                   (GtkSignalFunc) gtk_widget_destroy,
                   GTK_OBJECT (fs));

    gtk_widget_show (GTK_WIDGET (fs));
    gtk_grab_add (GTK_WIDGET (fs)); /* Yes, it is modal, so sue me */
}

static void
save_ok (GtkWidget *widget, GtkFileSelection *fs)
{
    GnomeCalendar *gcal;
    gchar *fname;

    gcal = GNOME_CALENDAR (gtk_object_get_user_data (GTK_OBJECT (fs)));
    gtk_window_set_wmclass (GTK_WINDOW (gcal), "gnomecal", "gnomecal");

    fname = g_strdup (gtk_file_selection_get_filename (fs));
    g_free(fname);
    gtk_main_quit ();
}

static gint
close_save (GtkWidget *w)
{
    gtk_main_quit ();
    return TRUE;
}

static void
save_as_calendar_cmd (BonoboUIComponent *uic, gpointer data, const char *path)
{
    GnomeCalendar *gcal;
    GtkFileSelection *fs;

    gcal = GNOME_CALENDAR (data);

    fs = GTK_FILE_SELECTION (gtk_file_selection_new (_("Save calendar")));
    gtk_object_set_user_data (GTK_OBJECT (fs), gcal);

    gtk_signal_connect (GTK_OBJECT (fs->ok_button), "clicked",
                (GtkSignalFunc) save_ok,
                fs);
    gtk_signal_connect_object (GTK_OBJECT (fs->cancel_button), "clicked",
                   (GtkSignalFunc) close_save,
                   GTK_OBJECT (fs));
    gtk_signal_connect_object (GTK_OBJECT (fs), "delete_event",
                   GTK_SIGNAL_FUNC (close_save),
                   GTK_OBJECT (fs));
    gtk_widget_show (GTK_WIDGET (fs));
    gtk_grab_add (GTK_WIDGET (fs)); /* Yes, it is modal, so sue me even more */
    gtk_main ();
    gtk_widget_destroy (GTK_WIDGET (fs));
}

static void
properties_cmd (BonoboUIComponent *uic, gpointer data, const char *path)
{
    if (!preferences_dialog)
        preferences_dialog = cal_prefs_dialog_new ();
    else
        cal_prefs_dialog_show (preferences_dialog);
}


static BonoboUIVerb verbs [] = {
    BONOBO_UI_VERB ("CalendarNew", new_calendar_cmd),
    BONOBO_UI_VERB ("CalendarOpen", open_calendar_cmd),
    BONOBO_UI_VERB ("CalendarSaveAs", save_as_calendar_cmd),
    BONOBO_UI_VERB ("CalendarPrint", file_print_cb),
    BONOBO_UI_VERB ("EditNewAppointment", new_appointment_cb),
    BONOBO_UI_VERB ("CalendarPreferences", properties_cmd),
          
    BONOBO_UI_VERB ("CalendarPrev", previous_clicked),
    BONOBO_UI_VERB ("CalendarToday", today_clicked),
    BONOBO_UI_VERB ("CalendarNext", next_clicked),
    BONOBO_UI_VERB ("CalendarGoto", goto_clicked),
          
    BONOBO_UI_VERB ("ShowDayView", show_day_view_clicked),
    BONOBO_UI_VERB ("ShowWorkWeekView", show_work_week_view_clicked),
    BONOBO_UI_VERB ("ShowWeekView", show_week_view_clicked),
    BONOBO_UI_VERB ("ShowMonthView", show_month_view_clicked),

    BONOBO_UI_VERB_END
};

static void
set_pixmap (BonoboUIComponent *uic,
        const char        *xml_path,
        const char        *icon)
{
    char *path;
    GdkPixbuf *pixbuf;

    path = g_concat_dir_and_file (EVOLUTION_DATADIR "/images/evolution", icon);

    pixbuf = gdk_pixbuf_new_from_file (path);
    if (pixbuf == NULL) {
        g_warning ("Cannot load image -- %s", path);
        g_free (path);
        return;
    }

    bonobo_ui_util_set_pixbuf (uic, xml_path, pixbuf);

    gdk_pixbuf_unref (pixbuf);

    g_free (path);
}

static void
update_pixmaps (BonoboUIComponent *uic)
{
    set_pixmap (uic, "/Toolbar/New",      "buttons/new_appointment.png");

    set_pixmap (uic, "/Toolbar/DayView",      "buttons/dayview.xpm");
    set_pixmap (uic, "/Toolbar/WorkWeekView", "buttons/workweekview.xpm");
    set_pixmap (uic, "/Toolbar/WeekView",     "buttons/weekview.xpm");
    set_pixmap (uic, "/Toolbar/MonthView",    "buttons/monthview.xpm");
}

void
calendar_control_activate (BonoboControl *control,
               GnomeCalendar *cal)
{
    Bonobo_UIContainer remote_uih;
    BonoboUIComponent *uic;

    uic = bonobo_control_get_ui_component (control);
    g_assert (uic != NULL);

    remote_uih = bonobo_control_get_remote_ui_container (control);
    bonobo_ui_component_set_container (uic, remote_uih);
    bonobo_object_release_unref (remote_uih, NULL);

#if 0
    /* FIXME: Need to update this to use new Bonobo ui stuff somehow.
       Also need radio buttons really. */

    /* Note that these indices should correspond with the button indices
       in the gnome_toolbar_view_buttons UIINFO struct. */
    gnome_calendar_set_view_buttons (cal,
                     gnome_toolbar_view_buttons[0].widget,
                     gnome_toolbar_view_buttons[1].widget,
                     gnome_toolbar_view_buttons[2].widget,
                     gnome_toolbar_view_buttons[3].widget);

    /* This makes the appropriate radio button in the toolbar active. */
    gnome_calendar_update_view_buttons (cal);
#endif
    
    bonobo_ui_component_add_verb_list_with_data (
        uic, verbs, cal);

    bonobo_ui_component_freeze (uic, NULL);

    bonobo_ui_util_set_ui (uic, EVOLUTION_DATADIR,
                   "evolution-calendar.xml",
                   "evolution-calendar");

    update_pixmaps (uic);

    bonobo_ui_component_thaw (uic, NULL);
}

void
calendar_control_deactivate (BonoboControl *control)
{
    BonoboUIComponent *uic = bonobo_control_get_ui_component (control);
    g_assert (uic != NULL);

    bonobo_ui_component_rm (uic, "/", NULL);
    bonobo_ui_component_unset_container (uic);
}

GnomeCalendar *
new_calendar (void)
{
    GtkWidget *gcal;

    gcal = gnome_calendar_new ();
    if (!gcal) {
        gnome_warning_dialog (_("Could not create the calendar view.  Please check your "
                    "ORBit and OAF setup."));
        return NULL;
    }

    all_calendars = g_list_prepend (all_calendars, gcal);

    return GNOME_CALENDAR (gcal);
}


void
calendar_set_uri (GnomeCalendar *gcal, char *calendar_file)
{
    g_return_if_fail (gcal);
    g_return_if_fail (calendar_file);

    gnome_calendar_open (gcal, calendar_file);
}