
2004-11-16 Sven Neumann <sven@gimp.org> * app/actions/file-commands.c * app/dialogs/file-save-dialog.c * app/file/file-save.[ch] * app/widgets/gimpfiledialog.[ch]: combined "set_uri_and_proc" and "set_image_clean" parameters into a single "save_a_copy" parameter. When saving a copy, attach the used URI to the image and let the "Save a Copy" file chooser default to the last used value.
42 lines
1.7 KiB
C
42 lines
1.7 KiB
C
/* The GIMP -- an image manipulation program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* file-save.h
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef __FILE_SAVE_H__
|
|
#define __FILE_SAVE_H__
|
|
|
|
|
|
GimpPDBStatusType file_save (GimpImage *gimage,
|
|
GimpContext *context,
|
|
GimpProgress *progress,
|
|
GimpRunMode run_mode,
|
|
GError **error);
|
|
GimpPDBStatusType file_save_as (GimpImage *gimage,
|
|
GimpContext *context,
|
|
GimpProgress *progress,
|
|
const gchar *uri,
|
|
const gchar *raw_filename,
|
|
PlugInProcDef *file_proc,
|
|
GimpRunMode run_mode,
|
|
gboolean save_a_copy,
|
|
GError **error);
|
|
|
|
|
|
#endif /* __FILE_SAVE_H__ */
|