1999-10-04 02:54:54 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1999 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
2000-02-26 11:41:06 +08:00
|
|
|
* gimpexport.h
|
|
|
|
* Copyright (C) 1999-2000 Sven Neumann <sven@gimp.org>
|
2003-11-06 23:27:05 +08:00
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
1999-11-18 05:13:50 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1999-10-04 02:54:54 +08:00
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
1999-10-04 02:54:54 +08:00
|
|
|
*
|
|
|
|
* This library 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
|
1999-12-26 15:54:39 +08:00
|
|
|
* Lesser General Public License for more details.
|
1999-10-04 02:54:54 +08:00
|
|
|
*
|
1999-11-18 05:13:50 +08:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
1999-10-04 02:54:54 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_EXPORT_H__
|
|
|
|
#define __GIMP_EXPORT_H__
|
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
G_BEGIN_DECLS
|
1999-10-25 06:08:11 +08:00
|
|
|
|
2000-05-31 07:38:46 +08:00
|
|
|
/* For information look into the C source or the html documentation */
|
|
|
|
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2000-08-24 22:17:34 +08:00
|
|
|
GIMP_EXPORT_CAN_HANDLE_RGB = 1 << 0,
|
|
|
|
GIMP_EXPORT_CAN_HANDLE_GRAY = 1 << 1,
|
|
|
|
GIMP_EXPORT_CAN_HANDLE_INDEXED = 1 << 2,
|
2003-11-16 00:51:20 +08:00
|
|
|
GIMP_EXPORT_CAN_HANDLE_BITMAP = 1 << 3,
|
|
|
|
GIMP_EXPORT_CAN_HANDLE_ALPHA = 1 << 4,
|
|
|
|
GIMP_EXPORT_CAN_HANDLE_LAYERS = 1 << 5,
|
|
|
|
GIMP_EXPORT_CAN_HANDLE_LAYERS_AS_ANIMATION = 1 << 6,
|
|
|
|
GIMP_EXPORT_CAN_HANDLE_LAYER_MASKS = 1 << 7,
|
|
|
|
GIMP_EXPORT_NEEDS_ALPHA = 1 << 8
|
2000-02-07 05:19:10 +08:00
|
|
|
} GimpExportCapabilities;
|
2003-11-06 23:27:05 +08:00
|
|
|
|
1999-10-04 07:48:33 +08:00
|
|
|
typedef enum
|
|
|
|
{
|
2000-08-24 22:17:34 +08:00
|
|
|
GIMP_EXPORT_CANCEL,
|
|
|
|
GIMP_EXPORT_IGNORE,
|
|
|
|
GIMP_EXPORT_EXPORT
|
2003-11-06 23:27:05 +08:00
|
|
|
} GimpExportReturn;
|
1999-10-04 07:48:33 +08:00
|
|
|
|
2009-07-15 18:12:13 +08:00
|
|
|
GimpExportReturn gimp_export_image (gint32 *image_ID,
|
|
|
|
gint32 *drawable_ID,
|
|
|
|
const gchar *format_name,
|
|
|
|
GimpExportCapabilities capabilities);
|
|
|
|
GtkWidget * gimp_export_dialog_new (const gchar *format_name,
|
|
|
|
const gchar *role,
|
|
|
|
const gchar *help_id);
|
|
|
|
GtkWidget * gimp_export_dialog_get_content_area (GtkWidget *dialog);
|
1999-10-04 02:54:54 +08:00
|
|
|
|
2000-05-31 07:38:46 +08:00
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
G_END_DECLS
|
1999-10-04 02:54:54 +08:00
|
|
|
|
2000-05-31 07:38:46 +08:00
|
|
|
#endif /* __GIMP_EXPORT_H__ */
|