aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/select-source-dialog.c
blob: 4bc441b4f8a0b6713fc0aab48c7c99b14dd466cc (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
/* Evolution calendar - Select source dialog
 *
 * Copyright (C) 2004 Novell, Inc.
 *
 * Author: 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
 */

#include <bonobo/bonobo-i18n.h>
#include <gtk/gtkbox.h>
#include <gtk/gtkdialog.h>
#include <gtk/gtklabel.h>
#include <gtk/gtkscrolledwindow.h>
#include <gtk/gtkstock.h>
#include "widgets/misc/e-source-selector.h"
#include "select-source-dialog.h"

static void
primary_selection_changed_cb (ESourceSelector *selector, gpointer user_data)
{
    ESource **our_selection = user_data;

    if (*our_selection)
        g_object_unref (*our_selection);
    *our_selection = g_object_ref (e_source_selector_peek_primary_selection (selector));
}

/**
 * select_source_dialog
 *
 * Implements dialog for allowing user to select a destination source.
 */
ESource *
select_source_dialog (GtkWindow *parent, ECalSourceType obj_type)
{
    GtkWidget *dialog, *label, *scroll, *source_selector;
    GtkWidget *vbox, *hbox, *spacer;
    ESourceList *source_list;
    ESource *selected_source = NULL;
    const char *gconf_key;
    char *label_text;
    GConfClient *conf_client;

    if (obj_type == E_CAL_SOURCE_TYPE_EVENT)
        gconf_key = "/apps/evolution/calendar/sources";
    else if (obj_type == E_CAL_SOURCE_TYPE_TODO)
        gconf_key = "/apps/evolution/tasks/sources";
    else
        return NULL;

    /* create the dialog */
    dialog = gtk_dialog_new ();
    gtk_window_set_title (GTK_WINDOW (dialog), _("Select source"));
    gtk_window_set_transient_for (GTK_WINDOW (dialog),
                      GTK_WINDOW (parent));
    gtk_window_set_default_size (GTK_WINDOW (dialog), 276, 320);

    gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
    gtk_widget_realize (dialog);
    gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (dialog)->vbox), 0);
    gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (dialog)->action_area), 12);

    gtk_dialog_add_buttons (GTK_DIALOG (dialog),
                GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
                GTK_STOCK_OK, GTK_RESPONSE_OK,
                NULL);
    /* gtk_dialog_set_response_sensitive (GTK_DIALOG (dialog), GTK_RESPONSE_OK, FALSE); */

    vbox = gtk_vbox_new (FALSE, 12);
    gtk_container_set_border_width (GTK_CONTAINER (vbox), 12);
    gtk_container_add (GTK_CONTAINER (GTK_DIALOG (dialog)->vbox), vbox);
    gtk_widget_show (vbox);

    label_text = g_strdup_printf ("<b>%s %s</b>", _("_Destination"),
                      obj_type == E_CAL_SOURCE_TYPE_EVENT ?
                      _("Calendar") : _("Task List"));
    label = gtk_label_new_with_mnemonic (label_text);
    gtk_label_set_use_markup (GTK_LABEL (label), TRUE);
    gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
    g_free (label_text);
    gtk_widget_show (label);
    gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 6);

    hbox = gtk_hbox_new (FALSE, 12);
    gtk_box_pack_start (GTK_BOX (vbox), hbox, TRUE, TRUE, 0);
    gtk_widget_show (hbox);

    spacer = gtk_label_new ("");
    gtk_box_pack_start (GTK_BOX (hbox), spacer, FALSE, FALSE, 0);
    gtk_widget_show (spacer);

    conf_client = gconf_client_get_default ();
    source_list = e_source_list_new_for_gconf (conf_client, gconf_key);

    scroll = gtk_scrolled_window_new (NULL, NULL);
    gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scroll),
                    GTK_POLICY_AUTOMATIC,
                    GTK_POLICY_AUTOMATIC);
    gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scroll),
                         GTK_SHADOW_IN);
    gtk_widget_show (scroll);
    source_selector = e_source_selector_new (source_list);
    e_source_selector_show_selection (E_SOURCE_SELECTOR (source_selector), FALSE);
    g_signal_connect (G_OBJECT (source_selector), "primary_selection_changed",
              G_CALLBACK (primary_selection_changed_cb), &selected_source);
    gtk_widget_show (source_selector);
    gtk_container_add (GTK_CONTAINER (scroll), source_selector);
    gtk_box_pack_start (GTK_BOX (hbox), scroll, TRUE, TRUE, 0);

    gtk_label_set_mnemonic_widget (GTK_LABEL (label), source_selector);

    if (gtk_dialog_run (GTK_DIALOG (dialog)) != GTK_RESPONSE_OK) {
        if (selected_source)
            g_object_unref (selected_source);
        selected_source = NULL;
    }

    g_object_unref (conf_client);
    g_object_unref (source_list);
    gtk_widget_destroy (dialog);

    return selected_source;
}