~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to libgimpconfig/gimpconfig-serialize.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: james.westby@ubuntu.com-20070502163303-6wchheivjxgjtlna
Tags: upstream-2.3.16
ImportĀ upstreamĀ versionĀ 2.3.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* LIBGIMP - The GIMP Library
 
2
 * Copyright (C) 1995 Spencer Kimball and Peter Mattis
 
3
 *
 
4
 * Object properties serialization routines
 
5
 * Copyright (C) 2001-2002  Sven Neumann <sven@gimp.org>
 
6
 *
 
7
 * This library is free software; you can redistribute it and/or
 
8
 * modify it under the terms of the GNU Lesser General Public
 
9
 * License as published by the Free Software Foundation; either
 
10
 * version 2 of the License, or (at your option) any later version.
 
11
 *
 
12
 * This library is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
 * Library General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU Lesser General Public
 
18
 * License along with this library; if not, write to the
 
19
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
20
 * Boston, MA 02111-1307, USA.
 
21
 */
 
22
 
 
23
#ifndef __GIMP_CONFIG_SERIALIZE_H__
 
24
#define __GIMP_CONFIG_SERIALIZE_H__
 
25
 
 
26
G_BEGIN_DECLS
 
27
 
 
28
/* For information look into the C source or the html documentation */
 
29
 
 
30
 
 
31
gboolean  gimp_config_serialize_properties         (GimpConfig       *config,
 
32
                                                    GimpConfigWriter *writer);
 
33
gboolean  gimp_config_serialize_changed_properties (GimpConfig       *config,
 
34
                                                    GimpConfigWriter *writer);
 
35
 
 
36
gboolean  gimp_config_serialize_property           (GimpConfig       *config,
 
37
                                                    GParamSpec       *param_spec,
 
38
                                                    GimpConfigWriter *writer);
 
39
gboolean  gimp_config_serialize_value              (const GValue     *value,
 
40
                                                    GString          *str,
 
41
                                                    gboolean          escaped);
 
42
 
 
43
 
 
44
G_END_DECLS
 
45
 
 
46
#endif /* __GIMP_CONFIG_SERIALIZE_H__ */