/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ /* e-shell.c * * Copyright (C) 2000 Helix Code, 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. * * Author: Ettore Perazzoli */ #ifdef HAVE_CONFIG_H #include #endif #include #include #include "e-util/e-gui-utils.h" #include "e-util/e-util.h" #include "widgets/misc/e-scroll-frame.h" #include "e-storage-set.h" #include "e-storage-set-view.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; }; typedef struct _DialogData DialogData; static void dialog_data_destroy (DialogData *dialog_data) { e_free_string_list (dialog_data->folder_types); g_free (dialog_data); } /* Callback for the asynchronous folder creation function. */ static void async_create_cb (EStorage *storage, EStorageResult result, void *data) { DialogData *dialog_data; dialog_data = (DialogData *) data; if (result == E_STORAGE_OK) { gtk_widget_destroy (dialog_data->dialog); return; } e_notice (GTK_WINDOW (dialog_data->dialog), GNOME_MESSAGE_BOX_ERROR, _("Cannot create the specified folder:\n%s"), e_storage_result_to_string (result)); } /* Sanity check for the user-specified folder name. */ /* FIXME in the future we would like not to have the `G_DIR_SEPARATOR' limitation. */ static gboolean entry_name_is_valid (GtkEntry *entry) { const char *name; name = gtk_entry_get_text (entry); if (name == NULL || *name == '\0') return FALSE; if (strchr (name, G_DIR_SEPARATOR) != NULL) return FALSE; if (strcmp (name, ".") == 0 || strcmp (name, "..") == 0) return FALSE; return TRUE; } /* 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 *folder_name; char *path; if (button_number != 0) { gnome_dialog_close (dialog); return; } dialog_data = (DialogData *) data; if (! entry_name_is_valid (GTK_ENTRY (dialog_data->folder_name_entry))) { /* FIXME: Explain better. */ e_notice (GTK_WINDOW (dialog), GNOME_MESSAGE_BOX_ERROR, _("The specified folder name is not valid.")); return; } parent_path = e_storage_set_view_get_current_folder (E_STORAGE_SET_VIEW (dialog_data->storage_set_view)); if (parent_path == NULL) { gnome_dialog_close (dialog); return; } folder_name = gtk_entry_get_text (GTK_ENTRY (dialog_data->folder_name_entry)); path = g_concat_dir_and_file (parent_path, 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; } e_storage_set_async_create_folder (storage_set, path, folder_type, NULL, /* description */ async_create_cb, dialog_data); } static void dialog_close_cb (GnomeDialog *dialog, void *data) { gtk_widget_destroy (GTK_WIDGET (dialog)); } static void dialog_destroy_cb (GtkObject *object, void *data) { DialogData *dialog_data; dialog_data = (DialogData *) data; dialog_data_destroy (dialog_data); } static void folder_name_entry_changed_cb (GtkEditable *editable, void *data) { GnomeDialog *dialog; GtkEntry *entry; entry = GTK_ENTRY (editable); dialog = GNOME_DIALOG (data); if (entry->text_length > 0) gnome_dialog_set_sensitive (dialog, 0, TRUE); else gnome_dialog_set_sensitive (dialog, 0, FALSE); } /* 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)); gtk_signal_connect (GTK_OBJECT (folder_name_entry), "changed", GTK_SIGNAL_FUNC (folder_name_entry_changed_cb), dialog); } 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); 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); 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; } static GList * add_folder_types (GtkWidget *dialog, GladeXML *gui, EShell *shell) { EFolderTypeRegistry *folder_type_registry; GtkWidget *folder_type_option_menu; GtkWidget *menu; GList *folder_types; 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? */ folder_types = g_list_sort (folder_types, (GCompareFunc) g_strcasecmp); /* FIXME: Use descriptive name (not in the registry's implementation yet). */ /* FIXME: Add icon (I don't feel like writing an alpha-capable thingie again). */ default_item = 0; for (p = folder_types, i = 0; p != NULL; p = p->next, i++) { const char *type_name; GtkWidget *menu_item; type_name = (const char *) p->data; menu_item = gtk_menu_item_new_with_label (type_name); gtk_widget_show (menu_item); gtk_menu_append (GTK_MENU (menu), menu_item); gtk_object_set_data (GTK_OBJECT (menu_item), "folder_type", (void *) type_name); if (strcmp (type_name, "mail") == 0) default_item = i; } 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; } /* 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) { 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); folder_types = add_folder_types (dialog, gui, shell); 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; gtk_signal_connect (GTK_OBJECT (dialog), "clicked", GTK_SIGNAL_FUNC (dialog_clicked_cb), dialog_data); gtk_signal_connect (GTK_OBJECT (dialog), "close", GTK_SIGNAL_FUNC (dialog_close_cb), dialog_data); gtk_signal_connect (GTK_OBJECT (dialog), "destroy", GTK_SIGNAL_FUNC (dialog_destroy_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)); } electron6/files/ini-1.3.8&id=fbdb63eff0f3eb6c84999d6a3ec77d0c932682da'>- Update to 2.4.2miwi2013-03-275-88/+110 * - Chase libmtp shlib bumpmiwi2013-03-273-1/+3 * - Update MASTER_SITESmiwi2013-03-263-6/+84 * Reformat using 8-space wide tab in preparation for KDE SC 4.10 updatemakc2013-03-263-46/+46 * - Fix crash when locale is set to certain valuesmiwi2013-03-266-535/+607 * - Fix breakage caused by glib2 updatekmoore2013-03-251-0/+2 * - Add dependence on X libraries [1] and make it optionalmakc2013-03-252-29/+19 * - Add global options (DOCS, NLS, etc) to the OPTIONS_DEFINE if it'smakc2013-03-251-2/+0 * . make use of the ports infrastructure to create the desktop file;bsam2013-03-252-4/+6 * - Update to 1.0.0miwi2013-03-242-3/+3 * Update mplayer and mencoder to a recent snapshot. Major changes:naddy2013-03-2312-257/+242 * Add opus audio codec gstreamer plugin.kwm2013-03-231-0/+7 * - Update to 0.4.14sunpoet2013-03-233-3/+4 * - Fix install errorbeech2013-03-232-9/+38 * - convert USE_CMAKE to USESmakc2013-03-2320-25/+20 * Mk/bsd.kde4.mk:makc2013-03-223-3/+3 * libsmacker is a cross-platform C library which can be used for decoding Smackerpawel2013-03-214-0/+29 * - Update to 2.0.1tabthorpe2013-03-203-1003/+979 * Update to 1.1.1madpilot2013-03-202-5/+4 * - update to 3.2.0.10rm2013-03-202-4/+3 * - Update to version 1.6pawel2013-03-203-23/+17 * - Add fix for crashes when cutting. [1]nox2013-03-202-6/+63 * This changes almost all the "gnomehack" only USE_GNOME cases to USES= pathfix.eadler2013-03-195-5/+5 * Convert almost all gnome@ ports to OptionsNG, trim header, use USES=pathfixkwm2013-03-192-18/+17 * "aaargh, quoted Makefile variables"eadler2013-03-191-7/+2 * Fix build by adding a build dependency on pkgconfbapt2013-03-181-0/+1 * Fix build by adding a build depend on pkgconfbapt2013-03-181-0/+1 * - Update to 3.0.7beech2013-03-173-28/+57 * Update multimedia/ffmpeg1 to 1.0.5mm2013-03-152-3/+3 * - Fix buildmiwi2013-03-151-0/+1 * Replace CMAKE_INSTALL_PREFIX with PREFIX (in preparation for bsd.cmake.mk cle...makc2013-03-141-1/+1 * - graphics/libexif:pclin2013-03-142-7/+3 * - adopt optionsNG and trim historical headersjgh2013-03-142-12/+8 * Fix the build of empathy my removing offending Makefile rules. Bumpkwm2013-03-131-1/+1 * - Pet portlint: remove ABI version number from LIB_DEPENDSsunpoet2013-03-131-7/+3 * - Pet portlint: remove ABI version number from LIB_DEPENDSsunpoet2013-03-131-8/+9 * - Update to 0.4.13sunpoet2013-03-133-7/+7 * Fix an issue with bktr.mandree2013-03-121-3/+5 * - Fix and enable BMP optionbdrewery2013-03-112-17/+37 * Fix build with glib 2.34.kwm2013-03-103-5/+24 * - Update to 0.5.0olivierd2013-03-106-212/+24 * Maintainer update to 0.3.0.mandree2013-03-107-33/+62 * Fix build with glib 2.34.kwm2013-03-091-0/+1 * - Unbreak and Undeprecate by fixing fetch.bdrewery2013-03-092-13/+9 * - Update to version 1.2.2pawel2013-03-099-96/+53 * - update to 12.0 [1]rm2013-03-098-103/+304 * - update to 3.5.0rm2013-03-094-16/+15 * - Add gettext library to xmms-config --libsgahr2013-03-082-2/+15 * Convert USE_BISON to USES= bisonbapt2013-03-084-17/+7 * * Update the glib to 2.34.3 and gtk20 to 2.24.17 and gtk30 to 3.6.4 whichkwm2013-03-083-13/+8 * - Please welcome back Chris Petrik as maintainer ofbdrewery2013-03-075-11/+7 * Update to 1.0.8.jkim2013-03-074-7/+8 * - Update *_DEPENDS on databases/py-bsddb after _bsddb.so relocationlwhsu2013-03-041-6/+2 * - Update *_DEPENDS on databases/py-sqlite3 after _sqlite3.so relocationlwhsu2013-03-045-21/+9 * - Always enable dvdreadgblach2013-03-031-11/+4 * - Fix EXPIRATION date, we are in 2013, not 2012swills2013-03-031-1/+1 * - Deprecate ports which don't work with Ruby 1.9swills2013-03-031-5/+4 * - Update MASTER_SITESmiwi2013-03-022-12/+7 * - Update to 0.8amiwi2013-03-024-25/+103 * - Fix mkv playback when built with clang.nox2013-03-022-1/+25 * Remove expired port multimedia/ffmpeg-011mm2013-03-0117-910/+0 * Upgrade to version 1.10.48.olgeni2013-03-013-7/+7 * Remove obsolete portsmakc2013-02-278-296/+0 * Update to 2.0makc2013-02-264-13/+32 * Update multimedia/ffmpeg1 to 1.0.4mm2013-02-243-15/+23 * Update multimedia/ffmpeg to 0.7.15mm2013-02-242-4/+3 * Add LICENSE.jkim2013-02-231-0/+2 * Attempt to remove an NLS directory.jkim2013-02-23