2001-06-26 20:09:43 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* 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 <gtk/gtk.h>
|
|
|
|
|
2001-07-10 01:58:56 +08:00
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
#include "core/core-types.h"
|
|
|
|
|
2001-07-10 01:58:56 +08:00
|
|
|
#include "core/gimpimage.h"
|
|
|
|
#include "core/gimpobject.h"
|
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
#include "file-commands.h"
|
|
|
|
#include "file-new-dialog.h"
|
|
|
|
#include "file-open-dialog.h"
|
|
|
|
#include "file-save-dialog.h"
|
2001-07-10 01:58:56 +08:00
|
|
|
#include "menus.h"
|
2001-06-26 20:09:43 +08:00
|
|
|
|
|
|
|
#include "app_procs.h"
|
2001-07-10 01:58:56 +08:00
|
|
|
#include "file-open.h"
|
|
|
|
#include "file-save.h"
|
2001-06-26 20:09:43 +08:00
|
|
|
#include "gdisplay.h"
|
|
|
|
#include "gdisplay_ops.h"
|
2001-07-10 01:58:56 +08:00
|
|
|
#include "gimprc.h"
|
|
|
|
#include "undo.h"
|
2001-06-26 20:09:43 +08:00
|
|
|
|
|
|
|
#include "libgimp/gimpintl.h"
|
|
|
|
|
|
|
|
|
2001-07-10 01:58:56 +08:00
|
|
|
#define REVERT_DATA_KEY "revert-confirm-dialog"
|
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
#define return_if_no_display(gdisp) \
|
|
|
|
gdisp = gdisplay_active (); \
|
|
|
|
if (!gdisp) return
|
|
|
|
|
|
|
|
|
2001-07-10 01:58:56 +08:00
|
|
|
/* local function prototypes */
|
|
|
|
|
|
|
|
static void file_revert_confirm_callback (GtkWidget *widget,
|
|
|
|
gboolean revert,
|
|
|
|
gpointer data);
|
|
|
|
|
|
|
|
|
|
|
|
/* public functions */
|
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
void
|
|
|
|
file_new_cmd_callback (GtkWidget *widget,
|
|
|
|
gpointer data,
|
|
|
|
guint action)
|
|
|
|
{
|
|
|
|
GDisplay *gdisp;
|
2001-07-05 23:34:26 +08:00
|
|
|
GimpImage *gimage = NULL;
|
2001-06-26 20:09:43 +08:00
|
|
|
|
|
|
|
/* Before we try to determine the responsible gdisplay,
|
|
|
|
* make sure this wasn't called from the toolbox
|
|
|
|
*/
|
|
|
|
if (action)
|
|
|
|
{
|
|
|
|
gdisp = gdisplay_active ();
|
|
|
|
|
|
|
|
if (gdisp)
|
2001-07-05 23:34:26 +08:00
|
|
|
gimage = gdisp->gimage;
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
2001-07-05 23:34:26 +08:00
|
|
|
file_new_dialog_create (gimage);
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
2001-07-10 01:58:56 +08:00
|
|
|
void
|
|
|
|
file_open_by_extension_cmd_callback (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
file_open_dialog_menu_reset ();
|
|
|
|
}
|
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
void
|
|
|
|
file_open_cmd_callback (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
2001-07-10 01:58:56 +08:00
|
|
|
file_open_dialog_show ();
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
2001-06-30 03:25:03 +08:00
|
|
|
void
|
|
|
|
file_last_opened_cmd_callback (GtkWidget *widget,
|
|
|
|
gpointer data,
|
|
|
|
guint action)
|
|
|
|
{
|
|
|
|
gchar *filename;
|
|
|
|
guint num_entries;
|
|
|
|
gint status;
|
|
|
|
|
|
|
|
num_entries = g_slist_length (last_opened_raw_filenames);
|
|
|
|
|
|
|
|
if (action >= num_entries)
|
|
|
|
return;
|
|
|
|
|
|
|
|
filename =
|
|
|
|
((GString *) g_slist_nth_data (last_opened_raw_filenames, action))->str;
|
|
|
|
|
2001-07-10 01:58:56 +08:00
|
|
|
status = file_open_with_display (filename);
|
2001-06-30 03:25:03 +08:00
|
|
|
|
|
|
|
if (status != GIMP_PDB_SUCCESS &&
|
|
|
|
status != GIMP_PDB_CANCEL)
|
|
|
|
{
|
|
|
|
g_message (_("Error opening file: %s\n"), filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-07-10 01:58:56 +08:00
|
|
|
void
|
|
|
|
file_save_by_extension_cmd_callback (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
file_save_dialog_menu_reset ();
|
|
|
|
}
|
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
void
|
|
|
|
file_save_cmd_callback (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
2001-07-10 01:58:56 +08:00
|
|
|
GDisplay *gdisp;
|
|
|
|
return_if_no_display (gdisp);
|
|
|
|
|
|
|
|
if (! gimp_image_active_drawable (gdisp->gimage))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Only save if the gimage has been modified */
|
|
|
|
if (! gimprc.trust_dirty_flag || gdisp->gimage->dirty != 0)
|
|
|
|
{
|
|
|
|
gchar *filename;
|
|
|
|
|
|
|
|
filename = g_strdup (gimp_object_get_name (GIMP_OBJECT (gdisp->gimage)));
|
|
|
|
|
|
|
|
if (! filename)
|
|
|
|
{
|
|
|
|
file_save_as_cmd_callback (widget, data);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
2001-07-24 Michael Natterer <mitch@gimp.org>
Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning)
* configure.in: require glib/gtk+ >= 1.3.7, commented out the
gtkxmhtml stuff.
From now on, you will need glib, pango, atk and gtk+ HEAD from CVS
to hack or use GIMP HEAD.
Beware, it crashes randomly :)
* app/core/Makefile.am
* app/core/gimpmarshal.list: new file plus rules to generate
gimpmarshal.[ch] from it.
* app/core/*
* app/tools/*
* app/widgets/*
* libgimpwidgets/*: started to use the glib object system. All
core/ objects are still gtk objects however. All signals are
created using g_signal_new(). There are many gtk+ artefacts left.
Finally, we will _not_ use the gtk_signal_foo() wrappers and
friends any more.
* app/colormaps.c
* app/devices.[ch]
* app/disp_callbacks.c
* app/errorconsole.c
* app/file-save.[ch]
* app/interface.c
* app/module_db.c
* app/nav_window.c
* app/ops_buttons.c
* app/scroll.c
* app/user_install.c
* app/gui/about-dialog.c
* app/gui/brush-editor.c
* app/gui/brushes-commands.c
* app/gui/color-notebook.c
* app/gui/colormap-dialog.c
* app/gui/dialogs-commands.c
* app/gui/dialogs-constructors.c
* app/gui/file-commands.c
* app/gui/file-dialog-utils.c
* app/gui/file-new-dialog.c
* app/gui/file-open-dialog.[ch]
* app/gui/file-save-dialog.c
* app/gui/gradient-editor.c
* app/gui/gradients-commands.c
* app/gui/image-commands.c
* app/gui/info-dialog.[ch]
* app/gui/layer-select.c
* app/gui/layers-commands.c
* app/gui/menus.c
* app/gui/offset-dialog.c
* app/gui/palette-editor.c
* app/gui/palettes-commands.c
* app/gui/patterns-commands.c
* app/gui/preferences-dialog.c
* app/gui/resize-dialog.[ch]
* app/gui/splash.c
* app/gui/tips-dialog.c
* app/gui/tool-options-dialog.c
* app/gui/toolbox.c
* app/gui/tools-commands.c
* libgimp/gimpbrushmenu.c
* libgimp/gimpmenu.c
* libgimp/gimppatternmenu.c
* libgimp/gimpui.c
* libgimpbase/gimpenv.c: tons and tons of changes like "const
gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete
and currently disables), lots of s/gtk_signal/g_signal/,
removal/replacement of deprecated stuff,
s/GtkSignalFunc/GCallback/ and lots of small changes and fixes
while I was on it, zillions of warnings left...
* modules/Makefile.am: disabled the water color selector
temporarily (XInput issues).
* plug-ins/Makefile.am
* plug-ins/common/.cvsignore
* plug-ins/common/Makefile.am
* plug-ins/common/plugin-defs.pl: simply excluded all plug-ins
which did not build (including Script-Fu). They are trivial to
fix.
2001-07-25 05:27:11 +08:00
|
|
|
const gchar *raw_filename;
|
|
|
|
gint status;
|
2001-07-10 01:58:56 +08:00
|
|
|
|
|
|
|
raw_filename = g_basename (filename);
|
|
|
|
|
|
|
|
status = file_save (gdisp->gimage,
|
|
|
|
filename,
|
|
|
|
raw_filename,
|
|
|
|
RUN_WITH_LAST_VALS,
|
|
|
|
TRUE);
|
|
|
|
|
|
|
|
if (status != GIMP_PDB_SUCCESS &&
|
|
|
|
status != GIMP_PDB_CANCEL)
|
|
|
|
{
|
|
|
|
g_message (_("Save failed.\n%s"), filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (filename);
|
|
|
|
}
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
file_save_as_cmd_callback (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
2001-07-10 01:58:56 +08:00
|
|
|
GDisplay *gdisp;
|
|
|
|
return_if_no_display (gdisp);
|
|
|
|
|
|
|
|
file_save_dialog_show (gdisp->gimage);
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
file_save_a_copy_as_cmd_callback (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
2001-07-10 01:58:56 +08:00
|
|
|
GDisplay *gdisp;
|
|
|
|
return_if_no_display (gdisp);
|
|
|
|
|
|
|
|
file_save_a_copy_dialog_show (gdisp->gimage);
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
file_revert_cmd_callback (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
2001-07-10 01:58:56 +08:00
|
|
|
GDisplay *gdisp;
|
|
|
|
GtkWidget *query_box;
|
|
|
|
const gchar *filename;
|
|
|
|
|
|
|
|
return_if_no_display (gdisp);
|
|
|
|
|
|
|
|
filename = gimp_object_get_name (GIMP_OBJECT (gdisp->gimage));
|
|
|
|
|
|
|
|
query_box = gtk_object_get_data (GTK_OBJECT (gdisp->gimage), REVERT_DATA_KEY);
|
|
|
|
|
|
|
|
if (! filename)
|
|
|
|
{
|
|
|
|
g_message (_("Revert failed.\n"
|
|
|
|
"No filename associated with this image."));
|
|
|
|
}
|
|
|
|
else if (query_box)
|
|
|
|
{
|
|
|
|
gdk_window_raise (query_box->window);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gchar *text;
|
|
|
|
|
|
|
|
text = g_strdup_printf (_("Reverting %s to\n"
|
|
|
|
"%s\n\n"
|
|
|
|
"(You will lose all your changes\n"
|
|
|
|
"including all undo information)"),
|
|
|
|
g_basename (filename),
|
|
|
|
filename);
|
|
|
|
|
|
|
|
query_box = gimp_query_boolean_box (_("Revert Image?"),
|
|
|
|
gimp_standard_help_func,
|
|
|
|
"file/revert.html",
|
|
|
|
FALSE,
|
|
|
|
text,
|
2001-07-31 01:17:36 +08:00
|
|
|
GTK_STOCK_YES, GTK_STOCK_NO,
|
2001-08-12 05:10:44 +08:00
|
|
|
G_OBJECT (gdisp->gimage),
|
|
|
|
"disconnect",
|
2001-07-10 01:58:56 +08:00
|
|
|
file_revert_confirm_callback,
|
|
|
|
gdisp->gimage);
|
|
|
|
|
|
|
|
g_free (text);
|
|
|
|
|
|
|
|
gtk_object_set_data (GTK_OBJECT (gdisp->gimage), REVERT_DATA_KEY,
|
|
|
|
query_box);
|
|
|
|
|
|
|
|
gtk_widget_show (query_box);
|
|
|
|
}
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
file_close_cmd_callback (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GDisplay *gdisp;
|
|
|
|
return_if_no_display (gdisp);
|
|
|
|
|
|
|
|
gdisplay_close_window (gdisp, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
file_quit_cmd_callback (GtkWidget *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
app_exit (FALSE);
|
|
|
|
}
|
2001-07-10 01:58:56 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* private functions */
|
|
|
|
|
|
|
|
static void
|
|
|
|
file_revert_confirm_callback (GtkWidget *widget,
|
|
|
|
gboolean revert,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GimpImage *old_gimage;
|
|
|
|
|
|
|
|
old_gimage = (GimpImage *) data;
|
|
|
|
|
|
|
|
gtk_object_set_data (GTK_OBJECT (old_gimage), REVERT_DATA_KEY, NULL);
|
|
|
|
|
|
|
|
if (revert)
|
|
|
|
{
|
|
|
|
GimpImage *new_gimage;
|
|
|
|
const gchar *filename;
|
|
|
|
gint status;
|
|
|
|
|
|
|
|
filename = gimp_object_get_name (GIMP_OBJECT (old_gimage));
|
|
|
|
|
|
|
|
new_gimage = file_open_image (old_gimage->gimp,
|
|
|
|
filename, filename,
|
|
|
|
_("Revert"),
|
|
|
|
NULL,
|
|
|
|
RUN_INTERACTIVE,
|
|
|
|
&status);
|
|
|
|
|
|
|
|
if (new_gimage != NULL)
|
|
|
|
{
|
|
|
|
undo_free (new_gimage);
|
|
|
|
gdisplays_reconnect (old_gimage, new_gimage);
|
|
|
|
gdisplays_resize_cursor_label (new_gimage);
|
|
|
|
gdisplays_update_full (new_gimage);
|
|
|
|
gdisplays_shrink_wrap (new_gimage);
|
|
|
|
gimp_image_clean_all (new_gimage);
|
|
|
|
}
|
|
|
|
else if (status != GIMP_PDB_CANCEL)
|
|
|
|
{
|
|
|
|
g_message (_("Revert failed.\n%s"), filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|