
* e-folder-dnd-bridge.c: Update for e_notice move. * e-setup.c: Likewise * e-shell-folder-commands.c: Likewise * e-shell-folder-creation-dialog.c: Likewise * e-shell-offline-sync.c: Likewise * e-shell-shared-folder-picker-dialog.c: Likewise * e-shell-view-menu.c: Likewise * e-shell.c: Likewise * evolution-shell-component-utils.c: Likewise * Makefile.am (libeshell_la_LIBADD): libeshell depends on libeutil. * e-corba-storage.c: Fix warnings svn path=/trunk/; revision=20500
541 lines
15 KiB
C
541 lines
15 KiB
C
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
|
||
/* e-shell-shared-folder-picker-dialog.c - Implementation for the shared folder
|
||
* picker dialog.
|
||
*
|
||
* Copyright (C) 2002 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 <ettore@ximian.com>
|
||
*/
|
||
|
||
#ifdef HAVE_CONFIG_H
|
||
#include <config.h>
|
||
#endif
|
||
|
||
#include "e-shell-shared-folder-picker-dialog.h"
|
||
|
||
#include "e-corba-storage.h"
|
||
#include "e-shell-constants.h"
|
||
#include "evolution-storage-listener.h"
|
||
|
||
#include "Evolution-Addressbook-SelectNames.h"
|
||
|
||
#include "e-util/e-dialog-utils.h"
|
||
|
||
#include <libgnome/gnome-i18n.h>
|
||
#include <glade/glade.h>
|
||
|
||
#include <bonobo/bonobo-exception.h>
|
||
#include <bonobo/bonobo-listener.h>
|
||
#include <bonobo/bonobo-widget.h>
|
||
|
||
#include <bonobo-activation/bonobo-activation.h>
|
||
|
||
#include <gtk/gtk.h>
|
||
#include <gtk/gtksignal.h>
|
||
|
||
|
||
/* Timeout for showing the progress dialog (msecs). */
|
||
|
||
#define PROGRESS_DIALOG_DELAY 500
|
||
|
||
|
||
/* Dialog creation and handling. */
|
||
|
||
static void
|
||
setup_folder_name_combo (GladeXML *glade_xml)
|
||
{
|
||
GtkWidget *combo;
|
||
GList *string_list;
|
||
char *strings[] = {
|
||
"Calendar",
|
||
"Inbox",
|
||
"Contacts",
|
||
NULL
|
||
/* FIXME: Should these be translated? */
|
||
};
|
||
int i;
|
||
|
||
combo = glade_xml_get_widget (glade_xml, "folder-name-combo");
|
||
g_assert (GTK_IS_COMBO (combo));
|
||
|
||
string_list = NULL;
|
||
for (i = 0; strings[i] != NULL; i ++)
|
||
string_list = g_list_append (string_list, strings[i]);
|
||
gtk_combo_set_popdown_strings (GTK_COMBO (combo), string_list);
|
||
g_list_free (string_list);
|
||
|
||
gtk_entry_set_text (GTK_ENTRY (GTK_COMBO (combo)->entry), "Calendar");
|
||
}
|
||
|
||
static void
|
||
user_clicked (GtkWidget *button, GNOME_Evolution_Addressbook_SelectNames corba_iface)
|
||
{
|
||
CORBA_Environment ev;
|
||
|
||
CORBA_exception_init (&ev);
|
||
GNOME_Evolution_Addressbook_SelectNames_activateDialog (corba_iface, "User", &ev);
|
||
|
||
if (BONOBO_EX (&ev))
|
||
g_warning ("Cannot activate SelectNames dialog -- %s", BONOBO_EX_REPOID (&ev));
|
||
|
||
CORBA_exception_free (&ev);
|
||
}
|
||
|
||
static GtkWidget *
|
||
setup_name_selector (GladeXML *glade_xml,
|
||
GNOME_Evolution_Addressbook_SelectNames *iface_ret)
|
||
{
|
||
GNOME_Evolution_Addressbook_SelectNames corba_iface;
|
||
Bonobo_Control control;
|
||
CORBA_Environment ev;
|
||
GtkWidget *placeholder;
|
||
GtkWidget *control_widget;
|
||
GtkWidget *button;
|
||
|
||
placeholder = glade_xml_get_widget (glade_xml, "user-picker-placeholder");
|
||
g_assert (GTK_IS_CONTAINER (placeholder));
|
||
|
||
CORBA_exception_init (&ev);
|
||
|
||
corba_iface = bonobo_activation_activate_from_id ("OAFIID:GNOME_Evolution_Addressbook_SelectNames",
|
||
0, NULL, &ev);
|
||
if (corba_iface == CORBA_OBJECT_NIL || BONOBO_EX (&ev)) {
|
||
g_warning ("Cannot activate SelectNames -- %s", BONOBO_EX_REPOID (&ev));
|
||
CORBA_exception_free (&ev);
|
||
return CORBA_OBJECT_NIL;
|
||
}
|
||
|
||
GNOME_Evolution_Addressbook_SelectNames_addSectionWithLimit (corba_iface, "User", "User", 1, &ev);
|
||
if (BONOBO_EX (&ev)) {
|
||
g_warning ("Cannot add SelectNames section -- %s", BONOBO_EX_REPOID (&ev));
|
||
goto err;
|
||
}
|
||
|
||
control = GNOME_Evolution_Addressbook_SelectNames_getEntryBySection (corba_iface, "User", &ev);
|
||
if (BONOBO_EX (&ev)) {
|
||
g_warning ("Cannot get SelectNames section -- %s", BONOBO_EX_REPOID (&ev));
|
||
goto err;
|
||
}
|
||
|
||
control_widget = bonobo_widget_new_control_from_objref (control, CORBA_OBJECT_NIL);
|
||
gtk_container_add (GTK_CONTAINER (placeholder), control_widget);
|
||
gtk_widget_show (control_widget);
|
||
|
||
button = glade_xml_get_widget (glade_xml, "button-user");
|
||
g_signal_connect (button, "clicked", G_CALLBACK (user_clicked), corba_iface);
|
||
|
||
CORBA_exception_free (&ev);
|
||
*iface_ret = corba_iface;
|
||
return control_widget;
|
||
|
||
err:
|
||
bonobo_object_release_unref (corba_iface, NULL);
|
||
CORBA_exception_free (&ev);
|
||
return NULL;
|
||
}
|
||
|
||
static void
|
||
server_option_menu_item_activate_callback (GtkMenuItem *menu_item,
|
||
void *data)
|
||
{
|
||
char **storage_name_return;
|
||
|
||
storage_name_return = (char **) data;
|
||
if (*storage_name_return != NULL)
|
||
g_free (*storage_name_return);
|
||
|
||
*storage_name_return = g_strdup ((const char *) g_object_get_data (G_OBJECT (menu_item), "storage_name"));
|
||
}
|
||
|
||
static void
|
||
folder_name_entry_changed_callback (GtkEditable *editable,
|
||
void *data)
|
||
{
|
||
GtkDialog *dialog = GTK_DIALOG (data);
|
||
const char *folder_name_text = gtk_entry_get_text (GTK_ENTRY (editable));
|
||
|
||
if (*folder_name_text == '\0')
|
||
gtk_dialog_set_response_sensitive (dialog, GTK_RESPONSE_OK, FALSE);
|
||
else
|
||
gtk_dialog_set_response_sensitive (dialog, GTK_RESPONSE_OK, TRUE);
|
||
}
|
||
|
||
static void
|
||
setup_server_option_menu (EShell *shell,
|
||
GladeXML *glade_xml,
|
||
char **storage_name_return)
|
||
{
|
||
GList *storages;
|
||
GList *p;
|
||
GtkWidget *widget;
|
||
GtkWidget *menu;
|
||
|
||
widget = glade_xml_get_widget (glade_xml, "server-option-menu");
|
||
g_assert (GTK_IS_OPTION_MENU (widget));
|
||
|
||
menu = gtk_menu_new ();
|
||
gtk_widget_show (menu);
|
||
|
||
*storage_name_return = NULL;
|
||
storages = e_storage_set_get_storage_list (e_shell_get_storage_set (shell));
|
||
for (p = storages; p != NULL; p = p->next) {
|
||
GtkWidget *menu_item;
|
||
const char *storage_name;
|
||
|
||
if (!e_storage_supports_shared_folders (p->data))
|
||
continue;
|
||
|
||
storage_name = e_storage_get_name (E_STORAGE (p->data));
|
||
|
||
menu_item = gtk_menu_item_new_with_label (storage_name);
|
||
g_signal_connect (menu_item, "activate",
|
||
G_CALLBACK (server_option_menu_item_activate_callback),
|
||
storage_name_return);
|
||
g_object_set_data_full (G_OBJECT (menu_item), "storage_name", g_strdup (storage_name), g_free);
|
||
|
||
gtk_widget_show (menu_item);
|
||
gtk_menu_shell_append(GTK_MENU_SHELL(menu), menu_item);
|
||
|
||
if (*storage_name_return == NULL)
|
||
*storage_name_return = g_strdup (storage_name);
|
||
}
|
||
|
||
gtk_option_menu_set_menu (GTK_OPTION_MENU (widget), menu);
|
||
|
||
/* FIXME: Default to the current storage in the shell view. */
|
||
}
|
||
|
||
static gboolean
|
||
show_dialog (EShell *shell,
|
||
EShellView *parent,
|
||
char **user_email_address_return,
|
||
char **storage_name_return,
|
||
char **folder_name_return)
|
||
{
|
||
GNOME_Evolution_Addressbook_SelectNames corba_iface;
|
||
GladeXML *glade_xml;
|
||
GtkWidget *dialog;
|
||
GtkWidget *name_selector_widget;
|
||
GtkWidget *folder_name_entry;
|
||
char *user_email_address;
|
||
int response;
|
||
|
||
glade_xml = glade_xml_new (EVOLUTION_GLADEDIR "/e-shell-shared-folder-picker-dialog.glade",
|
||
NULL, NULL);
|
||
g_assert (glade_xml != NULL);
|
||
|
||
name_selector_widget = setup_name_selector (glade_xml, &corba_iface);
|
||
if (name_selector_widget == NULL)
|
||
return FALSE;
|
||
|
||
setup_server_option_menu (shell, glade_xml, storage_name_return);
|
||
setup_folder_name_combo (glade_xml);
|
||
|
||
dialog = glade_xml_get_widget (glade_xml, "dialog");
|
||
g_assert (dialog != NULL);
|
||
|
||
folder_name_entry = glade_xml_get_widget (glade_xml, "folder-name-entry");
|
||
|
||
/* Connect the callback to set the OK button insensitive when there is
|
||
no text in the folder_name_entry. Notice that we put a value there
|
||
by default so the OK button is sensitive by default. */
|
||
g_signal_connect (folder_name_entry, "changed",
|
||
G_CALLBACK (folder_name_entry_changed_callback), dialog);
|
||
|
||
while (TRUE) {
|
||
response = gtk_dialog_run (GTK_DIALOG (dialog));
|
||
if (response == GTK_RESPONSE_CANCEL) {
|
||
g_free (*storage_name_return);
|
||
*storage_name_return = NULL;
|
||
gtk_widget_destroy (dialog);
|
||
bonobo_object_release_unref (corba_iface, NULL);
|
||
return FALSE;
|
||
}
|
||
|
||
bonobo_widget_get_property (BONOBO_WIDGET (name_selector_widget),
|
||
"addresses", TC_CORBA_string, &user_email_address,
|
||
NULL);
|
||
|
||
if (user_email_address != NULL && *user_email_address != '\0')
|
||
break;
|
||
|
||
g_free (user_email_address);
|
||
|
||
/* It would be nice to insensitivize the OK button appropriately
|
||
instead of doing this, but unfortunately we can't do this for the
|
||
Bonobo control. */
|
||
e_notice (dialog, GTK_MESSAGE_ERROR, _("Please select a user."));
|
||
}
|
||
|
||
*user_email_address_return = user_email_address;
|
||
*folder_name_return = g_strdup (gtk_entry_get_text (GTK_ENTRY (folder_name_entry)));
|
||
|
||
gtk_widget_destroy (dialog);
|
||
bonobo_object_release_unref (corba_iface, NULL);
|
||
return TRUE;
|
||
}
|
||
|
||
|
||
/* Discovery process. */
|
||
|
||
struct _DiscoveryData {
|
||
EShell *shell;
|
||
EShellView *parent;
|
||
GtkWidget *dialog;
|
||
char *user_email_address;
|
||
char *folder_name;
|
||
EStorage *storage;
|
||
};
|
||
typedef struct _DiscoveryData DiscoveryData;
|
||
|
||
static void
|
||
cleanup_discovery (DiscoveryData *discovery_data)
|
||
{
|
||
if (discovery_data->dialog != NULL)
|
||
gtk_widget_destroy (discovery_data->dialog);
|
||
|
||
g_free (discovery_data->user_email_address);
|
||
g_free (discovery_data->folder_name);
|
||
g_object_unref (discovery_data->storage);
|
||
g_free (discovery_data);
|
||
}
|
||
|
||
static int
|
||
progress_bar_timeout_callback (void *data)
|
||
{
|
||
gtk_progress_bar_pulse (GTK_PROGRESS_BAR (data));
|
||
|
||
return TRUE;
|
||
}
|
||
|
||
static void
|
||
progress_bar_weak_notify (void *data,
|
||
GObject *where_the_object_was)
|
||
{
|
||
int timeout_id;
|
||
|
||
timeout_id = GPOINTER_TO_INT (data);
|
||
g_source_remove (timeout_id);
|
||
}
|
||
|
||
/* This is invoked if the "Cancel" button is clicked. */
|
||
static void
|
||
progress_dialog_clicked_callback (GtkDialog *dialog,
|
||
int response,
|
||
void *data)
|
||
{
|
||
DiscoveryData *discovery_data;
|
||
|
||
discovery_data = (DiscoveryData *) data;
|
||
|
||
e_storage_cancel_discover_shared_folder (discovery_data->storage,
|
||
discovery_data->user_email_address,
|
||
discovery_data->folder_name);
|
||
|
||
cleanup_discovery (discovery_data);
|
||
}
|
||
|
||
static int
|
||
progress_dialog_show_timeout_callback (void *data)
|
||
{
|
||
GtkWidget *dialog;
|
||
|
||
dialog = GTK_WIDGET (data);
|
||
gtk_widget_show_all (dialog);
|
||
return FALSE;
|
||
}
|
||
|
||
static GtkWidget *
|
||
create_progress_dialog (EShell *shell,
|
||
EStorage *storage,
|
||
const char *user_email_address,
|
||
const char *folder_name)
|
||
{
|
||
GtkWidget *dialog;
|
||
GtkWidget *label;
|
||
GtkWidget *progress_bar;
|
||
int timeout_id;
|
||
char *text;
|
||
|
||
dialog = gtk_dialog_new_with_buttons (_("Opening Folder"), NULL, 0,
|
||
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
||
NULL);
|
||
gtk_widget_set_size_request (dialog, 300, -1);
|
||
gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
|
||
|
||
text = g_strdup_printf (_("Opening Folder \"%s\""), folder_name);
|
||
label = gtk_label_new (text);
|
||
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), label, FALSE, TRUE, 0);
|
||
g_free (text);
|
||
|
||
text = g_strdup_printf (_("in \"%s\" ..."), e_storage_get_name (storage));
|
||
label = gtk_label_new (text);
|
||
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), label, FALSE, TRUE, 0);
|
||
g_free (text);
|
||
|
||
progress_bar = gtk_progress_bar_new ();
|
||
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog)->vbox), progress_bar, FALSE, TRUE, 0);
|
||
|
||
timeout_id = g_timeout_add (50, progress_bar_timeout_callback, progress_bar);
|
||
g_object_weak_ref (G_OBJECT (progress_bar), progress_bar_weak_notify, GINT_TO_POINTER (timeout_id));
|
||
|
||
timeout_id = g_timeout_add (PROGRESS_DIALOG_DELAY, progress_dialog_show_timeout_callback, dialog);
|
||
g_object_weak_ref (G_OBJECT (progress_bar), progress_bar_weak_notify, GINT_TO_POINTER (timeout_id));
|
||
|
||
return dialog;
|
||
}
|
||
|
||
static void
|
||
shell_weak_notify (void *data,
|
||
GObject *where_the_object_was)
|
||
{
|
||
DiscoveryData *discovery_data;
|
||
|
||
discovery_data = (DiscoveryData *) data;
|
||
cleanup_discovery (discovery_data);
|
||
}
|
||
|
||
static void
|
||
shell_view_weak_notify (void *data,
|
||
GObject *where_the_object_was)
|
||
{
|
||
DiscoveryData *discovery_data;
|
||
|
||
discovery_data = (DiscoveryData *) data;
|
||
discovery_data->parent = NULL;
|
||
}
|
||
|
||
static void
|
||
storage_weak_notify (void *data,
|
||
GObject *where_the_object_was)
|
||
{
|
||
DiscoveryData *discovery_data;
|
||
|
||
discovery_data = (DiscoveryData *) data;
|
||
cleanup_discovery (discovery_data);
|
||
|
||
/* FIXME: Should we signal the user when this happens? I.e. when the
|
||
storage dies for some reason before the folder is discovered. */
|
||
}
|
||
|
||
static void
|
||
shared_folder_discovery_callback (EStorage *storage,
|
||
EStorageResult result,
|
||
const char *path,
|
||
void *data)
|
||
{
|
||
DiscoveryData *discovery_data;
|
||
EShell *shell;
|
||
EShellView *parent;
|
||
|
||
discovery_data = (DiscoveryData *) data;
|
||
shell = discovery_data->shell;
|
||
parent = discovery_data->parent;
|
||
|
||
/* Make sure the progress dialog doesn't show up now. */
|
||
cleanup_discovery (discovery_data);
|
||
|
||
if (result == E_STORAGE_OK) {
|
||
char *uri;
|
||
|
||
uri = g_strconcat (E_SHELL_URI_PREFIX, "/",
|
||
e_storage_get_name (storage),
|
||
path, NULL);
|
||
|
||
if (discovery_data->parent != NULL)
|
||
e_shell_view_display_uri (parent, uri, TRUE);
|
||
else
|
||
e_shell_create_view (shell, uri, NULL);
|
||
} else {
|
||
e_notice (parent, GTK_MESSAGE_ERROR,
|
||
_("Could not open shared folder: %s."),
|
||
e_storage_result_to_string (result));
|
||
}
|
||
}
|
||
|
||
static void
|
||
discover_folder (EShell *shell,
|
||
EShellView *parent,
|
||
const char *user_email_address,
|
||
const char *storage_name,
|
||
const char *folder_name)
|
||
{
|
||
EStorageSet *storage_set;
|
||
EStorage *storage;
|
||
GtkWidget *dialog;
|
||
DiscoveryData *discovery_data;
|
||
|
||
storage_set = e_shell_get_storage_set (shell);
|
||
if (storage_set == NULL)
|
||
goto error;
|
||
|
||
storage = e_storage_set_get_storage (storage_set, storage_name);
|
||
if (storage == NULL || ! e_storage_supports_shared_folders (storage))
|
||
goto error;
|
||
|
||
dialog = create_progress_dialog (shell, storage, user_email_address, folder_name);
|
||
|
||
discovery_data = g_new (DiscoveryData, 1);
|
||
discovery_data->dialog = dialog;
|
||
discovery_data->shell = shell;
|
||
discovery_data->parent = parent;
|
||
discovery_data->user_email_address = g_strdup (user_email_address);
|
||
discovery_data->folder_name = g_strdup (folder_name);
|
||
discovery_data->storage = storage;
|
||
g_object_ref (storage);
|
||
|
||
g_object_weak_ref (G_OBJECT (shell), shell_weak_notify, discovery_data);
|
||
g_object_weak_ref (G_OBJECT (parent), shell_view_weak_notify, discovery_data);
|
||
g_object_weak_ref (G_OBJECT (storage), storage_weak_notify, discovery_data);
|
||
|
||
g_signal_connect (dialog, "clicked",
|
||
G_CALLBACK (progress_dialog_clicked_callback), discovery_data);
|
||
|
||
e_storage_async_discover_shared_folder (storage,
|
||
user_email_address,
|
||
folder_name,
|
||
shared_folder_discovery_callback,
|
||
discovery_data);
|
||
return;
|
||
|
||
error:
|
||
/* FIXME: Be more verbose? */
|
||
e_notice (parent, GTK_MESSAGE_ERROR,
|
||
_("Cannot find the specified shared folder."));
|
||
}
|
||
|
||
|
||
void
|
||
e_shell_show_shared_folder_picker_dialog (EShell *shell,
|
||
EShellView *parent)
|
||
{
|
||
char *user_email_address = NULL;
|
||
char *storage_name = NULL;
|
||
char *folder_name = NULL;
|
||
|
||
g_return_if_fail (E_IS_SHELL (shell));
|
||
|
||
if (! show_dialog (shell, parent, &user_email_address, &storage_name, &folder_name))
|
||
return;
|
||
|
||
discover_folder (shell, parent, user_email_address, storage_name, folder_name);
|
||
|
||
g_free (user_email_address);
|
||
g_free (storage_name);
|
||
g_free (folder_name);
|
||
}
|