aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-folder-selection-dialog.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-11-05 02:32:55 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-11-05 02:32:55 +0800
commit735297df13cb2ef3279b7c3aed870f5c05f7e550 (patch)
tree191fae8b5432684e474a4216700688b50352d6ef /shell/e-shell-folder-selection-dialog.c
parentf4780a969c214e9a5a2c9062ed4b7f57c09174f9 (diff)
downloadgsoc2013-evolution-735297df13cb2ef3279b7c3aed870f5c05f7e550.tar
gsoc2013-evolution-735297df13cb2ef3279b7c3aed870f5c05f7e550.tar.gz
gsoc2013-evolution-735297df13cb2ef3279b7c3aed870f5c05f7e550.tar.bz2
gsoc2013-evolution-735297df13cb2ef3279b7c3aed870f5c05f7e550.tar.lz
gsoc2013-evolution-735297df13cb2ef3279b7c3aed870f5c05f7e550.tar.xz
gsoc2013-evolution-735297df13cb2ef3279b7c3aed870f5c05f7e550.tar.zst
gsoc2013-evolution-735297df13cb2ef3279b7c3aed870f5c05f7e550.zip
Pass TRUE for arg allow_creation to e_shell_folder_selection_dialog_new().
* e-shell-folder-commands.c (e_shell_command_copy_folder): Pass TRUE for arg allow_creation to e_shell_folder_selection_dialog_new(). (e_shell_command_move_folder): Likewise. * e-shell-view-menu.c (command_goto_folder): Likewise. (command_new_shortcut): Likewise. * e-shell.c (impl_Shell_selectUserFolder): Likewise. * e-shell-folder-selection-dialog.c (e_shell_folder_selection_dialog_set_allow_creation): Removed. (e_shell_folder_selection_dialog_get_allow_creation): Removed. (e_shell_folder_selection_dialog_new): New arg allow_creation. (e_shell_folder_selection_dialog_construct): Likewise. Also, do set priv->shell. * e-shell-folder-selection-dialog.h, e-shell-folder-selection-dialog.c: Port to GtkDialog. svn path=/trunk/; revision=18533
Diffstat (limited to 'shell/e-shell-folder-selection-dialog.c')
-rw-r--r--shell/e-shell-folder-selection-dialog.c119
1 files changed, 38 insertions, 81 deletions
diff --git a/shell/e-shell-folder-selection-dialog.c b/shell/e-shell-folder-selection-dialog.c
index e23cbec95c..66a4b60066 100644
--- a/shell/e-shell-folder-selection-dialog.c
+++ b/shell/e-shell-folder-selection-dialog.c
@@ -32,7 +32,6 @@
#include "e-shell-folder-creation-dialog.h"
-#include <libgnomeui/gnome-dialog.h>
#include <libgnome/gnome-i18n.h>
#include <gal/util/e-util.h>
@@ -45,8 +44,8 @@
#include <string.h>
-#define PARENT_TYPE (gnome_dialog_get_type ())
-static GnomeDialogClass *parent_class = NULL;
+#define PARENT_TYPE (gtk_dialog_get_type ())
+static GtkDialogClass *parent_class = NULL;
struct _EShellFolderSelectionDialogPrivate {
EShell *shell;
@@ -197,11 +196,11 @@ impl_destroy (GtkObject *object)
}
-/* GnomeDialog methods. */
+/* GtkDialog methods. */
static void
-impl_clicked (GnomeDialog *dialog,
- int button_number)
+impl_response (GtkDialog *dialog,
+ int response)
{
EShellFolderSelectionDialog *folder_selection_dialog;
EShellFolderSelectionDialogPrivate *priv;
@@ -213,19 +212,19 @@ impl_clicked (GnomeDialog *dialog,
folder_selection_dialog = E_SHELL_FOLDER_SELECTION_DIALOG (dialog);
priv = folder_selection_dialog->priv;
- switch (button_number) {
- case 0: /* OK */
+ switch (response) {
+ case GTK_RESPONSE_OK:
if (check_folder_type_valid (folder_selection_dialog)) {
g_signal_emit (folder_selection_dialog, signals[FOLDER_SELECTED], 0,
e_shell_folder_selection_dialog_get_selected_path (folder_selection_dialog));
- gnome_dialog_close (GNOME_DIALOG (dialog));
+ gtk_widget_destroy (GTK_WIDGET (dialog));
}
break;
- case 1: /* Cancel */
+ case GTK_RESPONSE_CANCEL:
g_signal_emit (folder_selection_dialog, signals[CANCELLED], 0);
- gnome_dialog_close (GNOME_DIALOG (dialog));
+ gtk_widget_destroy (GTK_WIDGET (dialog));
break;
- case 2: /* Add */
+ default: /* New... */
storage_set_view = E_STORAGE_SET_VIEW (priv->storage_set_view);
default_parent_folder = e_storage_set_view_get_current_folder (storage_set_view);
@@ -258,15 +257,15 @@ static void
class_init (EShellFolderSelectionDialogClass *klass)
{
GtkObjectClass *object_class;
- GnomeDialogClass *dialog_class;
+ GtkDialogClass *dialog_class;
parent_class = gtk_type_class (PARENT_TYPE);
object_class = GTK_OBJECT_CLASS (klass);
- dialog_class = GNOME_DIALOG_CLASS (klass);
+ dialog_class = GTK_DIALOG_CLASS (klass);
object_class->destroy = impl_destroy;
- dialog_class->clicked = impl_clicked;
+ dialog_class->response = impl_response;
signals[FOLDER_SELECTED]
= gtk_signal_new ("folder_selected",
@@ -314,9 +313,9 @@ folder_selected_cb (EStorageSetView *storage_set_view,
dialog = E_SHELL_FOLDER_SELECTION_DIALOG (data);
if (check_folder_type_valid (dialog))
- gnome_dialog_set_sensitive (GNOME_DIALOG (dialog), 0, TRUE);
+ gtk_dialog_set_response_sensitive (GTK_DIALOG (dialog), GTK_RESPONSE_OK, TRUE);
else
- gnome_dialog_set_sensitive (GNOME_DIALOG (dialog), 0, FALSE);
+ gtk_dialog_set_response_sensitive (GTK_DIALOG (dialog), GTK_RESPONSE_OK, FALSE);
}
static gint
@@ -342,7 +341,7 @@ double_click_cb (EStorageSetView *essv,
if (check_folder_type_valid (folder_selection_dialog)) {
g_signal_emit (folder_selection_dialog, signals[FOLDER_SELECTED], 0,
e_shell_folder_selection_dialog_get_selected_path (folder_selection_dialog));
- gnome_dialog_close (GNOME_DIALOG (folder_selection_dialog));
+ gtk_widget_destroy (GTK_WIDGET (folder_selection_dialog));
}
}
@@ -364,7 +363,8 @@ e_shell_folder_selection_dialog_construct (EShellFolderSelectionDialog *folder_s
const char *title,
const char *caption,
const char *default_uri,
- const char *allowed_types[])
+ const char *allowed_types[],
+ gboolean allow_creation)
{
EShellFolderSelectionDialogPrivate *priv;
GtkWidget *scroll_frame;
@@ -385,21 +385,26 @@ e_shell_folder_selection_dialog_construct (EShellFolderSelectionDialog *folder_s
gtk_window_set_default_size (GTK_WINDOW (folder_selection_dialog), 350, 300);
gtk_window_set_modal (GTK_WINDOW (folder_selection_dialog), TRUE);
gtk_window_set_title (GTK_WINDOW (folder_selection_dialog), title);
+
g_signal_connect (folder_selection_dialog, "delete_event",
G_CALLBACK (delete_event_cb), folder_selection_dialog);
- gnome_dialog_append_buttons (GNOME_DIALOG (folder_selection_dialog),
- GNOME_STOCK_BUTTON_OK,
- GNOME_STOCK_BUTTON_CANCEL,
- _("New..."),
- NULL);
- gnome_dialog_set_default (GNOME_DIALOG (folder_selection_dialog), 0);
- gnome_dialog_set_sensitive (GNOME_DIALOG (folder_selection_dialog), 0, FALSE);
+ gtk_dialog_add_buttons (GTK_DIALOG (folder_selection_dialog),
+ GTK_STOCK_OK, GTK_RESPONSE_OK,
+ GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
+ NULL);
+
+ if (allow_creation)
+ gtk_dialog_add_buttons (GTK_DIALOG (folder_selection_dialog),
+ GTK_STOCK_NEW, 1,
+ NULL);
+
+ gtk_dialog_set_response_sensitive (GTK_DIALOG (folder_selection_dialog), GTK_RESPONSE_OK, FALSE);
/* Make sure we get destroyed if the shell gets destroyed. */
-#if 0
priv->shell = shell;
+#if 0
gtk_signal_connect_object_while_alive (GTK_OBJECT (shell), "destroy",
G_CALLBACK (gtk_widget_destroy),
GTK_OBJECT (folder_selection_dialog));
@@ -411,7 +416,7 @@ e_shell_folder_selection_dialog_construct (EShellFolderSelectionDialog *folder_s
caption_label = gtk_label_new (caption);
gtk_widget_show (caption_label);
- gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (folder_selection_dialog)->vbox),
+ gtk_box_pack_start (GTK_BOX (GTK_DIALOG (folder_selection_dialog)->vbox),
caption_label, FALSE, TRUE, 2);
}
@@ -458,7 +463,7 @@ e_shell_folder_selection_dialog_construct (EShellFolderSelectionDialog *folder_s
gtk_container_add (GTK_CONTAINER (scroll_frame), priv->storage_set_view);
- gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (folder_selection_dialog)->vbox),
+ gtk_box_pack_start (GTK_BOX (GTK_DIALOG (folder_selection_dialog)->vbox),
scroll_frame, TRUE, TRUE, 2);
gtk_widget_show (priv->storage_set_view);
@@ -487,7 +492,8 @@ e_shell_folder_selection_dialog_new (EShell *shell,
const char *title,
const char *caption,
const char *default_uri,
- const char *allowed_types[])
+ const char *allowed_types[],
+ gboolean allow_creation)
{
EShellFolderSelectionDialog *folder_selection_dialog;
@@ -496,62 +502,13 @@ e_shell_folder_selection_dialog_new (EShell *shell,
folder_selection_dialog = gtk_type_new (e_shell_folder_selection_dialog_get_type ());
e_shell_folder_selection_dialog_construct (folder_selection_dialog, shell,
- title, caption, default_uri, allowed_types);
+ title, caption, default_uri, allowed_types,
+ allow_creation);
return GTK_WIDGET (folder_selection_dialog);
}
-/**
- * e_shell_folder_selection_dialog_set_allow_creation:
- * @folder_selection_dialog: An EShellFolderSelectionDialog widget
- * @allow_creation: Boolean specifying whether the "New..." button should be
- * displayed
- *
- * Specify whether @folder_selection_dialog should have a "New..." button to
- * create a new folder or not.
- **/
-void
-e_shell_folder_selection_dialog_set_allow_creation (EShellFolderSelectionDialog *folder_selection_dialog,
- gboolean allow_creation)
-{
- GList *button_list_item;
- GtkWidget *button;
-
- g_return_if_fail (folder_selection_dialog != NULL);
- g_return_if_fail (E_IS_SHELL_FOLDER_SELECTION_DIALOG (folder_selection_dialog));
-
- folder_selection_dialog->priv->allow_creation = !! allow_creation;
-
- button_list_item = g_list_nth (GNOME_DIALOG (folder_selection_dialog)->buttons, 2);
- g_assert (button_list_item != NULL);
-
- button = GTK_WIDGET (button_list_item->data);
-
- if (allow_creation)
- gtk_widget_show (button);
- else
- gtk_widget_hide (button);
-}
-
-/**
- * e_shell_folder_selection_dialog_get_allow_creation:
- * @folder_selection_dialog: An EShellFolderSelectionDialog widget
- *
- * Get whether the "New..." button is displayed.
- *
- * Return value: %TRUE if the "New..." button is displayed, %FALSE otherwise.
- **/
-gboolean
-e_shell_folder_selection_dialog_get_allow_creation (EShellFolderSelectionDialog *folder_selection_dialog)
-{
- g_return_val_if_fail (folder_selection_dialog != NULL, FALSE);
- g_return_val_if_fail (E_IS_SHELL_FOLDER_SELECTION_DIALOG (folder_selection_dialog), FALSE);
-
- return folder_selection_dialog->priv->allow_creation;
-}
-
-
const char *
e_shell_folder_selection_dialog_get_selected_path (EShellFolderSelectionDialog *folder_selection_dialog)
{