aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/tasks-control.c
blob: 2aa32f1f30b4587dd3e142f9eba77af91ded9872 (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
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* tasks-control.c
 *
 * Copyright (C) 2000  Ximian, Inc.
 *
 * 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.
 *
 * Authors: Damon Chaplin <damon@ximian.com>
 *      Ettore Perazzoli
 */

#include <config.h>
#include <gtk/gtksignal.h>
#include <libgnome/gnome-defs.h>
#include <libgnome/gnome-i18n.h>
#include <libgnome/gnome-util.h>
#include <bonobo/bonobo-control.h>
#include <bonobo/bonobo-ui-util.h>
#include "dialogs/cal-prefs-dialog.h"
#include "calendar-config.h"
#include "e-tasks.h"
#include "tasks-control.h"
#include "evolution-shell-component-utils.h"

#define TASKS_CONTROL_PROPERTY_URI      "folder_uri"
#define TASKS_CONTROL_PROPERTY_URI_IDX      1


static void tasks_control_properties_init   (BonoboControl      *control,
                         ETasks         *tasks);
static void tasks_control_get_property      (BonoboPropertyBag  *bag,
                         BonoboArg      *arg,
                         guint           arg_id,
                         CORBA_Environment      *ev,
                         gpointer        user_data);
static void tasks_control_set_property      (BonoboPropertyBag  *bag,
                         const BonoboArg    *arg,
                         guint           arg_id,
                         CORBA_Environment      *ev,
                         gpointer        user_data);
static void tasks_control_activate_cb       (BonoboControl      *control,
                         gboolean        activate,
                         gpointer        user_data);
static void tasks_control_activate      (BonoboControl      *control,
                         ETasks         *tasks);
static void tasks_control_deactivate        (BonoboControl      *control,
                         ETasks         *tasks);

static void tasks_control_new_task_cmd      (BonoboUIComponent  *uic,
                         gpointer        data,
                         const char     *path);
static void tasks_control_cut_cmd               (BonoboUIComponent      *uic,
                         gpointer                data,
                         const gchar            *path);
static void tasks_control_copy_cmd              (BonoboUIComponent      *uic,
                         gpointer                data,
                         const gchar            *path);
static void tasks_control_paste_cmd             (BonoboUIComponent      *uic,
                         gpointer                data,
                         const gchar            *path);
static void tasks_control_delete_cmd        (BonoboUIComponent  *uic,
                         gpointer        data,
                         const char     *path);
static void tasks_control_settings_cmd      (BonoboUIComponent  *uic,
                         gpointer        data,
                         const char     *path);


BonoboControl *
tasks_control_new           (void)
{
    BonoboControl *control;
    GtkWidget *tasks;

    tasks = e_tasks_new ();
    if (!tasks)
        return NULL;

    gtk_widget_show (tasks);

    control = bonobo_control_new (tasks);
    if (!control) {
        g_message ("control_factory_fn(): could not create the control!");
        return NULL;
    }

    tasks_control_properties_init (control, E_TASKS (tasks));

    gtk_signal_connect (GTK_OBJECT (control), "activate",
                GTK_SIGNAL_FUNC (tasks_control_activate_cb),
                tasks);

    return control;
}


/* Creates the property bag for our new control. */
static void
tasks_control_properties_init       (BonoboControl      *control,
                     ETasks         *tasks)
                     
{
    BonoboPropertyBag *pbag;

    pbag = bonobo_property_bag_new (tasks_control_get_property,
                    tasks_control_set_property, tasks);

    bonobo_property_bag_add (pbag,
                 TASKS_CONTROL_PROPERTY_URI,
                 TASKS_CONTROL_PROPERTY_URI_IDX,
                 BONOBO_ARG_STRING,
                 NULL,
                 _("The URI of the tasks folder to display"),
                 0);

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


/* Gets a property of our control. FIXME: Finish. */
static void
tasks_control_get_property      (BonoboPropertyBag  *bag,
                     BonoboArg      *arg,
                     guint           arg_id,
                     CORBA_Environment      *ev,
                     gpointer        user_data)
{
    /*GnomeCalendar *gcal = user_data;*/

    switch (arg_id) {

    case TASKS_CONTROL_PROPERTY_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
tasks_control_set_property      (BonoboPropertyBag  *bag,
                     const BonoboArg    *arg,
                     guint           arg_id,
                     CORBA_Environment      *ev,
                     gpointer        user_data)
{
    ETasks *tasks = user_data;
    char *filename;

    switch (arg_id) {

    case TASKS_CONTROL_PROPERTY_URI_IDX:
        filename = g_strdup_printf ("%s/tasks.ics",
                        BONOBO_ARG_GET_STRING (arg));
        e_tasks_open (tasks, filename);
        g_free (filename);
        break;

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


static void
tasks_control_activate_cb       (BonoboControl      *control,
                     gboolean        activate,
                     gpointer        user_data)
{
    ETasks *tasks;

    tasks = E_TASKS (user_data);

    if (activate)
        tasks_control_activate (control, tasks);
    else
        tasks_control_deactivate (control, tasks);
}

/* Sensitizes the UI Component menu/toolbar commands based on the number of
 * selected tasks.
 */
static void
sensitize_commands (ETasks *tasks, BonoboControl *control, int n_selected)
{
    BonoboUIComponent *uic;

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

    bonobo_ui_component_set_prop (uic, "/commands/TasksCut", "sensitive",
                      n_selected == 0 ? "0" : "1",
                      NULL);
    bonobo_ui_component_set_prop (uic, "/commands/TasksCopy", "sensitive",
                      n_selected == 0 ? "0" : "1",
                      NULL);
    bonobo_ui_component_set_prop (uic, "/commands/TasksDelete", "sensitive",
                      n_selected == 0 ? "0" : "1",
                      NULL);
}

/* Callback used when the selection in the table changes */
static void
selection_changed_cb (ETasks *tasks, int n_selected, gpointer data)
{
    BonoboControl *control;

    control = BONOBO_CONTROL (data);

    sensitize_commands (tasks, control, n_selected);
}

static BonoboUIVerb verbs [] = {
    BONOBO_UI_VERB ("TasksNewTask", tasks_control_new_task_cmd),
    BONOBO_UI_VERB ("TasksCut", tasks_control_cut_cmd),
    BONOBO_UI_VERB ("TasksCopy", tasks_control_copy_cmd),
    BONOBO_UI_VERB ("TasksPaste", tasks_control_paste_cmd),
    BONOBO_UI_VERB ("TasksDelete", tasks_control_delete_cmd),
    BONOBO_UI_VERB ("TasksSettings", tasks_control_settings_cmd),

    BONOBO_UI_VERB_END
};

static EPixmap pixmaps [] = {
    E_PIXMAP ("/menu/File/New/NewFirstItem/NewTask",    "evolution-tasks-mini.png"),
    E_PIXMAP ("/menu/File/Print/Print",         "print.xpm"),
    E_PIXMAP ("/menu/File/Print/Print Preview",     "print-preview.xpm"),
    E_PIXMAP ("/menu/Tools/Component/TasksSettings",    "configure_16_calendar.xpm"),
    E_PIXMAP ("/Toolbar/New",               "buttons/new_appointment.png"),
    E_PIXMAP ("/Toolbar/Print",             "buttons/print.png"),
    E_PIXMAP_END
};

static void
tasks_control_activate (BonoboControl *control, ETasks *tasks)
{
    Bonobo_UIContainer remote_uih;
    BonoboUIComponent *uic;
    int n_selected;
    ECalendarTable *cal_table;
    ETable *etable;

    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);

    bonobo_ui_component_add_verb_list_with_data (uic, verbs, tasks);

    bonobo_ui_component_freeze (uic, NULL);

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

    e_pixmaps_update (uic, pixmaps);

    e_tasks_setup_view_menus (tasks, uic);

    /* Signals from the tasks widget; also sensitize the menu items as appropriate */

    gtk_signal_connect (GTK_OBJECT (tasks), "selection_changed",
                GTK_SIGNAL_FUNC (selection_changed_cb), control);

    cal_table = e_tasks_get_calendar_table (tasks);
    etable = e_calendar_table_get_table (cal_table);
    n_selected = e_table_selected_count (etable);

    sensitize_commands (tasks, control, n_selected);

    bonobo_ui_component_thaw (uic, NULL);

    /* Show the dialog for setting the timezone if the user hasn't chosen
       a default timezone already. */
    calendar_config_check_timezone_set ();
}


static void
tasks_control_deactivate (BonoboControl *control, ETasks *tasks)
{
    BonoboUIComponent *uic = bonobo_control_get_ui_component (control);
    g_assert (uic != NULL);

    e_tasks_discard_view_menus (tasks);

    /* Stop monitoring the "selection_changed" signal */
    gtk_signal_disconnect_by_data (GTK_OBJECT (tasks), control);

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


static void
tasks_control_new_task_cmd      (BonoboUIComponent  *uic,
                     gpointer        data,
                     const char     *path)
{
    ETasks *tasks;

    tasks = E_TASKS (data);
    e_tasks_new_task (tasks);
}

static void
tasks_control_cut_cmd                   (BonoboUIComponent      *uic,
                     gpointer                data,
                     const char             *path)
{
    ETasks *tasks;
    ECalendarTable *cal_table;

    tasks = E_TASKS (data);
    cal_table = e_tasks_get_calendar_table (tasks);
    e_calendar_table_cut_clipboard (cal_table);
}

static void
tasks_control_copy_cmd                  (BonoboUIComponent      *uic,
                     gpointer                data,
                     const char             *path)
{
    ETasks *tasks;
    ECalendarTable *cal_table;

    tasks = E_TASKS (data);
    cal_table = e_tasks_get_calendar_table (tasks);
    e_calendar_table_copy_clipboard (cal_table);
}

static void
tasks_control_paste_cmd                 (BonoboUIComponent      *uic,
                     gpointer                data,
                     const char             *path)
{
    ETasks *tasks;
    ECalendarTable *cal_table;

    tasks = E_TASKS (data);
    cal_table = e_tasks_get_calendar_table (tasks);
    e_calendar_table_paste_clipboard (cal_table);
}

static void
tasks_control_delete_cmd        (BonoboUIComponent  *uic,
                     gpointer        data,
                     const char     *path)
{
    ETasks *tasks;

    tasks = E_TASKS (data);
    e_tasks_delete_selected (tasks);
}

/* Callback used for the tasks settings command */
static void
tasks_control_settings_cmd (BonoboUIComponent *uic, gpointer data, const char *path)
{
    ETasks *tasks;
    static CalPrefsDialog *prefs_dialog = NULL;

    tasks = E_TASKS (data);

    if (!prefs_dialog)
        prefs_dialog = cal_prefs_dialog_new (CAL_PREFS_DIALOG_PAGE_TASKS);
    else
        cal_prefs_dialog_show (prefs_dialog, CAL_PREFS_DIALOG_PAGE_TASKS);
}