summaryrefslogtreecommitdiffstats
path: root/devel-docs/libgimpconfig
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:30:19 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:30:19 +0000
commit5c1676dfe6d2f3c837a5e074117b45613fd29a72 (patch)
treecbffb45144febf451e54061db2b21395faf94bfe /devel-docs/libgimpconfig
parentInitial commit. (diff)
downloadgimp-5c1676dfe6d2f3c837a5e074117b45613fd29a72.tar.xz
gimp-5c1676dfe6d2f3c837a5e074117b45613fd29a72.zip
Adding upstream version 2.10.34.upstream/2.10.34upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devel-docs/libgimpconfig')
-rw-r--r--devel-docs/libgimpconfig/Makefile.am60
-rw-r--r--devel-docs/libgimpconfig/Makefile.in1110
-rw-r--r--devel-docs/libgimpconfig/html/GimpColorConfig.html904
-rw-r--r--devel-docs/libgimpconfig/html/api-index-full.html654
-rw-r--r--devel-docs/libgimpconfig/html/home.pngbin0 -> 256 bytes
-rw-r--r--devel-docs/libgimpconfig/html/index.html66
-rw-r--r--devel-docs/libgimpconfig/html/left-insensitive.pngbin0 -> 395 bytes
-rw-r--r--devel-docs/libgimpconfig/html/left.pngbin0 -> 262 bytes
-rw-r--r--devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-deserialize.html160
-rw-r--r--devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-params.html504
-rw-r--r--devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-path.html627
-rw-r--r--devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-serialize.html296
-rw-r--r--devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-utils.html294
-rw-r--r--devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig.html989
-rw-r--r--devel-docs/libgimpconfig/html/libgimpconfig-GimpConfigError.html152
-rw-r--r--devel-docs/libgimpconfig/html/libgimpconfig-GimpConfigWriter.html763
-rw-r--r--devel-docs/libgimpconfig/html/libgimpconfig-GimpScanner.html685
-rw-r--r--devel-docs/libgimpconfig/html/libgimpconfig-hierarchy.html35
-rw-r--r--devel-docs/libgimpconfig/html/libgimpconfig.devhelp2195
-rw-r--r--devel-docs/libgimpconfig/html/pt01.html66
-rw-r--r--devel-docs/libgimpconfig/html/right-insensitive.pngbin0 -> 373 bytes
-rw-r--r--devel-docs/libgimpconfig/html/right.pngbin0 -> 261 bytes
-rw-r--r--devel-docs/libgimpconfig/html/style.css530
-rw-r--r--devel-docs/libgimpconfig/html/up-insensitive.pngbin0 -> 374 bytes
-rw-r--r--devel-docs/libgimpconfig/html/up.pngbin0 -> 260 bytes
-rw-r--r--devel-docs/libgimpconfig/libgimpconfig-docs.sgml59
-rw-r--r--devel-docs/libgimpconfig/libgimpconfig-overrides.txt0
-rw-r--r--devel-docs/libgimpconfig/libgimpconfig-sections.txt205
-rw-r--r--devel-docs/libgimpconfig/libgimpconfig.types5
-rw-r--r--devel-docs/libgimpconfig/version.in1
30 files changed, 8360 insertions, 0 deletions
diff --git a/devel-docs/libgimpconfig/Makefile.am b/devel-docs/libgimpconfig/Makefile.am
new file mode 100644
index 0000000..534e223
--- /dev/null
+++ b/devel-docs/libgimpconfig/Makefile.am
@@ -0,0 +1,60 @@
+## Process this file with automake to produce Makefile.in
+
+# The name of the module.
+DOC_MODULE = libgimpconfig
+
+# The top-level SGML file.
+DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml
+
+# The directory containing the source code.
+DOC_SOURCE_DIR = $(top_srcdir)/$(DOC_MODULE)
+
+# Extra options to pass to gtkdoc-scangobj
+SCANGOBJ_OPTIONS =
+
+# Extra options to supply to gtkdoc-scan
+SCAN_OPTIONS = --deprecated-guards="GIMP_DISABLE_DEPRECATED"
+
+# Extra options to supply to gtkdoc-mkdb
+MKDB_OPTIONS = --sgml-mode --output-format=xml --name-space=gimp
+
+# Extra options to supply to gtkdoc-fixref
+FIXXREF_OPTIONS = --extra-dir=../libgimpbase/html --extra-dir=../libgimpcolor/html --extra-dir=../libgimpmath/html
+
+# Used for dependencies
+HFILE_GLOB = $(DOC_SOURCE_DIR)/*.h
+CFILE_GLOB = $(DOC_SOURCE_DIR)/*.c
+
+# Header files to ignore when scanning
+IGNORE_HFILES = \
+ gimpconfig.h
+
+# Images to copy into HTML directory
+HTML_IMAGES=
+
+# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE)
+content_files =
+
+# Other files to distribute
+extra_files =
+
+# CFLAGS and LDFLAGS for compiling scan program. Only needed
+# if $(DOC_MODULE).types is non-empty.
+GTKDOC_CFLAGS = \
+ @CFLAGS@ \
+ -I$(top_srcdir) \
+ -I$(top_builddir) \
+ @GLIB_CFLAGS@
+
+GTKDOC_LIBS = \
+ $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \
+ $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \
+ $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la \
+ $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la \
+ @GLIB_LIBS@
+
+
+include $(top_srcdir)/gtk-doc.make
+
+# Other files to distribute
+EXTRA_DIST += version.in
diff --git a/devel-docs/libgimpconfig/Makefile.in b/devel-docs/libgimpconfig/Makefile.in
new file mode 100644
index 0000000..8e59eb9
--- /dev/null
+++ b/devel-docs/libgimpconfig/Makefile.in
@@ -0,0 +1,1110 @@
+# Makefile.in generated by automake 1.16.3 from Makefile.am.
+# @configure_input@
+
+# Copyright (C) 1994-2020 Free Software Foundation, Inc.
+
+# This Makefile.in is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+@SET_MAKE@
+
+# -*- mode: makefile -*-
+#
+# gtk-doc.make - make rules for gtk-doc
+# Copyright (C) 2003 James Henstridge
+# 2004-2007 Damon Chaplin
+# 2007-2017 Stefan Sauer
+#
+# 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 3 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, see <http://www.gnu.org/licenses/>.
+
+####################################
+# Everything below here is generic #
+####################################
+VPATH = @srcdir@
+am__is_gnu_make = { \
+ if test -z '$(MAKELEVEL)'; then \
+ false; \
+ elif test -n '$(MAKE_HOST)'; then \
+ true; \
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+ true; \
+ else \
+ false; \
+ fi; \
+}
+am__make_running_with_option = \
+ case $${target_option-} in \
+ ?) ;; \
+ *) echo "am__make_running_with_option: internal error: invalid" \
+ "target option '$${target_option-}' specified" >&2; \
+ exit 1;; \
+ esac; \
+ has_opt=no; \
+ sane_makeflags=$$MAKEFLAGS; \
+ if $(am__is_gnu_make); then \
+ sane_makeflags=$$MFLAGS; \
+ else \
+ case $$MAKEFLAGS in \
+ *\\[\ \ ]*) \
+ bs=\\; \
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
+ esac; \
+ fi; \
+ skip_next=no; \
+ strip_trailopt () \
+ { \
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+ }; \
+ for flg in $$sane_makeflags; do \
+ test $$skip_next = yes && { skip_next=no; continue; }; \
+ case $$flg in \
+ *=*|--*) continue;; \
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
+ -*I?*) strip_trailopt 'I';; \
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
+ -*O?*) strip_trailopt 'O';; \
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
+ -*l?*) strip_trailopt 'l';; \
+ -[dEDm]) skip_next=yes;; \
+ -[JT]) skip_next=yes;; \
+ esac; \
+ case $$flg in \
+ *$$target_option*) has_opt=yes; break;; \
+ esac; \
+ done; \
+ test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
+pkgdatadir = $(datadir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkglibexecdir = $(libexecdir)/@PACKAGE@
+am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+install_sh_DATA = $(install_sh) -c -m 644
+install_sh_PROGRAM = $(install_sh) -c
+install_sh_SCRIPT = $(install_sh) -c
+INSTALL_HEADER = $(INSTALL_DATA)
+transform = $(program_transform_name)
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+build_triplet = @build@
+host_triplet = @host@
+subdir = devel-docs/libgimpconfig
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
+ $(top_srcdir)/m4macros/alsa.m4 \
+ $(top_srcdir)/m4macros/ax_compare_version.m4 \
+ $(top_srcdir)/m4macros/ax_cxx_compile_stdcxx.m4 \
+ $(top_srcdir)/m4macros/ax_gcc_func_attribute.m4 \
+ $(top_srcdir)/m4macros/ax_prog_cc_for_build.m4 \
+ $(top_srcdir)/m4macros/ax_prog_perl_version.m4 \
+ $(top_srcdir)/m4macros/detectcflags.m4 \
+ $(top_srcdir)/m4macros/pythondev.m4 $(top_srcdir)/configure.ac
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ $(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
+mkinstalldirs = $(install_sh) -d
+CONFIG_HEADER = $(top_builddir)/config.h
+CONFIG_CLEAN_FILES = version
+CONFIG_CLEAN_VPATH_FILES =
+AM_V_P = $(am__v_P_@AM_V@)
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
+am__v_P_0 = false
+am__v_P_1 = :
+AM_V_GEN = $(am__v_GEN_@AM_V@)
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
+am__v_GEN_0 = @echo " GEN " $@;
+am__v_GEN_1 =
+AM_V_at = $(am__v_at_@AM_V@)
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
+am__v_at_0 = @
+am__v_at_1 =
+SOURCES =
+DIST_SOURCES =
+am__can_run_installinfo = \
+ case $$AM_UPDATE_INFO_DIR in \
+ n|no|NO) false;; \
+ *) (install-info --version) >/dev/null 2>&1;; \
+ esac
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
+am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/version.in \
+ $(top_srcdir)/gtk-doc.make
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+AA_LIBS = @AA_LIBS@
+ACLOCAL = @ACLOCAL@
+ALLOCA = @ALLOCA@
+ALL_LINGUAS = @ALL_LINGUAS@
+ALSA_CFLAGS = @ALSA_CFLAGS@
+ALSA_LIBS = @ALSA_LIBS@
+ALTIVEC_EXTRA_CFLAGS = @ALTIVEC_EXTRA_CFLAGS@
+AMTAR = @AMTAR@
+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+APPSTREAM_UTIL = @APPSTREAM_UTIL@
+AR = @AR@
+AS = @AS@
+ATK_CFLAGS = @ATK_CFLAGS@
+ATK_LIBS = @ATK_LIBS@
+ATK_REQUIRED_VERSION = @ATK_REQUIRED_VERSION@
+AUTOCONF = @AUTOCONF@
+AUTOHEADER = @AUTOHEADER@
+AUTOMAKE = @AUTOMAKE@
+AWK = @AWK@
+BABL_CFLAGS = @BABL_CFLAGS@
+BABL_LIBS = @BABL_LIBS@
+BABL_REQUIRED_VERSION = @BABL_REQUIRED_VERSION@
+BUG_REPORT_URL = @BUG_REPORT_URL@
+BUILD_EXEEXT = @BUILD_EXEEXT@
+BUILD_OBJEXT = @BUILD_OBJEXT@
+BZIP2_LIBS = @BZIP2_LIBS@
+CAIRO_CFLAGS = @CAIRO_CFLAGS@
+CAIRO_LIBS = @CAIRO_LIBS@
+CAIRO_PDF_CFLAGS = @CAIRO_PDF_CFLAGS@
+CAIRO_PDF_LIBS = @CAIRO_PDF_LIBS@
+CAIRO_PDF_REQUIRED_VERSION = @CAIRO_PDF_REQUIRED_VERSION@
+CAIRO_REQUIRED_VERSION = @CAIRO_REQUIRED_VERSION@
+CATALOGS = @CATALOGS@
+CATOBJEXT = @CATOBJEXT@
+CC = @CC@
+CCAS = @CCAS@
+CCASDEPMODE = @CCASDEPMODE@
+CCASFLAGS = @CCASFLAGS@
+CCDEPMODE = @CCDEPMODE@
+CC_FOR_BUILD = @CC_FOR_BUILD@
+CC_VERSION = @CC_VERSION@
+CFLAGS = @CFLAGS@
+CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@
+CPP = @CPP@
+CPPFLAGS = @CPPFLAGS@
+CPPFLAGS_FOR_BUILD = @CPPFLAGS_FOR_BUILD@
+CPP_FOR_BUILD = @CPP_FOR_BUILD@
+CXX = @CXX@
+CXXCPP = @CXXCPP@
+CXXDEPMODE = @CXXDEPMODE@
+CXXFLAGS = @CXXFLAGS@
+CYGPATH_W = @CYGPATH_W@
+DATADIRNAME = @DATADIRNAME@
+DEFS = @DEFS@
+DEPDIR = @DEPDIR@
+DESKTOP_DATADIR = @DESKTOP_DATADIR@
+DESKTOP_FILE_VALIDATE = @DESKTOP_FILE_VALIDATE@
+DLLTOOL = @DLLTOOL@
+DOC_SHOOTER = @DOC_SHOOTER@
+DSYMUTIL = @DSYMUTIL@
+DUMPBIN = @DUMPBIN@
+ECHO_C = @ECHO_C@
+ECHO_N = @ECHO_N@
+ECHO_T = @ECHO_T@
+EGREP = @EGREP@
+EXEEXT = @EXEEXT@
+FGREP = @FGREP@
+FILE_AA = @FILE_AA@
+FILE_EXR = @FILE_EXR@
+FILE_HEIF = @FILE_HEIF@
+FILE_JP2_LOAD = @FILE_JP2_LOAD@
+FILE_JPEGXL = @FILE_JPEGXL@
+FILE_MNG = @FILE_MNG@
+FILE_PDF_SAVE = @FILE_PDF_SAVE@
+FILE_PS = @FILE_PS@
+FILE_WMF = @FILE_WMF@
+FILE_XMC = @FILE_XMC@
+FILE_XPM = @FILE_XPM@
+FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@
+FONTCONFIG_LIBS = @FONTCONFIG_LIBS@
+FONTCONFIG_REQUIRED_VERSION = @FONTCONFIG_REQUIRED_VERSION@
+FREETYPE2_REQUIRED_VERSION = @FREETYPE2_REQUIRED_VERSION@
+FREETYPE_CFLAGS = @FREETYPE_CFLAGS@
+FREETYPE_LIBS = @FREETYPE_LIBS@
+GDBUS_CODEGEN = @GDBUS_CODEGEN@
+GDK_PIXBUF_CFLAGS = @GDK_PIXBUF_CFLAGS@
+GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@
+GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@
+GDK_PIXBUF_REQUIRED_VERSION = @GDK_PIXBUF_REQUIRED_VERSION@
+GEGL = @GEGL@
+GEGL_CFLAGS = @GEGL_CFLAGS@
+GEGL_LIBS = @GEGL_LIBS@
+GEGL_MAJOR_MINOR_VERSION = @GEGL_MAJOR_MINOR_VERSION@
+GEGL_REQUIRED_VERSION = @GEGL_REQUIRED_VERSION@
+GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
+GEXIV2_CFLAGS = @GEXIV2_CFLAGS@
+GEXIV2_LIBS = @GEXIV2_LIBS@
+GEXIV2_REQUIRED_VERSION = @GEXIV2_REQUIRED_VERSION@
+GIMP_API_VERSION = @GIMP_API_VERSION@
+GIMP_APP_VERSION = @GIMP_APP_VERSION@
+GIMP_BINARY_AGE = @GIMP_BINARY_AGE@
+GIMP_COMMAND = @GIMP_COMMAND@
+GIMP_DATA_VERSION = @GIMP_DATA_VERSION@
+GIMP_FULL_NAME = @GIMP_FULL_NAME@
+GIMP_INTERFACE_AGE = @GIMP_INTERFACE_AGE@
+GIMP_MAJOR_VERSION = @GIMP_MAJOR_VERSION@
+GIMP_MICRO_VERSION = @GIMP_MICRO_VERSION@
+GIMP_MINOR_VERSION = @GIMP_MINOR_VERSION@
+GIMP_MKENUMS = @GIMP_MKENUMS@
+GIMP_MODULES = @GIMP_MODULES@
+GIMP_PACKAGE_REVISION = @GIMP_PACKAGE_REVISION@
+GIMP_PKGCONFIG_VERSION = @GIMP_PKGCONFIG_VERSION@
+GIMP_PLUGINS = @GIMP_PLUGINS@
+GIMP_PLUGIN_VERSION = @GIMP_PLUGIN_VERSION@
+GIMP_REAL_VERSION = @GIMP_REAL_VERSION@
+GIMP_RELEASE = @GIMP_RELEASE@
+GIMP_SYSCONF_VERSION = @GIMP_SYSCONF_VERSION@
+GIMP_TOOL_VERSION = @GIMP_TOOL_VERSION@
+GIMP_UNSTABLE = @GIMP_UNSTABLE@
+GIMP_USER_VERSION = @GIMP_USER_VERSION@
+GIMP_VERSION = @GIMP_VERSION@
+GIO_CFLAGS = @GIO_CFLAGS@
+GIO_LIBS = @GIO_LIBS@
+GIO_UNIX_CFLAGS = @GIO_UNIX_CFLAGS@
+GIO_UNIX_LIBS = @GIO_UNIX_LIBS@
+GIO_WINDOWS_CFLAGS = @GIO_WINDOWS_CFLAGS@
+GIO_WINDOWS_LIBS = @GIO_WINDOWS_LIBS@
+GLIB_CFLAGS = @GLIB_CFLAGS@
+GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
+GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
+GLIB_LIBS = @GLIB_LIBS@
+GLIB_MKENUMS = @GLIB_MKENUMS@
+GLIB_REQUIRED_VERSION = @GLIB_REQUIRED_VERSION@
+GMODULE_NO_EXPORT_CFLAGS = @GMODULE_NO_EXPORT_CFLAGS@
+GMODULE_NO_EXPORT_LIBS = @GMODULE_NO_EXPORT_LIBS@
+GMOFILES = @GMOFILES@
+GMSGFMT = @GMSGFMT@
+GOBJECT_QUERY = @GOBJECT_QUERY@
+GREP = @GREP@
+GS_LIBS = @GS_LIBS@
+GTKDOC_CHECK = @GTKDOC_CHECK@
+GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
+GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
+GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
+GTKDOC_MKPDF = @GTKDOC_MKPDF@
+GTKDOC_REBASE = @GTKDOC_REBASE@
+GTK_CFLAGS = @GTK_CFLAGS@
+GTK_LIBS = @GTK_LIBS@
+GTK_MAC_INTEGRATION_CFLAGS = @GTK_MAC_INTEGRATION_CFLAGS@
+GTK_MAC_INTEGRATION_LIBS = @GTK_MAC_INTEGRATION_LIBS@
+GTK_REQUIRED_VERSION = @GTK_REQUIRED_VERSION@
+GTK_UPDATE_ICON_CACHE = @GTK_UPDATE_ICON_CACHE@
+GUDEV_CFLAGS = @GUDEV_CFLAGS@
+GUDEV_LIBS = @GUDEV_LIBS@
+HARFBUZZ_CFLAGS = @HARFBUZZ_CFLAGS@
+HARFBUZZ_LIBS = @HARFBUZZ_LIBS@
+HARFBUZZ_REQUIRED_VERSION = @HARFBUZZ_REQUIRED_VERSION@
+HAVE_CXX14 = @HAVE_CXX14@
+HAVE_FINITE = @HAVE_FINITE@
+HAVE_ISFINITE = @HAVE_ISFINITE@
+HAVE_VFORK = @HAVE_VFORK@
+HOST_GLIB_COMPILE_RESOURCES = @HOST_GLIB_COMPILE_RESOURCES@
+HTML_DIR = @HTML_DIR@
+INSTALL = @INSTALL@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
+INSTOBJEXT = @INSTOBJEXT@
+INTLLIBS = @INTLLIBS@
+INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
+INTLTOOL_MERGE = @INTLTOOL_MERGE@
+INTLTOOL_PERL = @INTLTOOL_PERL@
+INTLTOOL_REQUIRED_VERSION = @INTLTOOL_REQUIRED_VERSION@
+INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
+INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
+INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
+INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
+INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
+INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
+ISO_CODES_LOCALEDIR = @ISO_CODES_LOCALEDIR@
+ISO_CODES_LOCATION = @ISO_CODES_LOCATION@
+JPEG_LIBS = @JPEG_LIBS@
+JSON_GLIB_CFLAGS = @JSON_GLIB_CFLAGS@
+JSON_GLIB_LIBS = @JSON_GLIB_LIBS@
+JXL_CFLAGS = @JXL_CFLAGS@
+JXL_LIBS = @JXL_LIBS@
+JXL_THREADS_CFLAGS = @JXL_THREADS_CFLAGS@
+JXL_THREADS_LIBS = @JXL_THREADS_LIBS@
+LCMS_CFLAGS = @LCMS_CFLAGS@
+LCMS_LIBS = @LCMS_LIBS@
+LCMS_REQUIRED_VERSION = @LCMS_REQUIRED_VERSION@
+LD = @LD@
+LDFLAGS = @LDFLAGS@
+LDFLAGS_FOR_BUILD = @LDFLAGS_FOR_BUILD@
+LIBBACKTRACE_LIBS = @LIBBACKTRACE_LIBS@
+LIBHEIF_CFLAGS = @LIBHEIF_CFLAGS@
+LIBHEIF_LIBS = @LIBHEIF_LIBS@
+LIBHEIF_REQUIRED_VERSION = @LIBHEIF_REQUIRED_VERSION@
+LIBJXL_REQUIRED_VERSION = @LIBJXL_REQUIRED_VERSION@
+LIBLZMA_REQUIRED_VERSION = @LIBLZMA_REQUIRED_VERSION@
+LIBMYPAINT_CFLAGS = @LIBMYPAINT_CFLAGS@
+LIBMYPAINT_LIBS = @LIBMYPAINT_LIBS@
+LIBMYPAINT_REQUIRED_VERSION = @LIBMYPAINT_REQUIRED_VERSION@
+LIBOBJS = @LIBOBJS@
+LIBPNG_REQUIRED_VERSION = @LIBPNG_REQUIRED_VERSION@
+LIBS = @LIBS@
+LIBTOOL = @LIBTOOL@
+LIBUNWIND_CFLAGS = @LIBUNWIND_CFLAGS@
+LIBUNWIND_LIBS = @LIBUNWIND_LIBS@
+LIBUNWIND_REQUIRED_VERSION = @LIBUNWIND_REQUIRED_VERSION@
+LIPO = @LIPO@
+LN_S = @LN_S@
+LTLIBOBJS = @LTLIBOBJS@
+LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@
+LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
+LT_VERSION_INFO = @LT_VERSION_INFO@
+LZMA_CFLAGS = @LZMA_CFLAGS@
+LZMA_LIBS = @LZMA_LIBS@
+MAIL = @MAIL@
+MAINT = @MAINT@
+MAKEINFO = @MAKEINFO@
+MANIFEST_TOOL = @MANIFEST_TOOL@
+MIME_INFO_CFLAGS = @MIME_INFO_CFLAGS@
+MIME_INFO_LIBS = @MIME_INFO_LIBS@
+MIME_TYPES = @MIME_TYPES@
+MKDIR_P = @MKDIR_P@
+MKINSTALLDIRS = @MKINSTALLDIRS@
+MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@
+MNG_CFLAGS = @MNG_CFLAGS@
+MNG_LIBS = @MNG_LIBS@
+MSGFMT = @MSGFMT@
+MSGFMT_OPTS = @MSGFMT_OPTS@
+MSGMERGE = @MSGMERGE@
+MYPAINT_BRUSHES_CFLAGS = @MYPAINT_BRUSHES_CFLAGS@
+MYPAINT_BRUSHES_LIBS = @MYPAINT_BRUSHES_LIBS@
+NATIVE_GLIB_CFLAGS = @NATIVE_GLIB_CFLAGS@
+NATIVE_GLIB_LIBS = @NATIVE_GLIB_LIBS@
+NM = @NM@
+NMEDIT = @NMEDIT@
+OBJDUMP = @OBJDUMP@
+OBJEXT = @OBJEXT@
+OPENEXR_CFLAGS = @OPENEXR_CFLAGS@
+OPENEXR_LIBS = @OPENEXR_LIBS@
+OPENEXR_REQUIRED_VERSION = @OPENEXR_REQUIRED_VERSION@
+OPENJPEG_CFLAGS = @OPENJPEG_CFLAGS@
+OPENJPEG_LIBS = @OPENJPEG_LIBS@
+OPENJPEG_REQUIRED_VERSION = @OPENJPEG_REQUIRED_VERSION@
+OTOOL = @OTOOL@
+OTOOL64 = @OTOOL64@
+PACKAGE = @PACKAGE@
+PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+PACKAGE_NAME = @PACKAGE_NAME@
+PACKAGE_STRING = @PACKAGE_STRING@
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
+PACKAGE_URL = @PACKAGE_URL@
+PACKAGE_VERSION = @PACKAGE_VERSION@
+PANGOCAIRO_CFLAGS = @PANGOCAIRO_CFLAGS@
+PANGOCAIRO_LIBS = @PANGOCAIRO_LIBS@
+PANGOCAIRO_REQUIRED_VERSION = @PANGOCAIRO_REQUIRED_VERSION@
+PATHSEP = @PATHSEP@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+PERL = @PERL@
+PERL_REQUIRED_VERSION = @PERL_REQUIRED_VERSION@
+PERL_VERSION = @PERL_VERSION@
+PKG_CONFIG = @PKG_CONFIG@
+PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
+PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
+PNG_CFLAGS = @PNG_CFLAGS@
+PNG_LIBS = @PNG_LIBS@
+POFILES = @POFILES@
+POPPLER_CFLAGS = @POPPLER_CFLAGS@
+POPPLER_DATA_CFLAGS = @POPPLER_DATA_CFLAGS@
+POPPLER_DATA_LIBS = @POPPLER_DATA_LIBS@
+POPPLER_DATA_REQUIRED_VERSION = @POPPLER_DATA_REQUIRED_VERSION@
+POPPLER_LIBS = @POPPLER_LIBS@
+POPPLER_REQUIRED_VERSION = @POPPLER_REQUIRED_VERSION@
+POSUB = @POSUB@
+PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
+PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
+PYBIN_PATH = @PYBIN_PATH@
+PYCAIRO_CFLAGS = @PYCAIRO_CFLAGS@
+PYCAIRO_LIBS = @PYCAIRO_LIBS@
+PYGIMP_EXTRA_CFLAGS = @PYGIMP_EXTRA_CFLAGS@
+PYGTK_CFLAGS = @PYGTK_CFLAGS@
+PYGTK_CODEGEN = @PYGTK_CODEGEN@
+PYGTK_DEFSDIR = @PYGTK_DEFSDIR@
+PYGTK_LIBS = @PYGTK_LIBS@
+PYLINK_LIBS = @PYLINK_LIBS@
+PYTHON = @PYTHON@
+PYTHON2_REQUIRED_VERSION = @PYTHON2_REQUIRED_VERSION@
+PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@
+PYTHON_INCLUDES = @PYTHON_INCLUDES@
+PYTHON_PLATFORM = @PYTHON_PLATFORM@
+PYTHON_PREFIX = @PYTHON_PREFIX@
+PYTHON_VERSION = @PYTHON_VERSION@
+RANLIB = @RANLIB@
+RSVG_REQUIRED_VERSION = @RSVG_REQUIRED_VERSION@
+RT_LIBS = @RT_LIBS@
+SCREENSHOT_LIBS = @SCREENSHOT_LIBS@
+SED = @SED@
+SENDMAIL = @SENDMAIL@
+SET_MAKE = @SET_MAKE@
+SHELL = @SHELL@
+SOCKET_LIBS = @SOCKET_LIBS@
+SSE2_EXTRA_CFLAGS = @SSE2_EXTRA_CFLAGS@
+SSE4_1_EXTRA_CFLAGS = @SSE4_1_EXTRA_CFLAGS@
+SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@
+STRIP = @STRIP@
+SVG_CFLAGS = @SVG_CFLAGS@
+SVG_LIBS = @SVG_LIBS@
+SYMPREFIX = @SYMPREFIX@
+TIFF_LIBS = @TIFF_LIBS@
+USE_NLS = @USE_NLS@
+VERSION = @VERSION@
+WEBKIT_CFLAGS = @WEBKIT_CFLAGS@
+WEBKIT_LIBS = @WEBKIT_LIBS@
+WEBKIT_REQUIRED_VERSION = @WEBKIT_REQUIRED_VERSION@
+WEBPDEMUX_CFLAGS = @WEBPDEMUX_CFLAGS@
+WEBPDEMUX_LIBS = @WEBPDEMUX_LIBS@
+WEBPMUX_CFLAGS = @WEBPMUX_CFLAGS@
+WEBPMUX_LIBS = @WEBPMUX_LIBS@
+WEBP_CFLAGS = @WEBP_CFLAGS@
+WEBP_LIBS = @WEBP_LIBS@
+WEBP_REQUIRED_VERSION = @WEBP_REQUIRED_VERSION@
+WEB_PAGE = @WEB_PAGE@
+WIN32_LARGE_ADDRESS_AWARE = @WIN32_LARGE_ADDRESS_AWARE@
+WINDRES = @WINDRES@
+WMF_CFLAGS = @WMF_CFLAGS@
+WMF_CONFIG = @WMF_CONFIG@
+WMF_LIBS = @WMF_LIBS@
+WMF_REQUIRED_VERSION = @WMF_REQUIRED_VERSION@
+XDG_EMAIL = @XDG_EMAIL@
+XFIXES_CFLAGS = @XFIXES_CFLAGS@
+XFIXES_LIBS = @XFIXES_LIBS@
+XGETTEXT = @XGETTEXT@
+XGETTEXT_REQUIRED_VERSION = @XGETTEXT_REQUIRED_VERSION@
+XMC_CFLAGS = @XMC_CFLAGS@
+XMC_LIBS = @XMC_LIBS@
+XMKMF = @XMKMF@
+XMLLINT = @XMLLINT@
+XMU_LIBS = @XMU_LIBS@
+XPM_LIBS = @XPM_LIBS@
+XSLTPROC = @XSLTPROC@
+XVFB_RUN = @XVFB_RUN@
+X_CFLAGS = @X_CFLAGS@
+X_EXTRA_LIBS = @X_EXTRA_LIBS@
+X_LIBS = @X_LIBS@
+X_PRE_LIBS = @X_PRE_LIBS@
+Z_LIBS = @Z_LIBS@
+abs_builddir = @abs_builddir@
+abs_srcdir = @abs_srcdir@
+abs_top_builddir = @abs_top_builddir@
+abs_top_srcdir = @abs_top_srcdir@
+ac_ct_AR = @ac_ct_AR@
+ac_ct_CC = @ac_ct_CC@
+ac_ct_CC_FOR_BUILD = @ac_ct_CC_FOR_BUILD@
+ac_ct_CXX = @ac_ct_CXX@
+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+am__include = @am__include@
+am__leading_dot = @am__leading_dot@
+am__quote = @am__quote@
+am__tar = @am__tar@
+am__untar = @am__untar@
+bindir = @bindir@
+build = @build@
+build_alias = @build_alias@
+build_cpu = @build_cpu@
+build_os = @build_os@
+build_vendor = @build_vendor@
+builddir = @builddir@
+datadir = @datadir@
+datarootdir = @datarootdir@
+docdir = @docdir@
+dvidir = @dvidir@
+exec_prefix = @exec_prefix@
+gimpdatadir = @gimpdatadir@
+gimpdir = @gimpdir@
+gimplocaledir = @gimplocaledir@
+gimpplugindir = @gimpplugindir@
+gimpsysconfdir = @gimpsysconfdir@
+host = @host@
+host_alias = @host_alias@
+host_cpu = @host_cpu@
+host_os = @host_os@
+host_vendor = @host_vendor@
+htmldir = @htmldir@
+includedir = @includedir@
+infodir = @infodir@
+install_sh = @install_sh@
+intltool__v_merge_options_ = @intltool__v_merge_options_@
+intltool__v_merge_options_0 = @intltool__v_merge_options_0@
+libdir = @libdir@
+libexecdir = @libexecdir@
+localedir = @localedir@
+localstatedir = @localstatedir@
+mandir = @mandir@
+manpage_gimpdir = @manpage_gimpdir@
+mkdir_p = @mkdir_p@
+ms_librarian = @ms_librarian@
+mypaint_brushes_dir = @mypaint_brushes_dir@
+oldincludedir = @oldincludedir@
+pdfdir = @pdfdir@
+pkgpyexecdir = @pkgpyexecdir@
+pkgpythondir = @pkgpythondir@
+prefix = @prefix@
+program_transform_name = @program_transform_name@
+psdir = @psdir@
+pyexecdir = @pyexecdir@
+pythondir = @pythondir@
+runstatedir = @runstatedir@
+sbindir = @sbindir@
+sharedstatedir = @sharedstatedir@
+srcdir = @srcdir@
+sysconfdir = @sysconfdir@
+target_alias = @target_alias@
+top_build_prefix = @top_build_prefix@
+top_builddir = @top_builddir@
+top_srcdir = @top_srcdir@
+
+# The name of the module.
+DOC_MODULE = libgimpconfig
+
+# The top-level SGML file.
+DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml
+
+# The directory containing the source code.
+DOC_SOURCE_DIR = $(top_srcdir)/$(DOC_MODULE)
+
+# Extra options to pass to gtkdoc-scangobj
+SCANGOBJ_OPTIONS =
+
+# Extra options to supply to gtkdoc-scan
+SCAN_OPTIONS = --deprecated-guards="GIMP_DISABLE_DEPRECATED"
+
+# Extra options to supply to gtkdoc-mkdb
+MKDB_OPTIONS = --sgml-mode --output-format=xml --name-space=gimp
+
+# Extra options to supply to gtkdoc-fixref
+FIXXREF_OPTIONS = --extra-dir=../libgimpbase/html --extra-dir=../libgimpcolor/html --extra-dir=../libgimpmath/html
+
+# Used for dependencies
+HFILE_GLOB = $(DOC_SOURCE_DIR)/*.h
+CFILE_GLOB = $(DOC_SOURCE_DIR)/*.c
+
+# Header files to ignore when scanning
+IGNORE_HFILES = \
+ gimpconfig.h
+
+
+# Images to copy into HTML directory
+HTML_IMAGES =
+
+# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE)
+content_files =
+
+# Other files to distribute
+extra_files =
+
+# CFLAGS and LDFLAGS for compiling scan program. Only needed
+# if $(DOC_MODULE).types is non-empty.
+GTKDOC_CFLAGS = \
+ @CFLAGS@ \
+ -I$(top_srcdir) \
+ -I$(top_builddir) \
+ @GLIB_CFLAGS@
+
+GTKDOC_LIBS = \
+ $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \
+ $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \
+ $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la \
+ $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la \
+ @GLIB_LIBS@
+
+@GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+@GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+@GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS)
+@GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --tag=CC --mode=link $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS)
+@GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_RUN =
+@GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_RUN = $(LIBTOOL) --mode=execute
+
+# We set GPATH here; this gives us semantics for GNU make
+# which are more like other make's VPATH, when it comes to
+# whether a source that is a target of one rule is then
+# searched for in VPATH/GPATH.
+#
+GPATH = $(srcdir)
+TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE)
+SETUP_FILES = \
+ $(content_files) \
+ $(expand_content_files) \
+ $(DOC_MAIN_SGML_FILE) \
+ $(DOC_MODULE)-sections.txt \
+ $(DOC_MODULE)-overrides.txt
+
+
+# Other files to distribute
+EXTRA_DIST = $(HTML_IMAGES) $(SETUP_FILES) version.in
+DOC_STAMPS = setup-build.stamp scan-build.stamp sgml-build.stamp \
+ html-build.stamp pdf-build.stamp \
+ sgml.stamp html.stamp pdf.stamp
+
+SCANOBJ_FILES = \
+ $(DOC_MODULE).actions \
+ $(DOC_MODULE).args \
+ $(DOC_MODULE).hierarchy \
+ $(DOC_MODULE).interfaces \
+ $(DOC_MODULE).prerequisites \
+ $(DOC_MODULE).signals
+
+REPORT_FILES = \
+ $(DOC_MODULE)-undocumented.txt \
+ $(DOC_MODULE)-undeclared.txt \
+ $(DOC_MODULE)-unused.txt
+
+CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) gtkdoc-check.test
+@GTK_DOC_BUILD_HTML_FALSE@HTML_BUILD_STAMP =
+@GTK_DOC_BUILD_HTML_TRUE@HTML_BUILD_STAMP = html-build.stamp
+@GTK_DOC_BUILD_PDF_FALSE@PDF_BUILD_STAMP =
+@GTK_DOC_BUILD_PDF_TRUE@PDF_BUILD_STAMP = pdf-build.stamp
+
+#### setup ####
+GTK_DOC_V_SETUP = $(GTK_DOC_V_SETUP_@AM_V@)
+GTK_DOC_V_SETUP_ = $(GTK_DOC_V_SETUP_@AM_DEFAULT_V@)
+GTK_DOC_V_SETUP_0 = @echo " DOC Preparing build";
+
+#### scan ####
+GTK_DOC_V_SCAN = $(GTK_DOC_V_SCAN_@AM_V@)
+GTK_DOC_V_SCAN_ = $(GTK_DOC_V_SCAN_@AM_DEFAULT_V@)
+GTK_DOC_V_SCAN_0 = @echo " DOC Scanning header files";
+GTK_DOC_V_INTROSPECT = $(GTK_DOC_V_INTROSPECT_@AM_V@)
+GTK_DOC_V_INTROSPECT_ = $(GTK_DOC_V_INTROSPECT_@AM_DEFAULT_V@)
+GTK_DOC_V_INTROSPECT_0 = @echo " DOC Introspecting gobjects";
+
+#### xml ####
+GTK_DOC_V_XML = $(GTK_DOC_V_XML_@AM_V@)
+GTK_DOC_V_XML_ = $(GTK_DOC_V_XML_@AM_DEFAULT_V@)
+GTK_DOC_V_XML_0 = @echo " DOC Building XML";
+
+#### html ####
+GTK_DOC_V_HTML = $(GTK_DOC_V_HTML_@AM_V@)
+GTK_DOC_V_HTML_ = $(GTK_DOC_V_HTML_@AM_DEFAULT_V@)
+GTK_DOC_V_HTML_0 = @echo " DOC Building HTML";
+GTK_DOC_V_XREF = $(GTK_DOC_V_XREF_@AM_V@)
+GTK_DOC_V_XREF_ = $(GTK_DOC_V_XREF_@AM_DEFAULT_V@)
+GTK_DOC_V_XREF_0 = @echo " DOC Fixing cross-references";
+
+#### pdf ####
+GTK_DOC_V_PDF = $(GTK_DOC_V_PDF_@AM_V@)
+GTK_DOC_V_PDF_ = $(GTK_DOC_V_PDF_@AM_DEFAULT_V@)
+GTK_DOC_V_PDF_0 = @echo " DOC Building PDF";
+all: all-am
+
+.SUFFIXES:
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/gtk-doc.make $(am__configure_deps)
+ @for dep in $?; do \
+ case '$(am__configure_deps)' in \
+ *$$dep*) \
+ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
+ && { if test -f $@; then exit 0; else break; fi; }; \
+ exit 1;; \
+ esac; \
+ done; \
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu devel-docs/libgimpconfig/Makefile'; \
+ $(am__cd) $(top_srcdir) && \
+ $(AUTOMAKE) --gnu devel-docs/libgimpconfig/Makefile
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ @case '$?' in \
+ *config.status*) \
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
+ *) \
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
+ esac;
+$(top_srcdir)/gtk-doc.make $(am__empty):
+
+$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+$(am__aclocal_m4_deps):
+version: $(top_builddir)/config.status $(srcdir)/version.in
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
+
+mostlyclean-libtool:
+ -rm -f *.lo
+
+clean-libtool:
+ -rm -rf .libs _libs
+tags TAGS:
+
+ctags CTAGS:
+
+cscope cscopelist:
+
+
+distdir: $(BUILT_SOURCES)
+ $(MAKE) $(AM_MAKEFLAGS) distdir-am
+
+distdir-am: $(DISTFILES)
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+ list='$(DISTFILES)'; \
+ dist_files=`for file in $$list; do echo $$file; done | \
+ sed -e "s|^$$srcdirstrip/||;t" \
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
+ case $$dist_files in \
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
+ sort -u` ;; \
+ esac; \
+ for file in $$dist_files; do \
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ if test -d $$d/$$file; then \
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
+ if test -d "$(distdir)/$$file"; then \
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ fi; \
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ fi; \
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ else \
+ test -f "$(distdir)/$$file" \
+ || cp -p $$d/$$file "$(distdir)/$$file" \
+ || exit 1; \
+ fi; \
+ done
+ $(MAKE) $(AM_MAKEFLAGS) \
+ top_distdir="$(top_distdir)" distdir="$(distdir)" \
+ dist-hook
+check-am: all-am
+check: check-am
+@ENABLE_GTK_DOC_FALSE@all-local:
+all-am: Makefile all-local
+installdirs:
+install: install-am
+install-exec: install-exec-am
+install-data: install-data-am
+uninstall: uninstall-am
+
+install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+
+installcheck: installcheck-am
+install-strip:
+ if test -z '$(STRIP)'; then \
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+ install; \
+ else \
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
+ fi
+mostlyclean-generic:
+
+clean-generic:
+ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
+
+distclean-generic:
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+
+maintainer-clean-generic:
+ @echo "This command is intended for maintainers to use"
+ @echo "it deletes files that may require special tools to rebuild."
+clean: clean-am
+
+clean-am: clean-generic clean-libtool clean-local mostlyclean-am
+
+distclean: distclean-am
+ -rm -f Makefile
+distclean-am: clean-am distclean-generic distclean-local
+
+dvi: dvi-am
+
+dvi-am:
+
+html: html-am
+
+html-am:
+
+info: info-am
+
+info-am:
+
+install-data-am: install-data-local
+
+install-dvi: install-dvi-am
+
+install-dvi-am:
+
+install-exec-am:
+
+install-html: install-html-am
+
+install-html-am:
+
+install-info: install-info-am
+
+install-info-am:
+
+install-man:
+
+install-pdf: install-pdf-am
+
+install-pdf-am:
+
+install-ps: install-ps-am
+
+install-ps-am:
+
+installcheck-am:
+
+maintainer-clean: maintainer-clean-am
+ -rm -f Makefile
+maintainer-clean-am: distclean-am maintainer-clean-generic \
+ maintainer-clean-local
+
+mostlyclean: mostlyclean-am
+
+mostlyclean-am: mostlyclean-generic mostlyclean-libtool
+
+pdf: pdf-am
+
+pdf-am:
+
+ps: ps-am
+
+ps-am:
+
+uninstall-am: uninstall-local
+
+.MAKE: install-am install-strip
+
+.PHONY: all all-am all-local check check-am clean clean-generic \
+ clean-libtool clean-local cscopelist-am ctags-am dist-hook \
+ distclean distclean-generic distclean-libtool distclean-local \
+ distdir dvi dvi-am html html-am info info-am install \
+ install-am install-data install-data-am install-data-local \
+ install-dvi install-dvi-am install-exec install-exec-am \
+ install-html install-html-am install-info install-info-am \
+ install-man install-pdf install-pdf-am install-ps \
+ install-ps-am install-strip installcheck installcheck-am \
+ installdirs maintainer-clean maintainer-clean-generic \
+ maintainer-clean-local mostlyclean mostlyclean-generic \
+ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
+ uninstall-am uninstall-local
+
+.PRECIOUS: Makefile
+
+
+gtkdoc-check.test: Makefile
+ $(AM_V_GEN)echo "#!/bin/sh -e" > $@; \
+ echo "$(GTKDOC_CHECK_PATH) || exit 1" >> $@; \
+ chmod +x $@
+
+all-gtk-doc: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP)
+.PHONY: all-gtk-doc
+
+@ENABLE_GTK_DOC_TRUE@all-local: all-gtk-doc
+
+docs: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP)
+
+$(REPORT_FILES): sgml-build.stamp
+
+setup-build.stamp:
+ -$(GTK_DOC_V_SETUP)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
+ files=`echo $(SETUP_FILES) $(DOC_MODULE).types`; \
+ if test "x$$files" != "x" ; then \
+ for file in $$files ; do \
+ destdir=`dirname $(abs_builddir)/$$file`; \
+ test -d "$$destdir" || mkdir -p "$$destdir"; \
+ test -f $(abs_srcdir)/$$file && \
+ cp -pf $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \
+ done; \
+ fi; \
+ fi
+ $(AM_V_at)touch setup-build.stamp
+
+scan-build.stamp: setup-build.stamp $(HFILE_GLOB) $(CFILE_GLOB)
+ $(GTK_DOC_V_SCAN)_source_dir='' ; \
+ for i in $(DOC_SOURCE_DIR) ; do \
+ _source_dir="$${_source_dir} --source-dir=$$i" ; \
+ done ; \
+ gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES)
+ $(GTK_DOC_V_INTROSPECT)if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \
+ scanobj_options=""; \
+ gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \
+ if test "$$?" = "0"; then \
+ if test "x$(V)" = "x1"; then \
+ scanobj_options="--verbose"; \
+ fi; \
+ fi; \
+ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \
+ gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \
+ else \
+ for i in $(SCANOBJ_FILES) ; do \
+ test -f $$i || touch $$i ; \
+ done \
+ fi
+ $(AM_V_at)touch scan-build.stamp
+
+$(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp
+ @true
+
+sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files) xml/gtkdocentities.ent
+ $(GTK_DOC_V_XML)_source_dir='' ; \
+ for i in $(DOC_SOURCE_DIR) ; do \
+ _source_dir="$${_source_dir} --source-dir=$$i" ; \
+ done ; \
+ gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS)
+ $(AM_V_at)touch sgml-build.stamp
+
+sgml.stamp: sgml-build.stamp
+ @true
+
+$(DOC_MAIN_SGML_FILE): sgml-build.stamp
+ @true
+
+xml/gtkdocentities.ent: Makefile
+ $(GTK_DOC_V_XML)$(MKDIR_P) $(@D) && ( \
+ echo "<!ENTITY package \"$(PACKAGE)\">"; \
+ echo "<!ENTITY package_bugreport \"$(PACKAGE_BUGREPORT)\">"; \
+ echo "<!ENTITY package_name \"$(PACKAGE_NAME)\">"; \
+ echo "<!ENTITY package_string \"$(PACKAGE_STRING)\">"; \
+ echo "<!ENTITY package_tarname \"$(PACKAGE_TARNAME)\">"; \
+ echo "<!ENTITY package_url \"$(PACKAGE_URL)\">"; \
+ echo "<!ENTITY package_version \"$(PACKAGE_VERSION)\">"; \
+ ) > $@
+
+html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
+ $(GTK_DOC_V_HTML)rm -rf html && mkdir html && \
+ mkhtml_options=""; \
+ gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \
+ if test "$$?" = "0"; then \
+ if test "x$(V)" = "x1"; then \
+ mkhtml_options="$$mkhtml_options --verbose"; \
+ fi; \
+ fi; \
+ gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \
+ if test "$$?" = "0"; then \
+ mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \
+ fi; \
+ cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
+ -@test "x$(HTML_IMAGES)" = "x" || \
+ for file in $(HTML_IMAGES) ; do \
+ test -f $(abs_srcdir)/$$file && cp $(abs_srcdir)/$$file $(abs_builddir)/html; \
+ test -f $(abs_builddir)/$$file && cp $(abs_builddir)/$$file $(abs_builddir)/html; \
+ test -f $$file && cp $$file $(abs_builddir)/html; \
+ done;
+ $(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
+ $(AM_V_at)touch html-build.stamp
+
+pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
+ $(GTK_DOC_V_PDF)rm -f $(DOC_MODULE).pdf && \
+ mkpdf_options=""; \
+ gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \
+ if test "$$?" = "0"; then \
+ if test "x$(V)" = "x1"; then \
+ mkpdf_options="$$mkpdf_options --verbose"; \
+ fi; \
+ fi; \
+ if test "x$(HTML_IMAGES)" != "x"; then \
+ for img in $(HTML_IMAGES); do \
+ part=`dirname $$img`; \
+ echo $$mkpdf_options | grep >/dev/null "\-\-imgdir=$$part "; \
+ if test $$? != 0; then \
+ mkpdf_options="$$mkpdf_options --imgdir=$$part"; \
+ fi; \
+ done; \
+ fi; \
+ gtkdoc-mkpdf --path="$(abs_srcdir)" $$mkpdf_options $(DOC_MODULE) $(DOC_MAIN_SGML_FILE) $(MKPDF_OPTIONS)
+ $(AM_V_at)touch pdf-build.stamp
+
+##############
+
+clean-local:
+ @rm -f *~ *.bak
+ @rm -rf .libs
+ @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-types" ; then \
+ rm -f $(DOC_MODULE).types; \
+ fi
+ @if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-sections" ; then \
+ rm -f $(DOC_MODULE)-sections.txt; \
+ fi
+
+distclean-local:
+ @rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \
+ $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
+ @if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
+ rm -f $(SETUP_FILES) $(DOC_MODULE).types; \
+ fi
+
+maintainer-clean-local:
+ @rm -rf xml html
+
+install-data-local:
+ @installfiles=`echo $(builddir)/html/*`; \
+ if test "$$installfiles" = '$(builddir)/html/*'; \
+ then echo 1>&2 'Nothing to install' ; \
+ else \
+ if test -n "$(DOC_MODULE_VERSION)"; then \
+ installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \
+ else \
+ installdir="$(DESTDIR)$(TARGET_DIR)"; \
+ fi; \
+ $(mkinstalldirs) $${installdir} ; \
+ for i in $$installfiles; do \
+ echo ' $(INSTALL_DATA) '$$i ; \
+ $(INSTALL_DATA) $$i $${installdir}; \
+ done; \
+ if test -n "$(DOC_MODULE_VERSION)"; then \
+ mv -f $${installdir}/$(DOC_MODULE).devhelp2 \
+ $${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp2; \
+ fi; \
+ $(GTKDOC_REBASE) --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir}; \
+ fi
+
+uninstall-local:
+ @if test -n "$(DOC_MODULE_VERSION)"; then \
+ installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \
+ else \
+ installdir="$(DESTDIR)$(TARGET_DIR)"; \
+ fi; \
+ rm -rf $${installdir}
+
+#
+# Require gtk-doc when making dist
+#
+@HAVE_GTK_DOC_TRUE@dist-check-gtkdoc: docs
+@HAVE_GTK_DOC_FALSE@dist-check-gtkdoc:
+@HAVE_GTK_DOC_FALSE@ @echo "*** gtk-doc is needed to run 'make dist'. ***"
+@HAVE_GTK_DOC_FALSE@ @echo "*** gtk-doc was not found when 'configure' ran. ***"
+@HAVE_GTK_DOC_FALSE@ @echo "*** please install gtk-doc and rerun 'configure'. ***"
+@HAVE_GTK_DOC_FALSE@ @false
+
+dist-hook: dist-check-gtkdoc all-gtk-doc dist-hook-local
+ @mkdir $(distdir)/html
+ @cp ./html/* $(distdir)/html
+ @-cp ./$(DOC_MODULE).pdf $(distdir)/
+ @-cp ./$(DOC_MODULE).types $(distdir)/
+ @-cp ./$(DOC_MODULE)-sections.txt $(distdir)/
+ @cd $(distdir) && rm -f $(DISTCLEANFILES)
+ @$(GTKDOC_REBASE) --online --relative --html-dir=$(distdir)/html
+
+.PHONY : dist-hook-local docs
+
+# Tell versions [3.59,3.63) of GNU make to not export all variables.
+# Otherwise a system limit (for SysV at least) may be exceeded.
+.NOEXPORT:
diff --git a/devel-docs/libgimpconfig/html/GimpColorConfig.html b/devel-docs/libgimpconfig/html/GimpColorConfig.html
new file mode 100644
index 0000000..60d1be9
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/GimpColorConfig.html
@@ -0,0 +1,904 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>GimpColorConfig: GIMP Config Library Reference Manual</title>
+<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
+<link rel="home" href="index.html" title="GIMP Config Library Reference Manual">
+<link rel="up" href="pt01.html" title="Part I. GIMP Config Library">
+<link rel="prev" href="libgimpconfig-GimpScanner.html" title="GimpScanner">
+<link rel="next" href="api-index-full.html" title="Index">
+<meta name="generator" content="GTK-Doc V1.33.1 (XML mode)">
+<link rel="stylesheet" href="style.css" type="text/css">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
+<td width="100%" align="left" class="shortcuts">
+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
+ <a href="#GimpColorConfig.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
+ <a href="#GimpColorConfig.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties">  <span class="dim">|</span> 
+ <a href="#GimpColorConfig.properties" class="shortcut">Properties</a></span>
+</td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
+<td><a accesskey="u" href="pt01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
+<td><a accesskey="p" href="libgimpconfig-GimpScanner.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
+<td><a accesskey="n" href="api-index-full.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
+</tr></table>
+<div class="refentry">
+<a name="GimpColorConfig"></a><div class="titlepage"></div>
+<div class="refnamediv"><table width="100%"><tr>
+<td valign="top">
+<h2><span class="refentrytitle"><a name="GimpColorConfig.top_of_page"></a>GimpColorConfig</span></h2>
+<p>GimpColorConfig — Color management settings.</p>
+</td>
+<td class="gallery_image" valign="top" align="right"></td>
+</tr></table></div>
+<div class="refsect1">
+<a name="GimpColorConfig.functions"></a><h2>Functions</h2>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="functions_proto_type">
+<col class="functions_proto_name">
+</colgroup>
+<tbody>
+<tr>
+<td class="function_type">
+<a class="link" href="GimpColorConfig.html#GimpColorManagementMode" title="enum GimpColorManagementMode"><span class="returnvalue">GimpColorManagementMode</span></a>
+</td>
+<td class="function_name">
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-mode" title="gimp_color_config_get_mode ()">gimp_color_config_get_mode</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<a class="link" href="GimpColorConfig.html#GimpColorRenderingIntent" title="enum GimpColorRenderingIntent"><span class="returnvalue">GimpColorRenderingIntent</span></a>
+</td>
+<td class="function_name">
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-display-intent" title="gimp_color_config_get_display_intent ()">gimp_color_config_get_display_intent</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-display-bpc" title="gimp_color_config_get_display_bpc ()">gimp_color_config_get_display_bpc</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-display-optimize" title="gimp_color_config_get_display_optimize ()">gimp_color_config_get_display_optimize</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-display-profile-from-gdk" title="gimp_color_config_get_display_profile_from_gdk ()">gimp_color_config_get_display_profile_from_gdk</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<a class="link" href="GimpColorConfig.html#GimpColorRenderingIntent" title="enum GimpColorRenderingIntent"><span class="returnvalue">GimpColorRenderingIntent</span></a>
+</td>
+<td class="function_name">
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-simulation-intent" title="gimp_color_config_get_simulation_intent ()">gimp_color_config_get_simulation_intent</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-simulation-bpc" title="gimp_color_config_get_simulation_bpc ()">gimp_color_config_get_simulation_bpc</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-simulation-optimize" title="gimp_color_config_get_simulation_optimize ()">gimp_color_config_get_simulation_optimize</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-simulation-gamut-check" title="gimp_color_config_get_simulation_gamut_check ()">gimp_color_config_get_simulation_gamut_check</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">GimpColorProfile</span> *
+</td>
+<td class="function_name">
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-rgb-color-profile" title="gimp_color_config_get_rgb_color_profile ()">gimp_color_config_get_rgb_color_profile</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">GimpColorProfile</span> *
+</td>
+<td class="function_name">
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-gray-color-profile" title="gimp_color_config_get_gray_color_profile ()">gimp_color_config_get_gray_color_profile</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">GimpColorProfile</span> *
+</td>
+<td class="function_name">
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-cmyk-color-profile" title="gimp_color_config_get_cmyk_color_profile ()">gimp_color_config_get_cmyk_color_profile</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">GimpColorProfile</span> *
+</td>
+<td class="function_name">
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-display-color-profile" title="gimp_color_config_get_display_color_profile ()">gimp_color_config_get_display_color_profile</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">GimpColorProfile</span> *
+</td>
+<td class="function_name">
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-simulation-color-profile" title="gimp_color_config_get_simulation_color_profile ()">gimp_color_config_get_simulation_color_profile</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect1">
+<a name="GimpColorConfig.properties"></a><h2>Properties</h2>
+<div class="informaltable"><table class="informaltable" border="0">
+<colgroup>
+<col width="150px" class="properties_type">
+<col width="300px" class="properties_name">
+<col width="200px" class="properties_flags">
+</colgroup>
+<tbody>
+<tr>
+<td class="property_type"><a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPath" title="GimpConfigPath"><span class="type">GimpConfigPath</span></a></td>
+<td class="property_name"><a class="link" href="GimpColorConfig.html#GimpColorConfig--cmyk-profile" title="The “cmyk-profile” property">cmyk-profile</a></td>
+<td class="property_flags">Read / Write / Construct</td>
+</tr>
+<tr>
+<td class="property_type">
+<span class="type">char</span> *</td>
+<td class="property_name"><a class="link" href="GimpColorConfig.html#GimpColorConfig--display-module" title="The “display-module” property">display-module</a></td>
+<td class="property_flags">Read / Write / Construct</td>
+</tr>
+<tr>
+<td class="property_type"><span class="type">gboolean</span></td>
+<td class="property_name"><a class="link" href="GimpColorConfig.html#GimpColorConfig--display-optimize" title="The “display-optimize” property">display-optimize</a></td>
+<td class="property_flags">Read / Write / Construct</td>
+</tr>
+<tr>
+<td class="property_type"><a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPath" title="GimpConfigPath"><span class="type">GimpConfigPath</span></a></td>
+<td class="property_name"><a class="link" href="GimpColorConfig.html#GimpColorConfig--display-profile" title="The “display-profile” property">display-profile</a></td>
+<td class="property_flags">Read / Write / Construct</td>
+</tr>
+<tr>
+<td class="property_type"><span class="type">gboolean</span></td>
+<td class="property_name"><a class="link" href="GimpColorConfig.html#GimpColorConfig--display-profile-from-gdk" title="The “display-profile-from-gdk” property">display-profile-from-gdk</a></td>
+<td class="property_flags">Read / Write / Construct</td>
+</tr>
+<tr>
+<td class="property_type"><a class="link" href="GimpColorConfig.html#GimpColorRenderingIntent" title="enum GimpColorRenderingIntent"><span class="type">GimpColorRenderingIntent</span></a></td>
+<td class="property_name"><a class="link" href="GimpColorConfig.html#GimpColorConfig--display-rendering-intent" title="The “display-rendering-intent” property">display-rendering-intent</a></td>
+<td class="property_flags">Read / Write / Construct</td>
+</tr>
+<tr>
+<td class="property_type"><span class="type">gboolean</span></td>
+<td class="property_name"><a class="link" href="GimpColorConfig.html#GimpColorConfig--display-use-black-point-compensation" title="The “display-use-black-point-compensation” property">display-use-black-point-compensation</a></td>
+<td class="property_flags">Read / Write / Construct</td>
+</tr>
+<tr>
+<td class="property_type"><a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPath" title="GimpConfigPath"><span class="type">GimpConfigPath</span></a></td>
+<td class="property_name"><a class="link" href="GimpColorConfig.html#GimpColorConfig--gray-profile" title="The “gray-profile” property">gray-profile</a></td>
+<td class="property_flags">Read / Write / Construct</td>
+</tr>
+<tr>
+<td class="property_type"><a class="link" href="GimpColorConfig.html#GimpColorManagementMode" title="enum GimpColorManagementMode"><span class="type">GimpColorManagementMode</span></a></td>
+<td class="property_name"><a class="link" href="GimpColorConfig.html#GimpColorConfig--mode" title="The “mode” property">mode</a></td>
+<td class="property_flags">Read / Write / Construct</td>
+</tr>
+<tr>
+<td class="property_type">
+<a href="../html/libgimpcolor-GimpRGB.html#GimpRGB"><span class="type">GimpRGB</span></a> *</td>
+<td class="property_name"><a class="link" href="GimpColorConfig.html#GimpColorConfig--out-of-gamut-color" title="The “out-of-gamut-color” property">out-of-gamut-color</a></td>
+<td class="property_flags">Read / Write / Construct</td>
+</tr>
+<tr>
+<td class="property_type"><a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPath" title="GimpConfigPath"><span class="type">GimpConfigPath</span></a></td>
+<td class="property_name"><a class="link" href="GimpColorConfig.html#GimpColorConfig--printer-profile" title="The “printer-profile” property">printer-profile</a></td>
+<td class="property_flags">Read / Write / Construct</td>
+</tr>
+<tr>
+<td class="property_type"><a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPath" title="GimpConfigPath"><span class="type">GimpConfigPath</span></a></td>
+<td class="property_name"><a class="link" href="GimpColorConfig.html#GimpColorConfig--rgb-profile" title="The “rgb-profile” property">rgb-profile</a></td>
+<td class="property_flags">Read / Write / Construct</td>
+</tr>
+<tr>
+<td class="property_type"><span class="type">gboolean</span></td>
+<td class="property_name"><a class="link" href="GimpColorConfig.html#GimpColorConfig--show-hsv" title="The “show-hsv” property">show-hsv</a></td>
+<td class="property_flags">Read / Write / Construct</td>
+</tr>
+<tr>
+<td class="property_type"><span class="type">gboolean</span></td>
+<td class="property_name"><a class="link" href="GimpColorConfig.html#GimpColorConfig--show-rgb-u8" title="The “show-rgb-u8” property">show-rgb-u8</a></td>
+<td class="property_flags">Read / Write / Construct</td>
+</tr>
+<tr>
+<td class="property_type"><span class="type">gboolean</span></td>
+<td class="property_name"><a class="link" href="GimpColorConfig.html#GimpColorConfig--simulation-gamut-check" title="The “simulation-gamut-check” property">simulation-gamut-check</a></td>
+<td class="property_flags">Read / Write / Construct</td>
+</tr>
+<tr>
+<td class="property_type"><span class="type">gboolean</span></td>
+<td class="property_name"><a class="link" href="GimpColorConfig.html#GimpColorConfig--simulation-optimize" title="The “simulation-optimize” property">simulation-optimize</a></td>
+<td class="property_flags">Read / Write / Construct</td>
+</tr>
+<tr>
+<td class="property_type"><a class="link" href="GimpColorConfig.html#GimpColorRenderingIntent" title="enum GimpColorRenderingIntent"><span class="type">GimpColorRenderingIntent</span></a></td>
+<td class="property_name"><a class="link" href="GimpColorConfig.html#GimpColorConfig--simulation-rendering-intent" title="The “simulation-rendering-intent” property">simulation-rendering-intent</a></td>
+<td class="property_flags">Read / Write / Construct</td>
+</tr>
+<tr>
+<td class="property_type"><span class="type">gboolean</span></td>
+<td class="property_name"><a class="link" href="GimpColorConfig.html#GimpColorConfig--simulation-use-black-point-compensation" title="The “simulation-use-black-point-compensation” property">simulation-use-black-point-compensation</a></td>
+<td class="property_flags">Read / Write / Construct</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect1">
+<a name="GimpColorConfig.other"></a><h2>Types and Values</h2>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="other_proto_type">
+<col class="other_proto_name">
+</colgroup>
+<tbody>
+<tr>
+<td class="datatype_keyword">enum</td>
+<td class="function_name"><a class="link" href="GimpColorConfig.html#GimpColorManagementMode" title="enum GimpColorManagementMode">GimpColorManagementMode</a></td>
+</tr>
+<tr>
+<td class="datatype_keyword">enum</td>
+<td class="function_name"><a class="link" href="GimpColorConfig.html#GimpColorRenderingIntent" title="enum GimpColorRenderingIntent">GimpColorRenderingIntent</a></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect1">
+<a name="GimpColorConfig.object-hierarchy"></a><h2>Object Hierarchy</h2>
+<pre class="screen"> GObject
+ <span class="lineart">╰──</span> GimpColorConfig
+</pre>
+</div>
+<div class="refsect1">
+<a name="GimpColorConfig.description"></a><h2>Description</h2>
+<p>Color management settings.</p>
+</div>
+<div class="refsect1">
+<a name="GimpColorConfig.functions_details"></a><h2>Functions</h2>
+<div class="refsect2">
+<a name="gimp-color-config-get-mode"></a><h3>gimp_color_config_get_mode ()</h3>
+<pre class="programlisting"><a class="link" href="GimpColorConfig.html#GimpColorManagementMode" title="enum GimpColorManagementMode"><span class="returnvalue">GimpColorManagementMode</span></a>
+gimp_color_config_get_mode (<em class="parameter"><code><a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a> *config</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-color-config-get-mode.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-color-config-get-display-intent"></a><h3>gimp_color_config_get_display_intent ()</h3>
+<pre class="programlisting"><a class="link" href="GimpColorConfig.html#GimpColorRenderingIntent" title="enum GimpColorRenderingIntent"><span class="returnvalue">GimpColorRenderingIntent</span></a>
+gimp_color_config_get_display_intent (<em class="parameter"><code><a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a> *config</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-color-config-get-display-intent.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-color-config-get-display-bpc"></a><h3>gimp_color_config_get_display_bpc ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_color_config_get_display_bpc (<em class="parameter"><code><a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a> *config</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-color-config-get-display-bpc.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-color-config-get-display-optimize"></a><h3>gimp_color_config_get_display_optimize ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_color_config_get_display_optimize
+ (<em class="parameter"><code><a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a> *config</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-color-config-get-display-optimize.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-color-config-get-display-profile-from-gdk"></a><h3>gimp_color_config_get_display_profile_from_gdk ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_color_config_get_display_profile_from_gdk
+ (<em class="parameter"><code><a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a> *config</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-color-config-get-display-profile-from-gdk.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-color-config-get-simulation-intent"></a><h3>gimp_color_config_get_simulation_intent ()</h3>
+<pre class="programlisting"><a class="link" href="GimpColorConfig.html#GimpColorRenderingIntent" title="enum GimpColorRenderingIntent"><span class="returnvalue">GimpColorRenderingIntent</span></a>
+gimp_color_config_get_simulation_intent
+ (<em class="parameter"><code><a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a> *config</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-color-config-get-simulation-intent.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-color-config-get-simulation-bpc"></a><h3>gimp_color_config_get_simulation_bpc ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_color_config_get_simulation_bpc (<em class="parameter"><code><a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a> *config</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-color-config-get-simulation-bpc.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-color-config-get-simulation-optimize"></a><h3>gimp_color_config_get_simulation_optimize ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_color_config_get_simulation_optimize
+ (<em class="parameter"><code><a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a> *config</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-color-config-get-simulation-optimize.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-color-config-get-simulation-gamut-check"></a><h3>gimp_color_config_get_simulation_gamut_check ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_color_config_get_simulation_gamut_check
+ (<em class="parameter"><code><a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a> *config</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-color-config-get-simulation-gamut-check.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-color-config-get-rgb-color-profile"></a><h3>gimp_color_config_get_rgb_color_profile ()</h3>
+<pre class="programlisting"><span class="returnvalue">GimpColorProfile</span> *
+gimp_color_config_get_rgb_color_profile
+ (<em class="parameter"><code><a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a> *config</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-color-config-get-rgb-color-profile.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for a <span class="type">GError</span></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-color-config-get-gray-color-profile"></a><h3>gimp_color_config_get_gray_color_profile ()</h3>
+<pre class="programlisting"><span class="returnvalue">GimpColorProfile</span> *
+gimp_color_config_get_gray_color_profile
+ (<em class="parameter"><code><a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a> *config</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-color-config-get-gray-color-profile.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for a <span class="type">GError</span></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-color-config-get-cmyk-color-profile"></a><h3>gimp_color_config_get_cmyk_color_profile ()</h3>
+<pre class="programlisting"><span class="returnvalue">GimpColorProfile</span> *
+gimp_color_config_get_cmyk_color_profile
+ (<em class="parameter"><code><a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a> *config</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-color-config-get-cmyk-color-profile.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for a <span class="type">GError</span></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-color-config-get-display-color-profile"></a><h3>gimp_color_config_get_display_color_profile ()</h3>
+<pre class="programlisting"><span class="returnvalue">GimpColorProfile</span> *
+gimp_color_config_get_display_color_profile
+ (<em class="parameter"><code><a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a> *config</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-color-config-get-display-color-profile.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for a <span class="type">GError</span></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-color-config-get-simulation-color-profile"></a><h3>gimp_color_config_get_simulation_color_profile ()</h3>
+<pre class="programlisting"><span class="returnvalue">GimpColorProfile</span> *
+gimp_color_config_get_simulation_color_profile
+ (<em class="parameter"><code><a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a> *config</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-color-config-get-simulation-color-profile.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="GimpColorConfig.html" title="GimpColorConfig"><span class="type">GimpColorConfig</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for a <span class="type">GError</span></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+</div>
+<div class="refsect1">
+<a name="GimpColorConfig.other_details"></a><h2>Types and Values</h2>
+<div class="refsect2">
+<a name="GimpColorManagementMode"></a><h3>enum GimpColorManagementMode</h3>
+<p>Modes of color management.</p>
+<div class="refsect3">
+<a name="GimpColorManagementMode.members"></a><h4>Members</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="300px" class="enum_members_name">
+<col class="enum_members_description">
+<col width="200px" class="enum_members_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="enum_member_name"><p><a name="GIMP-COLOR-MANAGEMENT-OFF:CAPS"></a>GIMP_COLOR_MANAGEMENT_OFF</p></td>
+<td class="enum_member_description">
+<p>Color management is off</p>
+</td>
+<td class="enum_member_annotations"> </td>
+</tr>
+<tr>
+<td class="enum_member_name"><p><a name="GIMP-COLOR-MANAGEMENT-DISPLAY:CAPS"></a>GIMP_COLOR_MANAGEMENT_DISPLAY</p></td>
+<td class="enum_member_description">
+<p>Color managed display</p>
+</td>
+<td class="enum_member_annotations"> </td>
+</tr>
+<tr>
+<td class="enum_member_name"><p><a name="GIMP-COLOR-MANAGEMENT-SOFTPROOF:CAPS"></a>GIMP_COLOR_MANAGEMENT_SOFTPROOF</p></td>
+<td class="enum_member_description">
+<p>Soft-proofing</p>
+</td>
+<td class="enum_member_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpColorRenderingIntent"></a><h3>enum GimpColorRenderingIntent</h3>
+<p>Intents for color management.</p>
+<div class="refsect3">
+<a name="GimpColorRenderingIntent.members"></a><h4>Members</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="300px" class="enum_members_name">
+<col class="enum_members_description">
+<col width="200px" class="enum_members_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="enum_member_name"><p><a name="GIMP-COLOR-RENDERING-INTENT-PERCEPTUAL:CAPS"></a>GIMP_COLOR_RENDERING_INTENT_PERCEPTUAL</p></td>
+<td class="enum_member_description">
+<p>Preceptual</p>
+</td>
+<td class="enum_member_annotations"> </td>
+</tr>
+<tr>
+<td class="enum_member_name"><p><a name="GIMP-COLOR-RENDERING-INTENT-RELATIVE-COLORIMETRIC:CAPS"></a>GIMP_COLOR_RENDERING_INTENT_RELATIVE_COLORIMETRIC</p></td>
+<td class="enum_member_description">
+<p>Relative colorimetric</p>
+</td>
+<td class="enum_member_annotations"> </td>
+</tr>
+<tr>
+<td class="enum_member_name"><p><a name="GIMP-COLOR-RENDERING-INTENT-SATURATION:CAPS"></a>GIMP_COLOR_RENDERING_INTENT_SATURATION</p></td>
+<td class="enum_member_description">
+<p>Saturation</p>
+</td>
+<td class="enum_member_annotations"> </td>
+</tr>
+<tr>
+<td class="enum_member_name"><p><a name="GIMP-COLOR-RENDERING-INTENT-ABSOLUTE-COLORIMETRIC:CAPS"></a>GIMP_COLOR_RENDERING_INTENT_ABSOLUTE_COLORIMETRIC</p></td>
+<td class="enum_member_description">
+<p>Absolute colorimetric</p>
+</td>
+<td class="enum_member_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+</div>
+</div>
+<div class="refsect1">
+<a name="GimpColorConfig.property-details"></a><h2>Property Details</h2>
+<div class="refsect2">
+<a name="GimpColorConfig--cmyk-profile"></a><h3>The <code class="literal">“cmyk-profile”</code> property</h3>
+<pre class="programlisting"> “cmyk-profile” <a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPath" title="GimpConfigPath"><span class="type">GimpConfigPath</span></a></pre>
+<p>The CMYK color profile used to convert between RGB and CMYK.</p>
+<p>Owner: GimpColorConfig</p>
+<p>Flags: Read / Write / Construct</p>
+<p>Default value: NULL</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpColorConfig--display-module"></a><h3>The <code class="literal">“display-module”</code> property</h3>
+<pre class="programlisting"> “display-module” <span class="type">char</span> *</pre>
+<p>This property is deprecated and its value ignored.</p>
+<p>Owner: GimpColorConfig</p>
+<p>Flags: Read / Write / Construct</p>
+<p>Default value: "CdisplayLcms"</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpColorConfig--display-optimize"></a><h3>The <code class="literal">“display-optimize”</code> property</h3>
+<pre class="programlisting"> “display-optimize” <span class="type">gboolean</span></pre>
+<p>When disabled, image display might be of better quality at the cost of speed.</p>
+<p>Owner: GimpColorConfig</p>
+<p>Flags: Read / Write / Construct</p>
+<p>Default value: TRUE</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpColorConfig--display-profile"></a><h3>The <code class="literal">“display-profile”</code> property</h3>
+<pre class="programlisting"> “display-profile” <a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPath" title="GimpConfigPath"><span class="type">GimpConfigPath</span></a></pre>
+<p>The color profile of your (primary) monitor.</p>
+<p>Owner: GimpColorConfig</p>
+<p>Flags: Read / Write / Construct</p>
+<p>Default value: NULL</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpColorConfig--display-profile-from-gdk"></a><h3>The <code class="literal">“display-profile-from-gdk”</code> property</h3>
+<pre class="programlisting"> “display-profile-from-gdk” <span class="type">gboolean</span></pre>
+<p>When enabled, GIMP will try to use the display color profile from the windowing system. The configured monitor profile is then only used as a fallback.</p>
+<p>Owner: GimpColorConfig</p>
+<p>Flags: Read / Write / Construct</p>
+<p>Default value: FALSE</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpColorConfig--display-rendering-intent"></a><h3>The <code class="literal">“display-rendering-intent”</code> property</h3>
+<pre class="programlisting"> “display-rendering-intent” <a class="link" href="GimpColorConfig.html#GimpColorRenderingIntent" title="enum GimpColorRenderingIntent"><span class="type">GimpColorRenderingIntent</span></a></pre>
+<p>How colors are converted from your image's color space to your display device. Relative colorimetric is usually the best choice. Unless you use a LUT monitor profile (most monitor profiles are matrix), choosing perceptual intent really gives you relative colorimetric.</p>
+<p>Owner: GimpColorConfig</p>
+<p>Flags: Read / Write / Construct</p>
+<p>Default value: GIMP_COLOR_RENDERING_INTENT_RELATIVE_COLORIMETRIC</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpColorConfig--display-use-black-point-compensation"></a><h3>The <code class="literal">“display-use-black-point-compensation”</code> property</h3>
+<pre class="programlisting"> “display-use-black-point-compensation” <span class="type">gboolean</span></pre>
+<p>Do use black point compensation (unless you know you have a reason not to).</p>
+<p>Owner: GimpColorConfig</p>
+<p>Flags: Read / Write / Construct</p>
+<p>Default value: TRUE</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpColorConfig--gray-profile"></a><h3>The <code class="literal">“gray-profile”</code> property</h3>
+<pre class="programlisting"> “gray-profile” <a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPath" title="GimpConfigPath"><span class="type">GimpConfigPath</span></a></pre>
+<p>The preferred grayscale working space color profile. It will be offered next to the built-in grayscale profile when a color profile can be chosen.</p>
+<p>Owner: GimpColorConfig</p>
+<p>Flags: Read / Write / Construct</p>
+<p>Default value: NULL</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpColorConfig--mode"></a><h3>The <code class="literal">“mode”</code> property</h3>
+<pre class="programlisting"> “mode” <a class="link" href="GimpColorConfig.html#GimpColorManagementMode" title="enum GimpColorManagementMode"><span class="type">GimpColorManagementMode</span></a></pre>
+<p>How images are displayed on screen.</p>
+<p>Owner: GimpColorConfig</p>
+<p>Flags: Read / Write / Construct</p>
+<p>Default value: GIMP_COLOR_MANAGEMENT_DISPLAY</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpColorConfig--out-of-gamut-color"></a><h3>The <code class="literal">“out-of-gamut-color”</code> property</h3>
+<pre class="programlisting"> “out-of-gamut-color” <a href="../html/libgimpcolor-GimpRGB.html#GimpRGB"><span class="type">GimpRGB</span></a> *</pre>
+<p>The color to use for marking colors which are out of gamut.</p>
+<p>Owner: GimpColorConfig</p>
+<p>Flags: Read / Write / Construct</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpColorConfig--printer-profile"></a><h3>The <code class="literal">“printer-profile”</code> property</h3>
+<pre class="programlisting"> “printer-profile” <a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPath" title="GimpConfigPath"><span class="type">GimpConfigPath</span></a></pre>
+<p>The color profile to use for soft-proofing from your image's color space to some other color space, including soft-proofing to a printer or other output device profile. .</p>
+<p>Owner: GimpColorConfig</p>
+<p>Flags: Read / Write / Construct</p>
+<p>Default value: NULL</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpColorConfig--rgb-profile"></a><h3>The <code class="literal">“rgb-profile”</code> property</h3>
+<pre class="programlisting"> “rgb-profile” <a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPath" title="GimpConfigPath"><span class="type">GimpConfigPath</span></a></pre>
+<p>The preferred RGB working space color profile. It will be offered next to the built-in RGB profile when a color profile can be chosen.</p>
+<p>Owner: GimpColorConfig</p>
+<p>Flags: Read / Write / Construct</p>
+<p>Default value: NULL</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpColorConfig--show-hsv"></a><h3>The <code class="literal">“show-hsv”</code> property</h3>
+<pre class="programlisting"> “show-hsv” <span class="type">gboolean</span></pre>
+<p>Show HSV instead of LCH.</p>
+<p>Owner: GimpColorConfig</p>
+<p>Flags: Read / Write / Construct</p>
+<p>Default value: FALSE</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpColorConfig--show-rgb-u8"></a><h3>The <code class="literal">“show-rgb-u8”</code> property</h3>
+<pre class="programlisting"> “show-rgb-u8” <span class="type">gboolean</span></pre>
+<p>Show RGB 0..255 scales.</p>
+<p>Owner: GimpColorConfig</p>
+<p>Flags: Read / Write / Construct</p>
+<p>Default value: FALSE</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpColorConfig--simulation-gamut-check"></a><h3>The <code class="literal">“simulation-gamut-check”</code> property</h3>
+<pre class="programlisting"> “simulation-gamut-check” <span class="type">gboolean</span></pre>
+<p>When enabled, the soft-proofing will mark colors which can not be represented in the target color space.</p>
+<p>Owner: GimpColorConfig</p>
+<p>Flags: Read / Write / Construct</p>
+<p>Default value: FALSE</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpColorConfig--simulation-optimize"></a><h3>The <code class="literal">“simulation-optimize”</code> property</h3>
+<pre class="programlisting"> “simulation-optimize” <span class="type">gboolean</span></pre>
+<p>When disabled, soft-proofing might be of better quality at the cost of speed.</p>
+<p>Owner: GimpColorConfig</p>
+<p>Flags: Read / Write / Construct</p>
+<p>Default value: TRUE</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpColorConfig--simulation-rendering-intent"></a><h3>The <code class="literal">“simulation-rendering-intent”</code> property</h3>
+<pre class="programlisting"> “simulation-rendering-intent” <a class="link" href="GimpColorConfig.html#GimpColorRenderingIntent" title="enum GimpColorRenderingIntent"><span class="type">GimpColorRenderingIntent</span></a></pre>
+<p>How colors are converted from your image's color space to the output simulation device (usually your monitor). Try them all and choose what looks the best. .</p>
+<p>Owner: GimpColorConfig</p>
+<p>Flags: Read / Write / Construct</p>
+<p>Default value: GIMP_COLOR_RENDERING_INTENT_PERCEPTUAL</p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpColorConfig--simulation-use-black-point-compensation"></a><h3>The <code class="literal">“simulation-use-black-point-compensation”</code> property</h3>
+<pre class="programlisting"> “simulation-use-black-point-compensation” <span class="type">gboolean</span></pre>
+<p>Try with and without black point compensation and choose what looks best. .</p>
+<p>Owner: GimpColorConfig</p>
+<p>Flags: Read / Write / Construct</p>
+<p>Default value: FALSE</p>
+</div>
+</div>
+</div>
+<div class="footer">
+<hr>Generated by GTK-Doc V1.33.1</div>
+</body>
+</html> \ No newline at end of file
diff --git a/devel-docs/libgimpconfig/html/api-index-full.html b/devel-docs/libgimpconfig/html/api-index-full.html
new file mode 100644
index 0000000..59931cf
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/api-index-full.html
@@ -0,0 +1,654 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>Index: GIMP Config Library Reference Manual</title>
+<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
+<link rel="home" href="index.html" title="GIMP Config Library Reference Manual">
+<link rel="up" href="index.html" title="GIMP Config Library Reference Manual">
+<link rel="prev" href="GimpColorConfig.html" title="GimpColorConfig">
+<link rel="next" href="api-index-2-4.html" title="Index of new symbols in GIMP 2.4">
+<meta name="generator" content="GTK-Doc V1.33.1 (XML mode)">
+<link rel="stylesheet" href="style.css" type="text/css">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
+<td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxC">C</a>
+  <span class="dim">|</span> 
+ <a class="shortcut" href="#idxF">F</a>
+  <span class="dim">|</span> 
+ <a class="shortcut" href="#idxP">P</a>
+  <span class="dim">|</span> 
+ <a class="shortcut" href="#idxS">S</a>
+  <span class="dim">|</span> 
+ <a class="shortcut" href="#idxV">V</a></span></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
+<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
+<td><a accesskey="p" href="GimpColorConfig.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
+<td><a accesskey="n" href="api-index-2-4.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
+</tr></table>
+<div class="index">
+<div class="titlepage"><div><div><h1 class="title">
+<a name="api-index-full"></a>Index</h1></div></div></div>
+<a name="idx"></a><a name="idxC"></a><h3 class="title">C</h3>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorConfig--cmyk-profile" title="The “cmyk-profile” property">GimpColorConfig:cmyk-profile</a>, object property in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorConfig--display-module" title="The “display-module” property">GimpColorConfig:display-module</a>, object property in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorConfig--display-optimize" title="The “display-optimize” property">GimpColorConfig:display-optimize</a>, object property in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorConfig--display-profile" title="The “display-profile” property">GimpColorConfig:display-profile</a>, object property in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorConfig--display-profile-from-gdk" title="The “display-profile-from-gdk” property">GimpColorConfig:display-profile-from-gdk</a>, object property in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorConfig--display-rendering-intent" title="The “display-rendering-intent” property">GimpColorConfig:display-rendering-intent</a>, object property in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorConfig--display-use-black-point-compensation" title="The “display-use-black-point-compensation” property">GimpColorConfig:display-use-black-point-compensation</a>, object property in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorConfig--gray-profile" title="The “gray-profile” property">GimpColorConfig:gray-profile</a>, object property in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorConfig--mode" title="The “mode” property">GimpColorConfig:mode</a>, object property in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorConfig--out-of-gamut-color" title="The “out-of-gamut-color” property">GimpColorConfig:out-of-gamut-color</a>, object property in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorConfig--printer-profile" title="The “printer-profile” property">GimpColorConfig:printer-profile</a>, object property in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorConfig--rgb-profile" title="The “rgb-profile” property">GimpColorConfig:rgb-profile</a>, object property in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorConfig--show-hsv" title="The “show-hsv” property">GimpColorConfig:show-hsv</a>, object property in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorConfig--show-rgb-u8" title="The “show-rgb-u8” property">GimpColorConfig:show-rgb-u8</a>, object property in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorConfig--simulation-gamut-check" title="The “simulation-gamut-check” property">GimpColorConfig:simulation-gamut-check</a>, object property in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorConfig--simulation-optimize" title="The “simulation-optimize” property">GimpColorConfig:simulation-optimize</a>, object property in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorConfig--simulation-rendering-intent" title="The “simulation-rendering-intent” property">GimpColorConfig:simulation-rendering-intent</a>, object property in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorConfig--simulation-use-black-point-compensation" title="The “simulation-use-black-point-compensation” property">GimpColorConfig:simulation-use-black-point-compensation</a>, object property in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorManagementMode" title="enum GimpColorManagementMode">GimpColorManagementMode</a>, enum in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#GimpColorRenderingIntent" title="enum GimpColorRenderingIntent">GimpColorRenderingIntent</a>, enum in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-cmyk-color-profile" title="gimp_color_config_get_cmyk_color_profile ()">gimp_color_config_get_cmyk_color_profile</a>, function in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-display-bpc" title="gimp_color_config_get_display_bpc ()">gimp_color_config_get_display_bpc</a>, function in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-display-color-profile" title="gimp_color_config_get_display_color_profile ()">gimp_color_config_get_display_color_profile</a>, function in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-display-intent" title="gimp_color_config_get_display_intent ()">gimp_color_config_get_display_intent</a>, function in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-display-optimize" title="gimp_color_config_get_display_optimize ()">gimp_color_config_get_display_optimize</a>, function in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-display-profile-from-gdk" title="gimp_color_config_get_display_profile_from_gdk ()">gimp_color_config_get_display_profile_from_gdk</a>, function in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-gray-color-profile" title="gimp_color_config_get_gray_color_profile ()">gimp_color_config_get_gray_color_profile</a>, function in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-mode" title="gimp_color_config_get_mode ()">gimp_color_config_get_mode</a>, function in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-rgb-color-profile" title="gimp_color_config_get_rgb_color_profile ()">gimp_color_config_get_rgb_color_profile</a>, function in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-simulation-bpc" title="gimp_color_config_get_simulation_bpc ()">gimp_color_config_get_simulation_bpc</a>, function in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-simulation-color-profile" title="gimp_color_config_get_simulation_color_profile ()">gimp_color_config_get_simulation_color_profile</a>, function in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-simulation-gamut-check" title="gimp_color_config_get_simulation_gamut_check ()">gimp_color_config_get_simulation_gamut_check</a>, function in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-simulation-intent" title="gimp_color_config_get_simulation_intent ()">gimp_color_config_get_simulation_intent</a>, function in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="GimpColorConfig.html#gimp-color-config-get-simulation-optimize" title="gimp_color_config_get_simulation_optimize ()">gimp_color_config_get_simulation_optimize</a>, function in <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig">GimpConfig</a>, struct in <a class="link" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">GimpConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigError.html#GimpConfigError" title="enum GimpConfigError">GimpConfigError</a>, enum in <a class="link" href="libgimpconfig-GimpConfigError.html" title="GimpConfig-error">GimpConfigError</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface-struct" title="struct GimpConfigInterface">GimpConfigInterface</a>, struct in <a class="link" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">GimpConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPath" title="GimpConfigPath">GimpConfigPath</a>, typedef in <a class="link" href="libgimpconfig-GimpConfig-path.html" title="GimpConfig-path">GimpConfig-path</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPathType" title="enum GimpConfigPathType">GimpConfigPathType</a>, enum in <a class="link" href="libgimpconfig-GimpConfig-path.html" title="GimpConfig-path">GimpConfig-path</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter">GimpConfigWriter</a>, struct in <a class="link" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">GimpConfigWriter</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-build-data-path" title="gimp_config_build_data_path ()">gimp_config_build_data_path</a>, function in <a class="link" href="libgimpconfig-GimpConfig-path.html" title="GimpConfig-path">GimpConfig-path</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-build-plug-in-path" title="gimp_config_build_plug_in_path ()">gimp_config_build_plug_in_path</a>, function in <a class="link" href="libgimpconfig-GimpConfig-path.html" title="GimpConfig-path">GimpConfig-path</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-build-writable-path" title="gimp_config_build_writable_path ()">gimp_config_build_writable_path</a>, function in <a class="link" href="libgimpconfig-GimpConfig-path.html" title="GimpConfig-path">GimpConfig-path</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-copy" title="gimp_config_copy ()">gimp_config_copy</a>, function in <a class="link" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">GimpConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-deserialize" title="gimp_config_deserialize ()">gimp_config_deserialize</a>, function in <a class="link" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">GimpConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-deserialize-file" title="gimp_config_deserialize_file ()">gimp_config_deserialize_file</a>, function in <a class="link" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">GimpConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-deserialize-gfile" title="gimp_config_deserialize_gfile ()">gimp_config_deserialize_gfile</a>, function in <a class="link" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">GimpConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-deserialize.html#gimp-config-deserialize-properties" title="gimp_config_deserialize_properties ()">gimp_config_deserialize_properties</a>, function in <a class="link" href="libgimpconfig-GimpConfig-deserialize.html" title="GimpConfig-deserialize">GimpConfig-deserialize</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-deserialize.html#gimp-config-deserialize-property" title="gimp_config_deserialize_property ()">gimp_config_deserialize_property</a>, function in <a class="link" href="libgimpconfig-GimpConfig-deserialize.html" title="GimpConfig-deserialize">GimpConfig-deserialize</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-deserialize-return" title="gimp_config_deserialize_return ()">gimp_config_deserialize_return</a>, function in <a class="link" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">GimpConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-deserialize-stream" title="gimp_config_deserialize_stream ()">gimp_config_deserialize_stream</a>, function in <a class="link" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">GimpConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-deserialize-string" title="gimp_config_deserialize_string ()">gimp_config_deserialize_string</a>, function in <a class="link" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">GimpConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-utils.html#gimp-config-diff" title="gimp_config_diff ()">gimp_config_diff</a>, function in <a class="link" href="libgimpconfig-GimpConfig-utils.html" title="GimpConfig-utils">GimpConfig-utils</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-duplicate" title="gimp_config_duplicate ()">gimp_config_duplicate</a>, function in <a class="link" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">GimpConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigError.html#GIMP-CONFIG-ERROR:CAPS" title="GIMP_CONFIG_ERROR">GIMP_CONFIG_ERROR</a>, macro in <a class="link" href="libgimpconfig-GimpConfigError.html" title="GimpConfig-error">GimpConfigError</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigError.html#gimp-config-error-quark" title="gimp_config_error_quark ()">gimp_config_error_quark</a>, function in <a class="link" href="libgimpconfig-GimpConfigError.html" title="GimpConfig-error">GimpConfigError</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-BOOLEAN:CAPS" title="GIMP_CONFIG_INSTALL_PROP_BOOLEAN()">GIMP_CONFIG_INSTALL_PROP_BOOLEAN</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-BOXED:CAPS" title="GIMP_CONFIG_INSTALL_PROP_BOXED()">GIMP_CONFIG_INSTALL_PROP_BOXED</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-DOUBLE:CAPS" title="GIMP_CONFIG_INSTALL_PROP_DOUBLE()">GIMP_CONFIG_INSTALL_PROP_DOUBLE</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-ENUM:CAPS" title="GIMP_CONFIG_INSTALL_PROP_ENUM()">GIMP_CONFIG_INSTALL_PROP_ENUM</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-INT:CAPS" title="GIMP_CONFIG_INSTALL_PROP_INT()">GIMP_CONFIG_INSTALL_PROP_INT</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-MATRIX2:CAPS" title="GIMP_CONFIG_INSTALL_PROP_MATRIX2()">GIMP_CONFIG_INSTALL_PROP_MATRIX2</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-MEMSIZE:CAPS" title="GIMP_CONFIG_INSTALL_PROP_MEMSIZE()">GIMP_CONFIG_INSTALL_PROP_MEMSIZE</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-OBJECT:CAPS" title="GIMP_CONFIG_INSTALL_PROP_OBJECT()">GIMP_CONFIG_INSTALL_PROP_OBJECT</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-PATH:CAPS" title="GIMP_CONFIG_INSTALL_PROP_PATH()">GIMP_CONFIG_INSTALL_PROP_PATH</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-POINTER:CAPS" title="GIMP_CONFIG_INSTALL_PROP_POINTER()">GIMP_CONFIG_INSTALL_PROP_POINTER</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-RESOLUTION:CAPS" title="GIMP_CONFIG_INSTALL_PROP_RESOLUTION()">GIMP_CONFIG_INSTALL_PROP_RESOLUTION</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-RGB:CAPS" title="GIMP_CONFIG_INSTALL_PROP_RGB()">GIMP_CONFIG_INSTALL_PROP_RGB</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-STRING:CAPS" title="GIMP_CONFIG_INSTALL_PROP_STRING()">GIMP_CONFIG_INSTALL_PROP_STRING</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-UINT:CAPS" title="GIMP_CONFIG_INSTALL_PROP_UINT()">GIMP_CONFIG_INSTALL_PROP_UINT</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-UNIT:CAPS" title="GIMP_CONFIG_INSTALL_PROP_UNIT()">GIMP_CONFIG_INSTALL_PROP_UNIT</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-is-equal-to" title="gimp_config_is_equal_to ()">gimp_config_is_equal_to</a>, function in <a class="link" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">GimpConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-AGGREGATE:CAPS" title="GIMP_CONFIG_PARAM_AGGREGATE">GIMP_CONFIG_PARAM_AGGREGATE</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-CONFIRM:CAPS" title="GIMP_CONFIG_PARAM_CONFIRM">GIMP_CONFIG_PARAM_CONFIRM</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-DEFAULTS:CAPS" title="GIMP_CONFIG_PARAM_DEFAULTS">GIMP_CONFIG_PARAM_DEFAULTS</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-FLAGS:CAPS" title="GIMP_CONFIG_PARAM_FLAGS">GIMP_CONFIG_PARAM_FLAGS</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-IGNORE:CAPS" title="GIMP_CONFIG_PARAM_IGNORE">GIMP_CONFIG_PARAM_IGNORE</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-RESTART:CAPS" title="GIMP_CONFIG_PARAM_RESTART">GIMP_CONFIG_PARAM_RESTART</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-SERIALIZE:CAPS" title="GIMP_CONFIG_PARAM_SERIALIZE">GIMP_CONFIG_PARAM_SERIALIZE</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-path-expand" title="gimp_config_path_expand ()">gimp_config_path_expand</a>, function in <a class="link" href="libgimpconfig-GimpConfig-path.html" title="GimpConfig-path">GimpConfig-path</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-path-expand-to-files" title="gimp_config_path_expand_to_files ()">gimp_config_path_expand_to_files</a>, function in <a class="link" href="libgimpconfig-GimpConfig-path.html" title="GimpConfig-path">GimpConfig-path</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-path-unexpand" title="gimp_config_path_unexpand ()">gimp_config_path_unexpand</a>, function in <a class="link" href="libgimpconfig-GimpConfig-path.html" title="GimpConfig-path">GimpConfig-path</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-BOOLEAN:CAPS" title="GIMP_CONFIG_PROP_BOOLEAN()">GIMP_CONFIG_PROP_BOOLEAN</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-BOXED:CAPS" title="GIMP_CONFIG_PROP_BOXED()">GIMP_CONFIG_PROP_BOXED</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-DOUBLE:CAPS" title="GIMP_CONFIG_PROP_DOUBLE()">GIMP_CONFIG_PROP_DOUBLE</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-ENUM:CAPS" title="GIMP_CONFIG_PROP_ENUM()">GIMP_CONFIG_PROP_ENUM</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-INT:CAPS" title="GIMP_CONFIG_PROP_INT()">GIMP_CONFIG_PROP_INT</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-INT64:CAPS" title="GIMP_CONFIG_PROP_INT64()">GIMP_CONFIG_PROP_INT64</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-MATRIX2:CAPS" title="GIMP_CONFIG_PROP_MATRIX2()">GIMP_CONFIG_PROP_MATRIX2</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-MEMSIZE:CAPS" title="GIMP_CONFIG_PROP_MEMSIZE()">GIMP_CONFIG_PROP_MEMSIZE</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-OBJECT:CAPS" title="GIMP_CONFIG_PROP_OBJECT()">GIMP_CONFIG_PROP_OBJECT</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-PATH:CAPS" title="GIMP_CONFIG_PROP_PATH()">GIMP_CONFIG_PROP_PATH</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-POINTER:CAPS" title="GIMP_CONFIG_PROP_POINTER()">GIMP_CONFIG_PROP_POINTER</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-RESOLUTION:CAPS" title="GIMP_CONFIG_PROP_RESOLUTION()">GIMP_CONFIG_PROP_RESOLUTION</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-RGB:CAPS" title="GIMP_CONFIG_PROP_RGB()">GIMP_CONFIG_PROP_RGB</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-STRING:CAPS" title="GIMP_CONFIG_PROP_STRING()">GIMP_CONFIG_PROP_STRING</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-UINT:CAPS" title="GIMP_CONFIG_PROP_UINT()">GIMP_CONFIG_PROP_UINT</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-UINT64:CAPS" title="GIMP_CONFIG_PROP_UINT64()">GIMP_CONFIG_PROP_UINT64</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-UNIT:CAPS" title="GIMP_CONFIG_PROP_UNIT()">GIMP_CONFIG_PROP_UNIT</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">GimpConfig-params</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-reset" title="gimp_config_reset ()">gimp_config_reset</a>, function in <a class="link" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">GimpConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-utils.html#gimp-config-reset-properties" title="gimp_config_reset_properties ()">gimp_config_reset_properties</a>, function in <a class="link" href="libgimpconfig-GimpConfig-utils.html" title="GimpConfig-utils">GimpConfig-utils</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-utils.html#gimp-config-reset-property" title="gimp_config_reset_property ()">gimp_config_reset_property</a>, function in <a class="link" href="libgimpconfig-GimpConfig-utils.html" title="GimpConfig-utils">GimpConfig-utils</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-serialize" title="gimp_config_serialize ()">gimp_config_serialize</a>, function in <a class="link" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">GimpConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-serialize.html#gimp-config-serialize-changed-properties" title="gimp_config_serialize_changed_properties ()">gimp_config_serialize_changed_properties</a>, function in <a class="link" href="libgimpconfig-GimpConfig-serialize.html" title="GimpConfig-serialize">GimpConfig-serialize</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-serialize.html#gimp-config-serialize-properties" title="gimp_config_serialize_properties ()">gimp_config_serialize_properties</a>, function in <a class="link" href="libgimpconfig-GimpConfig-serialize.html" title="GimpConfig-serialize">GimpConfig-serialize</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-serialize.html#gimp-config-serialize-property" title="gimp_config_serialize_property ()">gimp_config_serialize_property</a>, function in <a class="link" href="libgimpconfig-GimpConfig-serialize.html" title="GimpConfig-serialize">GimpConfig-serialize</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-serialize.html#gimp-config-serialize-property-by-name" title="gimp_config_serialize_property_by_name ()">gimp_config_serialize_property_by_name</a>, function in <a class="link" href="libgimpconfig-GimpConfig-serialize.html" title="GimpConfig-serialize">GimpConfig-serialize</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-serialize-to-fd" title="gimp_config_serialize_to_fd ()">gimp_config_serialize_to_fd</a>, function in <a class="link" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">GimpConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-serialize-to-file" title="gimp_config_serialize_to_file ()">gimp_config_serialize_to_file</a>, function in <a class="link" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">GimpConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-serialize-to-gfile" title="gimp_config_serialize_to_gfile ()">gimp_config_serialize_to_gfile</a>, function in <a class="link" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">GimpConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-serialize-to-stream" title="gimp_config_serialize_to_stream ()">gimp_config_serialize_to_stream</a>, function in <a class="link" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">GimpConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-serialize-to-string" title="gimp_config_serialize_to_string ()">gimp_config_serialize_to_string</a>, function in <a class="link" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">GimpConfig</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-serialize.html#gimp-config-serialize-value" title="gimp_config_serialize_value ()">gimp_config_serialize_value</a>, function in <a class="link" href="libgimpconfig-GimpConfig-serialize.html" title="GimpConfig-serialize">GimpConfig-serialize</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-utils.html#gimp-config-string-append-escaped" title="gimp_config_string_append_escaped ()">gimp_config_string_append_escaped</a>, function in <a class="link" href="libgimpconfig-GimpConfig-utils.html" title="GimpConfig-utils">GimpConfig-utils</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-utils.html#gimp-config-sync" title="gimp_config_sync ()">gimp_config_sync</a>, function in <a class="link" href="libgimpconfig-GimpConfig-utils.html" title="GimpConfig-utils">GimpConfig-utils</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-close" title="gimp_config_writer_close ()">gimp_config_writer_close</a>, function in <a class="link" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">GimpConfigWriter</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-comment" title="gimp_config_writer_comment ()">gimp_config_writer_comment</a>, function in <a class="link" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">GimpConfigWriter</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-comment-mode" title="gimp_config_writer_comment_mode ()">gimp_config_writer_comment_mode</a>, function in <a class="link" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">GimpConfigWriter</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-data" title="gimp_config_writer_data ()">gimp_config_writer_data</a>, function in <a class="link" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">GimpConfigWriter</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-finish" title="gimp_config_writer_finish ()">gimp_config_writer_finish</a>, function in <a class="link" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">GimpConfigWriter</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-identifier" title="gimp_config_writer_identifier ()">gimp_config_writer_identifier</a>, function in <a class="link" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">GimpConfigWriter</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-linefeed" title="gimp_config_writer_linefeed ()">gimp_config_writer_linefeed</a>, function in <a class="link" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">GimpConfigWriter</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-new-fd" title="gimp_config_writer_new_fd ()">gimp_config_writer_new_fd</a>, function in <a class="link" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">GimpConfigWriter</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-new-file" title="gimp_config_writer_new_file ()">gimp_config_writer_new_file</a>, function in <a class="link" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">GimpConfigWriter</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-new-gfile" title="gimp_config_writer_new_gfile ()">gimp_config_writer_new_gfile</a>, function in <a class="link" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">GimpConfigWriter</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-new-stream" title="gimp_config_writer_new_stream ()">gimp_config_writer_new_stream</a>, function in <a class="link" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">GimpConfigWriter</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-new-string" title="gimp_config_writer_new_string ()">gimp_config_writer_new_string</a>, function in <a class="link" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">GimpConfigWriter</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-open" title="gimp_config_writer_open ()">gimp_config_writer_open</a>, function in <a class="link" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">GimpConfigWriter</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-print" title="gimp_config_writer_print ()">gimp_config_writer_print</a>, function in <a class="link" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">GimpConfigWriter</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-printf" title="gimp_config_writer_printf ()">gimp_config_writer_printf</a>, function in <a class="link" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">GimpConfigWriter</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-revert" title="gimp_config_writer_revert ()">gimp_config_writer_revert</a>, function in <a class="link" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">GimpConfigWriter</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-string" title="gimp_config_writer_string ()">gimp_config_writer_string</a>, function in <a class="link" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">GimpConfigWriter</a>
+</dt>
+<dd></dd>
+<a name="idxF"></a><h3 class="title">F</h3>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-file-get-config-path" title="gimp_file_get_config_path ()">gimp_file_get_config_path</a>, function in <a class="link" href="libgimpconfig-GimpConfig-path.html" title="GimpConfig-path">GimpConfig-path</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-file-new-for-config-path" title="gimp_file_new_for_config_path ()">gimp_file_new_for_config_path</a>, function in <a class="link" href="libgimpconfig-GimpConfig-path.html" title="GimpConfig-path">GimpConfig-path</a>
+</dt>
+<dd></dd>
+<a name="idxP"></a><h3 class="title">P</h3>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-param-spec-config-path" title="gimp_param_spec_config_path ()">gimp_param_spec_config_path</a>, function in <a class="link" href="libgimpconfig-GimpConfig-path.html" title="GimpConfig-path">GimpConfig-path</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-param-spec-config-path-type" title="gimp_param_spec_config_path_type ()">gimp_param_spec_config_path_type</a>, function in <a class="link" href="libgimpconfig-GimpConfig-path.html" title="GimpConfig-path">GimpConfig-path</a>
+</dt>
+<dd></dd>
+<a name="idxS"></a><h3 class="title">S</h3>
+<dt>
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-destroy" title="gimp_scanner_destroy ()">gimp_scanner_destroy</a>, function in <a class="link" href="libgimpconfig-GimpScanner.html" title="GimpScanner">GimpScanner</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-file" title="gimp_scanner_new_file ()">gimp_scanner_new_file</a>, function in <a class="link" href="libgimpconfig-GimpScanner.html" title="GimpScanner">GimpScanner</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-gfile" title="gimp_scanner_new_gfile ()">gimp_scanner_new_gfile</a>, function in <a class="link" href="libgimpconfig-GimpScanner.html" title="GimpScanner">GimpScanner</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-stream" title="gimp_scanner_new_stream ()">gimp_scanner_new_stream</a>, function in <a class="link" href="libgimpconfig-GimpScanner.html" title="GimpScanner">GimpScanner</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-string" title="gimp_scanner_new_string ()">gimp_scanner_new_string</a>, function in <a class="link" href="libgimpconfig-GimpScanner.html" title="GimpScanner">GimpScanner</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-boolean" title="gimp_scanner_parse_boolean ()">gimp_scanner_parse_boolean</a>, function in <a class="link" href="libgimpconfig-GimpScanner.html" title="GimpScanner">GimpScanner</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-color" title="gimp_scanner_parse_color ()">gimp_scanner_parse_color</a>, function in <a class="link" href="libgimpconfig-GimpScanner.html" title="GimpScanner">GimpScanner</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-data" title="gimp_scanner_parse_data ()">gimp_scanner_parse_data</a>, function in <a class="link" href="libgimpconfig-GimpScanner.html" title="GimpScanner">GimpScanner</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-float" title="gimp_scanner_parse_float ()">gimp_scanner_parse_float</a>, function in <a class="link" href="libgimpconfig-GimpScanner.html" title="GimpScanner">GimpScanner</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-identifier" title="gimp_scanner_parse_identifier ()">gimp_scanner_parse_identifier</a>, function in <a class="link" href="libgimpconfig-GimpScanner.html" title="GimpScanner">GimpScanner</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-int" title="gimp_scanner_parse_int ()">gimp_scanner_parse_int</a>, function in <a class="link" href="libgimpconfig-GimpScanner.html" title="GimpScanner">GimpScanner</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-int64" title="gimp_scanner_parse_int64 ()">gimp_scanner_parse_int64</a>, function in <a class="link" href="libgimpconfig-GimpScanner.html" title="GimpScanner">GimpScanner</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-matrix2" title="gimp_scanner_parse_matrix2 ()">gimp_scanner_parse_matrix2</a>, function in <a class="link" href="libgimpconfig-GimpScanner.html" title="GimpScanner">GimpScanner</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-string" title="gimp_scanner_parse_string ()">gimp_scanner_parse_string</a>, function in <a class="link" href="libgimpconfig-GimpScanner.html" title="GimpScanner">GimpScanner</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-string-no-validate" title="gimp_scanner_parse_string_no_validate ()">gimp_scanner_parse_string_no_validate</a>, function in <a class="link" href="libgimpconfig-GimpScanner.html" title="GimpScanner">GimpScanner</a>
+</dt>
+<dd></dd>
+<dt>
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-token" title="gimp_scanner_parse_token ()">gimp_scanner_parse_token</a>, function in <a class="link" href="libgimpconfig-GimpScanner.html" title="GimpScanner">GimpScanner</a>
+</dt>
+<dd></dd>
+<a name="idxV"></a><h3 class="title">V</h3>
+<dt>
+<a class="link" href="libgimpconfig-GimpConfig-path.html#GIMP-VALUE-HOLDS-CONFIG-PATH:CAPS" title="GIMP_VALUE_HOLDS_CONFIG_PATH()">GIMP_VALUE_HOLDS_CONFIG_PATH</a>, macro in <a class="link" href="libgimpconfig-GimpConfig-path.html" title="GimpConfig-path">GimpConfig-path</a>
+</dt>
+<dd></dd>
+</div>
+<div class="footer">
+<hr>Generated by GTK-Doc V1.33.1</div>
+</body>
+</html> \ No newline at end of file
diff --git a/devel-docs/libgimpconfig/html/home.png b/devel-docs/libgimpconfig/html/home.png
new file mode 100644
index 0000000..3966a91
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/home.png
Binary files differ
diff --git a/devel-docs/libgimpconfig/html/index.html b/devel-docs/libgimpconfig/html/index.html
new file mode 100644
index 0000000..dcf5852
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/index.html
@@ -0,0 +1,66 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>GIMP Config Library Reference Manual: GIMP Config Library Reference Manual</title>
+<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
+<link rel="home" href="index.html" title="GIMP Config Library Reference Manual">
+<link rel="next" href="pt01.html" title="Part I. GIMP Config Library">
+<meta name="generator" content="GTK-Doc V1.33.1 (XML mode)">
+<link rel="stylesheet" href="style.css" type="text/css">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<div lang="en" class="book">
+<div class="titlepage">
+<div>
+<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">GIMP Config Library Reference Manual</p></th></tr></table></div>
+<div><p class="releaseinfo">
+ for GIMP 2.10.34
+
+ </p></div>
+</div>
+<hr>
+</div>
+<div class="toc"><dl class="toc">
+<dt><span class="part"><a href="pt01.html">I. GIMP Config Library</a></span></dt>
+<dd><dl>
+<dt><span class="chapter"><a href="libgimpconfig-hierarchy.html">Object Hierarchy</a></span></dt>
+<dt>
+<span class="refentrytitle"><a href="libgimpconfig-GimpConfig.html">GimpConfig-iface</a></span><span class="refpurpose"> — High-level API for libgimpconfig.</span>
+</dt>
+<dt>
+<span class="refentrytitle"><a href="libgimpconfig-GimpConfig-deserialize.html">GimpConfig-deserialize</a></span><span class="refpurpose"> — Deserializing code for libgimpconfig.</span>
+</dt>
+<dt>
+<span class="refentrytitle"><a href="libgimpconfig-GimpConfig-serialize.html">GimpConfig-serialize</a></span><span class="refpurpose"> — Serializing for libgimpconfig.</span>
+</dt>
+<dt>
+<span class="refentrytitle"><a href="libgimpconfig-GimpConfigError.html">GimpConfig-error</a></span><span class="refpurpose"> — Error utils for libgimpconfig.</span>
+</dt>
+<dt>
+<span class="refentrytitle"><a href="libgimpconfig-GimpConfig-params.html">GimpConfig-params</a></span><span class="refpurpose"> — Macros and defines to install config properties.</span>
+</dt>
+<dt>
+<span class="refentrytitle"><a href="libgimpconfig-GimpConfig-path.html">GimpConfig-path</a></span><span class="refpurpose"> — File path utilities for libgimpconfig.</span>
+</dt>
+<dt>
+<span class="refentrytitle"><a href="libgimpconfig-GimpConfig-utils.html">GimpConfig-utils</a></span><span class="refpurpose"> — Miscellaneous utility functions for libgimpconfig.</span>
+</dt>
+<dt>
+<span class="refentrytitle"><a href="libgimpconfig-GimpConfigWriter.html">GimpConfigWriter</a></span><span class="refpurpose"> — Functions for writing config info to a file for
+libgimpconfig.</span>
+</dt>
+<dt>
+<span class="refentrytitle"><a href="libgimpconfig-GimpScanner.html">GimpScanner</a></span><span class="refpurpose"> — A wrapper around <span class="type">GScanner</span> with some convenience API.</span>
+</dt>
+<dt>
+<span class="refentrytitle"><a href="GimpColorConfig.html">GimpColorConfig</a></span><span class="refpurpose"> — Color management settings.</span>
+</dt>
+</dl></dd>
+<dt><span class="index"><a href="api-index-full.html">Index</a></span></dt>
+</dl></div>
+</div>
+<div class="footer">
+<hr>Generated by GTK-Doc V1.33.1</div>
+</body>
+</html> \ No newline at end of file
diff --git a/devel-docs/libgimpconfig/html/left-insensitive.png b/devel-docs/libgimpconfig/html/left-insensitive.png
new file mode 100644
index 0000000..2cd8c16
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/left-insensitive.png
Binary files differ
diff --git a/devel-docs/libgimpconfig/html/left.png b/devel-docs/libgimpconfig/html/left.png
new file mode 100644
index 0000000..1ca1664
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/left.png
Binary files differ
diff --git a/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-deserialize.html b/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-deserialize.html
new file mode 100644
index 0000000..f420ca9
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-deserialize.html
@@ -0,0 +1,160 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>GimpConfig-deserialize: GIMP Config Library Reference Manual</title>
+<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
+<link rel="home" href="index.html" title="GIMP Config Library Reference Manual">
+<link rel="up" href="pt01.html" title="Part I. GIMP Config Library">
+<link rel="prev" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">
+<link rel="next" href="libgimpconfig-GimpConfig-serialize.html" title="GimpConfig-serialize">
+<meta name="generator" content="GTK-Doc V1.33.1 (XML mode)">
+<link rel="stylesheet" href="style.css" type="text/css">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
+<td width="100%" align="left" class="shortcuts">
+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
+ <a href="#libgimpconfig-GimpConfig-deserialize.description" class="shortcut">Description</a></span>
+</td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
+<td><a accesskey="u" href="pt01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
+<td><a accesskey="p" href="libgimpconfig-GimpConfig.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
+<td><a accesskey="n" href="libgimpconfig-GimpConfig-serialize.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
+</tr></table>
+<div class="refentry">
+<a name="libgimpconfig-GimpConfig-deserialize"></a><div class="titlepage"></div>
+<div class="refnamediv"><table width="100%"><tr>
+<td valign="top">
+<h2><span class="refentrytitle"><a name="libgimpconfig-GimpConfig-deserialize.top_of_page"></a>GimpConfig-deserialize</span></h2>
+<p>GimpConfig-deserialize — Deserializing code for libgimpconfig.</p>
+</td>
+<td class="gallery_image" valign="top" align="right"></td>
+</tr></table></div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-deserialize.functions"></a><h2>Functions</h2>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="functions_proto_type">
+<col class="functions_proto_name">
+</colgroup>
+<tbody>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-deserialize.html#gimp-config-deserialize-properties" title="gimp_config_deserialize_properties ()">gimp_config_deserialize_properties</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">GTokenType</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-deserialize.html#gimp-config-deserialize-property" title="gimp_config_deserialize_property ()">gimp_config_deserialize_property</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-deserialize.description"></a><h2>Description</h2>
+<p>Deserializing code for libgimpconfig.</p>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-deserialize.functions_details"></a><h2>Functions</h2>
+<div class="refsect2">
+<a name="gimp-config-deserialize-properties"></a><h3>gimp_config_deserialize_properties ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_deserialize_properties (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>,
+ <em class="parameter"><code><span class="type">GScanner</span> *scanner</code></em>,
+ <em class="parameter"><code><span class="type">gint</span> nest_level</code></em>);</pre>
+<p>This function uses the <em class="parameter"><code>scanner</code></em>
+ to configure the properties of <em class="parameter"><code>config</code></em>
+.</p>
+<div class="refsect3">
+<a name="gimp-config-deserialize-properties.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>scanner</p></td>
+<td class="parameter_description"><p>a <span class="type">GScanner</span>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>nest_level</p></td>
+<td class="parameter_description"><p>the nest level</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-deserialize-properties.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> on success, <code class="literal">FALSE</code> otherwise.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-deserialize-property"></a><h3>gimp_config_deserialize_property ()</h3>
+<pre class="programlisting"><span class="returnvalue">GTokenType</span>
+gimp_config_deserialize_property (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>,
+ <em class="parameter"><code><span class="type">GScanner</span> *scanner</code></em>,
+ <em class="parameter"><code><span class="type">gint</span> nest_level</code></em>);</pre>
+<p>This function deserializes a single property of <em class="parameter"><code>config</code></em>
+. You
+shouldn't need to call this function directly. If possible, use
+<a class="link" href="libgimpconfig-GimpConfig-deserialize.html#gimp-config-deserialize-properties" title="gimp_config_deserialize_properties ()"><code class="function">gimp_config_deserialize_properties()</code></a> instead.</p>
+<div class="refsect3">
+<a name="gimp-config-deserialize-property.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>scanner</p></td>
+<td class="parameter_description"><p>a <span class="type">GScanner</span>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>nest_level</p></td>
+<td class="parameter_description"><p>the nest level</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-deserialize-property.returns"></a><h4>Returns</h4>
+<p> <code class="literal">G_TOKEN_RIGHT_PAREN</code> on success, otherwise the
+expected <span class="type">GTokenType</span> or <code class="literal">G_TOKEN_NONE</code> if the expected token was
+found but couldn't be parsed.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+</div>
+</div>
+<div class="footer">
+<hr>Generated by GTK-Doc V1.33.1</div>
+</body>
+</html> \ No newline at end of file
diff --git a/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-params.html b/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-params.html
new file mode 100644
index 0000000..387f244
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-params.html
@@ -0,0 +1,504 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>GimpConfig-params: GIMP Config Library Reference Manual</title>
+<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
+<link rel="home" href="index.html" title="GIMP Config Library Reference Manual">
+<link rel="up" href="pt01.html" title="Part I. GIMP Config Library">
+<link rel="prev" href="libgimpconfig-GimpConfigError.html" title="GimpConfig-error">
+<link rel="next" href="libgimpconfig-GimpConfig-path.html" title="GimpConfig-path">
+<meta name="generator" content="GTK-Doc V1.33.1 (XML mode)">
+<link rel="stylesheet" href="style.css" type="text/css">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
+<td width="100%" align="left" class="shortcuts">
+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
+ <a href="#libgimpconfig-GimpConfig-params.description" class="shortcut">Description</a></span>
+</td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
+<td><a accesskey="u" href="pt01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
+<td><a accesskey="p" href="libgimpconfig-GimpConfigError.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
+<td><a accesskey="n" href="libgimpconfig-GimpConfig-path.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
+</tr></table>
+<div class="refentry">
+<a name="libgimpconfig-GimpConfig-params"></a><div class="titlepage"></div>
+<div class="refnamediv"><table width="100%"><tr>
+<td valign="top">
+<h2><span class="refentrytitle"><a name="libgimpconfig-GimpConfig-params.top_of_page"></a>GimpConfig-params</span></h2>
+<p>GimpConfig-params — Macros and defines to install config properties.</p>
+</td>
+<td class="gallery_image" valign="top" align="right"></td>
+</tr></table></div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-params.functions"></a><h2>Functions</h2>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="functions_proto_type">
+<col class="functions_proto_name">
+</colgroup>
+<tbody>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-BOOLEAN:CAPS" title="GIMP_CONFIG_PROP_BOOLEAN()">GIMP_CONFIG_PROP_BOOLEAN</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-BOXED:CAPS" title="GIMP_CONFIG_PROP_BOXED()">GIMP_CONFIG_PROP_BOXED</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-DOUBLE:CAPS" title="GIMP_CONFIG_PROP_DOUBLE()">GIMP_CONFIG_PROP_DOUBLE</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-ENUM:CAPS" title="GIMP_CONFIG_PROP_ENUM()">GIMP_CONFIG_PROP_ENUM</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-INT:CAPS" title="GIMP_CONFIG_PROP_INT()">GIMP_CONFIG_PROP_INT</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-INT64:CAPS" title="GIMP_CONFIG_PROP_INT64()">GIMP_CONFIG_PROP_INT64</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-MATRIX2:CAPS" title="GIMP_CONFIG_PROP_MATRIX2()">GIMP_CONFIG_PROP_MATRIX2</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-MEMSIZE:CAPS" title="GIMP_CONFIG_PROP_MEMSIZE()">GIMP_CONFIG_PROP_MEMSIZE</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-OBJECT:CAPS" title="GIMP_CONFIG_PROP_OBJECT()">GIMP_CONFIG_PROP_OBJECT</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-PATH:CAPS" title="GIMP_CONFIG_PROP_PATH()">GIMP_CONFIG_PROP_PATH</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-POINTER:CAPS" title="GIMP_CONFIG_PROP_POINTER()">GIMP_CONFIG_PROP_POINTER</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-RESOLUTION:CAPS" title="GIMP_CONFIG_PROP_RESOLUTION()">GIMP_CONFIG_PROP_RESOLUTION</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-RGB:CAPS" title="GIMP_CONFIG_PROP_RGB()">GIMP_CONFIG_PROP_RGB</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-STRING:CAPS" title="GIMP_CONFIG_PROP_STRING()">GIMP_CONFIG_PROP_STRING</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-UINT64:CAPS" title="GIMP_CONFIG_PROP_UINT64()">GIMP_CONFIG_PROP_UINT64</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-UINT:CAPS" title="GIMP_CONFIG_PROP_UINT()">GIMP_CONFIG_PROP_UINT</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-UNIT:CAPS" title="GIMP_CONFIG_PROP_UNIT()">GIMP_CONFIG_PROP_UNIT</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-BOOLEAN:CAPS" title="GIMP_CONFIG_INSTALL_PROP_BOOLEAN()">GIMP_CONFIG_INSTALL_PROP_BOOLEAN</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-BOXED:CAPS" title="GIMP_CONFIG_INSTALL_PROP_BOXED()">GIMP_CONFIG_INSTALL_PROP_BOXED</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-RGB:CAPS" title="GIMP_CONFIG_INSTALL_PROP_RGB()">GIMP_CONFIG_INSTALL_PROP_RGB</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-DOUBLE:CAPS" title="GIMP_CONFIG_INSTALL_PROP_DOUBLE()">GIMP_CONFIG_INSTALL_PROP_DOUBLE</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-RESOLUTION:CAPS" title="GIMP_CONFIG_INSTALL_PROP_RESOLUTION()">GIMP_CONFIG_INSTALL_PROP_RESOLUTION</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-ENUM:CAPS" title="GIMP_CONFIG_INSTALL_PROP_ENUM()">GIMP_CONFIG_INSTALL_PROP_ENUM</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-INT:CAPS" title="GIMP_CONFIG_INSTALL_PROP_INT()">GIMP_CONFIG_INSTALL_PROP_INT</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-MATRIX2:CAPS" title="GIMP_CONFIG_INSTALL_PROP_MATRIX2()">GIMP_CONFIG_INSTALL_PROP_MATRIX2</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-MEMSIZE:CAPS" title="GIMP_CONFIG_INSTALL_PROP_MEMSIZE()">GIMP_CONFIG_INSTALL_PROP_MEMSIZE</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-PATH:CAPS" title="GIMP_CONFIG_INSTALL_PROP_PATH()">GIMP_CONFIG_INSTALL_PROP_PATH</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-STRING:CAPS" title="GIMP_CONFIG_INSTALL_PROP_STRING()">GIMP_CONFIG_INSTALL_PROP_STRING</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-UINT:CAPS" title="GIMP_CONFIG_INSTALL_PROP_UINT()">GIMP_CONFIG_INSTALL_PROP_UINT</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-UNIT:CAPS" title="GIMP_CONFIG_INSTALL_PROP_UNIT()">GIMP_CONFIG_INSTALL_PROP_UNIT</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-OBJECT:CAPS" title="GIMP_CONFIG_INSTALL_PROP_OBJECT()">GIMP_CONFIG_INSTALL_PROP_OBJECT</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-POINTER:CAPS" title="GIMP_CONFIG_INSTALL_PROP_POINTER()">GIMP_CONFIG_INSTALL_PROP_POINTER</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-params.other"></a><h2>Types and Values</h2>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="other_proto_type">
+<col class="other_proto_name">
+</colgroup>
+<tbody>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name"><a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-SERIALIZE:CAPS" title="GIMP_CONFIG_PARAM_SERIALIZE">GIMP_CONFIG_PARAM_SERIALIZE</a></td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name"><a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-AGGREGATE:CAPS" title="GIMP_CONFIG_PARAM_AGGREGATE">GIMP_CONFIG_PARAM_AGGREGATE</a></td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name"><a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-RESTART:CAPS" title="GIMP_CONFIG_PARAM_RESTART">GIMP_CONFIG_PARAM_RESTART</a></td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name"><a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-CONFIRM:CAPS" title="GIMP_CONFIG_PARAM_CONFIRM">GIMP_CONFIG_PARAM_CONFIRM</a></td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name"><a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-DEFAULTS:CAPS" title="GIMP_CONFIG_PARAM_DEFAULTS">GIMP_CONFIG_PARAM_DEFAULTS</a></td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name"><a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-IGNORE:CAPS" title="GIMP_CONFIG_PARAM_IGNORE">GIMP_CONFIG_PARAM_IGNORE</a></td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name"><a class="link" href="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-FLAGS:CAPS" title="GIMP_CONFIG_PARAM_FLAGS">GIMP_CONFIG_PARAM_FLAGS</a></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-params.description"></a><h2>Description</h2>
+<p>Macros and defines to install config properties.</p>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-params.functions_details"></a><h2>Functions</h2>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PROP-BOOLEAN:CAPS"></a><h3>GIMP_CONFIG_PROP_BOOLEAN()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PROP_BOOLEAN(class, id, name, nick, blurb, default, flags)</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PROP-BOXED:CAPS"></a><h3>GIMP_CONFIG_PROP_BOXED()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PROP_BOXED(class, id, name, nick, blurb, boxed_type, flags)</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PROP-DOUBLE:CAPS"></a><h3>GIMP_CONFIG_PROP_DOUBLE()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PROP_DOUBLE(class, id, name, nick, blurb, min, max, default, flags)</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PROP-ENUM:CAPS"></a><h3>GIMP_CONFIG_PROP_ENUM()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PROP_ENUM(class, id, name, nick, blurb, enum_type, default, flags)</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PROP-INT:CAPS"></a><h3>GIMP_CONFIG_PROP_INT()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PROP_INT(class, id, name, nick, blurb, min, max, default, flags)</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PROP-INT64:CAPS"></a><h3>GIMP_CONFIG_PROP_INT64()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PROP_INT64(class, id, name, nick, blurb, min, max, default, flags)</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PROP-MATRIX2:CAPS"></a><h3>GIMP_CONFIG_PROP_MATRIX2()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PROP_MATRIX2(class, id, name, nick, blurb, default, flags)</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PROP-MEMSIZE:CAPS"></a><h3>GIMP_CONFIG_PROP_MEMSIZE()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PROP_MEMSIZE(class, id, name, nick, blurb, min, max, default, flags)</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PROP-OBJECT:CAPS"></a><h3>GIMP_CONFIG_PROP_OBJECT()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PROP_OBJECT(class, id, name, nick, blurb, object_type, flags)</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PROP-PATH:CAPS"></a><h3>GIMP_CONFIG_PROP_PATH()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PROP_PATH(class, id, name, nick, blurb, path_type, default, flags)</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PROP-POINTER:CAPS"></a><h3>GIMP_CONFIG_PROP_POINTER()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PROP_POINTER(class, id, name, nick, blurb, flags)</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PROP-RESOLUTION:CAPS"></a><h3>GIMP_CONFIG_PROP_RESOLUTION()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PROP_RESOLUTION(class, id, name, nick, blurb, default, flags)</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PROP-RGB:CAPS"></a><h3>GIMP_CONFIG_PROP_RGB()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PROP_RGB(class, id, name, nick, blurb, has_alpha, default, flags)</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PROP-STRING:CAPS"></a><h3>GIMP_CONFIG_PROP_STRING()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PROP_STRING(class, id, name, nick, blurb, default, flags)</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PROP-UINT64:CAPS"></a><h3>GIMP_CONFIG_PROP_UINT64()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PROP_UINT64(class, id, name, nick, blurb, min, max, default, flags)</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PROP-UINT:CAPS"></a><h3>GIMP_CONFIG_PROP_UINT()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PROP_UINT(class, id, name, nick, blurb, min, max, default, flags)</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PROP-UNIT:CAPS"></a><h3>GIMP_CONFIG_PROP_UNIT()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PROP_UNIT(class, id, name, nick, blurb, pixels, percent, default, flags)</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-INSTALL-PROP-BOOLEAN:CAPS"></a><h3>GIMP_CONFIG_INSTALL_PROP_BOOLEAN()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_INSTALL_PROP_BOOLEAN(class, id, name, blurb, default, flags)</pre>
+<div class="warning"><p><code class="literal">GIMP_CONFIG_INSTALL_PROP_BOOLEAN</code> is deprecated and should not be used in newly-written code.</p></div>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-INSTALL-PROP-BOXED:CAPS"></a><h3>GIMP_CONFIG_INSTALL_PROP_BOXED()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_INSTALL_PROP_BOXED(class, id, name, blurb, boxed_type, flags)</pre>
+<div class="warning"><p><code class="literal">GIMP_CONFIG_INSTALL_PROP_BOXED</code> is deprecated and should not be used in newly-written code.</p></div>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-INSTALL-PROP-RGB:CAPS"></a><h3>GIMP_CONFIG_INSTALL_PROP_RGB()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_INSTALL_PROP_RGB(class, id, name, blurb, has_alpha, default, flags)</pre>
+<div class="warning"><p><code class="literal">GIMP_CONFIG_INSTALL_PROP_RGB</code> is deprecated and should not be used in newly-written code.</p></div>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-INSTALL-PROP-DOUBLE:CAPS"></a><h3>GIMP_CONFIG_INSTALL_PROP_DOUBLE()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_INSTALL_PROP_DOUBLE(class, id, name, blurb, min, max, default, flags)</pre>
+<div class="warning"><p><code class="literal">GIMP_CONFIG_INSTALL_PROP_DOUBLE</code> is deprecated and should not be used in newly-written code.</p></div>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-INSTALL-PROP-RESOLUTION:CAPS"></a><h3>GIMP_CONFIG_INSTALL_PROP_RESOLUTION()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_INSTALL_PROP_RESOLUTION(class, id, name, blurb, default, flags)</pre>
+<div class="warning"><p><code class="literal">GIMP_CONFIG_INSTALL_PROP_RESOLUTION</code> is deprecated and should not be used in newly-written code.</p></div>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-INSTALL-PROP-ENUM:CAPS"></a><h3>GIMP_CONFIG_INSTALL_PROP_ENUM()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_INSTALL_PROP_ENUM(class, id, name, blurb, enum_type, default, flags)</pre>
+<div class="warning"><p><code class="literal">GIMP_CONFIG_INSTALL_PROP_ENUM</code> is deprecated and should not be used in newly-written code.</p></div>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-INSTALL-PROP-INT:CAPS"></a><h3>GIMP_CONFIG_INSTALL_PROP_INT()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_INSTALL_PROP_INT(class, id, name, blurb, min, max, default, flags)</pre>
+<div class="warning"><p><code class="literal">GIMP_CONFIG_INSTALL_PROP_INT</code> is deprecated and should not be used in newly-written code.</p></div>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-INSTALL-PROP-MATRIX2:CAPS"></a><h3>GIMP_CONFIG_INSTALL_PROP_MATRIX2()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_INSTALL_PROP_MATRIX2(class, id, name, blurb, default, flags)</pre>
+<div class="warning"><p><code class="literal">GIMP_CONFIG_INSTALL_PROP_MATRIX2</code> is deprecated and should not be used in newly-written code.</p></div>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-INSTALL-PROP-MEMSIZE:CAPS"></a><h3>GIMP_CONFIG_INSTALL_PROP_MEMSIZE()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_INSTALL_PROP_MEMSIZE(class, id, name, blurb, min, max, default, flags)</pre>
+<div class="warning"><p><code class="literal">GIMP_CONFIG_INSTALL_PROP_MEMSIZE</code> is deprecated and should not be used in newly-written code.</p></div>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-INSTALL-PROP-PATH:CAPS"></a><h3>GIMP_CONFIG_INSTALL_PROP_PATH()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_INSTALL_PROP_PATH(class, id, name, blurb, path_type, default, flags)</pre>
+<div class="warning"><p><code class="literal">GIMP_CONFIG_INSTALL_PROP_PATH</code> is deprecated and should not be used in newly-written code.</p></div>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-INSTALL-PROP-STRING:CAPS"></a><h3>GIMP_CONFIG_INSTALL_PROP_STRING()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_INSTALL_PROP_STRING(class, id, name, blurb, default, flags)</pre>
+<div class="warning"><p><code class="literal">GIMP_CONFIG_INSTALL_PROP_STRING</code> is deprecated and should not be used in newly-written code.</p></div>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-INSTALL-PROP-UINT:CAPS"></a><h3>GIMP_CONFIG_INSTALL_PROP_UINT()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_INSTALL_PROP_UINT(class, id, name, blurb, min, max, default, flags)</pre>
+<div class="warning"><p><code class="literal">GIMP_CONFIG_INSTALL_PROP_UINT</code> is deprecated and should not be used in newly-written code.</p></div>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-INSTALL-PROP-UNIT:CAPS"></a><h3>GIMP_CONFIG_INSTALL_PROP_UNIT()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_INSTALL_PROP_UNIT(class, id, name, blurb, pixels, percent, default, flags)</pre>
+<div class="warning"><p><code class="literal">GIMP_CONFIG_INSTALL_PROP_UNIT</code> is deprecated and should not be used in newly-written code.</p></div>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-INSTALL-PROP-OBJECT:CAPS"></a><h3>GIMP_CONFIG_INSTALL_PROP_OBJECT()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_INSTALL_PROP_OBJECT(class, id, name, blurb, object_type, flags)</pre>
+<div class="warning"><p><code class="literal">GIMP_CONFIG_INSTALL_PROP_OBJECT</code> is deprecated and should not be used in newly-written code.</p></div>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-INSTALL-PROP-POINTER:CAPS"></a><h3>GIMP_CONFIG_INSTALL_PROP_POINTER()</h3>
+<pre class="programlisting">#define GIMP_CONFIG_INSTALL_PROP_POINTER(class, id, name, blurb, flags)</pre>
+<div class="warning"><p><code class="literal">GIMP_CONFIG_INSTALL_PROP_POINTER</code> is deprecated and should not be used in newly-written code.</p></div>
+</div>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-params.other_details"></a><h2>Types and Values</h2>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PARAM-SERIALIZE:CAPS"></a><h3>GIMP_CONFIG_PARAM_SERIALIZE</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PARAM_SERIALIZE (1 &lt;&lt; (0 + G_PARAM_USER_SHIFT))
+</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PARAM-AGGREGATE:CAPS"></a><h3>GIMP_CONFIG_PARAM_AGGREGATE</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PARAM_AGGREGATE (1 &lt;&lt; (1 + G_PARAM_USER_SHIFT))
+</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PARAM-RESTART:CAPS"></a><h3>GIMP_CONFIG_PARAM_RESTART</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PARAM_RESTART (1 &lt;&lt; (2 + G_PARAM_USER_SHIFT))
+</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PARAM-CONFIRM:CAPS"></a><h3>GIMP_CONFIG_PARAM_CONFIRM</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PARAM_CONFIRM (1 &lt;&lt; (3 + G_PARAM_USER_SHIFT))
+</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PARAM-DEFAULTS:CAPS"></a><h3>GIMP_CONFIG_PARAM_DEFAULTS</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PARAM_DEFAULTS (1 &lt;&lt; (4 + G_PARAM_USER_SHIFT))
+</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PARAM-IGNORE:CAPS"></a><h3>GIMP_CONFIG_PARAM_IGNORE</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PARAM_IGNORE (1 &lt;&lt; (5 + G_PARAM_USER_SHIFT))
+</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-PARAM-FLAGS:CAPS"></a><h3>GIMP_CONFIG_PARAM_FLAGS</h3>
+<pre class="programlisting">#define GIMP_CONFIG_PARAM_FLAGS</pre>
+</div>
+</div>
+</div>
+<div class="footer">
+<hr>Generated by GTK-Doc V1.33.1</div>
+</body>
+</html> \ No newline at end of file
diff --git a/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-path.html b/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-path.html
new file mode 100644
index 0000000..d82c5d2
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-path.html
@@ -0,0 +1,627 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>GimpConfig-path: GIMP Config Library Reference Manual</title>
+<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
+<link rel="home" href="index.html" title="GIMP Config Library Reference Manual">
+<link rel="up" href="pt01.html" title="Part I. GIMP Config Library">
+<link rel="prev" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">
+<link rel="next" href="libgimpconfig-GimpConfig-utils.html" title="GimpConfig-utils">
+<meta name="generator" content="GTK-Doc V1.33.1 (XML mode)">
+<link rel="stylesheet" href="style.css" type="text/css">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
+<td width="100%" align="left" class="shortcuts">
+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
+ <a href="#libgimpconfig-GimpConfig-path.description" class="shortcut">Description</a></span>
+</td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
+<td><a accesskey="u" href="pt01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
+<td><a accesskey="p" href="libgimpconfig-GimpConfig-params.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
+<td><a accesskey="n" href="libgimpconfig-GimpConfig-utils.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
+</tr></table>
+<div class="refentry">
+<a name="libgimpconfig-GimpConfig-path"></a><div class="titlepage"></div>
+<div class="refnamediv"><table width="100%"><tr>
+<td valign="top">
+<h2><span class="refentrytitle"><a name="libgimpconfig-GimpConfig-path.top_of_page"></a>GimpConfig-path</span></h2>
+<p>GimpConfig-path — File path utilities for libgimpconfig.</p>
+</td>
+<td class="gallery_image" valign="top" align="right"></td>
+</tr></table></div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-path.functions"></a><h2>Functions</h2>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="functions_proto_type">
+<col class="functions_proto_name">
+</colgroup>
+<tbody>
+<tr>
+<td class="function_type">
+<span class="returnvalue">GParamSpec</span> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-param-spec-config-path" title="gimp_param_spec_config_path ()">gimp_param_spec_config_path</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPathType" title="enum GimpConfigPathType"><span class="returnvalue">GimpConfigPathType</span></a>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-param-spec-config-path-type" title="gimp_param_spec_config_path_type ()">gimp_param_spec_config_path_type</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gchar</span> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-path-expand" title="gimp_config_path_expand ()">gimp_config_path_expand</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">GList</span> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-path-expand-to-files" title="gimp_config_path_expand_to_files ()">gimp_config_path_expand_to_files</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gchar</span> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-path-unexpand" title="gimp_config_path_unexpand ()">gimp_config_path_unexpand</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">GFile</span> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-file-new-for-config-path" title="gimp_file_new_for_config_path ()">gimp_file_new_for_config_path</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gchar</span> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-file-get-config-path" title="gimp_file_get_config_path ()">gimp_file_get_config_path</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gchar</span> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-build-data-path" title="gimp_config_build_data_path ()">gimp_config_build_data_path</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gchar</span> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-build-writable-path" title="gimp_config_build_writable_path ()">gimp_config_build_writable_path</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gchar</span> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-build-plug-in-path" title="gimp_config_build_plug_in_path ()">gimp_config_build_plug_in_path</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-path.html#GIMP-VALUE-HOLDS-CONFIG-PATH:CAPS" title="GIMP_VALUE_HOLDS_CONFIG_PATH()">GIMP_VALUE_HOLDS_CONFIG_PATH</a><span class="c_punctuation">()</span>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-path.other"></a><h2>Types and Values</h2>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="other_proto_type">
+<col class="other_proto_name">
+</colgroup>
+<tbody>
+<tr>
+<td class="typedef_keyword">typedef</td>
+<td class="function_name"><a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPath" title="GimpConfigPath">GimpConfigPath</a></td>
+</tr>
+<tr>
+<td class="datatype_keyword">enum</td>
+<td class="function_name"><a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPathType" title="enum GimpConfigPathType">GimpConfigPathType</a></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-path.description"></a><h2>Description</h2>
+<p>File path utilities for libgimpconfig.</p>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-path.functions_details"></a><h2>Functions</h2>
+<div class="refsect2">
+<a name="gimp-param-spec-config-path"></a><h3>gimp_param_spec_config_path ()</h3>
+<pre class="programlisting"><span class="returnvalue">GParamSpec</span> *
+gimp_param_spec_config_path (<em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *nick</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *blurb</code></em>,
+ <em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPathType" title="enum GimpConfigPathType"><span class="type">GimpConfigPathType</span></a> type</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *default_value</code></em>,
+ <em class="parameter"><code><span class="type">GParamFlags</span> flags</code></em>);</pre>
+<p>Creates a param spec to hold a filename, dir name,
+or list of file or dir names.
+See <code class="function">g_param_spec_internal()</code> for more information.</p>
+<div class="refsect3">
+<a name="gimp-param-spec-config-path.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>name</p></td>
+<td class="parameter_description"><p>Canonical name of the param</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>nick</p></td>
+<td class="parameter_description"><p>Nickname of the param</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>blurb</p></td>
+<td class="parameter_description"><p>Brief description of param.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>type</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPathType" title="enum GimpConfigPathType"><span class="type">GimpConfigPathType</span></a> value.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>default_value</p></td>
+<td class="parameter_description"><p>Value to use if none is assigned.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>flags</p></td>
+<td class="parameter_description"><p>a combination of <span class="type">GParamFlags</span></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-param-spec-config-path.returns"></a><h4>Returns</h4>
+<p> a newly allocated <span class="type">GParamSpec</span> instance</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-param-spec-config-path-type"></a><h3>gimp_param_spec_config_path_type ()</h3>
+<pre class="programlisting"><a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPathType" title="enum GimpConfigPathType"><span class="returnvalue">GimpConfigPathType</span></a>
+gimp_param_spec_config_path_type (<em class="parameter"><code><span class="type">GParamSpec</span> *pspec</code></em>);</pre>
+<p>Tells whether the path param encodes a filename,
+dir name, or list of file or dir names.</p>
+<div class="refsect3">
+<a name="gimp-param-spec-config-path-type.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>pspec</p></td>
+<td class="parameter_description"><p>A <span class="type">GParamSpec</span> for a path param</p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-param-spec-config-path-type.returns"></a><h4>Returns</h4>
+<p> a <a class="link" href="libgimpconfig-GimpConfig-path.html#GimpConfigPathType" title="enum GimpConfigPathType"><span class="type">GimpConfigPathType</span></a> value</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-path-expand"></a><h3>gimp_config_path_expand ()</h3>
+<pre class="programlisting"><span class="returnvalue">gchar</span> *
+gimp_config_path_expand (<em class="parameter"><code>const <span class="type">gchar</span> *path</code></em>,
+ <em class="parameter"><code><span class="type">gboolean</span> recode</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<p>Paths as stored in gimprc and other config files have to be treated
+special. The string may contain special identifiers such as for
+example ${gimp_dir} that have to be substituted before use. Also
+the user's filesystem may be in a different encoding than UTF-8
+(which is what is used for the gimprc). This function does the
+variable substitution for you and can also attempt to convert to
+the filesystem encoding.</p>
+<p>To reverse the expansion, use <a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-path-unexpand" title="gimp_config_path_unexpand ()"><code class="function">gimp_config_path_unexpand()</code></a>.</p>
+<div class="refsect3">
+<a name="gimp-config-path-expand.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>path</p></td>
+<td class="parameter_description"><p>a NUL-terminated string in UTF-8 encoding</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>recode</p></td>
+<td class="parameter_description"><p>whether to convert to the filesystem's encoding</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for errors</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-path-expand.returns"></a><h4>Returns</h4>
+<p> a newly allocated NUL-terminated string</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-path-expand-to-files"></a><h3>gimp_config_path_expand_to_files ()</h3>
+<pre class="programlisting"><span class="returnvalue">GList</span> *
+gimp_config_path_expand_to_files (<em class="parameter"><code>const <span class="type">gchar</span> *path</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<p>Paths as stored in the gimprc have to be treated special. The
+string may contain special identifiers such as for example
+${gimp_dir} that have to be substituted before use. Also the user's
+filesystem may be in a different encoding than UTF-8 (which is what
+is used for the gimprc).</p>
+<p>This function runs <em class="parameter"><code>path</code></em>
+ through <a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-path-expand" title="gimp_config_path_expand ()"><code class="function">gimp_config_path_expand()</code></a> and
+<a href="../html/libgimpbase-gimpenv.html#gimp-path-parse"><code class="function">gimp_path_parse()</code></a>, then turns the filenames returned by
+<a href="../html/libgimpbase-gimpenv.html#gimp-path-parse"><code class="function">gimp_path_parse()</code></a> into GFile using <code class="function">g_file_new_for_path()</code>.</p>
+<div class="refsect3">
+<a name="gimp-config-path-expand-to-files.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>path</p></td>
+<td class="parameter_description"><p>a NUL-terminated string in UTF-8 encoding</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for errors</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-path-expand-to-files.returns"></a><h4>Returns</h4>
+<p> a <span class="type">GList</span> of newly allocated <span class="type">GFile</span> objects.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-path-unexpand"></a><h3>gimp_config_path_unexpand ()</h3>
+<pre class="programlisting"><span class="returnvalue">gchar</span> *
+gimp_config_path_unexpand (<em class="parameter"><code>const <span class="type">gchar</span> *path</code></em>,
+ <em class="parameter"><code><span class="type">gboolean</span> recode</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<p>The inverse operation of <a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-path-expand" title="gimp_config_path_expand ()"><code class="function">gimp_config_path_expand()</code></a></p>
+<p>This function takes a <em class="parameter"><code>path</code></em>
+ and tries to substitute the first
+elements by well-known special identifiers such as for example
+${gimp_dir}. The unexpanded path can then be stored in gimprc and
+other config files.</p>
+<p>If <em class="parameter"><code>recode</code></em>
+ is <code class="literal">TRUE</code> then <em class="parameter"><code>path</code></em>
+ is in local filesystem encoding,
+if <em class="parameter"><code>recode</code></em>
+ is <code class="literal">FALSE</code> then <em class="parameter"><code>path</code></em>
+ is assumed to be UTF-8.</p>
+<div class="refsect3">
+<a name="gimp-config-path-unexpand.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>path</p></td>
+<td class="parameter_description"><p>a NUL-terminated string</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>recode</p></td>
+<td class="parameter_description"><p>whether <em class="parameter"><code>path</code></em>
+is in filesystem encoding or UTF-8</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for errors</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-path-unexpand.returns"></a><h4>Returns</h4>
+<p> a newly allocated NUL-terminated UTF-8 string</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-file-new-for-config-path"></a><h3>gimp_file_new_for_config_path ()</h3>
+<pre class="programlisting"><span class="returnvalue">GFile</span> *
+gimp_file_new_for_config_path (<em class="parameter"><code>const <span class="type">gchar</span> *path</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<p>Expands <em class="parameter"><code>path</code></em>
+ using <a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-path-expand" title="gimp_config_path_expand ()"><code class="function">gimp_config_path_expand()</code></a> and returns a <span class="type">GFile</span>
+for the expanded path.</p>
+<p>To reverse the expansion, use <a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-file-get-config-path" title="gimp_file_get_config_path ()"><code class="function">gimp_file_get_config_path()</code></a>.</p>
+<div class="refsect3">
+<a name="gimp-file-new-for-config-path.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>path</p></td>
+<td class="parameter_description"><p>a NUL-terminated string in UTF-8 encoding</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for errors</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-file-new-for-config-path.returns"></a><h4>Returns</h4>
+<p> a newly allocated <span class="type">GFile</span>, or <code class="literal">NULL</code> if the expansion failed.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-file-get-config-path"></a><h3>gimp_file_get_config_path ()</h3>
+<pre class="programlisting"><span class="returnvalue">gchar</span> *
+gimp_file_get_config_path (<em class="parameter"><code><span class="type">GFile</span> *file</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<p>Unexpands <em class="parameter"><code>file</code></em>
+'s path using <a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-path-unexpand" title="gimp_config_path_unexpand ()"><code class="function">gimp_config_path_unexpand()</code></a> and
+returns the unexpanded path.</p>
+<p>The inverse operation of <a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-file-new-for-config-path" title="gimp_file_new_for_config_path ()"><code class="function">gimp_file_new_for_config_path()</code></a>.</p>
+<div class="refsect3">
+<a name="gimp-file-get-config-path.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>file</p></td>
+<td class="parameter_description"><p>a <span class="type">GFile</span></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for errors</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-file-get-config-path.returns"></a><h4>Returns</h4>
+<p> a newly allocated NUL-terminated UTF-8 string, or <code class="literal">NULL</code> if
+unexpanding failed.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-build-data-path"></a><h3>gimp_config_build_data_path ()</h3>
+<pre class="programlisting"><span class="returnvalue">gchar</span> *
+gimp_config_build_data_path (<em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
+<p>Creates a search path as it is used in the gimprc file. The path
+returned by <a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-build-data-path" title="gimp_config_build_data_path ()"><code class="function">gimp_config_build_data_path()</code></a> includes a directory
+below the user's gimp directory and one in the system-wide data
+directory.</p>
+<p>Note that you cannot use this path directly with <a href="../html/libgimpbase-gimpenv.html#gimp-path-parse"><code class="function">gimp_path_parse()</code></a>.
+As it is in the gimprc notation, you first need to expand and
+recode it using <a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-path-expand" title="gimp_config_path_expand ()"><code class="function">gimp_config_path_expand()</code></a>.</p>
+<div class="refsect3">
+<a name="gimp-config-build-data-path.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>name</p></td>
+<td class="parameter_description"><p>directory name (in UTF-8 encoding)</p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-build-data-path.returns"></a><h4>Returns</h4>
+<p> a newly allocated string</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-build-writable-path"></a><h3>gimp_config_build_writable_path ()</h3>
+<pre class="programlisting"><span class="returnvalue">gchar</span> *
+gimp_config_build_writable_path (<em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
+<p>Creates a search path as it is used in the gimprc file. The path
+returned by <a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-build-writable-path" title="gimp_config_build_writable_path ()"><code class="function">gimp_config_build_writable_path()</code></a> is just the writable
+parts of the search path constructed by <a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-build-data-path" title="gimp_config_build_data_path ()"><code class="function">gimp_config_build_data_path()</code></a>.</p>
+<p>Note that you cannot use this path directly with <a href="../html/libgimpbase-gimpenv.html#gimp-path-parse"><code class="function">gimp_path_parse()</code></a>.
+As it is in the gimprc notation, you first need to expand and
+recode it using <a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-path-expand" title="gimp_config_path_expand ()"><code class="function">gimp_config_path_expand()</code></a>.</p>
+<div class="refsect3">
+<a name="gimp-config-build-writable-path.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>name</p></td>
+<td class="parameter_description"><p>directory name (in UTF-8 encoding)</p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-build-writable-path.returns"></a><h4>Returns</h4>
+<p> a newly allocated string</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-build-plug-in-path"></a><h3>gimp_config_build_plug_in_path ()</h3>
+<pre class="programlisting"><span class="returnvalue">gchar</span> *
+gimp_config_build_plug_in_path (<em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
+<p>Creates a search path as it is used in the gimprc file. The path
+returned by <a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-build-plug-in-path" title="gimp_config_build_plug_in_path ()"><code class="function">gimp_config_build_plug_in_path()</code></a> includes a directory
+below the user's gimp directory and one in the system-wide plug-in
+directory.</p>
+<p>Note that you cannot use this path directly with <a href="../html/libgimpbase-gimpenv.html#gimp-path-parse"><code class="function">gimp_path_parse()</code></a>.
+As it is in the gimprc notation, you first need to expand and
+recode it using <a class="link" href="libgimpconfig-GimpConfig-path.html#gimp-config-path-expand" title="gimp_config_path_expand ()"><code class="function">gimp_config_path_expand()</code></a>.</p>
+<div class="refsect3">
+<a name="gimp-config-build-plug-in-path.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>name</p></td>
+<td class="parameter_description"><p>directory name (in UTF-8 encoding)</p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-build-plug-in-path.returns"></a><h4>Returns</h4>
+<p> a newly allocated string</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-VALUE-HOLDS-CONFIG-PATH:CAPS"></a><h3>GIMP_VALUE_HOLDS_CONFIG_PATH()</h3>
+<pre class="programlisting">#define GIMP_VALUE_HOLDS_CONFIG_PATH(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_CONFIG_PATH))
+</pre>
+</div>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-path.other_details"></a><h2>Types and Values</h2>
+<div class="refsect2">
+<a name="GimpConfigPath"></a><h3>GimpConfigPath</h3>
+<pre class="programlisting">typedef gchar * GimpConfigPath; /* to satisfy docs */
+</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpConfigPathType"></a><h3>enum GimpConfigPathType</h3>
+<p>Types of config paths.</p>
+<div class="refsect3">
+<a name="GimpConfigPathType.members"></a><h4>Members</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="300px" class="enum_members_name">
+<col class="enum_members_description">
+<col width="200px" class="enum_members_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="enum_member_name"><p><a name="GIMP-CONFIG-PATH-FILE:CAPS"></a>GIMP_CONFIG_PATH_FILE</p></td>
+<td class="enum_member_description">
+<p>A single file</p>
+</td>
+<td class="enum_member_annotations"> </td>
+</tr>
+<tr>
+<td class="enum_member_name"><p><a name="GIMP-CONFIG-PATH-FILE-LIST:CAPS"></a>GIMP_CONFIG_PATH_FILE_LIST</p></td>
+<td class="enum_member_description">
+<p>A list of files</p>
+</td>
+<td class="enum_member_annotations"> </td>
+</tr>
+<tr>
+<td class="enum_member_name"><p><a name="GIMP-CONFIG-PATH-DIR:CAPS"></a>GIMP_CONFIG_PATH_DIR</p></td>
+<td class="enum_member_description">
+<p>A single folder</p>
+</td>
+<td class="enum_member_annotations"> </td>
+</tr>
+<tr>
+<td class="enum_member_name"><p><a name="GIMP-CONFIG-PATH-DIR-LIST:CAPS"></a>GIMP_CONFIG_PATH_DIR_LIST</p></td>
+<td class="enum_member_description">
+<p>A list of folders</p>
+</td>
+<td class="enum_member_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+</div>
+</div>
+</div>
+<div class="footer">
+<hr>Generated by GTK-Doc V1.33.1</div>
+</body>
+</html> \ No newline at end of file
diff --git a/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-serialize.html b/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-serialize.html
new file mode 100644
index 0000000..21e1cc4
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-serialize.html
@@ -0,0 +1,296 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>GimpConfig-serialize: GIMP Config Library Reference Manual</title>
+<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
+<link rel="home" href="index.html" title="GIMP Config Library Reference Manual">
+<link rel="up" href="pt01.html" title="Part I. GIMP Config Library">
+<link rel="prev" href="libgimpconfig-GimpConfig-deserialize.html" title="GimpConfig-deserialize">
+<link rel="next" href="libgimpconfig-GimpConfigError.html" title="GimpConfig-error">
+<meta name="generator" content="GTK-Doc V1.33.1 (XML mode)">
+<link rel="stylesheet" href="style.css" type="text/css">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
+<td width="100%" align="left" class="shortcuts">
+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
+ <a href="#libgimpconfig-GimpConfig-serialize.description" class="shortcut">Description</a></span>
+</td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
+<td><a accesskey="u" href="pt01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
+<td><a accesskey="p" href="libgimpconfig-GimpConfig-deserialize.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
+<td><a accesskey="n" href="libgimpconfig-GimpConfigError.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
+</tr></table>
+<div class="refentry">
+<a name="libgimpconfig-GimpConfig-serialize"></a><div class="titlepage"></div>
+<div class="refnamediv"><table width="100%"><tr>
+<td valign="top">
+<h2><span class="refentrytitle"><a name="libgimpconfig-GimpConfig-serialize.top_of_page"></a>GimpConfig-serialize</span></h2>
+<p>GimpConfig-serialize — Serializing for libgimpconfig.</p>
+</td>
+<td class="gallery_image" valign="top" align="right"></td>
+</tr></table></div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-serialize.functions"></a><h2>Functions</h2>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="functions_proto_type">
+<col class="functions_proto_name">
+</colgroup>
+<tbody>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-serialize.html#gimp-config-serialize-properties" title="gimp_config_serialize_properties ()">gimp_config_serialize_properties</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-serialize.html#gimp-config-serialize-changed-properties" title="gimp_config_serialize_changed_properties ()">gimp_config_serialize_changed_properties</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-serialize.html#gimp-config-serialize-property" title="gimp_config_serialize_property ()">gimp_config_serialize_property</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-serialize.html#gimp-config-serialize-property-by-name" title="gimp_config_serialize_property_by_name ()">gimp_config_serialize_property_by_name</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-serialize.html#gimp-config-serialize-value" title="gimp_config_serialize_value ()">gimp_config_serialize_value</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-serialize.description"></a><h2>Description</h2>
+<p>Serializing interface for libgimpconfig.</p>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-serialize.functions_details"></a><h2>Functions</h2>
+<div class="refsect2">
+<a name="gimp-config-serialize-properties"></a><h3>gimp_config_serialize_properties ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_serialize_properties (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>,
+ <em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> *writer</code></em>);</pre>
+<p>This function writes all object properties to the <em class="parameter"><code>writer</code></em>
+.</p>
+<div class="refsect3">
+<a name="gimp-config-serialize-properties.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>writer</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-serialize-properties.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if serialization succeeded, <code class="literal">FALSE</code> otherwise</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-serialize-changed-properties"></a><h3>gimp_config_serialize_changed_properties ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_serialize_changed_properties
+ (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>,
+ <em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> *writer</code></em>);</pre>
+<p>This function writes all object properties that have been changed from
+their default values to the <em class="parameter"><code>writer</code></em>
+.</p>
+<div class="refsect3">
+<a name="gimp-config-serialize-changed-properties.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>writer</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-serialize-changed-properties.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if serialization succeeded, <code class="literal">FALSE</code> otherwise</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-serialize-property"></a><h3>gimp_config_serialize_property ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_serialize_property (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>,
+ <em class="parameter"><code><span class="type">GParamSpec</span> *param_spec</code></em>,
+ <em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> *writer</code></em>);</pre>
+<p>This function serializes a single object property to the <em class="parameter"><code>writer</code></em>
+.</p>
+<div class="refsect3">
+<a name="gimp-config-serialize-property.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>param_spec</p></td>
+<td class="parameter_description"><p>a <span class="type">GParamSpec</span>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>writer</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-serialize-property.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if serialization succeeded, <code class="literal">FALSE</code> otherwise</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-serialize-property-by-name"></a><h3>gimp_config_serialize_property_by_name ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_serialize_property_by_name
+ (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *prop_name</code></em>,
+ <em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> *writer</code></em>);</pre>
+<p>This function serializes a single object property to the <em class="parameter"><code>writer</code></em>
+.</p>
+<div class="refsect3">
+<a name="gimp-config-serialize-property-by-name.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>prop_name</p></td>
+<td class="parameter_description"><p>the property's name.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>writer</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-serialize-property-by-name.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if serialization succeeded, <code class="literal">FALSE</code> otherwise</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-6.html#api-index-2.6">2.6</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-serialize-value"></a><h3>gimp_config_serialize_value ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_serialize_value (<em class="parameter"><code>const <span class="type">GValue</span> *value</code></em>,
+ <em class="parameter"><code><span class="type">GString</span> *str</code></em>,
+ <em class="parameter"><code><span class="type">gboolean</span> escaped</code></em>);</pre>
+<p>This utility function appends a string representation of <span class="type">GValue</span> to <em class="parameter"><code>str</code></em>
+.</p>
+<div class="refsect3">
+<a name="gimp-config-serialize-value.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>value</p></td>
+<td class="parameter_description"><p>a <span class="type">GValue</span>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>str</p></td>
+<td class="parameter_description"><p>a <span class="type">GString</span>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>escaped</p></td>
+<td class="parameter_description"><p>whether to escape string values.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-serialize-value.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if serialization succeeded, <code class="literal">FALSE</code> otherwise.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+</div>
+</div>
+<div class="footer">
+<hr>Generated by GTK-Doc V1.33.1</div>
+</body>
+</html> \ No newline at end of file
diff --git a/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-utils.html b/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-utils.html
new file mode 100644
index 0000000..c2b5441
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig-utils.html
@@ -0,0 +1,294 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>GimpConfig-utils: GIMP Config Library Reference Manual</title>
+<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
+<link rel="home" href="index.html" title="GIMP Config Library Reference Manual">
+<link rel="up" href="pt01.html" title="Part I. GIMP Config Library">
+<link rel="prev" href="libgimpconfig-GimpConfig-path.html" title="GimpConfig-path">
+<link rel="next" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">
+<meta name="generator" content="GTK-Doc V1.33.1 (XML mode)">
+<link rel="stylesheet" href="style.css" type="text/css">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
+<td width="100%" align="left" class="shortcuts">
+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
+ <a href="#libgimpconfig-GimpConfig-utils.description" class="shortcut">Description</a></span>
+</td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
+<td><a accesskey="u" href="pt01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
+<td><a accesskey="p" href="libgimpconfig-GimpConfig-path.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
+<td><a accesskey="n" href="libgimpconfig-GimpConfigWriter.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
+</tr></table>
+<div class="refentry">
+<a name="libgimpconfig-GimpConfig-utils"></a><div class="titlepage"></div>
+<div class="refnamediv"><table width="100%"><tr>
+<td valign="top">
+<h2><span class="refentrytitle"><a name="libgimpconfig-GimpConfig-utils.top_of_page"></a>GimpConfig-utils</span></h2>
+<p>GimpConfig-utils — Miscellaneous utility functions for libgimpconfig.</p>
+</td>
+<td class="gallery_image" valign="top" align="right"></td>
+</tr></table></div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-utils.functions"></a><h2>Functions</h2>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="functions_proto_type">
+<col class="functions_proto_name">
+</colgroup>
+<tbody>
+<tr>
+<td class="function_type">
+<span class="returnvalue">GList</span> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-utils.html#gimp-config-diff" title="gimp_config_diff ()">gimp_config_diff</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-utils.html#gimp-config-sync" title="gimp_config_sync ()">gimp_config_sync</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">void</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-utils.html#gimp-config-reset-properties" title="gimp_config_reset_properties ()">gimp_config_reset_properties</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">void</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-utils.html#gimp-config-reset-property" title="gimp_config_reset_property ()">gimp_config_reset_property</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">void</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig-utils.html#gimp-config-string-append-escaped" title="gimp_config_string_append_escaped ()">gimp_config_string_append_escaped</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-utils.description"></a><h2>Description</h2>
+<p>Miscellaneous utility functions for libgimpconfig.</p>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig-utils.functions_details"></a><h2>Functions</h2>
+<div class="refsect2">
+<a name="gimp-config-diff"></a><h3>gimp_config_diff ()</h3>
+<pre class="programlisting"><span class="returnvalue">GList</span> *
+gimp_config_diff (<em class="parameter"><code><span class="type">GObject</span> *a</code></em>,
+ <em class="parameter"><code><span class="type">GObject</span> *b</code></em>,
+ <em class="parameter"><code><span class="type">GParamFlags</span> flags</code></em>);</pre>
+<p>Compares all properties of <em class="parameter"><code>a</code></em>
+ and <em class="parameter"><code>b</code></em>
+ that have all <em class="parameter"><code>flags</code></em>
+ set. If
+<em class="parameter"><code>flags</code></em>
+ is 0, all properties are compared.</p>
+<p>If the two objects are not of the same type, only properties that
+exist in both object classes and are of the same value_type are
+compared.</p>
+<div class="refsect3">
+<a name="gimp-config-diff.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>a</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>b</p></td>
+<td class="parameter_description"><p>another <span class="type">GObject</span> object</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>flags</p></td>
+<td class="parameter_description"><p>a mask of GParamFlags</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-diff.returns"></a><h4>Returns</h4>
+<p> a GList of differing GParamSpecs.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-sync"></a><h3>gimp_config_sync ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_sync (<em class="parameter"><code><span class="type">GObject</span> *src</code></em>,
+ <em class="parameter"><code><span class="type">GObject</span> *dest</code></em>,
+ <em class="parameter"><code><span class="type">GParamFlags</span> flags</code></em>);</pre>
+<p>Compares all read- and write-able properties from <em class="parameter"><code>src</code></em>
+ and <em class="parameter"><code>dest</code></em>
+
+that have all <em class="parameter"><code>flags</code></em>
+ set. Differing values are then copied from
+<em class="parameter"><code>src</code></em>
+ to <em class="parameter"><code>dest</code></em>
+. If <em class="parameter"><code>flags</code></em>
+ is 0, all differing read/write properties.</p>
+<p>Properties marked as "construct-only" are not touched.</p>
+<p>If the two objects are not of the same type, only properties that
+exist in both object classes and are of the same value_type are
+synchronized</p>
+<div class="refsect3">
+<a name="gimp-config-sync.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>src</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>dest</p></td>
+<td class="parameter_description"><p>another <span class="type">GObject</span></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>flags</p></td>
+<td class="parameter_description"><p>a mask of GParamFlags</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-sync.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if <em class="parameter"><code>dest</code></em>
+was modified, <code class="literal">FALSE</code> otherwise</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-reset-properties"></a><h3>gimp_config_reset_properties ()</h3>
+<pre class="programlisting"><span class="returnvalue">void</span>
+gimp_config_reset_properties (<em class="parameter"><code><span class="type">GObject</span> *object</code></em>);</pre>
+<p>Resets all writable properties of <em class="parameter"><code>object</code></em>
+ to the default values as
+defined in their <span class="type">GParamSpec</span>. Properties marked as "construct-only"
+are not touched.</p>
+<p>If you want to reset a <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> object, please use <a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-reset" title="gimp_config_reset ()"><code class="function">gimp_config_reset()</code></a>.</p>
+<div class="refsect3">
+<a name="gimp-config-reset-properties.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>object</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span></p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-reset-property"></a><h3>gimp_config_reset_property ()</h3>
+<pre class="programlisting"><span class="returnvalue">void</span>
+gimp_config_reset_property (<em class="parameter"><code><span class="type">GObject</span> *object</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *property_name</code></em>);</pre>
+<p>Resets the property named <em class="parameter"><code>property_name</code></em>
+ to its default value. The
+property must be writable and must not be marked as "construct-only".</p>
+<div class="refsect3">
+<a name="gimp-config-reset-property.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>object</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>property_name</p></td>
+<td class="parameter_description"><p>name of the property to reset</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-string-append-escaped"></a><h3>gimp_config_string_append_escaped ()</h3>
+<pre class="programlisting"><span class="returnvalue">void</span>
+gimp_config_string_append_escaped (<em class="parameter"><code><span class="type">GString</span> *string</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *val</code></em>);</pre>
+<p>Escapes and quotes <em class="parameter"><code>val</code></em>
+ and appends it to <em class="parameter"><code>string</code></em>
+. The escape
+algorithm is different from the one used by <code class="function">g_strescape()</code> since it
+leaves non-ASCII characters intact and thus preserves UTF-8
+strings. Only control characters and quotes are being escaped.</p>
+<div class="refsect3">
+<a name="gimp-config-string-append-escaped.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>string</p></td>
+<td class="parameter_description"><p>pointer to a <span class="type">GString</span></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>val</p></td>
+<td class="parameter_description"><p>a string to append or <code class="literal">NULL</code></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+</div>
+</div>
+<div class="footer">
+<hr>Generated by GTK-Doc V1.33.1</div>
+</body>
+</html> \ No newline at end of file
diff --git a/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig.html b/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig.html
new file mode 100644
index 0000000..b983e9e
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfig.html
@@ -0,0 +1,989 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>GimpConfig-iface: GIMP Config Library Reference Manual</title>
+<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
+<link rel="home" href="index.html" title="GIMP Config Library Reference Manual">
+<link rel="up" href="pt01.html" title="Part I. GIMP Config Library">
+<link rel="prev" href="libgimpconfig-hierarchy.html" title="Object Hierarchy">
+<link rel="next" href="libgimpconfig-GimpConfig-deserialize.html" title="GimpConfig-deserialize">
+<meta name="generator" content="GTK-Doc V1.33.1 (XML mode)">
+<link rel="stylesheet" href="style.css" type="text/css">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
+<td width="100%" align="left" class="shortcuts">
+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
+ <a href="#libgimpconfig-GimpConfig.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
+ <a href="#libgimpconfig-GimpConfig.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_prerequisites">  <span class="dim">|</span> 
+ <a href="#libgimpconfig-GimpConfig.prerequisites" class="shortcut">Prerequisites</a></span>
+</td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
+<td><a accesskey="u" href="pt01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
+<td><a accesskey="p" href="libgimpconfig-hierarchy.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
+<td><a accesskey="n" href="libgimpconfig-GimpConfig-deserialize.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
+</tr></table>
+<div class="refentry">
+<a name="libgimpconfig-GimpConfig"></a><div class="titlepage"></div>
+<div class="refnamediv"><table width="100%"><tr>
+<td valign="top">
+<h2><span class="refentrytitle"><a name="libgimpconfig-GimpConfig.top_of_page"></a>GimpConfig-iface</span></h2>
+<p>GimpConfig-iface — High-level API for libgimpconfig.</p>
+</td>
+<td class="gallery_image" valign="top" align="right"></td>
+</tr></table></div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig.functions"></a><h2>Functions</h2>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="functions_proto_type">
+<col class="functions_proto_name">
+</colgroup>
+<tbody>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-serialize" title="gimp_config_serialize ()">gimp_config_serialize</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-serialize-to-file" title="gimp_config_serialize_to_file ()">gimp_config_serialize_to_file</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-serialize-to-gfile" title="gimp_config_serialize_to_gfile ()">gimp_config_serialize_to_gfile</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-serialize-to-stream" title="gimp_config_serialize_to_stream ()">gimp_config_serialize_to_stream</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-serialize-to-fd" title="gimp_config_serialize_to_fd ()">gimp_config_serialize_to_fd</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gchar</span> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-serialize-to-string" title="gimp_config_serialize_to_string ()">gimp_config_serialize_to_string</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-deserialize" title="gimp_config_deserialize ()">gimp_config_deserialize</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-deserialize-file" title="gimp_config_deserialize_file ()">gimp_config_deserialize_file</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-deserialize-gfile" title="gimp_config_deserialize_gfile ()">gimp_config_deserialize_gfile</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-deserialize-stream" title="gimp_config_deserialize_stream ()">gimp_config_deserialize_stream</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-deserialize-string" title="gimp_config_deserialize_string ()">gimp_config_deserialize_string</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-deserialize-return" title="gimp_config_deserialize_return ()">gimp_config_deserialize_return</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gpointer</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-duplicate" title="gimp_config_duplicate ()">gimp_config_duplicate</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-is-equal-to" title="gimp_config_is_equal_to ()">gimp_config_is_equal_to</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">void</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-reset" title="gimp_config_reset ()">gimp_config_reset</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfig.html#gimp-config-copy" title="gimp_config_copy ()">gimp_config_copy</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<a name="GimpConfigInterface"></a><div class="refsect1">
+<a name="libgimpconfig-GimpConfig.other"></a><h2>Types and Values</h2>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="other_proto_type">
+<col class="other_proto_name">
+</colgroup>
+<tbody>
+<tr>
+<td class="datatype_keyword"> </td>
+<td class="function_name"><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig">GimpConfig</a></td>
+</tr>
+<tr>
+<td class="datatype_keyword">struct</td>
+<td class="function_name"><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface-struct" title="struct GimpConfigInterface">GimpConfigInterface</a></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig.object-hierarchy"></a><h2>Object Hierarchy</h2>
+<pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/GTypeModule.html">GInterface</a>
+ <span class="lineart">╰──</span> GimpConfigInterface
+</pre>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig.prerequisites"></a><h2>Prerequisites</h2>
+<p>
+GimpConfigInterface requires
+ GObject.</p>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig.description"></a><h2>Description</h2>
+<p>High-level API for libgimpconfig.</p>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig.functions_details"></a><h2>Functions</h2>
+<div class="refsect2">
+<a name="gimp-config-serialize"></a><h3>gimp_config_serialize ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_serialize (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>,
+ <em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> *writer</code></em>,
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>);</pre>
+<p>Serialize the <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> object.</p>
+<div class="refsect3">
+<a name="gimp-config-serialize.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span> that implements the <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>writer</p></td>
+<td class="parameter_description"><p>the <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> to use.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>data</p></td>
+<td class="parameter_description"><p>client data</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-serialize.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if serialization succeeded, <code class="literal">FALSE</code> otherwise.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-8.html#api-index-2.8">2.8</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-serialize-to-file"></a><h3>gimp_config_serialize_to_file ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_serialize_to_file (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *filename</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *header</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *footer</code></em>,
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<p>Serializes the object properties of <em class="parameter"><code>config</code></em>
+ to the file specified
+by <em class="parameter"><code>filename</code></em>
+. If a file with that name already exists, it is
+overwritten. Basically this function opens <em class="parameter"><code>filename</code></em>
+ for you and
+calls the serialize function of the <em class="parameter"><code>config</code></em>
+'s <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p>
+<div class="refsect3">
+<a name="gimp-config-serialize-to-file.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span> that implements the <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>filename</p></td>
+<td class="parameter_description"><p>the name of the file to write the configuration to.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>header</p></td>
+<td class="parameter_description"><p>optional file header (must be ASCII only)</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>footer</p></td>
+<td class="parameter_description"><p>optional file footer (must be ASCII only)</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>data</p></td>
+<td class="parameter_description"><p>user data passed to the serialize implementation.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for a possible error</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-serialize-to-file.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if serialization succeeded, <code class="literal">FALSE</code> otherwise.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-serialize-to-gfile"></a><h3>gimp_config_serialize_to_gfile ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_serialize_to_gfile (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>,
+ <em class="parameter"><code><span class="type">GFile</span> *file</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *header</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *footer</code></em>,
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<p>Serializes the object properties of <em class="parameter"><code>config</code></em>
+ to the file specified
+by <em class="parameter"><code>file</code></em>
+. If a file with that name already exists, it is
+overwritten. Basically this function opens <em class="parameter"><code>file</code></em>
+ for you and calls
+the serialize function of the <em class="parameter"><code>config</code></em>
+'s <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p>
+<div class="refsect3">
+<a name="gimp-config-serialize-to-gfile.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span> that implements the <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>file</p></td>
+<td class="parameter_description"><p>the <span class="type">GFile</span> to write the configuration to.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>header</p></td>
+<td class="parameter_description"><p>optional file header (must be ASCII only)</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>footer</p></td>
+<td class="parameter_description"><p>optional file footer (must be ASCII only)</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>data</p></td>
+<td class="parameter_description"><p>user data passed to the serialize implementation.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for a possible error</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-serialize-to-gfile.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if serialization succeeded, <code class="literal">FALSE</code> otherwise.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-serialize-to-stream"></a><h3>gimp_config_serialize_to_stream ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_serialize_to_stream (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>,
+ <em class="parameter"><code><span class="type">GOutputStream</span> *output</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *header</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *footer</code></em>,
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<p>Serializes the object properties of <em class="parameter"><code>config</code></em>
+ to the stream specified
+by <em class="parameter"><code>output</code></em>
+.</p>
+<div class="refsect3">
+<a name="gimp-config-serialize-to-stream.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span> that implements the <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>output</p></td>
+<td class="parameter_description"><p>the <span class="type">GOutputStream</span> to write the configuration to.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>header</p></td>
+<td class="parameter_description"><p>optional file header (must be ASCII only)</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>footer</p></td>
+<td class="parameter_description"><p>optional file footer (must be ASCII only)</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>data</p></td>
+<td class="parameter_description"><p>user data passed to the serialize implementation.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for a possible error</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-serialize-to-stream.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if serialization succeeded, <code class="literal">FALSE</code> otherwise.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-serialize-to-fd"></a><h3>gimp_config_serialize_to_fd ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_serialize_to_fd (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>,
+ <em class="parameter"><code><span class="type">gint</span> fd</code></em>,
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>);</pre>
+<p>Serializes the object properties of <em class="parameter"><code>config</code></em>
+ to the given file
+descriptor.</p>
+<div class="refsect3">
+<a name="gimp-config-serialize-to-fd.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span> that implements the <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>fd</p></td>
+<td class="parameter_description"><p>a file descriptor, opened for writing</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>data</p></td>
+<td class="parameter_description"><p>user data passed to the serialize implementation.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-serialize-to-fd.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if serialization succeeded, <code class="literal">FALSE</code> otherwise.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-serialize-to-string"></a><h3>gimp_config_serialize_to_string ()</h3>
+<pre class="programlisting"><span class="returnvalue">gchar</span> *
+gimp_config_serialize_to_string (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>,
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>);</pre>
+<p>Serializes the object properties of <em class="parameter"><code>config</code></em>
+ to a string.</p>
+<div class="refsect3">
+<a name="gimp-config-serialize-to-string.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span> that implements the <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>data</p></td>
+<td class="parameter_description"><p>user data passed to the serialize implementation.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-serialize-to-string.returns"></a><h4>Returns</h4>
+<p> a newly allocated NUL-terminated string.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-deserialize"></a><h3>gimp_config_deserialize ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_deserialize (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>,
+ <em class="parameter"><code><span class="type">GScanner</span> *scanner</code></em>,
+ <em class="parameter"><code><span class="type">gint</span> nest_level</code></em>,
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>);</pre>
+<p>Deserialize the <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> object.</p>
+<div class="refsect3">
+<a name="gimp-config-deserialize.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span> that implements the <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>scanner</p></td>
+<td class="parameter_description"><p>the <span class="type">GScanner</span> to use.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>nest_level</p></td>
+<td class="parameter_description"><p>the nest level.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>data</p></td>
+<td class="parameter_description"><p>client data.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-deserialize.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if deserialization succeeded, <code class="literal">FALSE</code> otherwise.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-8.html#api-index-2.8">2.8</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-deserialize-file"></a><h3>gimp_config_deserialize_file ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_deserialize_file (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *filename</code></em>,
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<p>Opens the file specified by <em class="parameter"><code>filename</code></em>
+, reads configuration data
+from it and configures <em class="parameter"><code>config</code></em>
+ accordingly. Basically this function
+creates a properly configured <span class="type">GScanner</span> for you and calls the
+deserialize function of the <em class="parameter"><code>config</code></em>
+'s <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p>
+<div class="refsect3">
+<a name="gimp-config-deserialize-file.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span> that implements the <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>filename</p></td>
+<td class="parameter_description"><p>the name of the file to read configuration from.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>data</p></td>
+<td class="parameter_description"><p>user data passed to the deserialize implementation.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for a possible error</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-deserialize-file.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if deserialization succeeded, <code class="literal">FALSE</code> otherwise.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-deserialize-gfile"></a><h3>gimp_config_deserialize_gfile ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_deserialize_gfile (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>,
+ <em class="parameter"><code><span class="type">GFile</span> *file</code></em>,
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<p>Opens the file specified by <em class="parameter"><code>file</code></em>
+, reads configuration data from it
+and configures <em class="parameter"><code>config</code></em>
+ accordingly. Basically this function creates
+a properly configured <span class="type">GScanner</span> for you and calls the deserialize
+function of the <em class="parameter"><code>config</code></em>
+'s <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p>
+<div class="refsect3">
+<a name="gimp-config-deserialize-gfile.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span> that implements the <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>file</p></td>
+<td class="parameter_description"><p>the <span class="type">GFile</span> to read configuration from.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>data</p></td>
+<td class="parameter_description"><p>user data passed to the deserialize implementation.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for a possible error</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-deserialize-gfile.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if deserialization succeeded, <code class="literal">FALSE</code> otherwise.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-deserialize-stream"></a><h3>gimp_config_deserialize_stream ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_deserialize_stream (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>,
+ <em class="parameter"><code><span class="type">GInputStream</span> *input</code></em>,
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<p>Reads configuration data from <em class="parameter"><code>input</code></em>
+ and configures <em class="parameter"><code>config</code></em>
+
+accordingly. Basically this function creates a properly configured
+<span class="type">GScanner</span> for you and calls the deserialize function of the
+<em class="parameter"><code>config</code></em>
+'s <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p>
+<div class="refsect3">
+<a name="gimp-config-deserialize-stream.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span> that implements the <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>input</p></td>
+<td class="parameter_description"><p>the <span class="type">GInputStream</span> to read configuration from.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>data</p></td>
+<td class="parameter_description"><p>user data passed to the deserialize implementation.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for a possible error</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-deserialize-stream.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if deserialization succeeded, <code class="literal">FALSE</code> otherwise.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-deserialize-string"></a><h3>gimp_config_deserialize_string ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_deserialize_string (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>,
+ <em class="parameter"><code><span class="type">gint</span> text_len</code></em>,
+ <em class="parameter"><code><span class="type">gpointer</span> data</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<p>Configures <em class="parameter"><code>config</code></em>
+ from <em class="parameter"><code>text</code></em>
+. Basically this function creates a
+properly configured <span class="type">GScanner</span> for you and calls the deserialize
+function of the <em class="parameter"><code>config</code></em>
+'s <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p>
+<div class="refsect3">
+<a name="gimp-config-deserialize-string.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span> that implements the <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>text</p></td>
+<td class="parameter_description"><p>string to deserialize (in UTF-8 encoding)</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>text_len</p></td>
+<td class="parameter_description"><p>length of <em class="parameter"><code>text</code></em>
+in bytes or -1</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>data</p></td>
+<td class="parameter_description"><p>client data</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for a possible error</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-deserialize-string.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if deserialization succeeded, <code class="literal">FALSE</code> otherwise.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-deserialize-return"></a><h3>gimp_config_deserialize_return ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_deserialize_return (<em class="parameter"><code><span class="type">GScanner</span> *scanner</code></em>,
+ <em class="parameter"><code><span class="type">GTokenType</span> expected_token</code></em>,
+ <em class="parameter"><code><span class="type">gint</span> nest_level</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-config-deserialize-return.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>scanner</p></td>
+<td class="parameter_description"><p>a <span class="type">GScanner</span></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>expected_token</p></td>
+<td class="parameter_description"><p>the expected token</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>nest_level</p></td>
+<td class="parameter_description"><p>the nest level</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-duplicate"></a><h3>gimp_config_duplicate ()</h3>
+<pre class="programlisting"><span class="returnvalue">gpointer</span>
+gimp_config_duplicate (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>);</pre>
+<p>Creates a copy of the passed object by copying all object
+properties. The default implementation of the <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>
+only works for objects that are completely defined by their
+properties.</p>
+<div class="refsect3">
+<a name="gimp-config-duplicate.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span> that implements the <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-duplicate.returns"></a><h4>Returns</h4>
+<p> the duplicated <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> object</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-is-equal-to"></a><h3>gimp_config_is_equal_to ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_is_equal_to (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *a</code></em>,
+ <em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *b</code></em>);</pre>
+<p>Compares the two objects. The default implementation of the
+<a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a> compares the object properties and thus only
+works for objects that are completely defined by their
+properties.</p>
+<div class="refsect3">
+<a name="gimp-config-is-equal-to.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>a</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span> that implements the <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>b</p></td>
+<td class="parameter_description"><p>another <span class="type">GObject</span> of the same type as <em class="parameter"><code>a</code></em>
+.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-is-equal-to.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if the two objects are equal.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-reset"></a><h3>gimp_config_reset ()</h3>
+<pre class="programlisting"><span class="returnvalue">void</span>
+gimp_config_reset (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *config</code></em>);</pre>
+<p>Resets the object to its default state. The default implementation of the
+<a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a> only works for objects that are completely defined by
+their properties.</p>
+<div class="refsect3">
+<a name="gimp-config-reset.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>config</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span> that implements the <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-copy"></a><h3>gimp_config_copy ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_copy (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *src</code></em>,
+ <em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfig.html#GimpConfig" title="GimpConfig"><span class="type">GimpConfig</span></a> *dest</code></em>,
+ <em class="parameter"><code><span class="type">GParamFlags</span> flags</code></em>);</pre>
+<p>Compares all read- and write-able properties from <em class="parameter"><code>src</code></em>
+ and <em class="parameter"><code>dest</code></em>
+
+that have all <em class="parameter"><code>flags</code></em>
+ set. Differing values are then copied from
+<em class="parameter"><code>src</code></em>
+ to <em class="parameter"><code>dest</code></em>
+. If <em class="parameter"><code>flags</code></em>
+ is 0, all differing read/write properties.</p>
+<p>Properties marked as "construct-only" are not touched.</p>
+<div class="refsect3">
+<a name="gimp-config-copy.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>src</p></td>
+<td class="parameter_description"><p>a <span class="type">GObject</span> that implements the <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface"><span class="type">GimpConfigInterface</span></a>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>dest</p></td>
+<td class="parameter_description"><p>another <span class="type">GObject</span> of the same type as <em class="parameter"><code>a</code></em>
+.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>flags</p></td>
+<td class="parameter_description"><p>a mask of GParamFlags</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-copy.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if <em class="parameter"><code>dest</code></em>
+was modified, <code class="literal">FALSE</code> otherwise</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-6.html#api-index-2.6">2.6</a></p>
+</div>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfig.other_details"></a><h2>Types and Values</h2>
+<div class="refsect2">
+<a name="GimpConfig"></a><h3>GimpConfig</h3>
+<pre class="programlisting">typedef struct _GimpConfig GimpConfig;</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GimpConfigInterface-struct"></a><h3>struct GimpConfigInterface</h3>
+<pre class="programlisting">struct GimpConfigInterface;</pre>
+</div>
+</div>
+</div>
+<div class="footer">
+<hr>Generated by GTK-Doc V1.33.1</div>
+</body>
+</html> \ No newline at end of file
diff --git a/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfigError.html b/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfigError.html
new file mode 100644
index 0000000..30e790d
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfigError.html
@@ -0,0 +1,152 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>GimpConfig-error: GIMP Config Library Reference Manual</title>
+<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
+<link rel="home" href="index.html" title="GIMP Config Library Reference Manual">
+<link rel="up" href="pt01.html" title="Part I. GIMP Config Library">
+<link rel="prev" href="libgimpconfig-GimpConfig-serialize.html" title="GimpConfig-serialize">
+<link rel="next" href="libgimpconfig-GimpConfig-params.html" title="GimpConfig-params">
+<meta name="generator" content="GTK-Doc V1.33.1 (XML mode)">
+<link rel="stylesheet" href="style.css" type="text/css">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
+<td width="100%" align="left" class="shortcuts">
+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
+ <a href="#libgimpconfig-GimpConfigError.description" class="shortcut">Description</a></span>
+</td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
+<td><a accesskey="u" href="pt01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
+<td><a accesskey="p" href="libgimpconfig-GimpConfig-serialize.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
+<td><a accesskey="n" href="libgimpconfig-GimpConfig-params.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
+</tr></table>
+<div class="refentry">
+<a name="libgimpconfig-GimpConfigError"></a><div class="titlepage"></div>
+<div class="refnamediv"><table width="100%"><tr>
+<td valign="top">
+<h2><span class="refentrytitle"><a name="libgimpconfig-GimpConfigError.top_of_page"></a>GimpConfig-error</span></h2>
+<p>GimpConfig-error — Error utils for libgimpconfig.</p>
+</td>
+<td class="gallery_image" valign="top" align="right"></td>
+</tr></table></div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfigError.functions"></a><h2>Functions</h2>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="functions_proto_type">
+<col class="functions_proto_name">
+</colgroup>
+<tbody><tr>
+<td class="function_type">
+<span class="returnvalue">GQuark</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfigError.html#gimp-config-error-quark" title="gimp_config_error_quark ()">gimp_config_error_quark</a> <span class="c_punctuation">()</span>
+</td>
+</tr></tbody>
+</table></div>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfigError.other"></a><h2>Types and Values</h2>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="other_proto_type">
+<col class="other_proto_name">
+</colgroup>
+<tbody>
+<tr>
+<td class="datatype_keyword">enum</td>
+<td class="function_name"><a class="link" href="libgimpconfig-GimpConfigError.html#GimpConfigError" title="enum GimpConfigError">GimpConfigError</a></td>
+</tr>
+<tr>
+<td class="define_keyword">#define</td>
+<td class="function_name"><a class="link" href="libgimpconfig-GimpConfigError.html#GIMP-CONFIG-ERROR:CAPS" title="GIMP_CONFIG_ERROR">GIMP_CONFIG_ERROR</a></td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfigError.description"></a><h2>Description</h2>
+<p>Error utils for libgimpconfig.</p>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfigError.functions_details"></a><h2>Functions</h2>
+<div class="refsect2">
+<a name="gimp-config-error-quark"></a><h3>gimp_config_error_quark ()</h3>
+<pre class="programlisting"><span class="returnvalue">GQuark</span>
+gimp_config_error_quark (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
+<p>This function is never called directly. Use <a class="link" href="libgimpconfig-GimpConfigError.html#GIMP-CONFIG-ERROR:CAPS" title="GIMP_CONFIG_ERROR"><code class="function">GIMP_CONFIG_ERROR()</code></a> instead.</p>
+<div class="refsect3">
+<a name="gimp-config-error-quark.returns"></a><h4>Returns</h4>
+<p> the <span class="type">GQuark</span> that defines the GimpConfig error domain.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfigError.other_details"></a><h2>Types and Values</h2>
+<div class="refsect2">
+<a name="GimpConfigError"></a><h3>enum GimpConfigError</h3>
+<p>The possible values of a <span class="type">GError</span> thrown by libgimpconfig.</p>
+<div class="refsect3">
+<a name="GimpConfigError.members"></a><h4>Members</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="300px" class="enum_members_name">
+<col class="enum_members_description">
+<col width="200px" class="enum_members_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="enum_member_name"><p><a name="GIMP-CONFIG-ERROR-OPEN:CAPS"></a>GIMP_CONFIG_ERROR_OPEN</p></td>
+<td class="enum_member_description">
+<p>open failed</p>
+</td>
+<td class="enum_member_annotations"> </td>
+</tr>
+<tr>
+<td class="enum_member_name"><p><a name="GIMP-CONFIG-ERROR-OPEN-ENOENT:CAPS"></a>GIMP_CONFIG_ERROR_OPEN_ENOENT</p></td>
+<td class="enum_member_description">
+<p>file does not exist</p>
+</td>
+<td class="enum_member_annotations"> </td>
+</tr>
+<tr>
+<td class="enum_member_name"><p><a name="GIMP-CONFIG-ERROR-WRITE:CAPS"></a>GIMP_CONFIG_ERROR_WRITE</p></td>
+<td class="enum_member_description">
+<p>write failed</p>
+</td>
+<td class="enum_member_annotations"> </td>
+</tr>
+<tr>
+<td class="enum_member_name"><p><a name="GIMP-CONFIG-ERROR-PARSE:CAPS"></a>GIMP_CONFIG_ERROR_PARSE</p></td>
+<td class="enum_member_description">
+<p>parser error</p>
+</td>
+<td class="enum_member_annotations"> </td>
+</tr>
+<tr>
+<td class="enum_member_name"><p><a name="GIMP-CONFIG-ERROR-VERSION:CAPS"></a>GIMP_CONFIG_ERROR_VERSION</p></td>
+<td class="enum_member_description">
+<p>parser failed due to version mismatch</p>
+</td>
+<td class="enum_member_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+</div>
+<hr>
+<div class="refsect2">
+<a name="GIMP-CONFIG-ERROR:CAPS"></a><h3>GIMP_CONFIG_ERROR</h3>
+<pre class="programlisting">#define GIMP_CONFIG_ERROR (gimp_config_error_quark ())
+</pre>
+</div>
+</div>
+</div>
+<div class="footer">
+<hr>Generated by GTK-Doc V1.33.1</div>
+</body>
+</html> \ No newline at end of file
diff --git a/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfigWriter.html b/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfigWriter.html
new file mode 100644
index 0000000..c6b7e56
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/libgimpconfig-GimpConfigWriter.html
@@ -0,0 +1,763 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>GimpConfigWriter: GIMP Config Library Reference Manual</title>
+<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
+<link rel="home" href="index.html" title="GIMP Config Library Reference Manual">
+<link rel="up" href="pt01.html" title="Part I. GIMP Config Library">
+<link rel="prev" href="libgimpconfig-GimpConfig-utils.html" title="GimpConfig-utils">
+<link rel="next" href="libgimpconfig-GimpScanner.html" title="GimpScanner">
+<meta name="generator" content="GTK-Doc V1.33.1 (XML mode)">
+<link rel="stylesheet" href="style.css" type="text/css">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
+<td width="100%" align="left" class="shortcuts">
+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
+ <a href="#libgimpconfig-GimpConfigWriter.description" class="shortcut">Description</a></span>
+</td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
+<td><a accesskey="u" href="pt01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
+<td><a accesskey="p" href="libgimpconfig-GimpConfig-utils.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
+<td><a accesskey="n" href="libgimpconfig-GimpScanner.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
+</tr></table>
+<div class="refentry">
+<a name="libgimpconfig-GimpConfigWriter"></a><div class="titlepage"></div>
+<div class="refnamediv"><table width="100%"><tr>
+<td valign="top">
+<h2><span class="refentrytitle"><a name="libgimpconfig-GimpConfigWriter.top_of_page"></a>GimpConfigWriter</span></h2>
+<p>GimpConfigWriter — Functions for writing config info to a file for
+libgimpconfig.</p>
+</td>
+<td class="gallery_image" valign="top" align="right"></td>
+</tr></table></div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfigWriter.functions"></a><h2>Functions</h2>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="functions_proto_type">
+<col class="functions_proto_name">
+</colgroup>
+<tbody>
+<tr>
+<td class="function_type">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="returnvalue">GimpConfigWriter</span></a> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-new-file" title="gimp_config_writer_new_file ()">gimp_config_writer_new_file</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="returnvalue">GimpConfigWriter</span></a> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-new-gfile" title="gimp_config_writer_new_gfile ()">gimp_config_writer_new_gfile</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="returnvalue">GimpConfigWriter</span></a> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-new-stream" title="gimp_config_writer_new_stream ()">gimp_config_writer_new_stream</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="returnvalue">GimpConfigWriter</span></a> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-new-fd" title="gimp_config_writer_new_fd ()">gimp_config_writer_new_fd</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="returnvalue">GimpConfigWriter</span></a> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-new-string" title="gimp_config_writer_new_string ()">gimp_config_writer_new_string</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">void</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-open" title="gimp_config_writer_open ()">gimp_config_writer_open</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">void</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-comment-mode" title="gimp_config_writer_comment_mode ()">gimp_config_writer_comment_mode</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">void</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-print" title="gimp_config_writer_print ()">gimp_config_writer_print</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">void</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-printf" title="gimp_config_writer_printf ()">gimp_config_writer_printf</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">void</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-identifier" title="gimp_config_writer_identifier ()">gimp_config_writer_identifier</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">void</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-string" title="gimp_config_writer_string ()">gimp_config_writer_string</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">void</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-data" title="gimp_config_writer_data ()">gimp_config_writer_data</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">void</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-comment" title="gimp_config_writer_comment ()">gimp_config_writer_comment</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">void</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-linefeed" title="gimp_config_writer_linefeed ()">gimp_config_writer_linefeed</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">void</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-revert" title="gimp_config_writer_revert ()">gimp_config_writer_revert</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">void</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-close" title="gimp_config_writer_close ()">gimp_config_writer_close</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-finish" title="gimp_config_writer_finish ()">gimp_config_writer_finish</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfigWriter.other"></a><h2>Types and Values</h2>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="other_proto_type">
+<col class="other_proto_name">
+</colgroup>
+<tbody><tr>
+<td class="datatype_keyword"> </td>
+<td class="function_name"><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter">GimpConfigWriter</a></td>
+</tr></tbody>
+</table></div>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfigWriter.description"></a><h2>Description</h2>
+<p>Functions for writing config info to a file for libgimpconfig.</p>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfigWriter.functions_details"></a><h2>Functions</h2>
+<div class="refsect2">
+<a name="gimp-config-writer-new-file"></a><h3>gimp_config_writer_new_file ()</h3>
+<pre class="programlisting"><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="returnvalue">GimpConfigWriter</span></a> *
+gimp_config_writer_new_file (<em class="parameter"><code>const <span class="type">gchar</span> *filename</code></em>,
+ <em class="parameter"><code><span class="type">gboolean</span> atomic</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *header</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<p>Creates a new <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> and sets it up to write to
+<em class="parameter"><code>filename</code></em>
+. If <em class="parameter"><code>atomic</code></em>
+ is <code class="literal">TRUE</code>, a temporary file is used to avoid
+possible race conditions. The temporary file is then moved to
+<em class="parameter"><code>filename</code></em>
+ when the writer is closed.</p>
+<div class="refsect3">
+<a name="gimp-config-writer-new-file.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>filename</p></td>
+<td class="parameter_description"><p>a filename</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>atomic</p></td>
+<td class="parameter_description"><p>if <code class="literal">TRUE</code> the file is written atomically</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>header</p></td>
+<td class="parameter_description"><p>text to include as comment at the top of the file</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for errors</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-writer-new-file.returns"></a><h4>Returns</h4>
+<p> a new <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> or <code class="literal">NULL</code> in case of an error</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-writer-new-gfile"></a><h3>gimp_config_writer_new_gfile ()</h3>
+<pre class="programlisting"><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="returnvalue">GimpConfigWriter</span></a> *
+gimp_config_writer_new_gfile (<em class="parameter"><code><span class="type">GFile</span> *file</code></em>,
+ <em class="parameter"><code><span class="type">gboolean</span> atomic</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *header</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<p>Creates a new <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> and sets it up to write to
+<em class="parameter"><code>file</code></em>
+. If <em class="parameter"><code>atomic</code></em>
+ is <code class="literal">TRUE</code>, a temporary file is used to avoid
+possible race conditions. The temporary file is then moved to <em class="parameter"><code>file</code></em>
+
+when the writer is closed.</p>
+<div class="refsect3">
+<a name="gimp-config-writer-new-gfile.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>file</p></td>
+<td class="parameter_description"><p>a <span class="type">GFile</span></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>atomic</p></td>
+<td class="parameter_description"><p>if <code class="literal">TRUE</code> the file is written atomically</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>header</p></td>
+<td class="parameter_description"><p>text to include as comment at the top of the file</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for errors</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-writer-new-gfile.returns"></a><h4>Returns</h4>
+<p> a new <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> or <code class="literal">NULL</code> in case of an error</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-writer-new-stream"></a><h3>gimp_config_writer_new_stream ()</h3>
+<pre class="programlisting"><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="returnvalue">GimpConfigWriter</span></a> *
+gimp_config_writer_new_stream (<em class="parameter"><code><span class="type">GOutputStream</span> *output</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *header</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<p>Creates a new <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> and sets it up to write to
+<em class="parameter"><code>output</code></em>
+.</p>
+<div class="refsect3">
+<a name="gimp-config-writer-new-stream.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>output</p></td>
+<td class="parameter_description"><p>a <span class="type">GOutputStream</span></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>header</p></td>
+<td class="parameter_description"><p>text to include as comment at the top of the file</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for errors</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-writer-new-stream.returns"></a><h4>Returns</h4>
+<p> a new <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> or <code class="literal">NULL</code> in case of an error</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-writer-new-fd"></a><h3>gimp_config_writer_new_fd ()</h3>
+<pre class="programlisting"><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="returnvalue">GimpConfigWriter</span></a> *
+gimp_config_writer_new_fd (<em class="parameter"><code><span class="type">gint</span> fd</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-config-writer-new-fd.returns"></a><h4>Returns</h4>
+<p> a new <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> or <code class="literal">NULL</code> in case of an error</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-writer-new-string"></a><h3>gimp_config_writer_new_string ()</h3>
+<pre class="programlisting"><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="returnvalue">GimpConfigWriter</span></a> *
+gimp_config_writer_new_string (<em class="parameter"><code><span class="type">GString</span> *string</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-config-writer-new-string.returns"></a><h4>Returns</h4>
+<p> a new <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> or <code class="literal">NULL</code> in case of an error</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-writer-open"></a><h3>gimp_config_writer_open ()</h3>
+<pre class="programlisting"><span class="returnvalue">void</span>
+gimp_config_writer_open (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> *writer</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
+<p>This function writes the opening parenthesis followed by <em class="parameter"><code>name</code></em>
+.
+It also increases the indentation level and sets a mark that
+can be used by <a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-revert" title="gimp_config_writer_revert ()"><code class="function">gimp_config_writer_revert()</code></a>.</p>
+<div class="refsect3">
+<a name="gimp-config-writer-open.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>writer</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>name</p></td>
+<td class="parameter_description"><p>name of the element to open</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-writer-comment-mode"></a><h3>gimp_config_writer_comment_mode ()</h3>
+<pre class="programlisting"><span class="returnvalue">void</span>
+gimp_config_writer_comment_mode (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> *writer</code></em>,
+ <em class="parameter"><code><span class="type">gboolean</span> enable</code></em>);</pre>
+<p>This function toggles whether the <em class="parameter"><code>writer</code></em>
+ should create commented
+or uncommented output. This feature is used to generate the
+system-wide installed gimprc that documents the default settings.</p>
+<p>Since comments have to start at the beginning of a line, this
+function will insert a newline if necessary.</p>
+<div class="refsect3">
+<a name="gimp-config-writer-comment-mode.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>writer</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>enable</p></td>
+<td class="parameter_description"><p><code class="literal">TRUE</code> to enable comment mode, <code class="literal">FALSE</code> to disable it</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-writer-print"></a><h3>gimp_config_writer_print ()</h3>
+<pre class="programlisting"><span class="returnvalue">void</span>
+gimp_config_writer_print (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> *writer</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *string</code></em>,
+ <em class="parameter"><code><span class="type">gint</span> len</code></em>);</pre>
+<p>Appends a space followed by <em class="parameter"><code>string</code></em>
+ to the <em class="parameter"><code>writer</code></em>
+. Note that string
+must not contain any special characters that might need to be escaped.</p>
+<div class="refsect3">
+<a name="gimp-config-writer-print.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>writer</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>string</p></td>
+<td class="parameter_description"><p>a string to write</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>len</p></td>
+<td class="parameter_description"><p>number of bytes from <em class="parameter"><code>string</code></em>
+or -1 if <em class="parameter"><code>string</code></em>
+is NUL-terminated.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-writer-printf"></a><h3>gimp_config_writer_printf ()</h3>
+<pre class="programlisting"><span class="returnvalue">void</span>
+gimp_config_writer_printf (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> *writer</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *format</code></em>,
+ <em class="parameter"><code>...</code></em>);</pre>
+<p>A printf-like function for <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a>.</p>
+<div class="refsect3">
+<a name="gimp-config-writer-printf.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>writer</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>format</p></td>
+<td class="parameter_description"><p>a format string as described for <code class="function">g_strdup_printf()</code>.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>...</p></td>
+<td class="parameter_description"><p>list of arguments according to <em class="parameter"><code>format</code></em>
+</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-writer-identifier"></a><h3>gimp_config_writer_identifier ()</h3>
+<pre class="programlisting"><span class="returnvalue">void</span>
+gimp_config_writer_identifier (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> *writer</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *identifier</code></em>);</pre>
+<p>Writes an identifier to <em class="parameter"><code>writer</code></em>
+. The <em class="parameter"><code>string</code></em>
+ is *not* quoted and special
+characters are *not* escaped.</p>
+<div class="refsect3">
+<a name="gimp-config-writer-identifier.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>writer</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>identifier</p></td>
+<td class="parameter_description"><p>a NUL-terminated string</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-writer-string"></a><h3>gimp_config_writer_string ()</h3>
+<pre class="programlisting"><span class="returnvalue">void</span>
+gimp_config_writer_string (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> *writer</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *string</code></em>);</pre>
+<p>Writes a string value to <em class="parameter"><code>writer</code></em>
+. The <em class="parameter"><code>string</code></em>
+ is quoted and special
+characters are escaped.</p>
+<div class="refsect3">
+<a name="gimp-config-writer-string.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>writer</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>string</p></td>
+<td class="parameter_description"><p>a NUL-terminated string</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-writer-data"></a><h3>gimp_config_writer_data ()</h3>
+<pre class="programlisting"><span class="returnvalue">void</span>
+gimp_config_writer_data (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> *writer</code></em>,
+ <em class="parameter"><code><span class="type">gint</span> length</code></em>,
+ <em class="parameter"><code>const <span class="type">guint8</span> *data</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-config-writer-data.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>writer</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-writer-comment"></a><h3>gimp_config_writer_comment ()</h3>
+<pre class="programlisting"><span class="returnvalue">void</span>
+gimp_config_writer_comment (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> *writer</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *comment</code></em>);</pre>
+<p>Appends the <em class="parameter"><code>comment</code></em>
+ to <em class="parameter"><code>str</code></em>
+ and inserts linebreaks and hash-marks to
+format it as a comment. Note that this function does not handle non-ASCII
+characters.</p>
+<div class="refsect3">
+<a name="gimp-config-writer-comment.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>writer</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>comment</p></td>
+<td class="parameter_description"><p>the comment to write (ASCII only)</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-writer-linefeed"></a><h3>gimp_config_writer_linefeed ()</h3>
+<pre class="programlisting"><span class="returnvalue">void</span>
+gimp_config_writer_linefeed (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> *writer</code></em>);</pre>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-writer-revert"></a><h3>gimp_config_writer_revert ()</h3>
+<pre class="programlisting"><span class="returnvalue">void</span>
+gimp_config_writer_revert (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> *writer</code></em>);</pre>
+<p>Reverts all changes to <em class="parameter"><code>writer</code></em>
+ that were done since the last call
+to <a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-open" title="gimp_config_writer_open ()"><code class="function">gimp_config_writer_open()</code></a>. This can only work if you didn't call
+<a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-close" title="gimp_config_writer_close ()"><code class="function">gimp_config_writer_close()</code></a> yet.</p>
+<div class="refsect3">
+<a name="gimp-config-writer-revert.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>writer</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-writer-close"></a><h3>gimp_config_writer_close ()</h3>
+<pre class="programlisting"><span class="returnvalue">void</span>
+gimp_config_writer_close (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> *writer</code></em>);</pre>
+<p>Closes an element opened with <a class="link" href="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-open" title="gimp_config_writer_open ()"><code class="function">gimp_config_writer_open()</code></a>.</p>
+<div class="refsect3">
+<a name="gimp-config-writer-close.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>writer</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-config-writer-finish"></a><h3>gimp_config_writer_finish ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_config_writer_finish (<em class="parameter"><code><a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a> *writer</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *footer</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<p>This function finishes the work of <em class="parameter"><code>writer</code></em>
+ and frees it afterwards.
+It closes all open elements, appends an optional comment and
+releases all resources allocated by <em class="parameter"><code>writer</code></em>
+. You must not access
+the <em class="parameter"><code>writer</code></em>
+ afterwards.</p>
+<div class="refsect3">
+<a name="gimp-config-writer-finish.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>writer</p></td>
+<td class="parameter_description"><p>a <a class="link" href="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter" title="GimpConfigWriter"><span class="type">GimpConfigWriter</span></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>footer</p></td>
+<td class="parameter_description"><p>text to include as comment at the bottom of the file</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for possible errors</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-config-writer-finish.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if everything could be successfully written,
+<code class="literal">FALSE</code> otherwise</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpConfigWriter.other_details"></a><h2>Types and Values</h2>
+<div class="refsect2">
+<a name="GimpConfigWriter"></a><h3>GimpConfigWriter</h3>
+<pre class="programlisting">typedef struct _GimpConfigWriter GimpConfigWriter;</pre>
+</div>
+</div>
+</div>
+<div class="footer">
+<hr>Generated by GTK-Doc V1.33.1</div>
+</body>
+</html> \ No newline at end of file
diff --git a/devel-docs/libgimpconfig/html/libgimpconfig-GimpScanner.html b/devel-docs/libgimpconfig/html/libgimpconfig-GimpScanner.html
new file mode 100644
index 0000000..65352b0
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/libgimpconfig-GimpScanner.html
@@ -0,0 +1,685 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>GimpScanner: GIMP Config Library Reference Manual</title>
+<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
+<link rel="home" href="index.html" title="GIMP Config Library Reference Manual">
+<link rel="up" href="pt01.html" title="Part I. GIMP Config Library">
+<link rel="prev" href="libgimpconfig-GimpConfigWriter.html" title="GimpConfigWriter">
+<link rel="next" href="GimpColorConfig.html" title="GimpColorConfig">
+<meta name="generator" content="GTK-Doc V1.33.1 (XML mode)">
+<link rel="stylesheet" href="style.css" type="text/css">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
+<td width="100%" align="left" class="shortcuts">
+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
+ <a href="#libgimpconfig-GimpScanner.description" class="shortcut">Description</a></span>
+</td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
+<td><a accesskey="u" href="pt01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
+<td><a accesskey="p" href="libgimpconfig-GimpConfigWriter.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
+<td><a accesskey="n" href="GimpColorConfig.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
+</tr></table>
+<div class="refentry">
+<a name="libgimpconfig-GimpScanner"></a><div class="titlepage"></div>
+<div class="refnamediv"><table width="100%"><tr>
+<td valign="top">
+<h2><span class="refentrytitle"><a name="libgimpconfig-GimpScanner.top_of_page"></a>GimpScanner</span></h2>
+<p>GimpScanner — A wrapper around <span class="type">GScanner</span> with some convenience API.</p>
+</td>
+<td class="gallery_image" valign="top" align="right"></td>
+</tr></table></div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpScanner.functions"></a><h2>Functions</h2>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="functions_proto_type">
+<col class="functions_proto_name">
+</colgroup>
+<tbody>
+<tr>
+<td class="function_type">
+<span class="returnvalue">GScanner</span> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-file" title="gimp_scanner_new_file ()">gimp_scanner_new_file</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">GScanner</span> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-gfile" title="gimp_scanner_new_gfile ()">gimp_scanner_new_gfile</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">GScanner</span> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-stream" title="gimp_scanner_new_stream ()">gimp_scanner_new_stream</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">GScanner</span> *
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-string" title="gimp_scanner_new_string ()">gimp_scanner_new_string</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">void</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-destroy" title="gimp_scanner_destroy ()">gimp_scanner_destroy</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-token" title="gimp_scanner_parse_token ()">gimp_scanner_parse_token</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-identifier" title="gimp_scanner_parse_identifier ()">gimp_scanner_parse_identifier</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-string" title="gimp_scanner_parse_string ()">gimp_scanner_parse_string</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-string-no-validate" title="gimp_scanner_parse_string_no_validate ()">gimp_scanner_parse_string_no_validate</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-data" title="gimp_scanner_parse_data ()">gimp_scanner_parse_data</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-int" title="gimp_scanner_parse_int ()">gimp_scanner_parse_int</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-int64" title="gimp_scanner_parse_int64 ()">gimp_scanner_parse_int64</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-float" title="gimp_scanner_parse_float ()">gimp_scanner_parse_float</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-boolean" title="gimp_scanner_parse_boolean ()">gimp_scanner_parse_boolean</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-color" title="gimp_scanner_parse_color ()">gimp_scanner_parse_color</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+<tr>
+<td class="function_type">
+<span class="returnvalue">gboolean</span>
+</td>
+<td class="function_name">
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-parse-matrix2" title="gimp_scanner_parse_matrix2 ()">gimp_scanner_parse_matrix2</a> <span class="c_punctuation">()</span>
+</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpScanner.description"></a><h2>Description</h2>
+<p>A wrapper around <span class="type">GScanner</span> with some convenience API.</p>
+</div>
+<div class="refsect1">
+<a name="libgimpconfig-GimpScanner.functions_details"></a><h2>Functions</h2>
+<div class="refsect2">
+<a name="gimp-scanner-new-file"></a><h3>gimp_scanner_new_file ()</h3>
+<pre class="programlisting"><span class="returnvalue">GScanner</span> *
+gimp_scanner_new_file (<em class="parameter"><code>const <span class="type">gchar</span> *filename</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-scanner-new-gfile"></a><h3>gimp_scanner_new_gfile ()</h3>
+<pre class="programlisting"><span class="returnvalue">GScanner</span> *
+gimp_scanner_new_gfile (<em class="parameter"><code><span class="type">GFile</span> *file</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-scanner-new-gfile.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>file</p></td>
+<td class="parameter_description"><p>a <span class="type">GFile</span></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for <span class="type">GError</span>, or <code class="literal">NULL</code></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-scanner-new-gfile.returns"></a><h4>Returns</h4>
+<p> The new <span class="type">GScanner</span>.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-scanner-new-stream"></a><h3>gimp_scanner_new_stream ()</h3>
+<pre class="programlisting"><span class="returnvalue">GScanner</span> *
+gimp_scanner_new_stream (<em class="parameter"><code><span class="type">GInputStream</span> *input</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-scanner-new-stream.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>input</p></td>
+<td class="parameter_description"><p>a <span class="type">GInputStream</span></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>error</p></td>
+<td class="parameter_description"><p>return location for <span class="type">GError</span>, or <code class="literal">NULL</code></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-scanner-new-stream.returns"></a><h4>Returns</h4>
+<p> The new <span class="type">GScanner</span>.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-10.html#api-index-2.10">2.10</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-scanner-new-string"></a><h3>gimp_scanner_new_string ()</h3>
+<pre class="programlisting"><span class="returnvalue">GScanner</span> *
+gimp_scanner_new_string (<em class="parameter"><code>const <span class="type">gchar</span> *text</code></em>,
+ <em class="parameter"><code><span class="type">gint</span> text_len</code></em>,
+ <em class="parameter"><code><span class="type">GError</span> **error</code></em>);</pre>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-scanner-destroy"></a><h3>gimp_scanner_destroy ()</h3>
+<pre class="programlisting"><span class="returnvalue">void</span>
+gimp_scanner_destroy (<em class="parameter"><code><span class="type">GScanner</span> *scanner</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-scanner-destroy.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody><tr>
+<td class="parameter_name"><p>scanner</p></td>
+<td class="parameter_description"><p>A <span class="type">GScanner</span> created by <a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-file" title="gimp_scanner_new_file ()"><code class="function">gimp_scanner_new_file()</code></a> or
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-string" title="gimp_scanner_new_string ()"><code class="function">gimp_scanner_new_string()</code></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr></tbody>
+</table></div>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-scanner-parse-token"></a><h3>gimp_scanner_parse_token ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_scanner_parse_token (<em class="parameter"><code><span class="type">GScanner</span> *scanner</code></em>,
+ <em class="parameter"><code><span class="type">GTokenType</span> token</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-scanner-parse-token.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>scanner</p></td>
+<td class="parameter_description"><p>A <span class="type">GScanner</span> created by <a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-file" title="gimp_scanner_new_file ()"><code class="function">gimp_scanner_new_file()</code></a> or
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-string" title="gimp_scanner_new_string ()"><code class="function">gimp_scanner_new_string()</code></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>token</p></td>
+<td class="parameter_description"><p>the <span class="type">GTokenType</span> expected as next token.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-scanner-parse-token.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if the next token is <em class="parameter"><code>token</code></em>
+, <code class="literal">FALSE</code> otherwise.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-scanner-parse-identifier"></a><h3>gimp_scanner_parse_identifier ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_scanner_parse_identifier (<em class="parameter"><code><span class="type">GScanner</span> *scanner</code></em>,
+ <em class="parameter"><code>const <span class="type">gchar</span> *identifier</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-scanner-parse-identifier.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>scanner</p></td>
+<td class="parameter_description"><p>A <span class="type">GScanner</span> created by <a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-file" title="gimp_scanner_new_file ()"><code class="function">gimp_scanner_new_file()</code></a> or
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-string" title="gimp_scanner_new_string ()"><code class="function">gimp_scanner_new_string()</code></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>identifier</p></td>
+<td class="parameter_description"><p>the expected identifier.</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-scanner-parse-identifier.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> if the next token is an identifier and if its
+value matches <em class="parameter"><code>identifier</code></em>
+.</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-scanner-parse-string"></a><h3>gimp_scanner_parse_string ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_scanner_parse_string (<em class="parameter"><code><span class="type">GScanner</span> *scanner</code></em>,
+ <em class="parameter"><code><span class="type">gchar</span> **dest</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-scanner-parse-string.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>scanner</p></td>
+<td class="parameter_description"><p>A <span class="type">GScanner</span> created by <a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-file" title="gimp_scanner_new_file ()"><code class="function">gimp_scanner_new_file()</code></a> or
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-string" title="gimp_scanner_new_string ()"><code class="function">gimp_scanner_new_string()</code></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>dest</p></td>
+<td class="parameter_description"><p>Return location for the parsed string</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-scanner-parse-string.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> on success</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-scanner-parse-string-no-validate"></a><h3>gimp_scanner_parse_string_no_validate ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_scanner_parse_string_no_validate (<em class="parameter"><code><span class="type">GScanner</span> *scanner</code></em>,
+ <em class="parameter"><code><span class="type">gchar</span> **dest</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-scanner-parse-string-no-validate.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>scanner</p></td>
+<td class="parameter_description"><p>A <span class="type">GScanner</span> created by <a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-file" title="gimp_scanner_new_file ()"><code class="function">gimp_scanner_new_file()</code></a> or
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-string" title="gimp_scanner_new_string ()"><code class="function">gimp_scanner_new_string()</code></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>dest</p></td>
+<td class="parameter_description"><p>Return location for the parsed string</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-scanner-parse-string-no-validate.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> on success</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-scanner-parse-data"></a><h3>gimp_scanner_parse_data ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_scanner_parse_data (<em class="parameter"><code><span class="type">GScanner</span> *scanner</code></em>,
+ <em class="parameter"><code><span class="type">gint</span> length</code></em>,
+ <em class="parameter"><code><span class="type">guint8</span> **dest</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-scanner-parse-data.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>scanner</p></td>
+<td class="parameter_description"><p>A <span class="type">GScanner</span> created by <a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-file" title="gimp_scanner_new_file ()"><code class="function">gimp_scanner_new_file()</code></a> or
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-string" title="gimp_scanner_new_string ()"><code class="function">gimp_scanner_new_string()</code></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>length</p></td>
+<td class="parameter_description"><p>Length of the data to parse</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>dest</p></td>
+<td class="parameter_description"><p>Return location for the parsed data</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-scanner-parse-data.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> on success</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-scanner-parse-int"></a><h3>gimp_scanner_parse_int ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_scanner_parse_int (<em class="parameter"><code><span class="type">GScanner</span> *scanner</code></em>,
+ <em class="parameter"><code><span class="type">gint</span> *dest</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-scanner-parse-int.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>scanner</p></td>
+<td class="parameter_description"><p>A <span class="type">GScanner</span> created by <a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-file" title="gimp_scanner_new_file ()"><code class="function">gimp_scanner_new_file()</code></a> or
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-string" title="gimp_scanner_new_string ()"><code class="function">gimp_scanner_new_string()</code></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>dest</p></td>
+<td class="parameter_description"><p>Return location for the parsed integer</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-scanner-parse-int.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> on success</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-scanner-parse-int64"></a><h3>gimp_scanner_parse_int64 ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_scanner_parse_int64 (<em class="parameter"><code><span class="type">GScanner</span> *scanner</code></em>,
+ <em class="parameter"><code><span class="type">gint64</span> *dest</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-scanner-parse-int64.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>scanner</p></td>
+<td class="parameter_description"><p>A <span class="type">GScanner</span> created by <a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-file" title="gimp_scanner_new_file ()"><code class="function">gimp_scanner_new_file()</code></a> or
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-string" title="gimp_scanner_new_string ()"><code class="function">gimp_scanner_new_string()</code></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>dest</p></td>
+<td class="parameter_description"><p>Return location for the parsed integer</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-scanner-parse-int64.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> on success</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-8.html#api-index-2.8">2.8</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-scanner-parse-float"></a><h3>gimp_scanner_parse_float ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_scanner_parse_float (<em class="parameter"><code><span class="type">GScanner</span> *scanner</code></em>,
+ <em class="parameter"><code><span class="type">gdouble</span> *dest</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-scanner-parse-float.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>scanner</p></td>
+<td class="parameter_description"><p>A <span class="type">GScanner</span> created by <a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-file" title="gimp_scanner_new_file ()"><code class="function">gimp_scanner_new_file()</code></a> or
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-string" title="gimp_scanner_new_string ()"><code class="function">gimp_scanner_new_string()</code></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>dest</p></td>
+<td class="parameter_description"><p>Return location for the parsed float</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-scanner-parse-float.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> on success</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-scanner-parse-boolean"></a><h3>gimp_scanner_parse_boolean ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_scanner_parse_boolean (<em class="parameter"><code><span class="type">GScanner</span> *scanner</code></em>,
+ <em class="parameter"><code><span class="type">gboolean</span> *dest</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-scanner-parse-boolean.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>scanner</p></td>
+<td class="parameter_description"><p>A <span class="type">GScanner</span> created by <a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-file" title="gimp_scanner_new_file ()"><code class="function">gimp_scanner_new_file()</code></a> or
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-string" title="gimp_scanner_new_string ()"><code class="function">gimp_scanner_new_string()</code></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>dest</p></td>
+<td class="parameter_description"><p>Return location for the parsed boolean</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-scanner-parse-boolean.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> on success</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-scanner-parse-color"></a><h3>gimp_scanner_parse_color ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_scanner_parse_color (<em class="parameter"><code><span class="type">GScanner</span> *scanner</code></em>,
+ <em class="parameter"><code><a href="../html/libgimpcolor-GimpRGB.html#GimpRGB"><span class="type">GimpRGB</span></a> *dest</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-scanner-parse-color.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>scanner</p></td>
+<td class="parameter_description"><p>A <span class="type">GScanner</span> created by <a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-file" title="gimp_scanner_new_file ()"><code class="function">gimp_scanner_new_file()</code></a> or
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-string" title="gimp_scanner_new_string ()"><code class="function">gimp_scanner_new_string()</code></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>dest</p></td>
+<td class="parameter_description"><p>Pointer to a color to store the result</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-scanner-parse-color.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> on success</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+<hr>
+<div class="refsect2">
+<a name="gimp-scanner-parse-matrix2"></a><h3>gimp_scanner_parse_matrix2 ()</h3>
+<pre class="programlisting"><span class="returnvalue">gboolean</span>
+gimp_scanner_parse_matrix2 (<em class="parameter"><code><span class="type">GScanner</span> *scanner</code></em>,
+ <em class="parameter"><code><span class="type">GimpMatrix2</span> *dest</code></em>);</pre>
+<div class="refsect3">
+<a name="gimp-scanner-parse-matrix2.parameters"></a><h4>Parameters</h4>
+<div class="informaltable"><table class="informaltable" width="100%" border="0">
+<colgroup>
+<col width="150px" class="parameters_name">
+<col class="parameters_description">
+<col width="200px" class="parameters_annotations">
+</colgroup>
+<tbody>
+<tr>
+<td class="parameter_name"><p>scanner</p></td>
+<td class="parameter_description"><p>A <span class="type">GScanner</span> created by <a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-file" title="gimp_scanner_new_file ()"><code class="function">gimp_scanner_new_file()</code></a> or
+<a class="link" href="libgimpconfig-GimpScanner.html#gimp-scanner-new-string" title="gimp_scanner_new_string ()"><code class="function">gimp_scanner_new_string()</code></a></p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+<tr>
+<td class="parameter_name"><p>dest</p></td>
+<td class="parameter_description"><p>Pointer to a matrix to store the result</p></td>
+<td class="parameter_annotations"> </td>
+</tr>
+</tbody>
+</table></div>
+</div>
+<div class="refsect3">
+<a name="gimp-scanner-parse-matrix2.returns"></a><h4>Returns</h4>
+<p> <code class="literal">TRUE</code> on success</p>
+</div>
+<p class="since">Since: <a class="link" href="api-index-2-4.html#api-index-2.4">2.4</a></p>
+</div>
+</div>
+</div>
+<div class="footer">
+<hr>Generated by GTK-Doc V1.33.1</div>
+</body>
+</html> \ No newline at end of file
diff --git a/devel-docs/libgimpconfig/html/libgimpconfig-hierarchy.html b/devel-docs/libgimpconfig/html/libgimpconfig-hierarchy.html
new file mode 100644
index 0000000..027f53a
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/libgimpconfig-hierarchy.html
@@ -0,0 +1,35 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>Object Hierarchy: GIMP Config Library Reference Manual</title>
+<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
+<link rel="home" href="index.html" title="GIMP Config Library Reference Manual">
+<link rel="up" href="pt01.html" title="Part I. GIMP Config Library">
+<link rel="prev" href="pt01.html" title="Part I. GIMP Config Library">
+<link rel="next" href="libgimpconfig-GimpConfig.html" title="GimpConfig-iface">
+<meta name="generator" content="GTK-Doc V1.33.1 (XML mode)">
+<link rel="stylesheet" href="style.css" type="text/css">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
+<td width="100%" align="left" class="shortcuts"></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
+<td><a accesskey="u" href="pt01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
+<td><a accesskey="p" href="pt01.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
+<td><a accesskey="n" href="libgimpconfig-GimpConfig.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
+</tr></table>
+<div class="chapter">
+<div class="titlepage"><div><div><h2 class="title">
+<a name="libgimpconfig-hierarchy"></a>Object Hierarchy</h2></div></div></div>
+<pre class="screen">
+ GObject
+ <span class="lineart">╰──</span> <a class="link" href="GimpColorConfig.html" title="GimpColorConfig">GimpColorConfig</a>
+ <a href="/usr/share/gtk-doc/html/gobject/GTypeModule.html">GInterface</a>
+ <span class="lineart">╰──</span> <a class="link" href="libgimpconfig-GimpConfig.html#GimpConfigInterface">GimpConfigInterface</a>
+</pre>
+</div>
+<div class="footer">
+<hr>Generated by GTK-Doc V1.33.1</div>
+</body>
+</html> \ No newline at end of file
diff --git a/devel-docs/libgimpconfig/html/libgimpconfig.devhelp2 b/devel-docs/libgimpconfig/html/libgimpconfig.devhelp2
new file mode 100644
index 0000000..2e8a55d
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/libgimpconfig.devhelp2
@@ -0,0 +1,195 @@
+<?xml version="1.0" encoding="utf-8" standalone="no"?>
+<book xmlns="http://www.devhelp.net/book" title="GIMP Config Library Reference Manual" link="index.html" author="" name="libgimpconfig" version="2" language="c">
+ <chapters>
+ <sub name="GIMP Config Library" link="pt01.html">
+ <sub name="Object Hierarchy" link="libgimpconfig-hierarchy.html"/>
+ <sub name="GimpConfig-iface" link="libgimpconfig-GimpConfig.html"/>
+ <sub name="GimpConfig-deserialize" link="libgimpconfig-GimpConfig-deserialize.html"/>
+ <sub name="GimpConfig-serialize" link="libgimpconfig-GimpConfig-serialize.html"/>
+ <sub name="GimpConfig-error" link="libgimpconfig-GimpConfigError.html"/>
+ <sub name="GimpConfig-params" link="libgimpconfig-GimpConfig-params.html"/>
+ <sub name="GimpConfig-path" link="libgimpconfig-GimpConfig-path.html"/>
+ <sub name="GimpConfig-utils" link="libgimpconfig-GimpConfig-utils.html"/>
+ <sub name="GimpConfigWriter" link="libgimpconfig-GimpConfigWriter.html"/>
+ <sub name="GimpScanner" link="libgimpconfig-GimpScanner.html"/>
+ <sub name="GimpColorConfig" link="GimpColorConfig.html"/>
+ </sub>
+ <sub name="Index" link="api-index-full.html"/>
+ <sub name="Index of new symbols in GIMP 2.4" link="api-index-2-4.html"/>
+ <sub name="Index of new symbols in GIMP 2.6" link="api-index-2-6.html"/>
+ <sub name="Index of new symbols in GIMP 2.8" link="api-index-2-8.html"/>
+ <sub name="Index of new symbols in GIMP 2.10" link="api-index-2-10.html"/>
+ <sub name="Index of deprecated symbols" link="api-index-deprecated.html"/>
+ </chapters>
+ <functions>
+ <keyword type="function" name="gimp_config_serialize ()" link="libgimpconfig-GimpConfig.html#gimp-config-serialize" since="2.8"/>
+ <keyword type="function" name="gimp_config_serialize_to_file ()" link="libgimpconfig-GimpConfig.html#gimp-config-serialize-to-file" since="2.4"/>
+ <keyword type="function" name="gimp_config_serialize_to_gfile ()" link="libgimpconfig-GimpConfig.html#gimp-config-serialize-to-gfile" since="2.10"/>
+ <keyword type="function" name="gimp_config_serialize_to_stream ()" link="libgimpconfig-GimpConfig.html#gimp-config-serialize-to-stream" since="2.10"/>
+ <keyword type="function" name="gimp_config_serialize_to_fd ()" link="libgimpconfig-GimpConfig.html#gimp-config-serialize-to-fd" since="2.4"/>
+ <keyword type="function" name="gimp_config_serialize_to_string ()" link="libgimpconfig-GimpConfig.html#gimp-config-serialize-to-string" since="2.4"/>
+ <keyword type="function" name="gimp_config_deserialize ()" link="libgimpconfig-GimpConfig.html#gimp-config-deserialize" since="2.8"/>
+ <keyword type="function" name="gimp_config_deserialize_file ()" link="libgimpconfig-GimpConfig.html#gimp-config-deserialize-file" since="2.4"/>
+ <keyword type="function" name="gimp_config_deserialize_gfile ()" link="libgimpconfig-GimpConfig.html#gimp-config-deserialize-gfile" since="2.10"/>
+ <keyword type="function" name="gimp_config_deserialize_stream ()" link="libgimpconfig-GimpConfig.html#gimp-config-deserialize-stream" since="2.10"/>
+ <keyword type="function" name="gimp_config_deserialize_string ()" link="libgimpconfig-GimpConfig.html#gimp-config-deserialize-string" since="2.4"/>
+ <keyword type="function" name="gimp_config_deserialize_return ()" link="libgimpconfig-GimpConfig.html#gimp-config-deserialize-return" since="2.4"/>
+ <keyword type="function" name="gimp_config_duplicate ()" link="libgimpconfig-GimpConfig.html#gimp-config-duplicate" since="2.4"/>
+ <keyword type="function" name="gimp_config_is_equal_to ()" link="libgimpconfig-GimpConfig.html#gimp-config-is-equal-to" since="2.4"/>
+ <keyword type="function" name="gimp_config_reset ()" link="libgimpconfig-GimpConfig.html#gimp-config-reset" since="2.4"/>
+ <keyword type="function" name="gimp_config_copy ()" link="libgimpconfig-GimpConfig.html#gimp-config-copy" since="2.6"/>
+ <keyword type="struct" name="GimpConfig" link="libgimpconfig-GimpConfig.html#GimpConfig"/>
+ <keyword type="struct" name="struct GimpConfigInterface" link="libgimpconfig-GimpConfig.html#GimpConfigInterface-struct"/>
+ <keyword type="function" name="gimp_config_deserialize_properties ()" link="libgimpconfig-GimpConfig-deserialize.html#gimp-config-deserialize-properties" since="2.4"/>
+ <keyword type="function" name="gimp_config_deserialize_property ()" link="libgimpconfig-GimpConfig-deserialize.html#gimp-config-deserialize-property" since="2.4"/>
+ <keyword type="function" name="gimp_config_serialize_properties ()" link="libgimpconfig-GimpConfig-serialize.html#gimp-config-serialize-properties" since="2.4"/>
+ <keyword type="function" name="gimp_config_serialize_changed_properties ()" link="libgimpconfig-GimpConfig-serialize.html#gimp-config-serialize-changed-properties" since="2.4"/>
+ <keyword type="function" name="gimp_config_serialize_property ()" link="libgimpconfig-GimpConfig-serialize.html#gimp-config-serialize-property" since="2.4"/>
+ <keyword type="function" name="gimp_config_serialize_property_by_name ()" link="libgimpconfig-GimpConfig-serialize.html#gimp-config-serialize-property-by-name" since="2.6"/>
+ <keyword type="function" name="gimp_config_serialize_value ()" link="libgimpconfig-GimpConfig-serialize.html#gimp-config-serialize-value" since="2.4"/>
+ <keyword type="function" name="gimp_config_error_quark ()" link="libgimpconfig-GimpConfigError.html#gimp-config-error-quark" since="2.4"/>
+ <keyword type="enum" name="enum GimpConfigError" link="libgimpconfig-GimpConfigError.html#GimpConfigError"/>
+ <keyword type="macro" name="GIMP_CONFIG_ERROR" link="libgimpconfig-GimpConfigError.html#GIMP-CONFIG-ERROR:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PROP_BOOLEAN()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-BOOLEAN:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PROP_BOXED()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-BOXED:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PROP_DOUBLE()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-DOUBLE:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PROP_ENUM()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-ENUM:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PROP_INT()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-INT:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PROP_INT64()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-INT64:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PROP_MATRIX2()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-MATRIX2:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PROP_MEMSIZE()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-MEMSIZE:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PROP_OBJECT()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-OBJECT:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PROP_PATH()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-PATH:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PROP_POINTER()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-POINTER:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PROP_RESOLUTION()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-RESOLUTION:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PROP_RGB()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-RGB:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PROP_STRING()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-STRING:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PROP_UINT64()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-UINT64:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PROP_UINT()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-UINT:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PROP_UNIT()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PROP-UNIT:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_INSTALL_PROP_BOOLEAN()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-BOOLEAN:CAPS" deprecated=""/>
+ <keyword type="macro" name="GIMP_CONFIG_INSTALL_PROP_BOXED()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-BOXED:CAPS" deprecated=""/>
+ <keyword type="macro" name="GIMP_CONFIG_INSTALL_PROP_RGB()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-RGB:CAPS" deprecated=""/>
+ <keyword type="macro" name="GIMP_CONFIG_INSTALL_PROP_DOUBLE()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-DOUBLE:CAPS" deprecated=""/>
+ <keyword type="macro" name="GIMP_CONFIG_INSTALL_PROP_RESOLUTION()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-RESOLUTION:CAPS" deprecated=""/>
+ <keyword type="macro" name="GIMP_CONFIG_INSTALL_PROP_ENUM()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-ENUM:CAPS" deprecated=""/>
+ <keyword type="macro" name="GIMP_CONFIG_INSTALL_PROP_INT()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-INT:CAPS" deprecated=""/>
+ <keyword type="macro" name="GIMP_CONFIG_INSTALL_PROP_MATRIX2()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-MATRIX2:CAPS" deprecated=""/>
+ <keyword type="macro" name="GIMP_CONFIG_INSTALL_PROP_MEMSIZE()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-MEMSIZE:CAPS" deprecated=""/>
+ <keyword type="macro" name="GIMP_CONFIG_INSTALL_PROP_PATH()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-PATH:CAPS" deprecated=""/>
+ <keyword type="macro" name="GIMP_CONFIG_INSTALL_PROP_STRING()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-STRING:CAPS" deprecated=""/>
+ <keyword type="macro" name="GIMP_CONFIG_INSTALL_PROP_UINT()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-UINT:CAPS" deprecated=""/>
+ <keyword type="macro" name="GIMP_CONFIG_INSTALL_PROP_UNIT()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-UNIT:CAPS" deprecated=""/>
+ <keyword type="macro" name="GIMP_CONFIG_INSTALL_PROP_OBJECT()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-OBJECT:CAPS" deprecated=""/>
+ <keyword type="macro" name="GIMP_CONFIG_INSTALL_PROP_POINTER()" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-INSTALL-PROP-POINTER:CAPS" deprecated=""/>
+ <keyword type="macro" name="GIMP_CONFIG_PARAM_SERIALIZE" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-SERIALIZE:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PARAM_AGGREGATE" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-AGGREGATE:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PARAM_RESTART" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-RESTART:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PARAM_CONFIRM" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-CONFIRM:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PARAM_DEFAULTS" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-DEFAULTS:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PARAM_IGNORE" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-IGNORE:CAPS"/>
+ <keyword type="macro" name="GIMP_CONFIG_PARAM_FLAGS" link="libgimpconfig-GimpConfig-params.html#GIMP-CONFIG-PARAM-FLAGS:CAPS"/>
+ <keyword type="function" name="gimp_param_spec_config_path ()" link="libgimpconfig-GimpConfig-path.html#gimp-param-spec-config-path" since="2.4"/>
+ <keyword type="function" name="gimp_param_spec_config_path_type ()" link="libgimpconfig-GimpConfig-path.html#gimp-param-spec-config-path-type" since="2.4"/>
+ <keyword type="function" name="gimp_config_path_expand ()" link="libgimpconfig-GimpConfig-path.html#gimp-config-path-expand" since="2.4"/>
+ <keyword type="function" name="gimp_config_path_expand_to_files ()" link="libgimpconfig-GimpConfig-path.html#gimp-config-path-expand-to-files" since="2.10"/>
+ <keyword type="function" name="gimp_config_path_unexpand ()" link="libgimpconfig-GimpConfig-path.html#gimp-config-path-unexpand" since="2.10"/>
+ <keyword type="function" name="gimp_file_new_for_config_path ()" link="libgimpconfig-GimpConfig-path.html#gimp-file-new-for-config-path" since="2.10"/>
+ <keyword type="function" name="gimp_file_get_config_path ()" link="libgimpconfig-GimpConfig-path.html#gimp-file-get-config-path" since="2.10"/>
+ <keyword type="function" name="gimp_config_build_data_path ()" link="libgimpconfig-GimpConfig-path.html#gimp-config-build-data-path" since="2.4"/>
+ <keyword type="function" name="gimp_config_build_writable_path ()" link="libgimpconfig-GimpConfig-path.html#gimp-config-build-writable-path" since="2.4"/>
+ <keyword type="function" name="gimp_config_build_plug_in_path ()" link="libgimpconfig-GimpConfig-path.html#gimp-config-build-plug-in-path" since="2.4"/>
+ <keyword type="macro" name="GIMP_VALUE_HOLDS_CONFIG_PATH()" link="libgimpconfig-GimpConfig-path.html#GIMP-VALUE-HOLDS-CONFIG-PATH:CAPS"/>
+ <keyword type="typedef" name="GimpConfigPath" link="libgimpconfig-GimpConfig-path.html#GimpConfigPath"/>
+ <keyword type="enum" name="enum GimpConfigPathType" link="libgimpconfig-GimpConfig-path.html#GimpConfigPathType"/>
+ <keyword type="function" name="gimp_config_diff ()" link="libgimpconfig-GimpConfig-utils.html#gimp-config-diff" since="2.4"/>
+ <keyword type="function" name="gimp_config_sync ()" link="libgimpconfig-GimpConfig-utils.html#gimp-config-sync" since="2.4"/>
+ <keyword type="function" name="gimp_config_reset_properties ()" link="libgimpconfig-GimpConfig-utils.html#gimp-config-reset-properties" since="2.4"/>
+ <keyword type="function" name="gimp_config_reset_property ()" link="libgimpconfig-GimpConfig-utils.html#gimp-config-reset-property" since="2.4"/>
+ <keyword type="function" name="gimp_config_string_append_escaped ()" link="libgimpconfig-GimpConfig-utils.html#gimp-config-string-append-escaped" since="2.4"/>
+ <keyword type="function" name="gimp_config_writer_new_file ()" link="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-new-file" since="2.4"/>
+ <keyword type="function" name="gimp_config_writer_new_gfile ()" link="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-new-gfile" since="2.10"/>
+ <keyword type="function" name="gimp_config_writer_new_stream ()" link="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-new-stream" since="2.10"/>
+ <keyword type="function" name="gimp_config_writer_new_fd ()" link="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-new-fd" since="2.4"/>
+ <keyword type="function" name="gimp_config_writer_new_string ()" link="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-new-string" since="2.4"/>
+ <keyword type="function" name="gimp_config_writer_open ()" link="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-open" since="2.4"/>
+ <keyword type="function" name="gimp_config_writer_comment_mode ()" link="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-comment-mode" since="2.4"/>
+ <keyword type="function" name="gimp_config_writer_print ()" link="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-print" since="2.4"/>
+ <keyword type="function" name="gimp_config_writer_printf ()" link="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-printf" since="2.4"/>
+ <keyword type="function" name="gimp_config_writer_identifier ()" link="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-identifier" since="2.4"/>
+ <keyword type="function" name="gimp_config_writer_string ()" link="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-string" since="2.4"/>
+ <keyword type="function" name="gimp_config_writer_data ()" link="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-data" since="2.4"/>
+ <keyword type="function" name="gimp_config_writer_comment ()" link="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-comment" since="2.4"/>
+ <keyword type="function" name="gimp_config_writer_linefeed ()" link="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-linefeed"/>
+ <keyword type="function" name="gimp_config_writer_revert ()" link="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-revert" since="2.4"/>
+ <keyword type="function" name="gimp_config_writer_close ()" link="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-close" since="2.4"/>
+ <keyword type="function" name="gimp_config_writer_finish ()" link="libgimpconfig-GimpConfigWriter.html#gimp-config-writer-finish" since="2.4"/>
+ <keyword type="struct" name="GimpConfigWriter" link="libgimpconfig-GimpConfigWriter.html#GimpConfigWriter"/>
+ <keyword type="function" name="gimp_scanner_new_file ()" link="libgimpconfig-GimpScanner.html#gimp-scanner-new-file" since="2.4"/>
+ <keyword type="function" name="gimp_scanner_new_gfile ()" link="libgimpconfig-GimpScanner.html#gimp-scanner-new-gfile" since="2.10"/>
+ <keyword type="function" name="gimp_scanner_new_stream ()" link="libgimpconfig-GimpScanner.html#gimp-scanner-new-stream" since="2.10"/>
+ <keyword type="function" name="gimp_scanner_new_string ()" link="libgimpconfig-GimpScanner.html#gimp-scanner-new-string" since="2.4"/>
+ <keyword type="function" name="gimp_scanner_destroy ()" link="libgimpconfig-GimpScanner.html#gimp-scanner-destroy" since="2.4"/>
+ <keyword type="function" name="gimp_scanner_parse_token ()" link="libgimpconfig-GimpScanner.html#gimp-scanner-parse-token" since="2.4"/>
+ <keyword type="function" name="gimp_scanner_parse_identifier ()" link="libgimpconfig-GimpScanner.html#gimp-scanner-parse-identifier" since="2.4"/>
+ <keyword type="function" name="gimp_scanner_parse_string ()" link="libgimpconfig-GimpScanner.html#gimp-scanner-parse-string" since="2.4"/>
+ <keyword type="function" name="gimp_scanner_parse_string_no_validate ()" link="libgimpconfig-GimpScanner.html#gimp-scanner-parse-string-no-validate" since="2.4"/>
+ <keyword type="function" name="gimp_scanner_parse_data ()" link="libgimpconfig-GimpScanner.html#gimp-scanner-parse-data" since="2.4"/>
+ <keyword type="function" name="gimp_scanner_parse_int ()" link="libgimpconfig-GimpScanner.html#gimp-scanner-parse-int" since="2.4"/>
+ <keyword type="function" name="gimp_scanner_parse_int64 ()" link="libgimpconfig-GimpScanner.html#gimp-scanner-parse-int64" since="2.8"/>
+ <keyword type="function" name="gimp_scanner_parse_float ()" link="libgimpconfig-GimpScanner.html#gimp-scanner-parse-float" since="2.4"/>
+ <keyword type="function" name="gimp_scanner_parse_boolean ()" link="libgimpconfig-GimpScanner.html#gimp-scanner-parse-boolean" since="2.4"/>
+ <keyword type="function" name="gimp_scanner_parse_color ()" link="libgimpconfig-GimpScanner.html#gimp-scanner-parse-color" since="2.4"/>
+ <keyword type="function" name="gimp_scanner_parse_matrix2 ()" link="libgimpconfig-GimpScanner.html#gimp-scanner-parse-matrix2" since="2.4"/>
+ <keyword type="function" name="gimp_color_config_get_mode ()" link="GimpColorConfig.html#gimp-color-config-get-mode" since="2.10"/>
+ <keyword type="function" name="gimp_color_config_get_display_intent ()" link="GimpColorConfig.html#gimp-color-config-get-display-intent" since="2.10"/>
+ <keyword type="function" name="gimp_color_config_get_display_bpc ()" link="GimpColorConfig.html#gimp-color-config-get-display-bpc" since="2.10"/>
+ <keyword type="function" name="gimp_color_config_get_display_optimize ()" link="GimpColorConfig.html#gimp-color-config-get-display-optimize" since="2.10"/>
+ <keyword type="function" name="gimp_color_config_get_display_profile_from_gdk ()" link="GimpColorConfig.html#gimp-color-config-get-display-profile-from-gdk" since="2.10"/>
+ <keyword type="function" name="gimp_color_config_get_simulation_intent ()" link="GimpColorConfig.html#gimp-color-config-get-simulation-intent" since="2.10"/>
+ <keyword type="function" name="gimp_color_config_get_simulation_bpc ()" link="GimpColorConfig.html#gimp-color-config-get-simulation-bpc" since="2.10"/>
+ <keyword type="function" name="gimp_color_config_get_simulation_optimize ()" link="GimpColorConfig.html#gimp-color-config-get-simulation-optimize" since="2.10"/>
+ <keyword type="function" name="gimp_color_config_get_simulation_gamut_check ()" link="GimpColorConfig.html#gimp-color-config-get-simulation-gamut-check" since="2.10"/>
+ <keyword type="function" name="gimp_color_config_get_rgb_color_profile ()" link="GimpColorConfig.html#gimp-color-config-get-rgb-color-profile" since="2.10"/>
+ <keyword type="function" name="gimp_color_config_get_gray_color_profile ()" link="GimpColorConfig.html#gimp-color-config-get-gray-color-profile" since="2.10"/>
+ <keyword type="function" name="gimp_color_config_get_cmyk_color_profile ()" link="GimpColorConfig.html#gimp-color-config-get-cmyk-color-profile" since="2.10"/>
+ <keyword type="function" name="gimp_color_config_get_display_color_profile ()" link="GimpColorConfig.html#gimp-color-config-get-display-color-profile" since="2.10"/>
+ <keyword type="function" name="gimp_color_config_get_simulation_color_profile ()" link="GimpColorConfig.html#gimp-color-config-get-simulation-color-profile" since="2.10"/>
+ <keyword type="enum" name="enum GimpColorManagementMode" link="GimpColorConfig.html#GimpColorManagementMode"/>
+ <keyword type="enum" name="enum GimpColorRenderingIntent" link="GimpColorConfig.html#GimpColorRenderingIntent"/>
+ <keyword type="property" name="The “cmyk-profile” property" link="GimpColorConfig.html#GimpColorConfig--cmyk-profile"/>
+ <keyword type="property" name="The “display-module” property" link="GimpColorConfig.html#GimpColorConfig--display-module"/>
+ <keyword type="property" name="The “display-optimize” property" link="GimpColorConfig.html#GimpColorConfig--display-optimize"/>
+ <keyword type="property" name="The “display-profile” property" link="GimpColorConfig.html#GimpColorConfig--display-profile"/>
+ <keyword type="property" name="The “display-profile-from-gdk” property" link="GimpColorConfig.html#GimpColorConfig--display-profile-from-gdk"/>
+ <keyword type="property" name="The “display-rendering-intent” property" link="GimpColorConfig.html#GimpColorConfig--display-rendering-intent"/>
+ <keyword type="property" name="The “display-use-black-point-compensation” property" link="GimpColorConfig.html#GimpColorConfig--display-use-black-point-compensation"/>
+ <keyword type="property" name="The “gray-profile” property" link="GimpColorConfig.html#GimpColorConfig--gray-profile"/>
+ <keyword type="property" name="The “mode” property" link="GimpColorConfig.html#GimpColorConfig--mode"/>
+ <keyword type="property" name="The “out-of-gamut-color” property" link="GimpColorConfig.html#GimpColorConfig--out-of-gamut-color"/>
+ <keyword type="property" name="The “printer-profile” property" link="GimpColorConfig.html#GimpColorConfig--printer-profile"/>
+ <keyword type="property" name="The “rgb-profile” property" link="GimpColorConfig.html#GimpColorConfig--rgb-profile"/>
+ <keyword type="property" name="The “show-hsv” property" link="GimpColorConfig.html#GimpColorConfig--show-hsv"/>
+ <keyword type="property" name="The “show-rgb-u8” property" link="GimpColorConfig.html#GimpColorConfig--show-rgb-u8"/>
+ <keyword type="property" name="The “simulation-gamut-check” property" link="GimpColorConfig.html#GimpColorConfig--simulation-gamut-check"/>
+ <keyword type="property" name="The “simulation-optimize” property" link="GimpColorConfig.html#GimpColorConfig--simulation-optimize"/>
+ <keyword type="property" name="The “simulation-rendering-intent” property" link="GimpColorConfig.html#GimpColorConfig--simulation-rendering-intent"/>
+ <keyword type="property" name="The “simulation-use-black-point-compensation” property" link="GimpColorConfig.html#GimpColorConfig--simulation-use-black-point-compensation"/>
+ <keyword type="constant" name="GIMP_CONFIG_ERROR_OPEN" link="libgimpconfig-GimpConfigError.html#GIMP-CONFIG-ERROR-OPEN:CAPS"/>
+ <keyword type="constant" name="GIMP_CONFIG_ERROR_OPEN_ENOENT" link="libgimpconfig-GimpConfigError.html#GIMP-CONFIG-ERROR-OPEN-ENOENT:CAPS"/>
+ <keyword type="constant" name="GIMP_CONFIG_ERROR_WRITE" link="libgimpconfig-GimpConfigError.html#GIMP-CONFIG-ERROR-WRITE:CAPS"/>
+ <keyword type="constant" name="GIMP_CONFIG_ERROR_PARSE" link="libgimpconfig-GimpConfigError.html#GIMP-CONFIG-ERROR-PARSE:CAPS"/>
+ <keyword type="constant" name="GIMP_CONFIG_ERROR_VERSION" link="libgimpconfig-GimpConfigError.html#GIMP-CONFIG-ERROR-VERSION:CAPS"/>
+ <keyword type="constant" name="GIMP_CONFIG_PATH_FILE" link="libgimpconfig-GimpConfig-path.html#GIMP-CONFIG-PATH-FILE:CAPS"/>
+ <keyword type="constant" name="GIMP_CONFIG_PATH_FILE_LIST" link="libgimpconfig-GimpConfig-path.html#GIMP-CONFIG-PATH-FILE-LIST:CAPS"/>
+ <keyword type="constant" name="GIMP_CONFIG_PATH_DIR" link="libgimpconfig-GimpConfig-path.html#GIMP-CONFIG-PATH-DIR:CAPS"/>
+ <keyword type="constant" name="GIMP_CONFIG_PATH_DIR_LIST" link="libgimpconfig-GimpConfig-path.html#GIMP-CONFIG-PATH-DIR-LIST:CAPS"/>
+ <keyword type="constant" name="GIMP_COLOR_MANAGEMENT_OFF" link="GimpColorConfig.html#GIMP-COLOR-MANAGEMENT-OFF:CAPS"/>
+ <keyword type="constant" name="GIMP_COLOR_MANAGEMENT_DISPLAY" link="GimpColorConfig.html#GIMP-COLOR-MANAGEMENT-DISPLAY:CAPS"/>
+ <keyword type="constant" name="GIMP_COLOR_MANAGEMENT_SOFTPROOF" link="GimpColorConfig.html#GIMP-COLOR-MANAGEMENT-SOFTPROOF:CAPS"/>
+ <keyword type="constant" name="GIMP_COLOR_RENDERING_INTENT_PERCEPTUAL" link="GimpColorConfig.html#GIMP-COLOR-RENDERING-INTENT-PERCEPTUAL:CAPS"/>
+ <keyword type="constant" name="GIMP_COLOR_RENDERING_INTENT_RELATIVE_COLORIMETRIC" link="GimpColorConfig.html#GIMP-COLOR-RENDERING-INTENT-RELATIVE-COLORIMETRIC:CAPS"/>
+ <keyword type="constant" name="GIMP_COLOR_RENDERING_INTENT_SATURATION" link="GimpColorConfig.html#GIMP-COLOR-RENDERING-INTENT-SATURATION:CAPS"/>
+ <keyword type="constant" name="GIMP_COLOR_RENDERING_INTENT_ABSOLUTE_COLORIMETRIC" link="GimpColorConfig.html#GIMP-COLOR-RENDERING-INTENT-ABSOLUTE-COLORIMETRIC:CAPS"/>
+ </functions>
+</book>
diff --git a/devel-docs/libgimpconfig/html/pt01.html b/devel-docs/libgimpconfig/html/pt01.html
new file mode 100644
index 0000000..d256fd1
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/pt01.html
@@ -0,0 +1,66 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>Part I. GIMP Config Library: GIMP Config Library Reference Manual</title>
+<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
+<link rel="home" href="index.html" title="GIMP Config Library Reference Manual">
+<link rel="up" href="index.html" title="GIMP Config Library Reference Manual">
+<link rel="prev" href="index.html" title="GIMP Config Library Reference Manual">
+<link rel="next" href="libgimpconfig-hierarchy.html" title="Object Hierarchy">
+<meta name="generator" content="GTK-Doc V1.33.1 (XML mode)">
+<link rel="stylesheet" href="style.css" type="text/css">
+</head>
+<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
+<td width="100%" align="left" class="shortcuts"></td>
+<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
+<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
+<td><a accesskey="p" href="index.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
+<td><a accesskey="n" href="libgimpconfig-hierarchy.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
+</tr></table>
+<div class="part">
+<div class="titlepage"><div><div><h1 class="title">
+<a name="id-1.2"></a>Part I. GIMP Config Library</h1></div></div></div>
+<div class="toc">
+<p><b>Table of Contents</b></p>
+<dl class="toc">
+<dt><span class="chapter"><a href="libgimpconfig-hierarchy.html">Object Hierarchy</a></span></dt>
+<dt>
+<span class="refentrytitle"><a href="libgimpconfig-GimpConfig.html">GimpConfig-iface</a></span><span class="refpurpose"> — High-level API for libgimpconfig.</span>
+</dt>
+<dt>
+<span class="refentrytitle"><a href="libgimpconfig-GimpConfig-deserialize.html">GimpConfig-deserialize</a></span><span class="refpurpose"> — Deserializing code for libgimpconfig.</span>
+</dt>
+<dt>
+<span class="refentrytitle"><a href="libgimpconfig-GimpConfig-serialize.html">GimpConfig-serialize</a></span><span class="refpurpose"> — Serializing for libgimpconfig.</span>
+</dt>
+<dt>
+<span class="refentrytitle"><a href="libgimpconfig-GimpConfigError.html">GimpConfig-error</a></span><span class="refpurpose"> — Error utils for libgimpconfig.</span>
+</dt>
+<dt>
+<span class="refentrytitle"><a href="libgimpconfig-GimpConfig-params.html">GimpConfig-params</a></span><span class="refpurpose"> — Macros and defines to install config properties.</span>
+</dt>
+<dt>
+<span class="refentrytitle"><a href="libgimpconfig-GimpConfig-path.html">GimpConfig-path</a></span><span class="refpurpose"> — File path utilities for libgimpconfig.</span>
+</dt>
+<dt>
+<span class="refentrytitle"><a href="libgimpconfig-GimpConfig-utils.html">GimpConfig-utils</a></span><span class="refpurpose"> — Miscellaneous utility functions for libgimpconfig.</span>
+</dt>
+<dt>
+<span class="refentrytitle"><a href="libgimpconfig-GimpConfigWriter.html">GimpConfigWriter</a></span><span class="refpurpose"> — Functions for writing config info to a file for
+libgimpconfig.</span>
+</dt>
+<dt>
+<span class="refentrytitle"><a href="libgimpconfig-GimpScanner.html">GimpScanner</a></span><span class="refpurpose"> — A wrapper around <span class="type">GScanner</span> with some convenience API.</span>
+</dt>
+<dt>
+<span class="refentrytitle"><a href="GimpColorConfig.html">GimpColorConfig</a></span><span class="refpurpose"> — Color management settings.</span>
+</dt>
+</dl>
+</div>
+</div>
+<div class="footer">
+<hr>Generated by GTK-Doc V1.33.1</div>
+</body>
+</html> \ No newline at end of file
diff --git a/devel-docs/libgimpconfig/html/right-insensitive.png b/devel-docs/libgimpconfig/html/right-insensitive.png
new file mode 100644
index 0000000..763208d
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/right-insensitive.png
Binary files differ
diff --git a/devel-docs/libgimpconfig/html/right.png b/devel-docs/libgimpconfig/html/right.png
new file mode 100644
index 0000000..eb90dd4
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/right.png
Binary files differ
diff --git a/devel-docs/libgimpconfig/html/style.css b/devel-docs/libgimpconfig/html/style.css
new file mode 100644
index 0000000..41781ba
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/style.css
@@ -0,0 +1,530 @@
+body
+{
+ font-family: cantarell, sans-serif;
+}
+.synopsis, .classsynopsis
+{
+ /* tango:aluminium 1/2 */
+ background: #eeeeec;
+ background: rgba(238, 238, 236, 0.5);
+ border: solid 1px rgb(238, 238, 236);
+ padding: 0.5em;
+}
+.programlisting
+{
+ /* tango:sky blue 0/1 */
+ /* fallback for no rgba support */
+ background: #e6f3ff;
+ border: solid 1px #729fcf;
+ background: rgba(114, 159, 207, 0.1);
+ border: solid 1px rgba(114, 159, 207, 0.2);
+ padding: 0.5em;
+}
+.variablelist
+{
+ padding: 4px;
+ margin-left: 3em;
+}
+.variablelist td:first-child
+{
+ vertical-align: top;
+}
+
+span.nowrap {
+ white-space: nowrap;
+}
+
+div.gallery-float
+{
+ float: left;
+ padding: 10px;
+}
+div.gallery-float img
+{
+ border-style: none;
+}
+div.gallery-spacer
+{
+ clear: both;
+}
+
+a, a:visited
+{
+ text-decoration: none;
+ /* tango:sky blue 2 */
+ color: #3465a4;
+}
+a:hover
+{
+ text-decoration: underline;
+ /* tango:sky blue 1 */
+ color: #729fcf;
+}
+
+.function_type,
+.variable_type,
+.property_type,
+.signal_type,
+.parameter_name,
+.struct_member_name,
+.union_member_name,
+.define_keyword,
+.datatype_keyword,
+.typedef_keyword
+{
+ text-align: right;
+}
+
+/* dim non-primary columns */
+.c_punctuation,
+.function_type,
+.variable_type,
+.property_type,
+.signal_type,
+.define_keyword,
+.datatype_keyword,
+.typedef_keyword,
+.property_flags,
+.signal_flags,
+.parameter_annotations,
+.enum_member_annotations,
+.struct_member_annotations,
+.union_member_annotations
+{
+ color: #888a85;
+}
+
+.function_type a,
+.function_type a:visited,
+.function_type a:hover,
+.property_type a,
+.property_type a:visited,
+.property_type a:hover,
+.signal_type a,
+.signal_type a:visited,
+.signal_type a:hover,
+.signal_flags a,
+.signal_flags a:visited,
+.signal_flags a:hover
+{
+ color: #729fcf;
+}
+
+td p
+{
+ margin: 0.25em;
+}
+
+div.informaltable table[border="1"],
+div.table table
+{
+ border-collapse: collapse;
+ border-spacing: 0px;
+ /* tango:aluminium 3 */
+ border: solid 1px #babdb6;
+}
+
+div.informaltable table[border="1"] td,
+div.informaltable table th,
+div.table table td, div.table table th
+{
+ /* tango:aluminium 3 */
+ border: solid 1px #babdb6;
+ padding: 3px;
+ vertical-align: top;
+}
+
+div.informaltable table[border="1"] th,
+div.table table th
+{
+ /* tango:aluminium 2 */
+ background-color: #d3d7cf;
+}
+
+h4
+{
+ color: #555753;
+ margin-top: 1em;
+ margin-bottom: 1em;
+}
+
+hr
+{
+ /* tango:aluminium 1 */
+ color: #d3d7cf;
+ background: #d3d7cf;
+ border: none 0px;
+ height: 1px;
+ clear: both;
+ margin: 2.0em 0em 2.0em 0em;
+}
+
+dl.toc dt
+{
+ padding-bottom: 0.25em;
+}
+
+dl.toc > dt
+{
+ padding-top: 0.25em;
+ padding-bottom: 0.25em;
+ font-weight: bold;
+}
+
+dl.toc > dl
+{
+ padding-bottom: 0.5em;
+}
+
+.parameter
+{
+ font-style: normal;
+}
+
+.footer
+{
+ padding-top: 3.5em;
+ /* tango:aluminium 3 */
+ color: #babdb6;
+ text-align: center;
+ font-size: 80%;
+}
+
+.informalfigure,
+.figure
+{
+ margin: 1em;
+}
+
+.informalexample,
+.example
+{
+ margin-top: 1em;
+ margin-bottom: 1em;
+}
+
+.warning
+{
+ /* tango:orange 0/1 */
+ background: #ffeed9;
+ background: rgba(252, 175, 62, 0.1);
+ border-color: #ffb04f;
+ border-color: rgba(252, 175, 62, 0.2);
+}
+.note
+{
+ /* tango:chameleon 0/0.5 */
+ background: #d8ffb2;
+ background: rgba(138, 226, 52, 0.1);
+ border-color: #abf562;
+ border-color: rgba(138, 226, 52, 0.2);
+}
+div.blockquote
+{
+ border-color: #eeeeec;
+}
+.note, .warning, div.blockquote
+{
+ padding: 0.5em;
+ border-width: 1px;
+ border-style: solid;
+ margin: 2em;
+}
+.note p, .warning p
+{
+ margin: 0;
+}
+
+div.warning h3.title,
+div.note h3.title
+{
+ display: none;
+}
+
+p + div.section
+{
+ margin-top: 1em;
+}
+
+div.refnamediv,
+div.refsynopsisdiv,
+div.refsect1,
+div.refsect2,
+div.toc,
+div.section
+{
+ margin-bottom: 1em;
+}
+
+/* blob links */
+h2 .extralinks, h3 .extralinks
+{
+ float: right;
+ /* tango:aluminium 3 */
+ color: #babdb6;
+ font-size: 80%;
+ font-weight: normal;
+}
+
+.lineart
+{
+ color: #d3d7cf;
+ font-weight: normal;
+}
+
+.annotation
+{
+ /* tango:aluminium 5 */
+ color: #555753;
+ font-weight: normal;
+}
+
+.structfield
+{
+ font-style: normal;
+ font-weight: normal;
+}
+
+acronym,abbr
+{
+ border-bottom: 1px dotted gray;
+}
+
+.listing_frame {
+ /* tango:sky blue 1 */
+ border: solid 1px #729fcf;
+ border: solid 1px rgba(114, 159, 207, 0.2);
+ padding: 0px;
+}
+
+.listing_lines, .listing_code {
+ margin-top: 0px;
+ margin-bottom: 0px;
+ padding: 0.5em;
+}
+.listing_lines {
+ /* tango:sky blue 0.5 */
+ background: #a6c5e3;
+ background: rgba(114, 159, 207, 0.2);
+ /* tango:aluminium 6 */
+ color: #2e3436;
+}
+.listing_code {
+ /* tango:sky blue 0 */
+ background: #e6f3ff;
+ background: rgba(114, 159, 207, 0.1);
+}
+.listing_code .programlisting {
+ /* override from previous */
+ border: none 0px;
+ padding: 0px;
+ background: none;
+}
+.listing_lines pre, .listing_code pre {
+ margin: 0px;
+}
+
+@media screen {
+ /* these have a <sup> as a first child, but since there are no parent selectors
+ * we can't use that. */
+ a.footnote
+ {
+ position: relative;
+ top: 0em ! important;
+ }
+ /* this is needed so that the local anchors are displayed below the naviagtion */
+ div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name]
+ {
+ display: inline-block;
+ position: relative;
+ top:-5em;
+ }
+ /* this seems to be a bug in the xsl style sheets when generating indexes */
+ div.index div.index
+ {
+ top: 0em;
+ }
+ /* make space for the fixed navigation bar and add space at the bottom so that
+ * link targets appear somewhat close to top
+ */
+ body
+ {
+ padding-top: 2.5em;
+ padding-bottom: 500px;
+ max-width: 60em;
+ }
+ p
+ {
+ max-width: 60em;
+ }
+ /* style and size the navigation bar */
+ table.navigation#top
+ {
+ position: fixed;
+ background: #e2e2e2;
+ border-bottom: solid 1px #babdb6;
+ border-spacing: 5px;
+ margin-top: 0;
+ margin-bottom: 0;
+ top: 0;
+ left: 0;
+ z-index: 10;
+ }
+ table.navigation#top td
+ {
+ padding-left: 6px;
+ padding-right: 6px;
+ }
+ .navigation a, .navigation a:visited
+ {
+ /* tango:sky blue 3 */
+ color: #204a87;
+ }
+ .navigation a:hover
+ {
+ /* tango:sky blue 2 */
+ color: #3465a4;
+ }
+ td.shortcuts
+ {
+ /* tango:sky blue 2 */
+ color: #3465a4;
+ font-size: 80%;
+ white-space: nowrap;
+ }
+ td.shortcuts .dim
+ {
+ color: #babdb6;
+ }
+ .navigation .title
+ {
+ font-size: 80%;
+ max-width: none;
+ margin: 0px;
+ font-weight: normal;
+ }
+}
+@media screen and (min-width: 60em) {
+ /* screen larger than 60em */
+ body { margin: auto; }
+}
+@media screen and (max-width: 60em) {
+ /* screen less than 60em */
+ #nav_hierarchy { display: none; }
+ #nav_interfaces { display: none; }
+ #nav_prerequisites { display: none; }
+ #nav_derived_interfaces { display: none; }
+ #nav_implementations { display: none; }
+ #nav_child_properties { display: none; }
+ #nav_style_properties { display: none; }
+ #nav_index { display: none; }
+ #nav_glossary { display: none; }
+ .gallery_image { display: none; }
+ .property_flags { display: none; }
+ .signal_flags { display: none; }
+ .parameter_annotations { display: none; }
+ .enum_member_annotations { display: none; }
+ .struct_member_annotations { display: none; }
+ .union_member_annotations { display: none; }
+ /* now that a column is hidden, optimize space */
+ col.parameters_name { width: auto; }
+ col.parameters_description { width: auto; }
+ col.struct_members_name { width: auto; }
+ col.struct_members_description { width: auto; }
+ col.enum_members_name { width: auto; }
+ col.enum_members_description { width: auto; }
+ col.union_members_name { width: auto; }
+ col.union_members_description { width: auto; }
+ .listing_lines { display: none; }
+}
+@media print {
+ table.navigation {
+ visibility: collapse;
+ display: none;
+ }
+ div.titlepage table.navigation {
+ visibility: visible;
+ display: table;
+ background: #e2e2e2;
+ border: solid 1px #babdb6;
+ margin-top: 0;
+ margin-bottom: 0;
+ top: 0;
+ left: 0;
+ height: 3em;
+ }
+}
+
+pre { line-height: 125%; margin: 0; }
+td.linenos pre { color: #000000; background-color: #f0f0f0; padding: 0 5px 0 5px; }
+span.linenos { color: #000000; background-color: #f0f0f0; padding: 0 5px 0 5px; }
+td.linenos pre.special { color: #000000; background-color: #ffffc0; padding: 0 5px 0 5px; }
+span.linenos.special { color: #000000; background-color: #ffffc0; padding: 0 5px 0 5px; }
+.hll { background-color: #ffffcc }
+.c { color: #408080; font-style: italic } /* Comment */
+.err { border: 1px solid #FF0000 } /* Error */
+.k { color: #008000; font-weight: bold } /* Keyword */
+.o { color: #666666 } /* Operator */
+.ch { color: #408080; font-style: italic } /* Comment.Hashbang */
+.cm { color: #408080; font-style: italic } /* Comment.Multiline */
+.cp { color: #BC7A00 } /* Comment.Preproc */
+.cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */
+.c1 { color: #408080; font-style: italic } /* Comment.Single */
+.cs { color: #408080; font-style: italic } /* Comment.Special */
+.gd { color: #A00000 } /* Generic.Deleted */
+.ge { font-style: italic } /* Generic.Emph */
+.gr { color: #FF0000 } /* Generic.Error */
+.gh { color: #000080; font-weight: bold } /* Generic.Heading */
+.gi { color: #00A000 } /* Generic.Inserted */
+.go { color: #888888 } /* Generic.Output */
+.gp { color: #000080; font-weight: bold } /* Generic.Prompt */
+.gs { font-weight: bold } /* Generic.Strong */
+.gu { color: #800080; font-weight: bold } /* Generic.Subheading */
+.gt { color: #0044DD } /* Generic.Traceback */
+.kc { color: #008000; font-weight: bold } /* Keyword.Constant */
+.kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
+.kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
+.kp { color: #008000 } /* Keyword.Pseudo */
+.kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
+.kt { color: #B00040 } /* Keyword.Type */
+.m { color: #666666 } /* Literal.Number */
+.s { color: #BA2121 } /* Literal.String */
+.na { color: #7D9029 } /* Name.Attribute */
+.nb { color: #008000 } /* Name.Builtin */
+.nc { color: #0000FF; font-weight: bold } /* Name.Class */
+.no { color: #880000 } /* Name.Constant */
+.nd { color: #AA22FF } /* Name.Decorator */
+.ni { color: #999999; font-weight: bold } /* Name.Entity */
+.ne { color: #D2413A; font-weight: bold } /* Name.Exception */
+.nf { color: #0000FF } /* Name.Function */
+.nl { color: #A0A000 } /* Name.Label */
+.nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
+.nt { color: #008000; font-weight: bold } /* Name.Tag */
+.nv { color: #19177C } /* Name.Variable */
+.ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
+.w { color: #bbbbbb } /* Text.Whitespace */
+.mb { color: #666666 } /* Literal.Number.Bin */
+.mf { color: #666666 } /* Literal.Number.Float */
+.mh { color: #666666 } /* Literal.Number.Hex */
+.mi { color: #666666 } /* Literal.Number.Integer */
+.mo { color: #666666 } /* Literal.Number.Oct */
+.sa { color: #BA2121 } /* Literal.String.Affix */
+.sb { color: #BA2121 } /* Literal.String.Backtick */
+.sc { color: #BA2121 } /* Literal.String.Char */
+.dl { color: #BA2121 } /* Literal.String.Delimiter */
+.sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
+.s2 { color: #BA2121 } /* Literal.String.Double */
+.se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
+.sh { color: #BA2121 } /* Literal.String.Heredoc */
+.si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
+.sx { color: #008000 } /* Literal.String.Other */
+.sr { color: #BB6688 } /* Literal.String.Regex */
+.s1 { color: #BA2121 } /* Literal.String.Single */
+.ss { color: #19177C } /* Literal.String.Symbol */
+.bp { color: #008000 } /* Name.Builtin.Pseudo */
+.fm { color: #0000FF } /* Name.Function.Magic */
+.vc { color: #19177C } /* Name.Variable.Class */
+.vg { color: #19177C } /* Name.Variable.Global */
+.vi { color: #19177C } /* Name.Variable.Instance */
+.vm { color: #19177C } /* Name.Variable.Magic */
+.il { color: #666666 } /* Literal.Number.Integer.Long */ \ No newline at end of file
diff --git a/devel-docs/libgimpconfig/html/up-insensitive.png b/devel-docs/libgimpconfig/html/up-insensitive.png
new file mode 100644
index 0000000..478700c
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/up-insensitive.png
Binary files differ
diff --git a/devel-docs/libgimpconfig/html/up.png b/devel-docs/libgimpconfig/html/up.png
new file mode 100644
index 0000000..636d50d
--- /dev/null
+++ b/devel-docs/libgimpconfig/html/up.png
Binary files differ
diff --git a/devel-docs/libgimpconfig/libgimpconfig-docs.sgml b/devel-docs/libgimpconfig/libgimpconfig-docs.sgml
new file mode 100644
index 0000000..800d0df
--- /dev/null
+++ b/devel-docs/libgimpconfig/libgimpconfig-docs.sgml
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE book PUBLIC '-//OASIS//DTD DocBook XML V4.5//EN'
+ 'http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd'>
+
+<book lang="en" id="libgimpconfig" xmlns:xi="http://www.w3.org/2003/XInclude">
+
+ <bookinfo>
+ <title>GIMP Config Library Reference Manual</title>
+ <releaseinfo>
+ for GIMP <xi:include href="version" parse="text"/>
+ </releaseinfo>
+ </bookinfo>
+
+ <part>
+ <title>GIMP Config Library</title>
+
+ <chapter id="libgimpconfig-hierarchy">
+ <title>Object Hierarchy</title>
+ <xi:include href="xml/tree_index.sgml" />
+ </chapter>
+
+ <xi:include href="xml/gimpconfig-iface.xml" />
+ <xi:include href="xml/gimpconfig-deserialize.xml" />
+ <xi:include href="xml/gimpconfig-serialize.xml" />
+ <xi:include href="xml/gimpconfig-error.xml" />
+ <xi:include href="xml/gimpconfig-params.xml" />
+ <xi:include href="xml/gimpconfig-path.xml" />
+ <xi:include href="xml/gimpconfig-utils.xml" />
+ <xi:include href="xml/gimpconfigwriter.xml" />
+ <xi:include href="xml/gimpscanner.xml" />
+ <xi:include href="xml/gimpcolorconfig.xml" />
+ </part>
+
+ <index id="api-index-full">
+ <title>Index</title>
+ <xi:include href="xml/api-index-full.xml"><xi:fallback /></xi:include>
+ </index>
+ <index role="2.4" id="api-index-2-4">
+ <title>Index of new symbols in GIMP 2.4</title>
+ <xi:include href="xml/api-index-2.4.xml"><xi:fallback /></xi:include>
+ </index>
+ <index role="2.6" id="api-index-2-6">
+ <title>Index of new symbols in GIMP 2.6</title>
+ <xi:include href="xml/api-index-2.6.xml"><xi:fallback /></xi:include>
+ </index>
+ <index role="2.8" id="api-index-2-8">
+ <title>Index of new symbols in GIMP 2.8</title>
+ <xi:include href="xml/api-index-2.8.xml"><xi:fallback /></xi:include>
+ </index>
+ <index role="2.10" id="api-index-2-10">
+ <title>Index of new symbols in GIMP 2.10</title>
+ <xi:include href="xml/api-index-2.10.xml"><xi:fallback /></xi:include>
+ </index>
+ <index role="deprecated" id="api-index-deprecated">
+ <title>Index of deprecated symbols</title>
+ <xi:include href="xml/api-index-deprecated.xml"><xi:fallback /></xi:include>
+ </index>
+
+</book>
diff --git a/devel-docs/libgimpconfig/libgimpconfig-overrides.txt b/devel-docs/libgimpconfig/libgimpconfig-overrides.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/devel-docs/libgimpconfig/libgimpconfig-overrides.txt
diff --git a/devel-docs/libgimpconfig/libgimpconfig-sections.txt b/devel-docs/libgimpconfig/libgimpconfig-sections.txt
new file mode 100644
index 0000000..5e842f8
--- /dev/null
+++ b/devel-docs/libgimpconfig/libgimpconfig-sections.txt
@@ -0,0 +1,205 @@
+<SECTION>
+<FILE>gimpconfig-iface</FILE>
+<TITLE>GimpConfig</TITLE>
+GimpConfig
+GimpConfigInterface
+gimp_config_serialize
+gimp_config_serialize_to_file
+gimp_config_serialize_to_gfile
+gimp_config_serialize_to_stream
+gimp_config_serialize_to_fd
+gimp_config_serialize_to_string
+gimp_config_deserialize
+gimp_config_deserialize_file
+gimp_config_deserialize_gfile
+gimp_config_deserialize_stream
+gimp_config_deserialize_string
+gimp_config_deserialize_return
+gimp_config_duplicate
+gimp_config_is_equal_to
+gimp_config_reset
+gimp_config_copy
+<SUBSECTION Standard>
+GIMP_CONFIG
+GIMP_IS_CONFIG
+GIMP_TYPE_CONFIG
+GIMP_CONFIG_GET_INTERFACE
+gimp_config_interface_get_type
+gimp_config_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gimpconfig-deserialize</FILE>
+gimp_config_deserialize_properties
+gimp_config_deserialize_property
+</SECTION>
+
+<SECTION>
+<FILE>gimpconfig-error</FILE>
+<TITLE>GimpConfigError</TITLE>
+GimpConfigError
+GIMP_CONFIG_ERROR
+gimp_config_error_quark
+</SECTION>
+
+<SECTION>
+<FILE>gimpconfig-params</FILE>
+GIMP_CONFIG_PARAM_SERIALIZE
+GIMP_CONFIG_PARAM_AGGREGATE
+GIMP_CONFIG_PARAM_RESTART
+GIMP_CONFIG_PARAM_CONFIRM
+GIMP_CONFIG_PARAM_DEFAULTS
+GIMP_CONFIG_PARAM_IGNORE
+GIMP_CONFIG_PARAM_FLAGS
+GIMP_CONFIG_PROP_BOOLEAN
+GIMP_CONFIG_PROP_BOXED
+GIMP_CONFIG_PROP_DOUBLE
+GIMP_CONFIG_PROP_ENUM
+GIMP_CONFIG_PROP_INT
+GIMP_CONFIG_PROP_INT64
+GIMP_CONFIG_PROP_MATRIX2
+GIMP_CONFIG_PROP_MEMSIZE
+GIMP_CONFIG_PROP_OBJECT
+GIMP_CONFIG_PROP_PATH
+GIMP_CONFIG_PROP_POINTER
+GIMP_CONFIG_PROP_RESOLUTION
+GIMP_CONFIG_PROP_RGB
+GIMP_CONFIG_PROP_STRING
+GIMP_CONFIG_PROP_UINT64
+GIMP_CONFIG_PROP_UINT
+GIMP_CONFIG_PROP_UNIT
+GIMP_CONFIG_INSTALL_PROP_BOOLEAN
+GIMP_CONFIG_INSTALL_PROP_BOXED
+GIMP_CONFIG_INSTALL_PROP_RGB
+GIMP_CONFIG_INSTALL_PROP_DOUBLE
+GIMP_CONFIG_INSTALL_PROP_RESOLUTION
+GIMP_CONFIG_INSTALL_PROP_ENUM
+GIMP_CONFIG_INSTALL_PROP_INT
+GIMP_CONFIG_INSTALL_PROP_MATRIX2
+GIMP_CONFIG_INSTALL_PROP_MEMSIZE
+GIMP_CONFIG_INSTALL_PROP_PATH
+GIMP_CONFIG_INSTALL_PROP_STRING
+GIMP_CONFIG_INSTALL_PROP_UINT
+GIMP_CONFIG_INSTALL_PROP_UNIT
+GIMP_CONFIG_INSTALL_PROP_OBJECT
+GIMP_CONFIG_INSTALL_PROP_POINTER
+</SECTION>
+
+<SECTION>
+<FILE>gimpconfig-path</FILE>
+GimpConfigPath
+GimpConfigPathType
+gimp_param_spec_config_path
+gimp_param_spec_config_path_type
+gimp_config_path_expand
+gimp_config_path_expand_to_files
+gimp_config_path_unexpand
+gimp_file_new_for_config_path
+gimp_file_get_config_path
+gimp_config_build_data_path
+gimp_config_build_writable_path
+gimp_config_build_plug_in_path
+GIMP_VALUE_HOLDS_CONFIG_PATH
+<SUBSECTION Standard>
+GIMP_TYPE_CONFIG_PATH
+GIMP_TYPE_PARAM_CONFIG_PATH
+GIMP_IS_PARAM_SPEC_CONFIG_PATH
+gimp_config_path_get_type
+gimp_param_config_path_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gimpconfig-serialize</FILE>
+gimp_config_serialize_properties
+gimp_config_serialize_changed_properties
+gimp_config_serialize_property
+gimp_config_serialize_property_by_name
+gimp_config_serialize_value
+</SECTION>
+
+<SECTION>
+<FILE>gimpconfig-utils</FILE>
+gimp_config_diff
+gimp_config_sync
+gimp_config_reset_properties
+gimp_config_reset_property
+gimp_config_string_append_escaped
+</SECTION>
+
+<SECTION>
+<FILE>gimpconfigwriter</FILE>
+<TITLE>GimpConfigWriter</TITLE>
+GimpConfigWriter
+gimp_config_writer_new_file
+gimp_config_writer_new_gfile
+gimp_config_writer_new_stream
+gimp_config_writer_new_fd
+gimp_config_writer_new_string
+gimp_config_writer_open
+gimp_config_writer_comment_mode
+gimp_config_writer_print
+gimp_config_writer_printf
+gimp_config_writer_identifier
+gimp_config_writer_string
+gimp_config_writer_data
+gimp_config_writer_comment
+gimp_config_writer_linefeed
+gimp_config_writer_revert
+gimp_config_writer_close
+gimp_config_writer_finish
+</SECTION>
+
+<SECTION>
+<FILE>gimpscanner</FILE>
+<TITLE>GimpScanner</TITLE>
+gimp_scanner_new_file
+gimp_scanner_new_gfile
+gimp_scanner_new_stream
+gimp_scanner_new_string
+gimp_scanner_destroy
+gimp_scanner_parse_token
+gimp_scanner_parse_identifier
+gimp_scanner_parse_string
+gimp_scanner_parse_string_no_validate
+gimp_scanner_parse_data
+gimp_scanner_parse_int
+gimp_scanner_parse_int64
+gimp_scanner_parse_float
+gimp_scanner_parse_boolean
+gimp_scanner_parse_color
+gimp_scanner_parse_matrix2
+</SECTION>
+
+<SECTION>
+<FILE>gimpcolorconfig</FILE>
+<TITLE>GimpColorConfig</TITLE>
+GimpColorManagementMode
+GimpColorRenderingIntent
+gimp_color_config_get_mode
+gimp_color_config_get_display_intent
+gimp_color_config_get_display_bpc
+gimp_color_config_get_display_optimize
+gimp_color_config_get_display_profile_from_gdk
+gimp_color_config_get_simulation_intent
+gimp_color_config_get_simulation_bpc
+gimp_color_config_get_simulation_optimize
+gimp_color_config_get_simulation_gamut_check
+gimp_color_config_get_rgb_color_profile
+gimp_color_config_get_gray_color_profile
+gimp_color_config_get_cmyk_color_profile
+gimp_color_config_get_display_color_profile
+gimp_color_config_get_simulation_color_profile
+<SUBSECTION Standard>
+GimpColorConfig
+GimpColorConfigClass
+GIMP_COLOR_CONFIG
+GIMP_IS_COLOR_CONFIG
+GIMP_TYPE_COLOR_CONFIG
+gimp_color_config_get_type
+GIMP_COLOR_CONFIG_CLASS
+GIMP_IS_COLOR_CONFIG_CLASS
+GIMP_TYPE_COLOR_MANAGEMENT_MODE
+gimp_color_management_mode_get_type
+GIMP_TYPE_COLOR_RENDERING_INTENT
+gimp_color_rendering_intent_get_type
+</SECTION>
diff --git a/devel-docs/libgimpconfig/libgimpconfig.types b/devel-docs/libgimpconfig/libgimpconfig.types
new file mode 100644
index 0000000..64a64a1
--- /dev/null
+++ b/devel-docs/libgimpconfig/libgimpconfig.types
@@ -0,0 +1,5 @@
+#include <gio/gio.h>
+#include <libgimpconfig/gimpconfig.h>
+
+gimp_config_get_type
+gimp_color_config_get_type
diff --git a/devel-docs/libgimpconfig/version.in b/devel-docs/libgimpconfig/version.in
new file mode 100644
index 0000000..9e02d6e
--- /dev/null
+++ b/devel-docs/libgimpconfig/version.in
@@ -0,0 +1 @@
+@GIMP_VERSION@