2004-02-27 22:20:19 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpfiledialog.c
|
|
|
|
* Copyright (C) 2004 Michael Natterer <mitch@gimp.org>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
|
|
|
#include "widgets-types.h"
|
|
|
|
|
|
|
|
#include "core/gimp.h"
|
|
|
|
#include "core/gimpimage.h"
|
2004-08-11 02:47:21 +08:00
|
|
|
#include "core/gimpprogress.h"
|
2004-02-27 22:20:19 +08:00
|
|
|
|
2004-10-05 06:25:04 +08:00
|
|
|
#include "config/gimpguiconfig.h"
|
2004-02-27 23:43:58 +08:00
|
|
|
|
|
|
|
#include "file/file-utils.h"
|
|
|
|
|
2006-04-29 06:26:51 +08:00
|
|
|
#include "plug-in/gimppluginmanager.h"
|
|
|
|
#include "plug-in/gimppluginmanager-locale-domain.h"
|
2004-02-27 22:20:19 +08:00
|
|
|
|
2006-04-26 17:13:47 +08:00
|
|
|
#include "pdb/gimppdb.h"
|
2006-04-06 18:01:30 +08:00
|
|
|
#include "pdb/gimppluginprocedure.h"
|
2006-03-31 17:15:08 +08:00
|
|
|
|
2004-02-27 22:20:19 +08:00
|
|
|
#include "gimpfiledialog.h"
|
2004-07-17 05:24:39 +08:00
|
|
|
#include "gimpfileprocview.h"
|
2004-07-18 03:53:05 +08:00
|
|
|
#include "gimphelp-ids.h"
|
2005-09-29 05:20:05 +08:00
|
|
|
#include "gimpprogressbox.h"
|
2004-08-25 01:16:46 +08:00
|
|
|
#include "gimpview.h"
|
2004-08-26 22:20:30 +08:00
|
|
|
#include "gimpviewrendererimagefile.h"
|
2004-07-18 03:53:05 +08:00
|
|
|
#include "gimpthumbbox.h"
|
2004-08-11 06:21:56 +08:00
|
|
|
#include "gimpwidgets-utils.h"
|
2004-04-16 00:28:26 +08:00
|
|
|
|
2004-02-27 22:20:19 +08:00
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
|
|
|
2005-12-20 06:37:49 +08:00
|
|
|
static void gimp_file_dialog_progress_iface_init (GimpProgressInterface *iface);
|
2004-08-11 18:29:56 +08:00
|
|
|
static gboolean gimp_file_dialog_delete_event (GtkWidget *widget,
|
|
|
|
GdkEventAny *event);
|
|
|
|
static void gimp_file_dialog_response (GtkDialog *dialog,
|
|
|
|
gint response_id);
|
2004-02-27 22:20:19 +08:00
|
|
|
|
2004-08-11 02:47:21 +08:00
|
|
|
static GimpProgress *
|
2004-08-11 18:29:56 +08:00
|
|
|
gimp_file_dialog_progress_start (GimpProgress *progress,
|
|
|
|
const gchar *message,
|
|
|
|
gboolean cancelable);
|
|
|
|
static void gimp_file_dialog_progress_end (GimpProgress *progress);
|
|
|
|
static gboolean gimp_file_dialog_progress_is_active (GimpProgress *progress);
|
|
|
|
static void gimp_file_dialog_progress_set_text (GimpProgress *progress,
|
|
|
|
const gchar *message);
|
|
|
|
static void gimp_file_dialog_progress_set_value (GimpProgress *progress,
|
|
|
|
gdouble percentage);
|
|
|
|
static gdouble gimp_file_dialog_progress_get_value (GimpProgress *progress);
|
2005-02-12 22:18:12 +08:00
|
|
|
static void gimp_file_dialog_progress_pulse (GimpProgress *progress);
|
2005-09-10 02:07:31 +08:00
|
|
|
static guint32 gimp_file_dialog_progress_get_window(GimpProgress *progress);
|
2004-08-11 18:29:56 +08:00
|
|
|
|
|
|
|
static void gimp_file_dialog_add_preview (GimpFileDialog *dialog,
|
|
|
|
Gimp *gimp);
|
|
|
|
static void gimp_file_dialog_add_filters (GimpFileDialog *dialog,
|
|
|
|
Gimp *gimp,
|
|
|
|
GSList *file_procs);
|
|
|
|
static void gimp_file_dialog_add_proc_selection (GimpFileDialog *dialog,
|
|
|
|
Gimp *gimp,
|
|
|
|
GSList *file_procs,
|
|
|
|
const gchar *automatic,
|
|
|
|
const gchar *automatic_help_id);
|
|
|
|
|
|
|
|
static void gimp_file_dialog_selection_changed (GtkFileChooser *chooser,
|
|
|
|
GimpFileDialog *dialog);
|
|
|
|
static void gimp_file_dialog_update_preview (GtkFileChooser *chooser,
|
|
|
|
GimpFileDialog *dialog);
|
|
|
|
|
|
|
|
static void gimp_file_dialog_proc_changed (GimpFileProcView *view,
|
|
|
|
GimpFileDialog *dialog);
|
|
|
|
|
|
|
|
static void gimp_file_dialog_help_func (const gchar *help_id,
|
|
|
|
gpointer help_data);
|
2004-10-05 06:25:04 +08:00
|
|
|
static void gimp_file_dialog_help_clicked (GtkWidget *widget,
|
|
|
|
gpointer dialog);
|
2004-07-18 03:53:05 +08:00
|
|
|
|
2004-10-11 19:57:32 +08:00
|
|
|
static gchar * gimp_file_dialog_pattern_from_extension (const gchar *extension);
|
2004-02-27 22:20:19 +08:00
|
|
|
|
|
|
|
|
2005-12-20 06:37:49 +08:00
|
|
|
G_DEFINE_TYPE_WITH_CODE (GimpFileDialog, gimp_file_dialog,
|
|
|
|
GTK_TYPE_FILE_CHOOSER_DIALOG,
|
|
|
|
G_IMPLEMENT_INTERFACE (GIMP_TYPE_PROGRESS,
|
2006-05-15 17:46:31 +08:00
|
|
|
gimp_file_dialog_progress_iface_init))
|
2005-12-20 06:37:49 +08:00
|
|
|
|
|
|
|
#define parent_class gimp_file_dialog_parent_class
|
|
|
|
|
2004-02-27 22:20:19 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_file_dialog_class_init (GimpFileDialogClass *klass)
|
|
|
|
{
|
|
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
|
2004-08-11 05:20:38 +08:00
|
|
|
GtkDialogClass *dialog_class = GTK_DIALOG_CLASS (klass);
|
2004-02-27 22:20:19 +08:00
|
|
|
|
|
|
|
widget_class->delete_event = gimp_file_dialog_delete_event;
|
2004-08-11 05:20:38 +08:00
|
|
|
|
|
|
|
dialog_class->response = gimp_file_dialog_response;
|
2004-02-27 22:20:19 +08:00
|
|
|
}
|
|
|
|
|
2004-08-11 02:47:21 +08:00
|
|
|
static void
|
2005-12-20 06:37:49 +08:00
|
|
|
gimp_file_dialog_init (GimpFileDialog *dialog)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_file_dialog_progress_iface_init (GimpProgressInterface *iface)
|
2004-08-11 02:47:21 +08:00
|
|
|
{
|
2005-12-20 06:37:49 +08:00
|
|
|
iface->start = gimp_file_dialog_progress_start;
|
|
|
|
iface->end = gimp_file_dialog_progress_end;
|
|
|
|
iface->is_active = gimp_file_dialog_progress_is_active;
|
|
|
|
iface->set_text = gimp_file_dialog_progress_set_text;
|
|
|
|
iface->set_value = gimp_file_dialog_progress_set_value;
|
|
|
|
iface->get_value = gimp_file_dialog_progress_get_value;
|
|
|
|
iface->pulse = gimp_file_dialog_progress_pulse;
|
|
|
|
iface->get_window = gimp_file_dialog_progress_get_window;
|
2004-08-11 02:47:21 +08:00
|
|
|
}
|
|
|
|
|
2004-02-27 22:20:19 +08:00
|
|
|
static gboolean
|
|
|
|
gimp_file_dialog_delete_event (GtkWidget *widget,
|
|
|
|
GdkEventAny *event)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2004-08-11 05:20:38 +08:00
|
|
|
static void
|
|
|
|
gimp_file_dialog_response (GtkDialog *dialog,
|
|
|
|
gint response_id)
|
|
|
|
{
|
|
|
|
GimpFileDialog *file_dialog = GIMP_FILE_DIALOG (dialog);
|
|
|
|
|
|
|
|
if (response_id != GTK_RESPONSE_OK && file_dialog->busy)
|
|
|
|
{
|
|
|
|
file_dialog->canceled = TRUE;
|
|
|
|
|
2005-09-29 05:20:05 +08:00
|
|
|
if (GIMP_PROGRESS_BOX (file_dialog->progress)->active &&
|
|
|
|
GIMP_PROGRESS_BOX (file_dialog->progress)->cancelable)
|
|
|
|
{
|
|
|
|
gimp_progress_cancel (GIMP_PROGRESS (dialog));
|
|
|
|
}
|
2004-08-11 05:20:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-08-11 02:47:21 +08:00
|
|
|
static GimpProgress *
|
|
|
|
gimp_file_dialog_progress_start (GimpProgress *progress,
|
|
|
|
const gchar *message,
|
|
|
|
gboolean cancelable)
|
|
|
|
{
|
|
|
|
GimpFileDialog *dialog = GIMP_FILE_DIALOG (progress);
|
2005-09-29 05:20:05 +08:00
|
|
|
GimpProgress *retval;
|
2004-08-11 02:47:21 +08:00
|
|
|
|
2005-09-29 05:20:05 +08:00
|
|
|
retval = gimp_progress_start (GIMP_PROGRESS (dialog->progress),
|
|
|
|
message, cancelable);
|
|
|
|
gtk_widget_show (dialog->progress);
|
2004-08-11 02:47:21 +08:00
|
|
|
|
2005-09-29 05:20:05 +08:00
|
|
|
return retval;
|
2004-08-11 02:47:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_file_dialog_progress_end (GimpProgress *progress)
|
|
|
|
{
|
|
|
|
GimpFileDialog *dialog = GIMP_FILE_DIALOG (progress);
|
|
|
|
|
2005-09-29 05:20:05 +08:00
|
|
|
gimp_progress_end (GIMP_PROGRESS (dialog->progress));
|
|
|
|
gtk_widget_hide (dialog->progress);
|
2004-08-11 02:47:21 +08:00
|
|
|
}
|
|
|
|
|
2004-08-11 18:29:56 +08:00
|
|
|
static gboolean
|
|
|
|
gimp_file_dialog_progress_is_active (GimpProgress *progress)
|
|
|
|
{
|
|
|
|
GimpFileDialog *dialog = GIMP_FILE_DIALOG (progress);
|
|
|
|
|
2005-09-29 05:20:05 +08:00
|
|
|
return gimp_progress_is_active (GIMP_PROGRESS (dialog->progress));
|
2004-08-11 18:29:56 +08:00
|
|
|
}
|
|
|
|
|
2004-08-11 02:47:21 +08:00
|
|
|
static void
|
|
|
|
gimp_file_dialog_progress_set_text (GimpProgress *progress,
|
|
|
|
const gchar *message)
|
|
|
|
{
|
|
|
|
GimpFileDialog *dialog = GIMP_FILE_DIALOG (progress);
|
|
|
|
|
2005-09-29 05:20:05 +08:00
|
|
|
gimp_progress_set_text (GIMP_PROGRESS (dialog->progress), message);
|
2004-08-11 02:47:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_file_dialog_progress_set_value (GimpProgress *progress,
|
|
|
|
gdouble percentage)
|
|
|
|
{
|
|
|
|
GimpFileDialog *dialog = GIMP_FILE_DIALOG (progress);
|
|
|
|
|
2005-09-29 05:20:05 +08:00
|
|
|
gimp_progress_set_value (GIMP_PROGRESS (dialog->progress), percentage);
|
2004-08-11 02:47:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static gdouble
|
|
|
|
gimp_file_dialog_progress_get_value (GimpProgress *progress)
|
|
|
|
{
|
|
|
|
GimpFileDialog *dialog = GIMP_FILE_DIALOG (progress);
|
|
|
|
|
2005-09-29 05:20:05 +08:00
|
|
|
return gimp_progress_get_value (GIMP_PROGRESS (dialog->progress));
|
2004-08-11 02:47:21 +08:00
|
|
|
}
|
|
|
|
|
2005-02-12 22:18:12 +08:00
|
|
|
static void
|
|
|
|
gimp_file_dialog_progress_pulse (GimpProgress *progress)
|
|
|
|
{
|
|
|
|
GimpFileDialog *dialog = GIMP_FILE_DIALOG (progress);
|
|
|
|
|
2005-09-29 05:20:05 +08:00
|
|
|
gimp_progress_pulse (GIMP_PROGRESS (dialog->progress));
|
2005-02-12 22:18:12 +08:00
|
|
|
}
|
|
|
|
|
2005-09-10 02:07:31 +08:00
|
|
|
static guint32
|
|
|
|
gimp_file_dialog_progress_get_window (GimpProgress *progress)
|
|
|
|
{
|
|
|
|
GimpFileDialog *dialog = GIMP_FILE_DIALOG (progress);
|
|
|
|
|
|
|
|
return (guint32) gimp_window_get_native (GTK_WINDOW (dialog));
|
|
|
|
}
|
|
|
|
|
2004-02-27 22:20:19 +08:00
|
|
|
|
|
|
|
/* public functions */
|
|
|
|
|
|
|
|
GtkWidget *
|
2004-04-16 00:28:26 +08:00
|
|
|
gimp_file_dialog_new (Gimp *gimp,
|
|
|
|
GtkFileChooserAction action,
|
|
|
|
const gchar *title,
|
|
|
|
const gchar *role,
|
|
|
|
const gchar *stock_id,
|
|
|
|
const gchar *help_id)
|
2004-02-27 22:20:19 +08:00
|
|
|
{
|
|
|
|
GimpFileDialog *dialog;
|
2004-07-17 05:24:39 +08:00
|
|
|
GSList *file_procs;
|
|
|
|
const gchar *automatic;
|
2004-07-18 03:53:05 +08:00
|
|
|
const gchar *automatic_help_id;
|
2005-07-09 02:27:24 +08:00
|
|
|
gboolean local_only;
|
2004-02-27 22:20:19 +08:00
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL);
|
|
|
|
g_return_val_if_fail (title != NULL, NULL);
|
|
|
|
g_return_val_if_fail (role != NULL, NULL);
|
|
|
|
g_return_val_if_fail (stock_id != NULL, NULL);
|
|
|
|
g_return_val_if_fail (help_id != NULL, NULL);
|
|
|
|
|
2004-07-17 05:24:39 +08:00
|
|
|
switch (action)
|
|
|
|
{
|
|
|
|
case GTK_FILE_CHOOSER_ACTION_OPEN:
|
2006-04-29 06:26:51 +08:00
|
|
|
file_procs = gimp->plug_in_manager->load_procs;
|
2004-07-27 20:41:44 +08:00
|
|
|
automatic = _("Automatically Detected");
|
2004-07-18 03:53:05 +08:00
|
|
|
automatic_help_id = GIMP_HELP_FILE_OPEN_BY_EXTENSION;
|
2005-07-09 02:27:24 +08:00
|
|
|
|
|
|
|
/* FIXME */
|
2006-04-26 17:13:47 +08:00
|
|
|
local_only = (gimp_pdb_lookup_procedure (gimp->pdb,
|
|
|
|
"file-uri-load") == NULL);
|
2004-07-17 05:24:39 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GTK_FILE_CHOOSER_ACTION_SAVE:
|
2006-04-29 06:26:51 +08:00
|
|
|
file_procs = gimp->plug_in_manager->save_procs;
|
2004-07-17 05:24:39 +08:00
|
|
|
automatic = _("By Extension");
|
2004-07-18 03:53:05 +08:00
|
|
|
automatic_help_id = GIMP_HELP_FILE_SAVE_BY_EXTENSION;
|
2005-07-09 02:27:24 +08:00
|
|
|
|
|
|
|
/* FIXME */
|
2006-04-26 17:13:47 +08:00
|
|
|
local_only = (gimp_pdb_lookup_procedure (gimp->pdb,
|
|
|
|
"file-uri-save") == NULL);
|
2004-07-17 05:24:39 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
g_return_val_if_reached (NULL);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2004-02-27 22:20:19 +08:00
|
|
|
dialog = g_object_new (GIMP_TYPE_FILE_DIALOG,
|
2005-12-29 04:02:54 +08:00
|
|
|
"title", title,
|
|
|
|
"role", role,
|
|
|
|
"action", action,
|
|
|
|
"local-only", local_only,
|
|
|
|
"do-overwrite-confirmation", TRUE,
|
2004-02-27 22:20:19 +08:00
|
|
|
NULL);
|
|
|
|
|
2004-04-16 00:28:26 +08:00
|
|
|
gtk_dialog_add_buttons (GTK_DIALOG (dialog),
|
|
|
|
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
|
|
|
stock_id, GTK_RESPONSE_OK,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
|
2006-05-08 23:43:21 +08:00
|
|
|
gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog),
|
|
|
|
GTK_RESPONSE_OK,
|
|
|
|
GTK_RESPONSE_CANCEL,
|
|
|
|
-1);
|
2004-02-27 22:20:19 +08:00
|
|
|
|
2004-07-17 05:24:39 +08:00
|
|
|
gimp_help_connect (GTK_WIDGET (dialog),
|
2004-07-18 03:53:05 +08:00
|
|
|
gimp_file_dialog_help_func, help_id, dialog);
|
2004-02-27 22:20:19 +08:00
|
|
|
|
2004-10-05 06:25:04 +08:00
|
|
|
if (GIMP_GUI_CONFIG (gimp->config)->show_help_button && help_id)
|
|
|
|
{
|
|
|
|
GtkWidget *action_area = GTK_DIALOG (dialog)->action_area;
|
|
|
|
GtkWidget *button = gtk_button_new_from_stock (GTK_STOCK_HELP);
|
|
|
|
|
|
|
|
gtk_box_pack_end (GTK_BOX (action_area), button, FALSE, TRUE, 0);
|
|
|
|
gtk_button_box_set_child_secondary (GTK_BUTTON_BOX (action_area),
|
|
|
|
button, TRUE);
|
|
|
|
gtk_widget_show (button);
|
|
|
|
|
|
|
|
g_object_set_data_full (G_OBJECT (dialog), "gimp-dialog-help-id",
|
|
|
|
g_strdup (help_id),
|
|
|
|
(GDestroyNotify) g_free);
|
|
|
|
|
|
|
|
g_signal_connect (button, "clicked",
|
|
|
|
G_CALLBACK (gimp_file_dialog_help_clicked),
|
|
|
|
dialog);
|
2005-07-09 02:27:24 +08:00
|
|
|
|
|
|
|
g_object_set_data (G_OBJECT (dialog), "gimp-dialog-help-button", button);
|
2004-10-05 06:25:04 +08:00
|
|
|
}
|
|
|
|
|
2004-07-17 05:24:39 +08:00
|
|
|
gimp_file_dialog_add_preview (dialog, gimp);
|
2004-02-27 22:20:19 +08:00
|
|
|
|
2004-07-17 05:24:39 +08:00
|
|
|
gimp_file_dialog_add_filters (dialog, gimp, file_procs);
|
2004-02-27 22:20:19 +08:00
|
|
|
|
2004-08-11 05:20:38 +08:00
|
|
|
gimp_file_dialog_add_proc_selection (dialog, gimp, file_procs, automatic,
|
|
|
|
automatic_help_id);
|
2004-08-11 02:47:21 +08:00
|
|
|
|
2005-09-29 05:20:05 +08:00
|
|
|
dialog->progress = gimp_progress_box_new ();
|
2004-08-11 05:20:38 +08:00
|
|
|
gtk_box_pack_end (GTK_BOX (GTK_DIALOG (dialog)->vbox), dialog->progress,
|
|
|
|
FALSE, FALSE, 0);
|
2004-02-27 23:43:58 +08:00
|
|
|
|
2004-02-27 22:20:19 +08:00
|
|
|
return GTK_WIDGET (dialog);
|
|
|
|
}
|
|
|
|
|
2004-08-11 05:20:38 +08:00
|
|
|
void
|
|
|
|
gimp_file_dialog_set_sensitive (GimpFileDialog *dialog,
|
|
|
|
gboolean sensitive)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_FILE_DIALOG (dialog));
|
|
|
|
|
2004-08-11 06:21:56 +08:00
|
|
|
gimp_dialog_set_sensitive (GTK_DIALOG (dialog), sensitive);
|
2004-08-11 05:20:38 +08:00
|
|
|
|
|
|
|
dialog->busy = ! sensitive;
|
|
|
|
dialog->canceled = FALSE;
|
|
|
|
}
|
|
|
|
|
2004-02-27 22:20:19 +08:00
|
|
|
void
|
2006-04-05 16:38:33 +08:00
|
|
|
gimp_file_dialog_set_file_proc (GimpFileDialog *dialog,
|
|
|
|
GimpPlugInProcedure *file_proc)
|
2004-02-27 22:20:19 +08:00
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_FILE_DIALOG (dialog));
|
|
|
|
|
2004-07-17 05:24:39 +08:00
|
|
|
if (file_proc != dialog->file_proc)
|
|
|
|
gimp_file_proc_view_set_proc (GIMP_FILE_PROC_VIEW (dialog->proc_view),
|
|
|
|
file_proc);
|
2004-02-27 22:20:19 +08:00
|
|
|
}
|
2004-02-27 23:43:58 +08:00
|
|
|
|
2004-03-01 20:27:33 +08:00
|
|
|
void
|
|
|
|
gimp_file_dialog_set_image (GimpFileDialog *dialog,
|
2006-03-29 01:08:36 +08:00
|
|
|
GimpImage *image,
|
2004-11-16 21:37:36 +08:00
|
|
|
gboolean save_a_copy)
|
2004-03-01 20:27:33 +08:00
|
|
|
{
|
2006-06-17 17:32:30 +08:00
|
|
|
const gchar *uri = NULL;
|
|
|
|
gchar *dirname;
|
|
|
|
gchar *basename;
|
2004-03-01 20:27:33 +08:00
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_FILE_DIALOG (dialog));
|
2006-03-29 01:08:36 +08:00
|
|
|
g_return_if_fail (GIMP_IS_IMAGE (image));
|
2004-03-01 20:27:33 +08:00
|
|
|
|
2006-03-29 01:08:36 +08:00
|
|
|
dialog->image = image;
|
2004-11-16 21:37:36 +08:00
|
|
|
dialog->save_a_copy = save_a_copy;
|
2004-03-01 20:27:33 +08:00
|
|
|
|
2004-11-16 21:37:36 +08:00
|
|
|
if (save_a_copy)
|
2006-03-29 01:08:36 +08:00
|
|
|
uri = g_object_get_data (G_OBJECT (image), "gimp-image-save-a-copy");
|
2004-11-16 21:37:36 +08:00
|
|
|
|
|
|
|
if (! uri)
|
2006-06-17 17:32:30 +08:00
|
|
|
uri = gimp_image_get_uri (image);
|
2004-08-23 17:32:06 +08:00
|
|
|
|
2005-01-14 01:41:48 +08:00
|
|
|
gimp_file_dialog_set_file_proc (dialog, NULL);
|
|
|
|
|
2006-06-17 17:32:30 +08:00
|
|
|
dirname = g_path_get_dirname (uri);
|
|
|
|
basename = g_path_get_basename (uri);
|
2004-03-01 20:27:33 +08:00
|
|
|
|
2006-06-17 17:32:30 +08:00
|
|
|
if (dirname && strlen (dirname))
|
|
|
|
gtk_file_chooser_set_current_folder_uri (GTK_FILE_CHOOSER (dialog),
|
|
|
|
dirname);
|
2005-01-14 01:41:48 +08:00
|
|
|
|
2006-06-17 17:32:30 +08:00
|
|
|
gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (dialog), basename);
|
|
|
|
|
|
|
|
g_free (dirname);
|
|
|
|
g_free (basename);
|
2004-03-01 20:27:33 +08:00
|
|
|
}
|
|
|
|
|
2004-02-27 23:43:58 +08:00
|
|
|
|
|
|
|
/* private functions */
|
|
|
|
|
2004-07-17 05:24:39 +08:00
|
|
|
static void
|
|
|
|
gimp_file_dialog_add_preview (GimpFileDialog *dialog,
|
|
|
|
Gimp *gimp)
|
|
|
|
{
|
|
|
|
if (gimp->config->thumbnail_size <= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
gtk_file_chooser_set_use_preview_label (GTK_FILE_CHOOSER (dialog), FALSE);
|
|
|
|
|
|
|
|
g_signal_connect (dialog, "selection-changed",
|
|
|
|
G_CALLBACK (gimp_file_dialog_selection_changed),
|
|
|
|
dialog);
|
|
|
|
g_signal_connect (dialog, "update-preview",
|
|
|
|
G_CALLBACK (gimp_file_dialog_update_preview),
|
|
|
|
dialog);
|
|
|
|
|
|
|
|
dialog->thumb_box = gimp_thumb_box_new (gimp);
|
|
|
|
gtk_widget_set_sensitive (GTK_WIDGET (dialog->thumb_box), FALSE);
|
|
|
|
gtk_file_chooser_set_preview_widget (GTK_FILE_CHOOSER (dialog),
|
|
|
|
dialog->thumb_box);
|
|
|
|
gtk_widget_show (dialog->thumb_box);
|
|
|
|
|
|
|
|
#ifdef ENABLE_FILE_SYSTEM_ICONS
|
2004-08-26 22:20:30 +08:00
|
|
|
GIMP_VIEW_RENDERER_IMAGEFILE (GIMP_VIEW (GIMP_THUMB_BOX (dialog->thumb_box)->preview)->renderer)->file_system = _gtk_file_chooser_get_file_system (GTK_FILE_CHOOSER (dialog));
|
2004-07-17 05:24:39 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_file_dialog_add_filters (GimpFileDialog *dialog,
|
|
|
|
Gimp *gimp,
|
|
|
|
GSList *file_procs)
|
|
|
|
{
|
2005-02-08 02:46:03 +08:00
|
|
|
GtkFileFilter *all;
|
2004-07-17 05:24:39 +08:00
|
|
|
GSList *list;
|
|
|
|
|
2005-02-08 02:46:03 +08:00
|
|
|
all = gtk_file_filter_new ();
|
2006-03-04 06:46:01 +08:00
|
|
|
gtk_file_filter_set_name (all, _("All files"));
|
2005-02-08 02:46:03 +08:00
|
|
|
gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (dialog), all);
|
|
|
|
gtk_file_filter_add_pattern (all, "*");
|
|
|
|
|
|
|
|
all = gtk_file_filter_new ();
|
2006-03-04 06:46:01 +08:00
|
|
|
gtk_file_filter_set_name (all, _("All images"));
|
2005-02-08 02:46:03 +08:00
|
|
|
gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (dialog), all);
|
2004-07-17 05:24:39 +08:00
|
|
|
|
|
|
|
for (list = file_procs; list; list = g_slist_next (list))
|
|
|
|
{
|
2006-04-05 16:38:33 +08:00
|
|
|
GimpPlugInProcedure *file_proc = list->data;
|
2004-07-17 05:24:39 +08:00
|
|
|
|
2004-11-01 23:44:57 +08:00
|
|
|
if (file_proc->extensions_list)
|
2004-07-17 05:24:39 +08:00
|
|
|
{
|
2005-02-08 02:46:03 +08:00
|
|
|
GtkFileFilter *filter = gtk_file_filter_new ();
|
|
|
|
const gchar *domain;
|
|
|
|
gchar *label;
|
|
|
|
GString *str;
|
|
|
|
GSList *ext;
|
|
|
|
gint i;
|
2004-07-17 05:24:39 +08:00
|
|
|
|
2006-04-29 06:26:51 +08:00
|
|
|
domain = gimp_plug_in_manager_get_locale_domain (gimp->plug_in_manager,
|
|
|
|
file_proc->prog,
|
|
|
|
NULL);
|
2004-07-27 08:26:14 +08:00
|
|
|
|
2006-04-05 16:38:33 +08:00
|
|
|
label = gimp_plug_in_procedure_get_label (file_proc, domain);
|
2004-11-03 08:48:06 +08:00
|
|
|
|
|
|
|
str = g_string_new (label);
|
|
|
|
g_free (label);
|
2004-07-17 05:24:39 +08:00
|
|
|
|
2004-11-16 03:33:24 +08:00
|
|
|
/* an arbitrary limit to keep the file dialog from becoming too wide */
|
|
|
|
#define MAX_EXTENSIONS 4
|
|
|
|
|
|
|
|
for (ext = file_proc->extensions_list, i = 0;
|
|
|
|
ext;
|
|
|
|
ext = g_slist_next (ext), i++)
|
2004-07-17 05:24:39 +08:00
|
|
|
{
|
2004-07-27 08:26:14 +08:00
|
|
|
const gchar *extension = ext->data;
|
2004-10-11 19:57:32 +08:00
|
|
|
gchar *pattern;
|
2004-07-17 05:24:39 +08:00
|
|
|
|
2004-10-11 19:57:32 +08:00
|
|
|
pattern = gimp_file_dialog_pattern_from_extension (extension);
|
2004-07-17 05:24:39 +08:00
|
|
|
gtk_file_filter_add_pattern (filter, pattern);
|
2005-02-08 02:46:03 +08:00
|
|
|
gtk_file_filter_add_pattern (all, pattern);
|
2004-07-17 05:24:39 +08:00
|
|
|
g_free (pattern);
|
2004-07-27 08:26:14 +08:00
|
|
|
|
2004-11-16 03:33:24 +08:00
|
|
|
if (i == 0)
|
|
|
|
{
|
|
|
|
g_string_append (str, " (");
|
|
|
|
}
|
|
|
|
else if (i <= MAX_EXTENSIONS)
|
|
|
|
{
|
|
|
|
g_string_append (str, ", ");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i < MAX_EXTENSIONS)
|
|
|
|
{
|
|
|
|
g_string_append (str, "*.");
|
|
|
|
g_string_append (str, extension);
|
|
|
|
}
|
|
|
|
else if (i == MAX_EXTENSIONS)
|
2004-07-27 08:26:14 +08:00
|
|
|
{
|
2004-11-16 03:33:24 +08:00
|
|
|
g_string_append (str, "...");
|
2004-07-27 08:26:14 +08:00
|
|
|
}
|
|
|
|
|
2004-11-16 03:33:24 +08:00
|
|
|
if (! ext->next)
|
|
|
|
{
|
|
|
|
g_string_append (str, ")");
|
|
|
|
}
|
2004-07-17 05:24:39 +08:00
|
|
|
}
|
|
|
|
|
2004-11-03 08:48:06 +08:00
|
|
|
gtk_file_filter_set_name (filter, str->str);
|
|
|
|
g_string_free (str, TRUE);
|
2004-07-27 08:26:14 +08:00
|
|
|
|
2004-07-17 05:24:39 +08:00
|
|
|
gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (dialog), filter);
|
|
|
|
}
|
|
|
|
}
|
2005-02-08 02:46:03 +08:00
|
|
|
|
|
|
|
gtk_file_chooser_set_filter (GTK_FILE_CHOOSER (dialog), all);
|
2004-07-17 05:24:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_file_dialog_add_proc_selection (GimpFileDialog *dialog,
|
|
|
|
Gimp *gimp,
|
|
|
|
GSList *file_procs,
|
2004-07-18 03:53:05 +08:00
|
|
|
const gchar *automatic,
|
2004-08-11 05:20:38 +08:00
|
|
|
const gchar *automatic_help_id)
|
2004-07-17 05:24:39 +08:00
|
|
|
{
|
2004-07-17 21:06:59 +08:00
|
|
|
GtkWidget *scrolled_window;
|
2004-07-17 05:24:39 +08:00
|
|
|
|
|
|
|
dialog->proc_expander = gtk_expander_new_with_mnemonic (NULL);
|
2004-08-11 05:20:38 +08:00
|
|
|
gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (dialog),
|
|
|
|
dialog->proc_expander);
|
2004-07-17 05:24:39 +08:00
|
|
|
gtk_widget_show (dialog->proc_expander);
|
|
|
|
|
2004-07-17 21:06:59 +08:00
|
|
|
scrolled_window = gtk_scrolled_window_new (NULL, NULL);
|
|
|
|
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window),
|
2004-07-17 05:24:39 +08:00
|
|
|
GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
|
2004-07-17 21:06:59 +08:00
|
|
|
gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scrolled_window),
|
|
|
|
GTK_SHADOW_IN);
|
|
|
|
gtk_container_add (GTK_CONTAINER (dialog->proc_expander), scrolled_window);
|
|
|
|
gtk_widget_show (scrolled_window);
|
2004-07-17 05:24:39 +08:00
|
|
|
|
2004-07-17 21:06:59 +08:00
|
|
|
gtk_widget_set_size_request (scrolled_window, -1, 200);
|
2004-07-17 05:24:39 +08:00
|
|
|
|
2004-07-18 03:53:05 +08:00
|
|
|
dialog->proc_view = gimp_file_proc_view_new (gimp, file_procs, automatic,
|
|
|
|
automatic_help_id);
|
2004-07-17 21:06:59 +08:00
|
|
|
gtk_container_add (GTK_CONTAINER (scrolled_window), dialog->proc_view);
|
2004-07-17 05:24:39 +08:00
|
|
|
gtk_widget_show (dialog->proc_view);
|
|
|
|
|
|
|
|
g_signal_connect (dialog->proc_view, "changed",
|
|
|
|
G_CALLBACK (gimp_file_dialog_proc_changed),
|
|
|
|
dialog);
|
|
|
|
|
|
|
|
gimp_file_proc_view_set_proc (GIMP_FILE_PROC_VIEW (dialog->proc_view), NULL);
|
|
|
|
}
|
|
|
|
|
2004-02-27 23:43:58 +08:00
|
|
|
static void
|
2004-04-16 00:28:26 +08:00
|
|
|
gimp_file_dialog_selection_changed (GtkFileChooser *chooser,
|
|
|
|
GimpFileDialog *dialog)
|
2004-02-27 23:43:58 +08:00
|
|
|
{
|
2004-06-22 23:11:35 +08:00
|
|
|
gimp_thumb_box_take_uris (GIMP_THUMB_BOX (dialog->thumb_box),
|
|
|
|
gtk_file_chooser_get_uris (chooser));
|
2004-04-16 00:28:26 +08:00
|
|
|
}
|
2004-02-27 23:43:58 +08:00
|
|
|
|
2004-04-16 00:28:26 +08:00
|
|
|
static void
|
|
|
|
gimp_file_dialog_update_preview (GtkFileChooser *chooser,
|
|
|
|
GimpFileDialog *dialog)
|
|
|
|
{
|
|
|
|
gchar *uri = gtk_file_chooser_get_preview_uri (chooser);
|
2004-02-27 23:43:58 +08:00
|
|
|
|
2004-04-16 00:28:26 +08:00
|
|
|
gimp_thumb_box_set_uri (GIMP_THUMB_BOX (dialog->thumb_box), uri);
|
2004-02-27 23:43:58 +08:00
|
|
|
|
2004-04-16 00:28:26 +08:00
|
|
|
g_free (uri);
|
2004-02-27 23:43:58 +08:00
|
|
|
}
|
2004-07-17 05:24:39 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_file_dialog_proc_changed (GimpFileProcView *view,
|
|
|
|
GimpFileDialog *dialog)
|
|
|
|
{
|
|
|
|
GtkFileChooser *chooser = GTK_FILE_CHOOSER (dialog);
|
|
|
|
gchar *name;
|
|
|
|
|
|
|
|
dialog->file_proc = gimp_file_proc_view_get_proc (view, &name);
|
|
|
|
|
2004-11-15 21:42:22 +08:00
|
|
|
if (name)
|
|
|
|
{
|
|
|
|
gchar *label = g_strdup_printf (_("Select File _Type (%s)"), name);
|
2004-07-17 05:24:39 +08:00
|
|
|
|
2004-11-15 21:42:22 +08:00
|
|
|
gtk_expander_set_label (GTK_EXPANDER (dialog->proc_expander), label);
|
2004-07-17 05:24:39 +08:00
|
|
|
|
2004-11-15 21:42:22 +08:00
|
|
|
g_free (label);
|
|
|
|
g_free (name);
|
|
|
|
}
|
2004-07-17 05:24:39 +08:00
|
|
|
|
|
|
|
if (gtk_file_chooser_get_action (chooser) == GTK_FILE_CHOOSER_ACTION_SAVE)
|
|
|
|
{
|
2006-04-05 16:38:33 +08:00
|
|
|
GimpPlugInProcedure *proc = dialog->file_proc;
|
2004-07-17 05:24:39 +08:00
|
|
|
|
2004-11-15 21:42:22 +08:00
|
|
|
if (proc && proc->extensions_list)
|
2004-07-17 05:24:39 +08:00
|
|
|
{
|
|
|
|
gchar *uri = gtk_file_chooser_get_uri (chooser);
|
|
|
|
|
|
|
|
if (uri && strlen (uri))
|
|
|
|
{
|
|
|
|
const gchar *last_dot = strrchr (uri, '.');
|
|
|
|
|
2005-08-21 04:34:25 +08:00
|
|
|
/* if the dot is before the last slash, ignore it */
|
|
|
|
if (last_dot && strrchr (uri, '/') > last_dot)
|
|
|
|
last_dot = NULL;
|
|
|
|
|
2004-11-18 19:50:25 +08:00
|
|
|
/* check if the uri has a "meta extension" (e.g. foo.bar.gz)
|
|
|
|
* and try to truncate both extensions away.
|
|
|
|
*/
|
|
|
|
if (last_dot && last_dot != uri)
|
|
|
|
{
|
|
|
|
GList *list;
|
|
|
|
|
|
|
|
for (list = view->meta_extensions;
|
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
const gchar *ext = list->data;
|
|
|
|
|
|
|
|
if (! strcmp (ext, last_dot + 1))
|
|
|
|
{
|
|
|
|
const gchar *p = last_dot - 1;
|
|
|
|
|
|
|
|
while (p > uri && *p != '.')
|
|
|
|
p--;
|
|
|
|
|
|
|
|
if (p != uri && *p == '.')
|
|
|
|
{
|
|
|
|
last_dot = p;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-07-17 05:24:39 +08:00
|
|
|
if (last_dot != uri)
|
|
|
|
{
|
|
|
|
GString *s = g_string_new (uri);
|
|
|
|
gchar *basename;
|
|
|
|
|
|
|
|
if (last_dot)
|
|
|
|
g_string_truncate (s, last_dot - uri);
|
|
|
|
|
|
|
|
g_string_append (s, ".");
|
|
|
|
g_string_append (s, (gchar *) proc->extensions_list->data);
|
|
|
|
|
|
|
|
gtk_file_chooser_set_uri (chooser, s->str);
|
|
|
|
|
2005-10-02 06:43:22 +08:00
|
|
|
basename = file_utils_uri_display_basename (s->str);
|
2004-07-17 05:24:39 +08:00
|
|
|
gtk_file_chooser_set_current_name (chooser, basename);
|
|
|
|
g_free (basename);
|
|
|
|
|
|
|
|
g_string_free (s, TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (uri);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-07-18 03:53:05 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_file_dialog_help_func (const gchar *help_id,
|
|
|
|
gpointer help_data)
|
|
|
|
{
|
|
|
|
GimpFileDialog *dialog = GIMP_FILE_DIALOG (help_data);
|
|
|
|
GtkWidget *focus;
|
|
|
|
|
|
|
|
focus = gtk_window_get_focus (GTK_WINDOW (dialog));
|
|
|
|
|
|
|
|
if (focus == dialog->proc_view)
|
|
|
|
{
|
|
|
|
gchar *proc_help_id;
|
|
|
|
|
|
|
|
proc_help_id =
|
|
|
|
gimp_file_proc_view_get_help_id (GIMP_FILE_PROC_VIEW (dialog->proc_view));
|
|
|
|
|
|
|
|
gimp_standard_help_func (proc_help_id, NULL);
|
|
|
|
|
|
|
|
g_free (proc_help_id);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gimp_standard_help_func (help_id, NULL);
|
|
|
|
}
|
|
|
|
}
|
2004-10-05 06:25:04 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_file_dialog_help_clicked (GtkWidget *widget,
|
|
|
|
gpointer dialog)
|
|
|
|
{
|
|
|
|
gimp_standard_help_func (g_object_get_data (dialog, "gimp-dialog-help-id"),
|
|
|
|
NULL);
|
|
|
|
}
|
2004-10-11 19:57:32 +08:00
|
|
|
|
|
|
|
static gchar *
|
|
|
|
gimp_file_dialog_pattern_from_extension (const gchar *extension)
|
|
|
|
{
|
|
|
|
gchar *pattern;
|
|
|
|
gchar *p;
|
|
|
|
gint len, i;
|
|
|
|
|
|
|
|
g_return_val_if_fail (extension != NULL, NULL);
|
|
|
|
|
|
|
|
/* This function assumes that file extensions are 7bit ASCII. It
|
|
|
|
* could certainly be rewritten to handle UTF-8 if this assumption
|
|
|
|
* turns out to be incorrect.
|
|
|
|
*/
|
|
|
|
|
|
|
|
len = strlen (extension);
|
|
|
|
|
|
|
|
pattern = g_new (gchar, 4 + 4 * len);
|
|
|
|
|
|
|
|
strcpy (pattern, "*.");
|
|
|
|
|
|
|
|
for (i = 0, p = pattern + 2; i < len; i++, p+= 4)
|
|
|
|
{
|
|
|
|
p[0] = '[';
|
|
|
|
p[1] = g_ascii_tolower (extension[i]);
|
|
|
|
p[2] = g_ascii_toupper (extension[i]);
|
|
|
|
p[3] = ']';
|
|
|
|
}
|
|
|
|
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
return pattern;
|
|
|
|
}
|