aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-folder-creation-dialog.c
blob: dbbdcdfd7478c95b40875708b3a6d9b2de1cfe7f (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
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* e-shell.c
 *
 * Copyright (C) 2000, 2001 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
 */

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

#include <glib.h>
#include <libgnome/gnome-defs.h>
#include <libgnome/gnome-i18n.h>
#include <libgnome/gnome-util.h>
#include <glade/glade-xml.h>

#include <gal/util/e-util.h>
#include <gal/widgets/e-unicode.h>
#include <gal/widgets/e-gui-utils.h>

#include <gal/widgets/e-scroll-frame.h>

#include "e-storage-set.h"
#include "e-storage-set-view.h"
#include "e-shell-utils.h"

#include "e-shell-folder-creation-dialog.h"


#define GLADE_FILE_NAME  EVOLUTION_GLADEDIR "/e-shell-folder-creation-dialog.glade"


/* Data for the callbacks.  */
struct _DialogData {
    GtkWidget *dialog;
    EShell *shell;

    GtkWidget *folder_name_entry;
    GtkWidget *storage_set_view;
    GtkWidget *folder_type_option_menu;

    GList *folder_types;

    char *folder_path;

    EShellFolderCreationDialogCallback result_callback;
    void *result_callback_data;

    gboolean creation_in_progress;
};
typedef struct _DialogData DialogData;

static void
dialog_data_destroy (DialogData *dialog_data)
{
    e_free_string_list (dialog_data->folder_types);
    g_free (dialog_data->folder_path);

    g_free (dialog_data);
}


/* Callback for the asynchronous folder creation function.  */

static void
async_create_cb (EStorageSet *storage_set,
         EStorageResult result,
         void *data)
{
    DialogData *dialog_data;

    dialog_data = (DialogData *) data;

    dialog_data->creation_in_progress = FALSE;

    gnome_dialog_set_sensitive (GNOME_DIALOG (dialog_data->dialog), 0, TRUE);
    gnome_dialog_set_sensitive (GNOME_DIALOG (dialog_data->dialog), 1, TRUE);

    if (result == E_STORAGE_OK) {
        /* Success! Tell the callback of this, then return */
        if (dialog_data->result_callback != NULL)
            (* dialog_data->result_callback) (dialog_data->shell,
                              E_SHELL_FOLDER_CREATION_DIALOG_RESULT_SUCCESS,
                              dialog_data->folder_path,
                              dialog_data->result_callback_data);
        if (dialog_data->dialog != NULL) {
            gtk_widget_destroy (dialog_data->dialog);
        } else {
            /* If dialog_data->dialog is NULL, it means that the
               dialog has been destroyed before we were done, so we
               have to free the dialog_data ourselves.  */
            dialog_data_destroy (dialog_data);
        }
        return;
    } else if (result == E_STORAGE_EXISTS) {
        e_storage_set_view_set_current_folder (E_STORAGE_SET_VIEW (dialog_data->storage_set_view),
                               dialog_data->folder_path);
    }

    /* Tell the callback something failed, then popup a dialog
           explaining how it failed */
    if (dialog_data->result_callback != NULL)
        (* dialog_data->result_callback) (dialog_data->shell,
                          E_SHELL_FOLDER_CREATION_DIALOG_RESULT_FAIL,
                          dialog_data->folder_path,
                          dialog_data->result_callback_data);

    e_notice (GTK_WINDOW (dialog_data->dialog), GNOME_MESSAGE_BOX_ERROR,
          _("Cannot create the specified folder:\n%s"),
          e_storage_result_to_string (result));

    /* If dialog_data->dialog is NULL, it means that the dialog has been
       destroyed before we were done, so we have to free the dialog_data
       ourselves.  */
    if (dialog_data->dialog == NULL)
        dialog_data_destroy (dialog_data);
}


/* Dialog signal callbacks.  */

static void
dialog_clicked_cb (GnomeDialog *dialog,
           int button_number,
           void *data)
{
    DialogData *dialog_data;
    EStorageSet *storage_set;
    GtkWidget *folder_type_menu_item;
    const char *folder_type;
    const char *parent_path;
    const char *reason;
    char *folder_name;
    char *path;

    dialog_data = (DialogData *) data;

    if (button_number != 0) {
        if (dialog_data->result_callback != NULL)
            (* dialog_data->result_callback) (dialog_data->shell,
                              E_SHELL_FOLDER_CREATION_DIALOG_RESULT_CANCEL,
                              NULL,
                              dialog_data->result_callback_data);
        gtk_widget_destroy (GTK_WIDGET (dialog));
        return;
    }

    folder_name = e_utf8_gtk_entry_get_text (GTK_ENTRY (dialog_data->folder_name_entry));

    if (! e_shell_folder_name_is_valid (folder_name, &reason)) {
        e_notice (GTK_WINDOW (dialog), GNOME_MESSAGE_BOX_ERROR,
              _("The specified folder name is not valid: %s"), reason);
        return;
    }

    parent_path = e_storage_set_view_get_current_folder
        (E_STORAGE_SET_VIEW (dialog_data->storage_set_view));
    if (parent_path == NULL) {
        if (dialog_data->result_callback != NULL)
            (* dialog_data->result_callback) (dialog_data->shell,
                              E_SHELL_FOLDER_CREATION_DIALOG_RESULT_CANCEL,
                              NULL,
                              dialog_data->result_callback_data);
        gtk_widget_destroy (GTK_WIDGET (dialog));
        return;
    }

    path = g_concat_dir_and_file (parent_path, folder_name);
    g_free (folder_name);

    storage_set = e_shell_get_storage_set (dialog_data->shell);

    folder_type_menu_item = GTK_OPTION_MENU (dialog_data->folder_type_option_menu)->menu_item;
    folder_type = gtk_object_get_data (GTK_OBJECT (folder_type_menu_item), "folder_type");

    if (folder_type == NULL) {
        g_warning ("Cannot get folder type for selected GtkOptionMenu item.");
        return;
    }

    g_free (dialog_data->folder_path);
    dialog_data->folder_path = path;

    gnome_dialog_set_sensitive (dialog, 0, FALSE);
    gnome_dialog_set_sensitive (dialog, 1, FALSE);

    dialog_data->creation_in_progress = TRUE;

    e_storage_set_async_create_folder (storage_set,
                       path,
                       folder_type,
                       "", /* description */
                       async_create_cb, dialog_data);
}

static void
dialog_destroy_cb (GtkObject *object,
           void *data)
{
    DialogData *dialog_data;

    dialog_data = (DialogData *) data;

    if (dialog_data->creation_in_progress) {
        /* If the dialog has been closed before we are done creating
           the folder, the dialog_data will be freed after the creation
           is completed.  */
        dialog_data->dialog = NULL;
        dialog_data->folder_name_entry = NULL;
        dialog_data->storage_set_view = NULL;
        dialog_data->folder_type_option_menu = NULL;
        return;
    }

    dialog_data_destroy (dialog_data);
}

static void
folder_name_entry_changed_cb (GtkEditable *editable,
                  void *data)
{
    DialogData *dialog_data;
    const char *parent_path;

    dialog_data = (DialogData *) data;

    parent_path = e_storage_set_view_get_current_folder (E_STORAGE_SET_VIEW (dialog_data->storage_set_view));

    if (parent_path != NULL
        && GTK_ENTRY (dialog_data->folder_name_entry)->text_length > 0)
        gnome_dialog_set_sensitive (GNOME_DIALOG (dialog_data->dialog), 0, TRUE);
    else
        gnome_dialog_set_sensitive (GNOME_DIALOG (dialog_data->dialog), 0, FALSE);
}

static void
storage_set_view_folder_selected_cb (EStorageSetView *storage_set_view,
                     const char *path,
                     void *data)
{
    DialogData *dialog_data;

    dialog_data = (DialogData *) data;

    if (GTK_ENTRY (dialog_data->folder_name_entry)->text_length > 0)
        gnome_dialog_set_sensitive (GNOME_DIALOG (dialog_data->dialog), 0, TRUE);
}

static void
storage_set_view_storage_selected_cb (EStorageSetView *storage_set_view,
                      const char *name,
                      void *data)
{
    DialogData *dialog_data;

    dialog_data = (DialogData *) data;

    if (GTK_ENTRY (dialog_data->folder_name_entry)->text_length > 0)
        gnome_dialog_set_sensitive (GNOME_DIALOG (dialog_data->dialog), 0, TRUE);
}


/* Shell signal callbacks.  */

static void
shell_destroy_cb (GtkObject *object,
          void *data)
{
    GnomeDialog *dialog;

    dialog = GNOME_DIALOG (data);
    gtk_widget_destroy (GTK_WIDGET (dialog));
}


/* Dialog setup.  */

static void
setup_dialog (GtkWidget *dialog,
          GladeXML *gui,
          EShell *shell,
          GtkWindow *parent_window)
{
    if (parent_window != NULL)
        gtk_window_set_transient_for (GTK_WINDOW (dialog), parent_window);

    gtk_window_set_modal (GTK_WINDOW (dialog), TRUE);
    gtk_window_set_title (GTK_WINDOW (dialog), _("Evolution - Create new folder"));

    gnome_dialog_set_default   (GNOME_DIALOG (dialog), 0);
    gnome_dialog_set_sensitive (GNOME_DIALOG (dialog), 0, FALSE);

    gtk_widget_show (dialog);
}

static void
setup_folder_name_entry (GtkWidget *dialog,
             GladeXML *gui,
             EShell *shell)
{
    GtkWidget *folder_name_entry;

    folder_name_entry = glade_xml_get_widget (gui, "folder_name_entry");

    gnome_dialog_editable_enters (GNOME_DIALOG (dialog), GTK_EDITABLE (folder_name_entry));
}

static GtkWidget *
add_storage_set_view (GtkWidget *dialog,
              GladeXML *gui,
              EShell *shell,
              const char *default_parent_folder)
{
    EStorageSet *storage_set;
    GtkWidget *storage_set_view;
    GtkWidget *scroll_frame;
    GtkWidget *vbox;

    storage_set = e_shell_get_storage_set (shell);
    storage_set_view = e_storage_set_new_view (storage_set, NULL/*XXX*/);

    e_storage_set_view_set_allow_dnd (E_STORAGE_SET_VIEW (storage_set_view), FALSE);

    GTK_WIDGET_SET_FLAGS (storage_set_view, GTK_CAN_FOCUS);

    if (default_parent_folder != NULL)
        e_storage_set_view_set_current_folder (E_STORAGE_SET_VIEW (storage_set_view),
                               default_parent_folder);

    vbox = glade_xml_get_widget (gui, "main_vbox");

    scroll_frame = e_scroll_frame_new (NULL, NULL);
    e_scroll_frame_set_policy (E_SCROLL_FRAME (scroll_frame), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
    e_scroll_frame_set_shadow_type (E_SCROLL_FRAME (scroll_frame), GTK_SHADOW_IN);
    gtk_box_pack_start (GTK_BOX (vbox), scroll_frame, TRUE, TRUE, 0);

    gtk_container_add (GTK_CONTAINER (scroll_frame), storage_set_view);

    gtk_widget_show (scroll_frame);
    gtk_widget_show (storage_set_view);

    return storage_set_view;
}

struct _TypeWithDisplayName {
    const char *type;
    const char *display_name;
};
typedef struct _TypeWithDisplayName TypeWithDisplayName;

static int
type_with_display_name_compare_func (const void *a, const void *b)
{
    const TypeWithDisplayName *val_a, *val_b;

    val_a = (const TypeWithDisplayName *) a;
    val_b = (const TypeWithDisplayName *) b;

    return g_strcasecmp (val_a->display_name, val_b->display_name);
}

static GList *
add_folder_types (GtkWidget *dialog,
          GladeXML *gui,
          EShell *shell,
          const char *default_type)
{
    EFolderTypeRegistry *folder_type_registry;
    GtkWidget *folder_type_option_menu;
    GtkWidget *menu;
    GList *folder_types;
    GList *types_with_display_names;
    GList *p;
    int default_item;
    int i;

    folder_type_option_menu = glade_xml_get_widget (gui, "folder_type_option_menu");

    /* KLUDGE.  So, GtkOptionMenu is badly broken.  It calculates its size
           in `gtk_option_menu_set_menu()' instead of using `size_request()' as
           any sane widget would do.  So, in order to avoid the "narrow
           GtkOptionMenu" bug, we have to destroy the existing associated menu
           and create a new one.  Life sucks.  */

    menu = gtk_option_menu_get_menu (GTK_OPTION_MENU (folder_type_option_menu));
    g_assert (menu != NULL);
    gtk_widget_destroy (menu);

    menu = gtk_menu_new ();

    folder_type_registry = e_shell_get_folder_type_registry (shell);
    g_assert (folder_type_registry != NULL);

    folder_types = e_folder_type_registry_get_type_names (folder_type_registry);
    if (folder_types == NULL)
        return NULL;        /* Uh? */

    types_with_display_names = NULL;
    for (p = folder_types; p != NULL; p = p->next) {
        TypeWithDisplayName *new;

        new = g_new (TypeWithDisplayName, 1);
        new->type = p->data;
        new->display_name = e_folder_type_registry_get_display_name_for_type (folder_type_registry, new->type);

        types_with_display_names = g_list_prepend (types_with_display_names, new);
    }

    types_with_display_names = g_list_sort (types_with_display_names, type_with_display_name_compare_func);

    /* FIXME: Add icon (I don't feel like writing an alpha-capable thingie again).  */

    default_item = 0;
    i = 0;
    for (p = types_with_display_names; p != NULL; p = p->next) {
        const TypeWithDisplayName *type;
        GtkWidget *menu_item;

        type = (const TypeWithDisplayName *) p->data;

        if (! e_folder_type_registry_type_is_user_creatable (folder_type_registry, type->type))
            continue;

        menu_item = gtk_menu_item_new_with_label (type->display_name);
        gtk_widget_show (menu_item);
        gtk_menu_append (GTK_MENU (menu), menu_item);

        gtk_object_set_data_full (GTK_OBJECT (menu_item), "folder_type", g_strdup (type->type), g_free);

        if (strcmp (type->type, default_type ? default_type : "mail") == 0)
            default_item = i;

        i ++;
    }

    for (p = types_with_display_names; p != NULL; p = p->next)
        g_free (p->data);
    g_list_free (types_with_display_names);

    gtk_option_menu_set_menu (GTK_OPTION_MENU (folder_type_option_menu), menu);
    gtk_widget_show (menu);

    gtk_option_menu_set_history (GTK_OPTION_MENU (folder_type_option_menu), default_item);
    gtk_widget_queue_resize (folder_type_option_menu);

    return folder_types;
}

static const char *
get_type_from_parent_path (EShell *shell,
               const char *path)
{
    EFolder *folder;
    const char *folder_type;
    EStorageSet *set;

    set = e_shell_get_storage_set (shell);
    folder = e_storage_set_get_folder (set, path);
    if (folder == NULL) {
        return NULL;
    }

    folder_type = e_folder_get_type_string (folder);
    if (folder_type == NULL) {
        return NULL;
    } else {
        return folder_type;
    }
}


/* FIXME: Currently this is modal.  I think it's OK, but if people think it is
   not, we should change it to non-modal and make sure only one of these is
   open at once.  Currently it relies on modality for this.  */
void
e_shell_show_folder_creation_dialog (EShell *shell,
                     GtkWindow *parent_window,
                     const char *default_parent_folder,
                     const char *default_type,
                     EShellFolderCreationDialogCallback result_callback,
                     void *result_callback_data)
{
    GladeXML *gui;
    GtkWidget *dialog;
    GtkWidget *storage_set_view;
    GList *folder_types;
    DialogData *dialog_data;

    g_return_if_fail (shell != NULL);
    g_return_if_fail (E_IS_SHELL (shell));

    gui = glade_xml_new (GLADE_FILE_NAME, NULL);
    if (gui == NULL) {
        g_warning ("Cannot load Glade description file for the folder creation dialog -- %s",
               GLADE_FILE_NAME);
        return;
    }

    dialog = glade_xml_get_widget (gui, "create_folder_dialog");

    setup_dialog (dialog, gui, shell, parent_window);
    setup_folder_name_entry (dialog, gui, shell);

    storage_set_view = add_storage_set_view (dialog, gui, shell, default_parent_folder);
    if (default_type == NULL) {
        const char *dt;

        dt = get_type_from_parent_path (shell, default_parent_folder);
        folder_types = add_folder_types (dialog, gui, shell, dt);
    } else {
        folder_types = add_folder_types (dialog, gui, shell, default_type);
    }

    dialog_data = g_new (DialogData, 1);
    dialog_data->dialog                  = dialog;
    dialog_data->shell                   = shell;
    dialog_data->folder_name_entry       = glade_xml_get_widget (gui, "folder_name_entry");
    dialog_data->storage_set_view        = storage_set_view;
    dialog_data->folder_type_option_menu = glade_xml_get_widget (gui, "folder_type_option_menu");
    dialog_data->folder_types            = folder_types;
    dialog_data->folder_path             = NULL;
    dialog_data->result_callback         = result_callback;
    dialog_data->result_callback_data    = result_callback_data;
    dialog_data->creation_in_progress    = FALSE;

    gtk_signal_connect (GTK_OBJECT (dialog), "clicked",
                GTK_SIGNAL_FUNC (dialog_clicked_cb), dialog_data);
    gtk_signal_connect (GTK_OBJECT (dialog), "destroy",
                GTK_SIGNAL_FUNC (dialog_destroy_cb), dialog_data);

    gtk_signal_connect (GTK_OBJECT (dialog_data->folder_name_entry), "changed",
                GTK_SIGNAL_FUNC (folder_name_entry_changed_cb), dialog_data);

    gtk_signal_connect (GTK_OBJECT (dialog_data->storage_set_view), "folder_selected",
                storage_set_view_folder_selected_cb, dialog_data);
    gtk_signal_connect (GTK_OBJECT (dialog_data->storage_set_view), "storage_selected",
                storage_set_view_storage_selected_cb, dialog_data);

    gtk_signal_connect_while_alive (GTK_OBJECT (shell), "destroy",
                    GTK_SIGNAL_FUNC (shell_destroy_cb), dialog_data,
                    GTK_OBJECT (dialog));

    gtk_object_unref (GTK_OBJECT (gui));
}