2005-01-26 03:11:26 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
2001-11-27 11:52:11 +08:00
|
|
|
* Copyright (C) 1995-1997 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2001-12-08 00:10:53 +08:00
|
|
|
* Config file serialization and deserialization interface
|
2003-07-24 22:14:23 +08:00
|
|
|
* Copyright (C) 2001-2003 Sven Neumann <sven@gimp.org>
|
|
|
|
*
|
2005-01-26 03:11:26 +08:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
2001-11-27 11:52:11 +08:00
|
|
|
*
|
2005-01-26 03:11:26 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2001-11-27 11:52:11 +08:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2005-01-26 03:11:26 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
2001-11-27 11:52:11 +08:00
|
|
|
*
|
2005-01-26 03:11:26 +08:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
2001-11-27 11:52:11 +08:00
|
|
|
*/
|
|
|
|
|
2005-01-26 03:11:26 +08:00
|
|
|
#ifndef __GIMP_CONFIG_IFACE_H__
|
2005-01-26 04:30:20 +08:00
|
|
|
#define __GIMP_CONFIG_IFACE_H__
|
2001-11-27 11:52:11 +08:00
|
|
|
|
2005-06-23 04:37:11 +08:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
/* For information look into the C source or the html documentation */
|
|
|
|
|
2001-11-27 11:52:11 +08:00
|
|
|
|
2003-10-11 22:30:18 +08:00
|
|
|
#define GIMP_TYPE_CONFIG (gimp_config_interface_get_type ())
|
|
|
|
#define GIMP_IS_CONFIG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_CONFIG))
|
|
|
|
#define GIMP_CONFIG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_CONFIG, GimpConfig))
|
|
|
|
#define GIMP_CONFIG_GET_INTERFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GIMP_TYPE_CONFIG, GimpConfigInterface))
|
2001-11-27 11:52:11 +08:00
|
|
|
|
|
|
|
|
2004-07-19 19:33:59 +08:00
|
|
|
typedef struct _GimpConfigInterface GimpConfigInterface;
|
|
|
|
|
2001-12-08 00:10:53 +08:00
|
|
|
struct _GimpConfigInterface
|
2001-11-27 11:52:11 +08:00
|
|
|
{
|
2001-12-08 00:10:53 +08:00
|
|
|
GTypeInterface base_iface;
|
2001-11-27 11:52:11 +08:00
|
|
|
|
2003-10-11 22:30:18 +08:00
|
|
|
gboolean (* serialize) (GimpConfig *config,
|
|
|
|
GimpConfigWriter *writer,
|
|
|
|
gpointer data);
|
|
|
|
gboolean (* deserialize) (GimpConfig *config,
|
|
|
|
GScanner *scanner,
|
|
|
|
gint nest_level,
|
|
|
|
gpointer data);
|
|
|
|
gboolean (* serialize_property) (GimpConfig *config,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
GimpConfigWriter *writer);
|
|
|
|
gboolean (* deserialize_property) (GimpConfig *config,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
GScanner *scanner,
|
|
|
|
GTokenType *expected);
|
|
|
|
GimpConfig * (* duplicate) (GimpConfig *config);
|
|
|
|
gboolean (* equal) (GimpConfig *a,
|
|
|
|
GimpConfig *b);
|
|
|
|
void (* reset) (GimpConfig *config);
|
2008-02-01 19:44:45 +08:00
|
|
|
gboolean (* copy) (GimpConfig *src,
|
|
|
|
GimpConfig *dest,
|
|
|
|
GParamFlags flags);
|
2001-11-27 11:52:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-12-09 11:00:32 +08:00
|
|
|
GType gimp_config_interface_get_type (void) G_GNUC_CONST;
|
2001-11-27 11:52:11 +08:00
|
|
|
|
2003-10-11 22:30:18 +08:00
|
|
|
gboolean gimp_config_serialize_to_file (GimpConfig *config,
|
2002-03-24 01:58:57 +08:00
|
|
|
const gchar *filename,
|
2002-05-15 19:05:32 +08:00
|
|
|
const gchar *header,
|
|
|
|
const gchar *footer,
|
2002-05-15 19:59:51 +08:00
|
|
|
gpointer data,
|
2002-03-24 01:58:57 +08:00
|
|
|
GError **error);
|
2003-10-11 22:30:18 +08:00
|
|
|
gboolean gimp_config_serialize_to_fd (GimpConfig *config,
|
2003-06-25 03:45:55 +08:00
|
|
|
gint fd,
|
|
|
|
gpointer data);
|
2003-10-11 22:30:18 +08:00
|
|
|
gchar * gimp_config_serialize_to_string (GimpConfig *config,
|
2006-04-12 18:53:28 +08:00
|
|
|
gpointer data);
|
2003-10-11 22:30:18 +08:00
|
|
|
gboolean gimp_config_deserialize_file (GimpConfig *config,
|
2002-03-24 01:58:57 +08:00
|
|
|
const gchar *filename,
|
2002-05-15 19:59:51 +08:00
|
|
|
gpointer data,
|
2002-03-24 01:58:57 +08:00
|
|
|
GError **error);
|
2003-10-11 22:30:18 +08:00
|
|
|
gboolean gimp_config_deserialize_string (GimpConfig *config,
|
2003-06-24 06:02:56 +08:00
|
|
|
const gchar *text,
|
|
|
|
gint text_len,
|
|
|
|
gpointer data,
|
|
|
|
GError **error);
|
2002-05-27 22:04:21 +08:00
|
|
|
gboolean gimp_config_deserialize_return (GScanner *scanner,
|
|
|
|
GTokenType expected_token,
|
2002-06-18 03:36:33 +08:00
|
|
|
gint nest_level);
|
2002-05-27 22:04:21 +08:00
|
|
|
|
2003-10-14 23:20:59 +08:00
|
|
|
gpointer gimp_config_duplicate (GimpConfig *config);
|
2003-10-11 22:30:18 +08:00
|
|
|
gboolean gimp_config_is_equal_to (GimpConfig *a,
|
|
|
|
GimpConfig *b);
|
|
|
|
void gimp_config_reset (GimpConfig *config);
|
2008-02-01 19:44:45 +08:00
|
|
|
gboolean gimp_config_copy (GimpConfig *src,
|
|
|
|
GimpConfig *dest,
|
|
|
|
GParamFlags flags);
|
2002-03-24 01:58:57 +08:00
|
|
|
|
|
|
|
|
2005-06-23 04:37:11 +08:00
|
|
|
G_END_DECLS
|
|
|
|
|
2005-01-26 03:11:26 +08:00
|
|
|
#endif /* __GIMP_CONFIG_IFACE_H__ */
|