2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2001-04-28 23:11:29 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2001-04-28 23:11:29 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2001-04-28 23:11:29 +08:00
|
|
|
* (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
|
2009-01-18 06:28:01 +08:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2001-04-28 23:11:29 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __FILE_SAVE_DIALOG_H__
|
|
|
|
#define __FILE_SAVE_DIALOG_H__
|
|
|
|
|
|
|
|
|
2013-08-24 02:35:24 +08:00
|
|
|
#define FILE_SAVE_RESPONSE_OTHER_DIALOG -23
|
|
|
|
|
|
|
|
|
2009-04-25 16:51:07 +08:00
|
|
|
GtkWidget * file_save_dialog_new (Gimp *gimp,
|
|
|
|
gboolean export);
|
2009-05-02 21:58:32 +08:00
|
|
|
|
|
|
|
gboolean file_save_dialog_save_image (GimpProgress *progress_and_handler,
|
|
|
|
Gimp *gimp,
|
|
|
|
GimpImage *image,
|
2014-07-07 06:46:25 +08:00
|
|
|
GFile *file,
|
2009-05-02 21:58:32 +08:00
|
|
|
GimpPlugInProcedure *write_proc,
|
|
|
|
GimpRunMode run_mode,
|
|
|
|
gboolean save_a_copy,
|
2012-05-19 00:48:51 +08:00
|
|
|
gboolean export_backward,
|
|
|
|
gboolean export_forward,
|
2017-03-24 01:03:27 +08:00
|
|
|
gboolean xcf_compression,
|
2009-05-02 21:58:32 +08:00
|
|
|
gboolean verbose_cancel);
|
|
|
|
|
2001-04-28 23:11:29 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __FILE_SAVE_DIALOG_H__ */
|