aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/calendar-commands.c
blob: c2a46fb4e5c09d5b3fd35acdfeb2efdb1c3398c7 (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
/* -*- 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) 1999-2008 Novell, Inc. (www.novell.com)
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 * Authors: Miguel de Icaza <miguel@ximian.com>
 *          Federico Mena-Quintero <federico@ximian.com>
 *          Seth Alves <alves@hungry.com>
 *          Rodrigo Moya <rodrigo@ximian.com>
 *
 * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */

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

#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>

#include <gtk/gtk.h>
#include <libgnomeui/gnome-dialog-util.h>
#include <libgnomeui/gnome-messagebox.h>
#include <libgnomeui/gnome-stock-icons.h>
#include <libgnome/gnome-util.h>
#include <glib/gi18n.h>
#include <bonobo/bonobo-ui-util.h>
#include <bonobo/bonobo-exception.h>
#include <libecal/e-cal-time-util.h>
#include "shell/Evolution.h"
#include "calendar-commands.h"
#include "calendar-config.h"
#include "e-day-view.h"
#include "e-week-view.h"
#include "gnome-cal.h"
#include "goto.h"
#include "print.h"
#include "dialogs/cal-prefs-dialog.h"
#include "itip-utils.h"
#include "e-cal-list-view.h"
#include "evolution-shell-component-utils.h"
#include "e-util/e-icon-factory.h"
#include "e-util/e-util-private.h"
#include "e-cal-menu.h"

/* Focusing information for the calendar view.  We have to keep track of this
 * ourselves because with Bonobo controls, we may get unpaired focus_out events.
 */
typedef struct {
    guint calendar_focused : 1;
    guint taskpad_focused : 1;
} FocusData;

/* 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_unref (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
show_day_view_clicked (BonoboUIComponent *uic, gpointer data, const char *path)
{
    GnomeCalendar *gcal;

    gcal = GNOME_CALENDAR (data);

    gnome_calendar_set_view (gcal, GNOME_CAL_DAY_VIEW);
}

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, GNOME_CAL_WORK_WEEK_VIEW);
}

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

    gcal = GNOME_CALENDAR (data);

    gnome_calendar_set_view (gcal, GNOME_CAL_WEEK_VIEW);
}

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

    gcal = GNOME_CALENDAR (data);

    gnome_calendar_set_view (gcal, GNOME_CAL_MONTH_VIEW);
}


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

    gcal = GNOME_CALENDAR (data);

    gnome_calendar_set_view (gcal, GNOME_CAL_LIST_VIEW);
}


static void
purge_cmd (BonoboUIComponent *uic, gpointer data, const gchar *path)
{
    GnomeCalendar *gcal;
    GtkWidget *dialog, *parent, *box, *label, *spin;
    int response;

    gcal = GNOME_CALENDAR (data);

    /* create the dialog */
    parent = gtk_widget_get_toplevel (GTK_WIDGET (gcal));
    dialog = gtk_message_dialog_new (
        (GtkWindow *)parent,
        GTK_DIALOG_DESTROY_WITH_PARENT,
        GTK_MESSAGE_WARNING,
        GTK_BUTTONS_OK_CANCEL,
        _("This operation will permanently erase all events older than the selected amount of time. If you continue, you will not be able to recover these events."));
    gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_CANCEL);

    box = gtk_hbox_new (FALSE, 6);
    gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), box, TRUE, FALSE, 6);

    label = gtk_label_new (_("Purge events older than"));
    gtk_box_pack_start (GTK_BOX (box), label, TRUE, FALSE, 6);
    spin = gtk_spin_button_new_with_range (0.0, 1000.0, 1.0);
    gtk_spin_button_set_value (GTK_SPIN_BUTTON (spin), 60.0);
    gtk_box_pack_start (GTK_BOX (box), spin, FALSE, FALSE, 6);
    label = gtk_label_new (_("days"));
    gtk_box_pack_start (GTK_BOX (box), label, TRUE, FALSE, 6);

    gtk_widget_show_all (box);

    /* run the dialog */
    response = gtk_dialog_run (GTK_DIALOG (dialog));
    if (response == GTK_RESPONSE_OK) {
        gint days;
        time_t tt;

        days = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (spin));
        tt = time (NULL);
        tt -= (days * (24 * 3600));

        gnome_calendar_purge (gcal, tt);
    }

    gtk_widget_destroy (dialog);
}

struct _sensitize_item {
    char *command;
    guint32 enable;
};

static void
sensitize_items(BonoboUIComponent *uic, struct _sensitize_item *items, guint32 mask)
{
    while (items->command) {
        char command[32];

        if (strlen(items->command)>=21) {
            g_warning ("items->command >= 21: %s\n", items->command);
            continue;
        }
        sprintf(command, "/commands/%s", items->command);

        bonobo_ui_component_set_prop (uic, command, "sensitive",
                          (items->enable & mask) == 0 ? "1" : "0",
                          NULL);
        items++;
    }
}

static struct _sensitize_item taskpad_sensitize_table[] = {
    { "Cut", E_CAL_MENU_SELECT_EDITABLE },
    { "Copy", E_CAL_MENU_SELECT_ANY },
    { "Paste", E_CAL_MENU_SELECT_EDITABLE },
    { "Delete", E_CAL_MENU_SELECT_EDITABLE },
    { NULL }
};

/* Sensitizes the UI Component menu/toolbar tasks commands based on the number
 * of selected tasks.  If enable is FALSE, all will be disabled.  Otherwise, the
 * currently-selected number of tasks will be used.
 */
static void
sensitize_taskpad_commands (GnomeCalendar *gcal, BonoboControl *control, gboolean enable)
{
    BonoboUIComponent *uic;
    ECalendarTable *task_pad;
    ECalModel *model;
    GSList *selected, *l;
    ECalMenu *menu;
    GPtrArray *events;
    ECalMenuTargetSelect *t;

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

    menu = gnome_calendar_get_calendar_menu (gcal);
    task_pad = gnome_calendar_get_task_pad(gcal);
    model = e_calendar_table_get_model (task_pad);
    selected = e_calendar_table_get_selected(task_pad);
    events = g_ptr_array_new();
    for (l=selected;l;l=g_slist_next(l))
        g_ptr_array_add(events, e_cal_model_copy_component_data((ECalModelComponent *)l->data));
    g_slist_free(selected);

    t = e_cal_menu_target_new_select(menu, model, events);
    if (!enable)
        t->target.mask = ~0;

    sensitize_items(uic, taskpad_sensitize_table, t->target.mask);
}

/* Callback used when the selection in the calendar views changes */
static void
gcal_calendar_selection_changed_cb (GnomeCalendar *gcal, gpointer data)
{
    BonoboControl *control;

    control = BONOBO_CONTROL (data);

    calendar_control_sensitize_calendar_commands (control, gcal, TRUE);
}

/* Callback used when the selection in the taskpad changes */
static void
gcal_taskpad_selection_changed_cb (GnomeCalendar *gcal, gpointer data)
{
    BonoboControl *control;

    control = BONOBO_CONTROL (data);

    sensitize_taskpad_commands (gcal, control, TRUE);
}

/* Callback used when the focus changes for a calendar view */
static void
gcal_calendar_focus_change_cb (GnomeCalendar *gcal, gboolean in, gpointer data)
{
    BonoboControl *control;
    FocusData *focus;

    control = BONOBO_CONTROL (data);

    focus = g_object_get_data (G_OBJECT (control), "focus_data");
    g_return_if_fail (focus != NULL);

    if (in) {
        g_signal_connect (gcal, "calendar_selection_changed",
                  G_CALLBACK (gcal_calendar_selection_changed_cb), control);
        calendar_control_sensitize_calendar_commands (control, gcal, TRUE);
        focus->calendar_focused = TRUE;
    } else if (focus->calendar_focused) {
        g_signal_handlers_disconnect_by_func (
            gcal, G_CALLBACK (gcal_calendar_selection_changed_cb), control);
        calendar_control_sensitize_calendar_commands (control, gcal, FALSE);
        focus->calendar_focused = FALSE;
    }
}

/* Callback used when the taskpad focus changes */
static void
gcal_taskpad_focus_change_cb (GnomeCalendar *gcal, gboolean in, gpointer data)
{
    BonoboControl *control;
    FocusData *focus;

    control = BONOBO_CONTROL (data);

    focus = g_object_get_data (G_OBJECT (control), "focus_data");
    g_return_if_fail (focus != NULL);

    if (in) {
        g_signal_connect (gcal, "taskpad_selection_changed",
                  G_CALLBACK (gcal_taskpad_selection_changed_cb), control);
        sensitize_taskpad_commands (gcal, control, TRUE);
        focus->taskpad_focused = TRUE;
    } else if (focus->taskpad_focused) {
        /* With Bonobo controls, we may get unpaired focus_out events.
         * That is why we have to keep track of this ourselves instead
         * of blindly assumming that we are getting this event because
         * the taskpad was in fact focused.
         */
        g_signal_handlers_disconnect_by_func (
            gcal, G_CALLBACK (gcal_taskpad_selection_changed_cb), control);
        sensitize_taskpad_commands (gcal, control, FALSE);
        focus->taskpad_focused = FALSE;
    }

}


static BonoboUIVerb verbs [] = {

    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 ("ShowListView", show_list_view_clicked),

    BONOBO_UI_VERB ("CalendarPurge", purge_cmd),

    BONOBO_UI_VERB_END
};

void
calendar_control_activate (BonoboControl *control,
               GnomeCalendar *gcal)
{
    Bonobo_UIContainer remote_uih;
    BonoboUIComponent *uic;
    FocusData *focus;
    gchar *xmlfile;

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

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

    gnome_calendar_set_ui_component (gcal, uic);

    bonobo_ui_component_add_verb_list_with_data (uic, verbs, gcal);

    bonobo_ui_component_freeze (uic, NULL);

    xmlfile = g_build_filename (EVOLUTION_UIDIR,
                    "evolution-calendar.xml",
                    NULL);
    bonobo_ui_util_set_ui (uic, PREFIX,
                   xmlfile,
                   "evolution-calendar",
                   NULL);
    g_free (xmlfile);

    gnome_calendar_setup_view_menus (gcal, uic);

    g_signal_connect (gcal, "calendar_focus_change",
              G_CALLBACK (gcal_calendar_focus_change_cb), control);
    g_signal_connect (gcal, "taskpad_focus_change",
              G_CALLBACK (gcal_taskpad_focus_change_cb), control);

    e_menu_activate((EMenu *)gnome_calendar_get_calendar_menu (gcal), uic, 1);
    e_menu_activate((EMenu *)gnome_calendar_get_taskpad_menu (gcal), uic, 1);

    calendar_control_sensitize_calendar_commands (control, gcal, TRUE);
    sensitize_taskpad_commands (gcal, control, TRUE);

    bonobo_ui_component_thaw (uic, NULL);

    focus = g_new (FocusData, 1);
    focus->calendar_focused = FALSE;
    focus->taskpad_focused = FALSE;

    g_object_set_data (G_OBJECT (control), "focus_data", focus);
}

void
calendar_control_deactivate (BonoboControl *control, GnomeCalendar *gcal)
{
    FocusData *focus;
    BonoboUIComponent *uic;

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

    e_menu_activate((EMenu *)gnome_calendar_get_calendar_menu (gcal), uic, 0);
    e_menu_activate((EMenu *)gnome_calendar_get_taskpad_menu (gcal), uic, 0);

    gnome_calendar_set_ui_component (gcal, NULL);

    focus = g_object_get_data (G_OBJECT (control), "focus_data");
    g_return_if_fail (focus != NULL);

    g_object_set_data (G_OBJECT (control), "focus_data", NULL);
    g_free (focus);

    gnome_calendar_discard_view_menus (gcal);

    g_signal_handlers_disconnect_matched (gcal, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, control);

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