
* GNOME_Evolution_Shell.server.in: Renamed from GNOME_Evolution_Shell.oaf.in. * Makefile.am: Port from OAF to bonobo-activation. (INCLUDES): Define SYSCONFDIR, DATADIR, LIBDIR. * main.c (main): Use gnome_program_init(). * e-corba-storage-registry.c (e_corba_storage_registry_new): g_object_new(), not gtk_type_new(). (impl_finalize): New, ported over from destroy. (destroy): Removed. (class_init): Install finalize handler, not destroy handler, since we are not a GtkObject anymore. * e-corba-storage.c (e_corba_storage_new): g_object_new(), not gtk_type_new(). * e-shell.c (class_init): Override finalize, not destroy. (impl_finalize): Finalize implementation, basically the old destroy renamed. (e_shell_new): g_object_new(), not gtk_type_new(). (class_init): Use e_shell_marshal_NONE__INT for line_status_changed instead of using an ENUM. (e_shell_construct): Use g_signal_connect_object() instead of gtk_signal_connect_while_alive(). * e-setup.c (e_setup): Do not unref local_folder if NULL. * e-folder.c (init): Make not floating. (e_folder_construct): No need to make it floating here anymore. * e-shell.c (impl_Shell_selectUserFolder): For now don't set dialog parent from xid. * main.c (no_views_left_cb): Add missing GTK_SIGNAL_FUNC() cast. (new_view_created_callback): Likewise. (warning_dialog_clicked_callback): Update to use the EConfigListener from the shell instead of bonobo-conf. (show_development_warning): Likewise. (upgrade_from_1_0_if_needed): BONOBO_EX_ID -> BONOBO_EX_REPOID. (idle_cb): Use bonobo-activation and BONOBO_EX_REPOID(). (main): Cleaned up the various things that are unneeded in GNOME 2. (upgrade_from_1_0_if_needed): Use EConfigListener. * evolution-storage-set-view.h, evolution-storage-set-view.c: BonoboXObjectified. * e-storage.c (class_init): GLIB2-ified and made to use e-shell-marshal.h. (ES_CLASS): Use GTK_OBJECT_GET_CLASS(). (e_storage_new_folder): Added missing GTK_SIGNAL_FUNC() prototype. * e-storage-set.c (class_init): GLIB2-ified and made to use e-shell-marshal.h. * e-storage-set-view.c (popup_folder_menu): For now, do not add the pop-up since we lack bonobo_ui_container_get_win() and I am not sure how to work around it. (popup_folder_menu): Pass self as the for_widget arg to gnome_popup_menu_do_popup_modal(). (class_init): GLIB2-ified, and got to use e-shell-marshal.h. (marshal_NONE__GDKDRAGCONTEXT_STRING_STRING_STRING): Removed. (impl_tree_drag_data_get): Don't set the selection for now -- we have to fix the CORBA target stuff to match GTK 2. (e_storage_set_view_construct): Pass NULL as the opt_ev arg to bonobo_ui_component_set_container(). * e-splash.c: #include <libgnomecanvas/gnome-canvas-pixbuf.h> instead of <gdk-pixbuf/gnome-canvas-pixbuf.h>. (e_splash_new): Pass NULL as the error arg to gdk_pixbuf_new_from_file(). * e-shortcuts.c (class_init): GLIB2-ified. Also use the e-shell-marshal marshallers. (e_shortcuts_new_view): Add missing GTK_SIGNAL_FUNC() cast. * e-shortcuts-view.c: Use GTK_STOCK_* stuff instead of GNOME_STOCK_* stuff. (pop_up_right_click_menu_for_group): Pass self as the for_widget arg to gnome_popup_menu_do_popup_modal(). (pop_up_right_click_menu_for_shortcut): Likewise. (class_init): GLIB2-ified. * e-shell.c: Do not #include <gal/util/e-unicode-i18n.h> or #include <libgnome/gnome-defs.h>. (set_interactive): Use BONOBO_EX_REPOID(). (setup_local_storage): Use _() not U_(). (destroy): Use gtk_widget_destroy() instead of gtk_object_destroy() on priv->settings_dialog. (class_init): GLIB2-ized. (init): Initialize config_listener member. (get_icon_path_for_component_info): Port to bonobo-activation from OAF. (setup_components): Likewise. (destroy): Likewise. (e_shell_construct): Use e_setup_check_config(), not e_setup_check_db (). Use the e_config_listener instead of bonobo-conf. (save_settings_for_views): Likewise. (save_misc_settings): Likewise. (e_shell_restore_from_settings): Likewise. (parse_default_uri): Likewise. (e_shell_component_maybe_crashed): Pass NULL for opt_ev arg to bonobo_unkown_ping() (e_shell_component_maybe_crashed): Use bonobo_engine_deregister_dead_components() instead of bonobo_window_deregister_component_by_ref() which is no more. (e_shell_send_receive): BONOBO_EX_REPOID() instead of BONOBO_EX_ID(). (e_shell_get_config_listener): Return the config_listener. * e-shell-view.c (find_inbox_in_storage): Use _() instead of U_(). (load_images): Pass NULL as the error arg to gdk_pixbuf_new_from_file(). (load_images): Likewise. (find_inbox_in_storage): Work around the lack of g_utf8_strcasecmp() in glib-2.0. (class_init): GLIB2-ified. Also, use the marshallers in e-shell-marshal.h. (pop_up_folder_bar): Use gtk_window_move()/gtk_widget_show() instead gtk_widget_popup(). (unmerge_on_error): Work around the death of bonobo_ui_component_get_win() and bonobo_window_deregister_component_by_ref(). (e_shell_view_construct): Pass NULL as the uic arg to bonobo_window_construct(). Add missing GTK_SIGNAL_FUNC() cast. Match the new BonoboWindow behavior wrt the UIContainer and the new opt_ev args. (display_uri): Use bonobo_ui_engine_freeze() and bonobo_ui_engine_thaw() since bonobo_window_freeze() and bonobo_window_thaw() got axed [sigh]. (e_shell_view_save_settings): Use EConfigListener. (e_shell_view_load_settings): Likewise. (get_view_for_uri): Use bonobo_widget_new_control_from_objref() instead of e_bonobo_widget_new_control_from_objref(). * e-shell-view-menu.c (command_help_faq): Pass NULL for the error arg to gnome_url_show(). (command_about_box): Use GtkDialog instead of a GtkWindow of a type GTK_WINDOW_DIALOG [which does not exist anymore]. (command_xml_dump): Removed. (menu_do_misc): Do not add the corresponding verb. * e-shell-user-creatable-items-handler.c (execute_verb): Use BONOBO_EX_REPOID(). * e-shell-startup-wizard.c: Remove id member from SWData. Replace member db with config_listener. (e_shell_startup_wizard_create): Initialize config_listener. (make_mail_dialog_pages): Do not set the listener id here. (druid_event_notify_cb): Pass FALSE as the help_sensitive arg to gnome_druid_set_buttons_sensitive(). (e_shell_startup_wizard_create): Likewise. (make_mail_dialog_pages): Use bonobo-activation instead of OAF. (get_intelligent_importers): Likewise. (prepare_importer_page): Likewise. (start_importers): Do nothing here for now. (finish_func): Constify local variable displayname. (finish_func): Updated to use the config_listener instead of the bono-conf db. (prepare_importer_page): Do not actually run the importer yet. (e_shell_startup_wizard_create): Pass NULL as the domain arg to glade_xml_new(). Use the config_listener. * e-shell-shared-folder-picker-dialog.c (user_clicked): BONOBO_EX_REPOID() instead of BONOBO_EX_ID(). (setup_name_selector): Likewise. (setup_name_selector): Use bonobo-activation. (show_dialog): Pass NULL as the domain arg to glade_xml_new(). (setup_name_selector): Add a missing GTK_SIGNAL_FUNC() cast. * e-shell-settings-dialog.c: #include <bonobo-activation/bonobo-activation.h>. Use Bonobo_ActivationProperty instead of OAF_Property. (set_dialog_size): Use gtk_style_get_font() to get the font from the widget->style. (load_pages): Converted to use bonobo-activation instead of OAF. Pass NULL as the error arg to gdk_pixbuf_new_from_file(). * e-shell-offline-sync.c (sync_folder): BONOBO_EX_REPOID(), not BONOBO_EX_ID(). (e_shell_offline_sync_all_folders): For now, avoid doing anything [see changes to e-shell-config-offline.c below]. (setup_progress_listener): #if 0 for now. (setup_dialog): Likewise. (sync_folder): Likewise. (cleanup): Likewise. (progress_listener_servant_free): Likewise. (progress_listener_servant_new): Likewise. (impl_SyncFolderProgressListener_updateProgress): Likewise. (impl_SyncFolderProgressListener_reportSuccess): Likewise. (impl_SyncFolderProgressListener_reportFailure): Likewise. (progress_dialog_close_callback): Likewise. (progress_dialog_clicked_callback): Likewise. * e-shell-offline-handler.c (prepare_for_offline): Use BONOBO_EX_REPOID(). (pop_up_confirmation_dialog): Pass NULL as the domain arg to glade_xml_new(). (class_init): GLIB2-ified. * Makefile.am: Do not compile e-shell-importer.c, e-shell-importer.h for now. * e-shell-folder-title-bar.c (get_max_clipped_label_width): Use gtk_style_get_font() to retrieve the font. (class_init): GLIB2-ified. (e_shell_folder_title_bar_construct): Get {x,y}thickness from widget->style, not from widget->style->klass. * e-shell-folder-selection-dialog.c: #include <string.h>, <gtk/gtklabel.h> and <gtk/gtksignal.h>. (class_init): GLIB2-ified. * e-shell-folder-creation-dialog.c: No <libgnome/gnome-defs.h>, add some GTK includes. (e_shell_show_folder_creation_dialog): Pass NULL as the domain arg to glade_xml_new(). Added missing GTK_SIGNAL_FUNC() cast. * e-shell-folder-commands.c: Do not #include <libgnomeui/gnome-stock.h> and #include <bonobo-conf/Bonobo_Config.h>. * e-shell-config-default-folders.c: Replace member db in EvolutionDefaultFolderConfig with config_listener. (e_shell_config_default_folders_create_widget): Init here. (config_control_destroy_cb): Unref here. (config_control_apply_cb): Use EConfigListener instead of BonoboConf. (setup_folder_selector): Likewise. (e_shell_config_default_folders_create_widget): Pass NULL as the domain arg to glade_xml_new(). * e-shell-config-offline.c (config_control_apply_callback): For now, do not change the configuration. [Needs to be ported to EConfigListener or something, but we were storing a sequence using typecodes here and there is no trivial way to do that right now.] (init_storage_set_view_status_from_config): Likewise, do not retrieve the configuration here. svn path=/trunk/; revision=18510
546 lines
16 KiB
C
546 lines
16 KiB
C
/* -*- 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-i18n.h>
|
||
#include <libgnome/gnome-util.h>
|
||
|
||
#include <gtk/gtkoptionmenu.h>
|
||
#include <gtk/gtkmenuitem.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;
|
||
}
|
||
|
||
/* 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);
|
||
}
|
||
|
||
|
||
/* 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), _("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_create_new_view (storage_set, NULL);
|
||
|
||
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 "mail";
|
||
}
|
||
|
||
folder_type = e_folder_get_type_string (folder);
|
||
if (folder_type == NULL || strcmp (folder_type, "noselect") == 0) {
|
||
return "mail";
|
||
} 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, 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",
|
||
GTK_SIGNAL_FUNC (storage_set_view_folder_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));
|
||
}
|