diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dd3bebf977..3220573f89 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -70,7 +70,8 @@ build-image: - echo "FROM debian:testing" > Dockerfile - echo "RUN apt-get update" >> Dockerfile - echo "RUN apt-get install -y --no-install-recommends \\" >> Dockerfile - - echo "at-spi2-core build-essential desktop-file-utils ffmpeg ghostscript git glib-networking gobject-introspection graphviz graphviz-dev gtk-doc-tools hicolor-icon-theme intltool iso-codes libappstream-glib-dev libbz2-dev libdbus-glib-1-dev libexif-dev libgexiv2-dev libgirepository1.0-dev libgtk-3-bin libgtk-3-dev libgudev-1.0-dev libjson-glib-dev liblcms2-dev liblzma-dev libmng-dev libmypaint-dev libopenexr-dev libpoppler-glib-dev libraw-dev libraw20 librsvg2-dev libspiro-dev libsuitesparse-dev libtiff-dev libtiff5-dev libtool libumfpack5 libwebp-dev libwmf-dev libxmu-dev libxpm-dev luajit meson mypaint-brushes poppler-data python3 valac xauth xvfb" >> Dockerfile + - echo "at-spi2-core build-essential desktop-file-utils ffmpeg ghostscript git glib-networking gobject-introspection graphviz graphviz-dev hicolor-icon-theme intltool iso-codes libappstream-glib-dev libbz2-dev libdbus-glib-1-dev libexif-dev libgexiv2-dev libgirepository1.0-dev libgtk-3-bin libgtk-3-dev libgudev-1.0-dev libjson-glib-dev liblcms2-dev liblzma-dev libmng-dev libmypaint-dev libopenexr-dev libpoppler-glib-dev libraw-dev libraw20 librsvg2-dev libspiro-dev libsuitesparse-dev libtiff-dev libtiff5-dev libtool libumfpack5 libwebp-dev libwmf-dev libxmu-dev libxpm-dev luajit meson mypaint-brushes poppler-data python3 python3-pip valac xauth xsltproc xvfb" >> Dockerfile + - echo "RUN pip3 install --no-cache-dir gi-docgen jinja2 Markdown markupsafe pygments toml typogrify" >> Dockerfile - /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:build-debian-latest --cache=true --cache-ttl=120h @@ -210,7 +211,7 @@ gimp-distcheck-debian: - ../autogen.sh --prefix="${INSTALL_PREFIX}" --enable-debug - --enable-gtk-doc + --enable-gi-docgen --enable-windows-installer - make -j "$(nproc)" - make -j "$(nproc)" check @@ -487,7 +488,7 @@ gimp-win64: - export PATH="`pwd`/.local/bin:$PATH" - mkdir _build && cd _build - echo 'crossroad meson .. - -Dgtk-doc=false && ninja && ninja install && + -Dgi-docgen=false && ninja && ninja install && cp -fr $CROSSROAD_PREFIX/ ../gimp-prefix/ ' | crossroad w64 gimp --run="-" @@ -552,7 +553,7 @@ gimp-win32: - export PATH="`pwd`/.local/bin:$PATH" - mkdir _build && cd _build - echo 'crossroad meson .. - -Dwmf=disabled -Dmng=disabled -Dgtk-doc=false && ninja && ninja install && + -Dwmf=disabled -Dmng=disabled -Dgi_docgen=false && ninja && ninja install && cp -fr $CROSSROAD_PREFIX/ ../gimp-prefix/ ' | crossroad w32 gimp --run="-" diff --git a/CODING_STYLE.md b/CODING_STYLE.md index ec265be00f..7094e9cb86 100644 --- a/CODING_STYLE.md +++ b/CODING_STYLE.md @@ -645,8 +645,8 @@ which often revamp their design, breaking URLs, etc.). #### Public API Documentation All public APIs (i.e. any function exported in a header inside -`libgimp*/` folders) **MUST** have proper gtk-doc comments. For -functions, these should be placed in the source file directly above. +`libgimp*/` folders) **MUST** have proper GObject-introspection (GIR) comments. +For functions, these should be placed in the source file directly above. These annotations are also relevant for [GObject Introspection](https://gi.readthedocs.io/en/latest/annotations/giannotations.html) diff --git a/HACKING b/HACKING index 004cd2ac61..fb17479186 100644 --- a/HACKING +++ b/HACKING @@ -20,9 +20,6 @@ Beta software can be found at alpha.gnu.org. * pkg-config 0.16.0 (or preferably a newer version) - https://www.freedesktop.org/software/pkgconfig/ - * gtkdocize - - https://ftp.gnome.org/pub/GNOME/sources/gtk-doc/ - * xsltproc - ftp://ftp.gnome.org/pub/GNOME/sources/libxslt/1.1/ diff --git a/Makefile.am b/Makefile.am index 3d22f29089..cdc707f03d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -86,11 +86,10 @@ EXTRA_DIST = \ authors.xsl \ config.h.win32 \ gimp-zip.in \ - git-version.h \ - gtk-doc.make + git-version.h -AM_DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --with-python=force --with-javascript=force --with-lua=force +AM_DISTCHECK_CONFIGURE_FLAGS = --enable-gi-docgen --with-python=force --with-javascript=force --with-lua=force check-defs: diff --git a/autogen.sh b/autogen.sh index eb66aefb59..a7d21d1c9f 100755 --- a/autogen.sh +++ b/autogen.sh @@ -110,35 +110,6 @@ if test x$LIBTOOLIZE != x; then check_version $VER $LIBTOOL_REQUIRED_VERSION fi -# check if gtk-doc is explicitly disabled -for ag_option in $AUTOGEN_CONFIGURE_ARGS $@ -do - case $ag_option in - -disable-gtk-doc | --disable-gtk-doc) - enable_gtk_doc=no - ;; - esac -done - -if test x$enable_gtk_doc = xno; then - echo "skipping test for gtkdocize" -else - printf "checking for gtkdocize ... " - if (gtkdocize --version) < /dev/null > /dev/null 2>&1; then - echo "yes" - else - echo - echo " You must have gtk-doc installed to compile $PROJECT." - echo " Install the appropriate package for your distribution," - echo " or get the source tarball at" - echo " https://ftp.gnome.org/pub/GNOME/sources/gtk-doc/" - echo " You can also use the option --disable-gtk-doc to skip" - echo " this test but then you will not be able to generate a" - echo " configure script that can build the API documentation." - DIE=1 - fi -fi - printf "checking for autoconf >= $AUTOCONF_REQUIRED_VERSION ... " if ($AUTOCONF --version) < /dev/null > /dev/null 2>&1; then VER=`$AUTOCONF --version | head -n 1 \ @@ -279,19 +250,6 @@ fi $LIBTOOLIZE --force || exit $? -if test x$enable_gtk_doc = xno; then - if test -f gtk-doc.make; then :; else - echo "EXTRA_DIST = missing-gtk-doc" > gtk-doc.make - echo "CLEANFILES = " >> gtk-doc.make - fi - echo "WARNING: You have disabled gtk-doc." - echo " As a result, you will not be able to generate the API" - echo " documentation and 'make dist' will not work." - echo -else - gtkdocize || exit $? -fi - # optionally feature autoheader ($AUTOHEADER --version) < /dev/null > /dev/null 2>&1 && $AUTOHEADER || exit 1 diff --git a/build/flatpak/org.gimp.GIMP-nightly.json b/build/flatpak/org.gimp.GIMP-nightly.json index 5025134aaa..ad290b52d8 100644 --- a/build/flatpak/org.gimp.GIMP-nightly.json +++ b/build/flatpak/org.gimp.GIMP-nightly.json @@ -36,7 +36,6 @@ "/share/aclocal", "/man", "/share/man", - "/share/gtk-doc", "/share/vala", "*.la", "*.a" @@ -802,7 +801,7 @@ { "name": "gimp", "config-opts": [ - "-Dgtk-doc=false", + "-Dgi-docgen=false", "-Dicc-directory=/run/host/usr/share/color/icc/", "-Dbuild-id=org.gimp.GIMP.flatpak.nightly", "-Dcheck-update=no" diff --git a/configure.ac b/configure.ac index 728859cefc..4751c6fec4 100644 --- a/configure.ac +++ b/configure.ac @@ -2748,22 +2748,20 @@ if test "x$platform_osx" = "xno" && AC_MSG_RESULT([$with_icc_directory]) fi -###################################### -# Checks for gtk-doc and docbook-tools -###################################### +######################################## +# Check for gi-docgen +######################################## -# Check for GTK_DOC_CHECK availability. The GTK_DOC_CHECK invocation -# must be on its own line, gtkdocize relies on it -m4_ifdef([GTK_DOC_CHECK], [ -GTK_DOC_CHECK([1.0]) -]) +AC_ARG_ENABLE(gi-docgen, [ --enable-gi-docgen build gi-docgen documentation (default=yes)], , enable_gi_docgen=yes) -# NOTE: We need to use a separate automake conditional for this -# to make this work with the tarballs. -AM_CONDITIONAL(ENABLE_GTK_DOC, test "x$enable_gtk_doc" = xyes) +if test "x$enable_gi_docgen" = xyes; then + AC_PATH_PROG(GI_DOCGEN, gi-docgen, no) + if test "x$GI_DOCGEN" = xno; then + add_deps_error([gi-docgen], [Could not find gi-docgen in your PATH.]) + fi +fi -AC_ARG_ENABLE(gtk-doc-app, [ --enable-gtk-doc-app build developer documentation for app (default=no)], , enable_gtk_doc_app=no) -AM_CONDITIONAL(ENABLE_GTK_DOC_APP, test "x$enable_gtk_doc_app" = xyes) +AM_CONDITIONAL(ENABLE_GI_DOCGEN, test "x$enable_gi_docgen" = xyes) ######################################## # Checks for gir-doc-tool and yelp-build @@ -3109,19 +3107,11 @@ plug-ins/twain/Makefile plug-ins/common/Makefile modules/Makefile devel-docs/Makefile -devel-docs/version -devel-docs/app/Makefile devel-docs/g-ir-docs/Makefile -devel-docs/libgimp/Makefile -devel-docs/libgimpbase/Makefile -devel-docs/libgimpconfig/Makefile -devel-docs/libgimpcolor/Makefile -devel-docs/libgimpmath/Makefile -devel-docs/libgimpmodule/Makefile -devel-docs/libgimpthumb/Makefile -devel-docs/libgimpwidgets/Makefile +devel-docs/reference/Makefile +devel-docs/reference/gimp-ui/Makefile +devel-docs/reference/gimp/Makefile devel-docs/performance-logs/Makefile -devel-docs/tools/Makefile docs/Makefile menus/Makefile cursors/Makefile diff --git a/data/images/meson.build b/data/images/meson.build index 7ecce25387..a570661cf8 100644 --- a/data/images/meson.build +++ b/data/images/meson.build @@ -1,3 +1,4 @@ +gimp_logo_dir = meson.current_source_dir() images = [ 'gimp-splash.png', diff --git a/devel-docs/Makefile.am b/devel-docs/Makefile.am index 8062d27456..bd6d32501e 100644 --- a/devel-docs/Makefile.am +++ b/devel-docs/Makefile.am @@ -1,27 +1,13 @@ ## Process this file with automake to produce Makefile.in -if ENABLE_GTK_DOC_APP -app = app -endif - SUBDIRS = \ g-ir-docs \ - tools \ - libgimpbase \ - libgimpcolor \ - libgimpconfig \ - libgimpmath \ - libgimpmodule \ - libgimpthumb \ - libgimpwidgets \ - libgimp \ - $(app) \ + reference \ \ performance-logs EXTRA_DIST = \ README \ - README.gtkdoc \ contexts.txt \ debug-plug-ins.txt \ exif-handling.txt \ @@ -43,20 +29,3 @@ EXTRA_DIST = \ vbr.txt \ xcf.txt \ version.in - - -# require gtk-doc when making dist -# -if ENABLE_GTK_DOC -dist-check-gtk-doc: -if ENABLE_GTK_DOC_APP - @echo "*** gtk-doc-app must be disabled in order to make dist" - @false -endif -else -dist-check-gtk-doc: - @echo "*** gtk-doc must be enabled in order to make dist" - @false -endif - -dist-hook: dist-check-gtk-doc diff --git a/devel-docs/README.gtkdoc b/devel-docs/README.gtkdoc deleted file mode 100644 index 8e8e31b5c3..0000000000 --- a/devel-docs/README.gtkdoc +++ /dev/null @@ -1,128 +0,0 @@ -Developers documentation using gtk-doc --------------------------------------- - -The goal is to provide useful source documentation. Right now this is -limited to libgimp since that is the part that is used by third-party -coders (plug-in developers). Other parts of the code may follow later, -but not before libgimp is properly documented. - - -Principle ---------- - -The documentation is extracted out of the source using gtk-doc (see -http://www.gtk.org/gtk-doc/). We use a combination of comment blocks -embedded into the source and additional information added manually -into SGML template files. - - -Requirements ------------- - -GIMP release tarballs contain a complete set of precompiled HTML files -as well as DocBook XML files to create other formats. You only need -gtk-doc if you want to work on the documentation itself. In that case -you will need the following utilities: - -Perl v5 - Most of the scripts used are written in Perl. - -libxslt & libxml2 (version >= 2.3.6) - This is used to convert the XML templates to HTML. - http://xmlsoft.org/ - -DocBook XML DTD v4.1.2 - http://www.docbook.org/ - -gtk-doc (version >= 1.0) - This package automatically generates DocBook documentation from - source and is able to convert it into HTML (and other formats). - ftp://ftp.gtk.org/pub/gtk-doc/ - - -You need to have all this properly setup. This includes the -availability of an XML catalog (/etc/xml/catalog) that tells the -XSLT processor where to look for locally installed DTDs. If that -file is missing, the XSLT processor will try to access the DTDs -online which will either fail or take forever. For this reason, -the docs are not built by default. If you think you have a working -setup, pass '--enable-gtk-doc' to configure. - - -How it works ------------- - -The following lines will only give you hints about how our system -works. You should have understood the principles of gtk-doc before you -touch it. - -The system is already set up, so unless there are substantial changes -to the source e.g. new files were added, functions were added, renamed -or removed or parameters changed, there is no need to touch the -Makefile or any other files in the toplevel directory. - -In most cases you will work on the documentation by adding or editing -comment blocks in the C source and by editing the template XML files -in the tmpl directory. - -After you've done any changes to the documentation, running 'make' -should rebuild the documentation. This will however only work if -configure was called with the option '--enable-gtk-doc' and gtk-doc -was successfully found. If everything was set up correctly, running -'make' should do the trick and generate the XML and HTML files for -you. Since the dependencies are not perfect, you sometimes need to -call 'make clean; make' to force regeneration. - - -How to write proper gtk-doc comments ------------------------------------- - -Here are some hints on writing proper gtk-doc comments. They are based -on the gtk-doc documentation which comes with the gtk-doc source tree: - -These are the comment blocks used in GIMP source files to document -functions (and macros, signals and properties, if you want). - -/** - * function_name: - * @par1: description of parameter 1. These can extend over more than - * one line. - * @par2: description of parameter 2 - * - * The function description goes here. You can use @par1 to refer to - * parameters so that they are highlighted in the output. You can also - * use %constant for constants, function_name2() for functions and - * #GtkWidget for links to other declarations (which may be documented - * elsewhere). - * - * Returns: an integer. - **/ - -The block starts with '/**'. -Each line starts with ' * '. - -The second line is the function name, followed by a ':'. In order to -document signals in inline comments, use a name of the form -class::signal, e.g. GtkWidget::notify-child. For properties, use a -name of the form class:property, e.g. GtkAlignment:top-padding. Note -that gtk-doc expects the signal and property names to be spelled with -hyphens, not underlines. - -Following the function name are the parameters, e.g. '@par1:' above. - -A blank line MUST be used to separate parameter descriptions from the -main description (otherwise it is assumed to be a continuation of the -parameter description.) - -After the main description is a 'Return value:' line to describe the -returned value of the function (if it is not void). - - -More information ----------------- - -Using the system as described above, you can write documentation -without any knowledge of DocBook XML, but when editing the templates -you will sometimes want to do a little extra structuring or -markup. The best source for information about DocBook seems to be -"DocBook: The Definitive Guide" which is available online at -http://www.docbook.org/tdg/html/. diff --git a/devel-docs/app/.gitignore b/devel-docs/app/.gitignore deleted file mode 100644 index 61b82d3c6e..0000000000 --- a/devel-docs/app/.gitignore +++ /dev/null @@ -1,20 +0,0 @@ -/Makefile -/Makefile.in -/.libs -/deprecated -/app.args -/app.hierarchy -/app.interfaces -/app.prerequisites -/app.signals -/app-decl.txt -/app-decl-list.txt -/app-unused.txt -/app-undeclared.txt -/app-undocumented.txt -/html -/tmpl -/xml -/version -/*.bak -/*.stamp diff --git a/devel-docs/app/Makefile.am b/devel-docs/app/Makefile.am deleted file mode 100644 index 847b074843..0000000000 --- a/devel-docs/app/Makefile.am +++ /dev/null @@ -1,128 +0,0 @@ -## Process this file with automake to produce Makefile.in - -# The name of the module. -DOC_MODULE = app - -# 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 = - -# Extra options to supply to gtkdoc-mkdb -MKDB_OPTIONS = --sgml-mode --output-format=xml - -# Extra options to supply to gtkdoc-fixref -FIXXREF_OPTIONS = --extra-dir=../libgimpbase/html --extra-dir=../libgimpcolor/html --extra-dir=../libgimpconfig/html --extra-dir=../libgimpmath/html --extra-dir=../libgimpwidgets/html - - -# Used for dependencies -HFILE_GLOB = $(DOC_SOURCE_DIR)/*.h -CFILE_GLOB = $(DOC_SOURCE_DIR)/*.c - -# Header files to ignore when scanning -IGNORE_HFILES = \ - gimp-intl.h \ - gimpdbusservice-glue.h \ - gimpimage-convert-data.h \ - gimpimage-convert-fsdither.h \ - gimphelp-ids.h \ - gimprc-blurbs.h - -# Images to copy into HTML directory -HTML_IMAGES = - -# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE) -content_files = - -# CFLAGS and LDFLAGS for compiling scan program. Only needed -# if $(DOC_MODULE).types is non-empty. - -GTKDOC_CFLAGS = \ - -g \ - -I$(top_srcdir) \ - $(GTK_CFLAGS) \ - -I$(includedir) \ - -UGTK_DISABLE_SINGLE_INCLUDES - -if OS_WIN32 -else -libm = -lm -endif - -GTKDOC_LIBS = \ - -Wl,-u,$(SYMPREFIX)xcf_init \ - -Wl,-u,$(SYMPREFIX)internal_procs_init \ - -Wl,-u,$(SYMPREFIX)gimp_coords_mix \ - -Wl,-u,$(SYMPREFIX)gimp_plug_in_manager_restore \ - -Wl,-u,$(SYMPREFIX)gimp_lebl_dialog \ - -Wl,-u,$(SYMPREFIX)gimp_config_param_spec_duplicate \ - $(top_builddir)/app/app.o \ - $(top_builddir)/app/batch.o \ - $(top_builddir)/app/errors.o \ - $(top_builddir)/app/language.o \ - $(top_builddir)/app/sanity.o \ - $(top_builddir)/app/units.o \ - $(top_builddir)/app/gimp-debug.o \ - $(top_builddir)/app/gimp-log.o \ - $(top_builddir)/app/gui/libappgui.a \ - $(top_builddir)/app/actions/libappactions.a \ - $(top_builddir)/app/dialogs/libappdialogs.a \ - $(top_builddir)/app/menus/libappmenus.a \ - $(top_builddir)/app/tools/libapptools.a \ - $(top_builddir)/app/display/libappdisplay.a \ - $(top_builddir)/app/propgui/libapppropgui.a \ - $(top_builddir)/app/widgets/libappwidgets.a \ - $(top_builddir)/app/pdb/libappinternal-procs.a \ - $(top_builddir)/app/xcf/libappxcf.a \ - $(top_builddir)/app/file/libappfile.a \ - $(top_builddir)/app/plug-in/libappplug-in.a \ - $(top_builddir)/app/pdb/libapppdb.a \ - $(top_builddir)/app/core/libappcore.a \ - $(top_builddir)/app/vectors/libappvectors.a \ - $(top_builddir)/app/paint/libapppaint.a \ - $(top_builddir)/app/text/libapptext.a \ - $(top_builddir)/app/config/libappconfig.a \ - $(top_builddir)/app/gegl/libappgegl.a \ - $(top_builddir)/app/operations/libappoperations.a \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ - $(GTK_LIBS) \ - $(LIBART_LIBS) \ - $(PANGOFT2_LIBS) \ - $(FONTCONFIG_LIBS) \ - $(FREETYPE_LIBS) \ - $(HARFBUZZ_LIBS) \ - $(GEGL_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) \ - $(libm) - - -if ENABLE_GTK_DOC_APP - -include $(top_srcdir)/gtk-doc.make - -else - -EXTRA_DIST = \ - $(DOC_MODULE)-docs.sgml \ - $(DOC_MODULE)-overrides.txt \ - $(DOC_MODULE)-sections.txt - -endif - -# Other files to distribute -EXTRA_DIST += \ - $(DOC_MODULE).types diff --git a/devel-docs/app/app-docs.sgml b/devel-docs/app/app-docs.sgml deleted file mode 100644 index 76e0bf788a..0000000000 --- a/devel-docs/app/app-docs.sgml +++ /dev/null @@ -1,1404 +0,0 @@ - - - - - - - GIMP Application Reference Manual - - for GIMP - - - - - Object Hierarchy - - - - - Application Glue - - - - The stuff in the toplevel source directory. Initializes and shuts - down the application, parses the command line. It's the "glue" - that holds together the various subsystems. - - - - - - - - - - - - - - - - - - - - Paint Functions - - - - - - - - - - Compositing - - - - - - Base - - - - - Initialization & Glue Code - - - - - Base Utilities - - - - - - - - - - - Operators - - - - - - - - - - - - Pixel Regions & Iterators - - - - - - - Tile Management - - - - - - - - - - - - - - Config - - GimpConfig extensions - - - - - - - - The GimpRc Objects - - - - - - - - - - - - - - GEGL - - - - - - Tile Backends - - - - - Operations - - - - - - - - - - - - - - - - - Layer Mode Operations - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Config Objects - - - - - - - - - - - - - - - Core - - - - - Base Classes - - - - - - - - - - - Object Containers - - - - - - - - - - - - The GIMP Application Instance Object - - - - - - - - - - - - - - - - GimpContext Objects - - - - - - - - Info Objects - - - - - - GimpData Objects - - - Object hierarchy of auxiliary data objects which share a common - API. Data objects have an on-disk representation and live in a - GimpDataFactory which - manages them. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Drawable Objects - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The GimpImage Object - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The Image Undo System - - - - - - - - - - - - - - - - - - - - - - The Resource Tagging System - - - - - - - - Misc. Objects - - - - - - - - - - - - - - - - - Interfaces - - - - - - - - Misc. Utilities - - - - - - - - - - - - - - - - - - - - - - File - - - - Functions to open and save images in any registered file format - as well as various image file related utility functions. - - - - - - - - - - - - Vectors - - - The GimpVectors Objects - - - - - - - - - - - - - - - - Vectors Undo Objects - - - - - - - - XCF - - - - Functions to open and save images in GIMP's native "XCF" format. - - - - - Initialization, Loading & Saving - - - - - - - Lowlevel File Access - - - - - - - - - Procedural Database - - - - - - - - - - - - - - - Plug-Ins - - - - - - Initialization & Plug-In Management - - - - - - - - - - - - - - - Plug-In Execution - - - - - - - - - - - - - - - Paint - - - - - - The Paint Core & Options - - - - - - - - - - - Paint Implementations & Options - - - - - - - - - - - - - - - - - - - - - - - - - Paint Undo Objects - - - - - - - Text - - - - Initialization & Font Management - - - - - - - The GimpText Object - - - - - - - - - - The GimpTextLayout Object - - - - - - The GimpTextLayer Object - - - - - - - - Display - - - - The GimpImageWindow Widget - - - - - The GimpDisplay Object - - - - - - - - The GimpDisplayShell Widget - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GimpCanvasItem Objects - - - - - - - - - - - - - - - - - - - - - - - - - - - - Misc. Widgets & Utilities - - - - - - - - - - - Tools - - - - - Initialization & Glue Code - - - - - - The GimpTool Object - - - - - - - Base Classes - - - - - - - - GUI Constructors for Core Tool Options - - - - - - - Selection Tools - - - - - - - - - - - - - - - - - - - Paint Tools - - - - - - - - - - - - - - - - - - Misc. Color Applying Tools - - - - - - - - Color Correction Tools - - - - - - - - - - - - - - - - Transform Tools - - - - - - - - - - - - - - - - - - - - Text and Vector Tools - - - - - - - - - - - - - - Tools which don't Modify the Image - - - - - - - - - - - Widgets - - - - - Input Device Management - - - - - - - - - - Additional Input Controller Management - - - - - - - - - - - Built-in Color Selector Modules - - - - - Dock Windows & Widgets - - - - - - - - - - - - - - - - - - - GimpEditor Widgets - - - - - - - - - - - GimpDataEditor Widgets - - - - - - - - - - GimpImageEditor Widgets - - - - - - - - - - GimpContainerView Widgets - - - - - - - - - - - - - - - - - - - Misc. Container View Widgets - - - - - - - Resource Tagging Widgets - - - - - - - GimpContainerEditor Widgets - - - - - - - - - - - GimpDataFactoryView Widgets - - - - - - - - - Menus - - - - - - - - - - - - - - Misc. Dialogs - - - - - - - - - - PDB-Controllable Selection Dialogs - - - - - - - - - - Misc. Dialogs - - - - - - - - - - Offscreen Overlay Widgets - - - - - - - - Misc. Widgets - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Previews - - - - - - - - View Renderers - - - - - - - - - - - - - - - - Cell Renderers for GtkTreeView - - - - - - Convenience Constructors - - - - - - - Window- and Session Management - - - - - - - - - - - - Misc. Utilities - - - - - - - - - - - - - - - Stuff that Should not be here - - - - - - - Actions - - - Initialization & Glue Code - - - - - Actions & Callbacks Mainly Used in the Image Menu - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Data Factory Actions & Callbacks - - - - - - - - - - - - Misc. Actions & Callbacks for List & Grid Views - - - - - - - - - - - - - - Data Editor Actions & Callbacks - - - - - - - - - - - - Other Actions & Callbacks - - - - - - - - - - - - - - - - - - - - - - - - - Menus - - - Initialization & Glue Code - - - - - Menus - - - - - - - - - - - - Dialogs - - - Initialization & Glue Code - - - - - - - Dialogs - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - GUI - - - Initialization & Glue Code - - - - - - - Misc. Utilities - - - - - - - - - - - Tests - - - - - - - - - Index - - - diff --git a/devel-docs/app/app-overrides.txt b/devel-docs/app/app-overrides.txt deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/devel-docs/app/app-sections.txt b/devel-docs/app/app-sections.txt deleted file mode 100644 index faab30eb7e..0000000000 --- a/devel-docs/app/app-sections.txt +++ /dev/null @@ -1,13945 +0,0 @@ -
-config-enums -GimpCanvasPaddingMode -GimpCursorFormat -GimpCursorMode -GimpHandedness -GimpHelpBrowserType -GimpSpaceBarAction -GimpWindowHint -GimpZoomQuality - -GIMP_TYPE_CANVAS_PADDING_MODE -GIMP_TYPE_CURSOR_FORMAT -GIMP_TYPE_CURSOR_MODE -GIMP_TYPE_HANDEDNESS -GIMP_TYPE_HELP_BROWSER_TYPE -GIMP_TYPE_SPACE_BAR_ACTION -GIMP_TYPE_WINDOW_HINT -GIMP_TYPE_ZOOM_QUALITY -gimp_canvas_padding_mode_get_type -gimp_cursor_format_get_type -gimp_cursor_mode_get_type -gimp_handedness_get_type -gimp_help_browser_type_get_type -gimp_space_bar_action_get_type -gimp_window_hint_get_type -gimp_zoom_quality_get_type -
- -
-gimpbaseconfig -GimpBaseConfig -GimpBaseConfig - -GimpBaseConfigClass -GIMP_BASE_CONFIG -GIMP_IS_BASE_CONFIG -GIMP_TYPE_BASE_CONFIG -gimp_base_config_get_type -GIMP_BASE_CONFIG_CLASS -GIMP_IS_BASE_CONFIG_CLASS -
- -
-gimpcoreconfig -GimpCoreConfig -GimpCoreConfig - -GimpCoreConfigClass -GIMP_CORE_CONFIG -GIMP_IS_CORE_CONFIG -GIMP_TYPE_CORE_CONFIG -gimp_core_config_get_type -GIMP_CORE_CONFIG_CLASS -GIMP_IS_CORE_CONFIG_CLASS -
- -
-gimpdisplayconfig -GimpDisplayConfig -GimpDisplayConfig -GIMP_CONFIG_DEFAULT_IMAGE_TITLE_FORMAT -GIMP_CONFIG_DEFAULT_IMAGE_STATUS_FORMAT - -GimpDisplayConfigClass -GIMP_DISPLAY_CONFIG -GIMP_IS_DISPLAY_CONFIG -GIMP_TYPE_DISPLAY_CONFIG -gimp_display_config_get_type -GIMP_DISPLAY_CONFIG_CLASS -GIMP_IS_DISPLAY_CONFIG_CLASS -
- -
-gimpguiconfig -GimpGuiConfig -GimpGuiConfig - -GimpGuiConfigClass -GIMP_GUI_CONFIG -GIMP_IS_GUI_CONFIG -GIMP_TYPE_GUI_CONFIG -gimp_gui_config_get_type -GIMP_GUI_CONFIG_CLASS -GIMP_IS_GUI_CONFIG_CLASS -
- -
-gimppluginconfig -GimpPluginConfig -GimpPluginConfig - -GimpPluginConfigClass -GIMP_PLUGIN_CONFIG -GIMP_IS_PLUGIN_CONFIG -GIMP_TYPE_PLUGIN_CONFIG -gimp_plugin_config_get_type -GIMP_PLUGIN_CONFIG_CLASS -GIMP_IS_PLUGIN_CONFIG_CLASS -
- -
-gimprc -GimpRc -GimpRc -gimp_rc_new -gimp_rc_set_autosave -gimp_rc_set_unknown_token -gimp_rc_save -gimp_rc_query -gimp_rc_migrate - -GimpRcClass -GIMP_RC -GIMP_IS_RC -GIMP_TYPE_RC -gimp_rc_get_type -GIMP_RC_CLASS -GIMP_IS_RC_CLASS -
- -
-gimprc-deserialize -GimpRc-deserialize -gimp_rc_deserialize -
- -
-gimprc-serialize -GimpRc-serialize -gimp_rc_serialize -
- -
-gimprc-unknown -GimpRc-unknown -GimpConfigForeachFunc -gimp_rc_add_unknown_token -gimp_rc_lookup_unknown_token -gimp_rc_foreach_unknown_token -
- -
-gimp-gegl -gimp_gegl_init -
- -
-gimp-gegl-enums -GimpCageMode - -GIMP_TYPE_CAGE_MODE -gimp_cage_mode_get_type -
- -
-gimp-gegl-utils -gimp_bpp_to_babl_format -gimp_buffer_to_tiles -gimp_interpolation_to_gegl_filter -gimp_layer_mode_to_gegl_operation -
- -
-gimptilebackendtilemanager -GimpTileBackendTileManager -GimpTileBackendTileManager -GimpTileBackendTileManagerClass -gimp_tile_backend_tile_manager_new -gimp_tile_backend_tile_manager_stats - -GIMP_IS_TILE_BACKEND_TILE_MANAGER -GIMP_IS_TILE_BACKEND_TILE_MANAGER_CLASS -GIMP_TILE_BACKEND_TILE_MANAGER -GIMP_TILE_BACKEND_TILE_MANAGER_CLASS -GIMP_TILE_BACKEND_TILE_MANAGER_GET_CLASS -GIMP_TYPE_TILE_BACKEND_TILE_MANAGER -GimpTileBackendTileManagerPrivate -gimp_tile_backend_tile_manager_get_type -
- -
-gimpoperationtilesink -GimpOperationTileSink -GimpOperationTileSink - -GimpOperationTileSinkClass -GIMP_TYPE_OPERATION_TILE_SINK -GIMP_OPERATION_TILE_SINK -GIMP_OPERATION_TILE_SINK_CLASS -GIMP_OPERATION_TILE_SINK_GET_CLASS -gimp_operation_tile_sink_get_type -
- -
-gimpoperationtilesource -GimpOperationTileSource -GimpOperationTileSource - -GimpOperationTileSourceClass -GIMP_TYPE_OPERATION_TILE_SOURCE -GIMP_OPERATION_TILE_SOURCE -GIMP_OPERATION_TILE_SOURCE_CLASS -GIMP_OPERATION_TILE_SOURCE_GET_CLASS -gimp_operation_tile_source_get_type -
- -
-gimpoperationpointlayermode -GimpOperationPointLayerMode -GimpOperationPointLayerMode - -GimpOperationPointLayerModeClass -GIMP_OPERATION_POINT_LAYER_MODE -GIMP_IS_OPERATION_POINT_LAYER_MODE -GIMP_TYPE_OPERATION_POINT_LAYER_MODE -gimp_operation_point_layer_mode_get_type -GIMP_OPERATION_POINT_LAYER_MODE_CLASS -GIMP_IS_OPERATION_POINT_LAYER_MODE_CLASS -GIMP_OPERATION_POINT_LAYER_MODE_GET_CLASS -
- -
-gimpoperationdesaturate -GimpOperationDesaturate -GimpOperationDesaturate - -GimpOperationDesaturateClass -GIMP_OPERATION_DESATURATE -GIMP_IS_OPERATION_DESATURATE -GIMP_TYPE_OPERATION_DESATURATE -gimp_operation_desaturate_get_type -GIMP_OPERATION_DESATURATE_CLASS -GIMP_IS_OPERATION_DESATURATE_CLASS -GIMP_OPERATION_DESATURATE_GET_CLASS -
- -
-gimpposterizeconfig -GimpPosterizeConfig -GimpPosterizeConfig - -GimpPosterizeConfigClass -GIMP_POSTERIZE_CONFIG -GIMP_IS_POSTERIZE_CONFIG -GIMP_TYPE_POSTERIZE_CONFIG -gimp_posterize_config_get_type -GIMP_POSTERIZE_CONFIG_CLASS -GIMP_IS_POSTERIZE_CONFIG_CLASS -GIMP_POSTERIZE_CONFIG_GET_CLASS -
- -
-gimpoperationposterize -GimpOperationPosterize -GimpOperationPosterize - -GimpOperationPosterizeClass -GIMP_OPERATION_POSTERIZE -GIMP_IS_OPERATION_POSTERIZE -GIMP_TYPE_OPERATION_POSTERIZE -gimp_operation_posterize_get_type -GIMP_OPERATION_POSTERIZE_CLASS -GIMP_IS_OPERATION_POSTERIZE_CLASS -GIMP_OPERATION_POSTERIZE_GET_CLASS -
- -
-gimpcurvesconfig -GimpCurvesConfig -GimpCurvesConfig -gimp_curves_config_reset_channel -gimp_curves_config_load_cruft -gimp_curves_config_save_cruft -gimp_curves_config_to_cruft - -GimpCurvesConfigClass -GIMP_CURVES_CONFIG -GIMP_IS_CURVES_CONFIG -GIMP_TYPE_CURVES_CONFIG -gimp_curves_config_get_type -GIMP_CURVES_CONFIG_CLASS -GIMP_IS_CURVES_CONFIG_CLASS -GIMP_CURVES_CONFIG_GET_CLASS -
- -
-gimpoperationcolorize -GimpOperationColorize -GimpOperationColorize - -GimpOperationColorizeClass -GIMP_OPERATION_COLORIZE -GIMP_IS_OPERATION_COLORIZE -GIMP_TYPE_OPERATION_COLORIZE -gimp_operation_colorize_get_type -GIMP_OPERATION_COLORIZE_CLASS -GIMP_IS_OPERATION_COLORIZE_CLASS -GIMP_OPERATION_COLORIZE_GET_CLASS -
- -
-gimpcolorbalanceconfig -GimpColorBalanceConfig -GimpColorBalanceConfig -gimp_color_balance_config_reset_range -gimp_color_balance_config_to_cruft - -GimpColorBalanceConfigClass -GIMP_COLOR_BALANCE_CONFIG -GIMP_IS_COLOR_BALANCE_CONFIG -GIMP_TYPE_COLOR_BALANCE_CONFIG -gimp_color_balance_config_get_type -GIMP_COLOR_BALANCE_CONFIG_CLASS -GIMP_IS_COLOR_BALANCE_CONFIG_CLASS -GIMP_COLOR_BALANCE_CONFIG_GET_CLASS -
- -
-gimpoperationpointfilter -GimpOperationPointFilter -GimpOperationPointFilter -gimp_operation_point_filter_get_property -gimp_operation_point_filter_set_property - -GimpOperationPointFilterClass -GIMP_OPERATION_POINT_FILTER -GIMP_IS_OPERATION_POINT_FILTER -GIMP_TYPE_OPERATION_POINT_FILTER -gimp_operation_point_filter_get_type -GIMP_OPERATION_POINT_FILTER_CLASS -GIMP_IS_OPERATION_POINT_FILTER_CLASS -GIMP_OPERATION_POINT_FILTER_GET_CLASS -
- -
-gimpoperationcolorbalance -GimpOperationColorBalance -GimpOperationColorBalance - -GimpOperationColorBalanceClass -GIMP_OPERATION_COLOR_BALANCE -GIMP_IS_OPERATION_COLOR_BALANCE -GIMP_TYPE_OPERATION_COLOR_BALANCE -gimp_operation_color_balance_get_type -GIMP_OPERATION_COLOR_BALANCE_CLASS -GIMP_IS_OPERATION_COLOR_BALANCE_CLASS -GIMP_OPERATION_COLOR_BALANCE_GET_CLASS -
- -
-gimpthresholdconfig -GimpThresholdConfig -GimpThresholdConfig -gimp_threshold_config_to_cruft - -GimpThresholdConfigClass -GIMP_THRESHOLD_CONFIG -GIMP_IS_THRESHOLD_CONFIG -GIMP_TYPE_THRESHOLD_CONFIG -gimp_threshold_config_get_type -GIMP_THRESHOLD_CONFIG_CLASS -GIMP_IS_THRESHOLD_CONFIG_CLASS -GIMP_THRESHOLD_CONFIG_GET_CLASS -
- -
-gimpoperationthreshold -GimpOperationThreshold -GimpOperationThreshold - -GimpOperationThresholdClass -GIMP_OPERATION_THRESHOLD -GIMP_IS_OPERATION_THRESHOLD -GIMP_TYPE_OPERATION_THRESHOLD -gimp_operation_threshold_get_type -GIMP_OPERATION_THRESHOLD_CLASS -GIMP_IS_OPERATION_THRESHOLD_CLASS -GIMP_OPERATION_THRESHOLD_GET_CLASS -
- -
-gimpoperationhuesaturation -GimpOperationHueSaturation -GimpOperationHueSaturation -gimp_operation_hue_saturation_map - -GimpOperationHueSaturationClass -GIMP_OPERATION_HUE_SATURATION -GIMP_IS_OPERATION_HUE_SATURATION -GIMP_TYPE_OPERATION_HUE_SATURATION -gimp_operation_hue_saturation_get_type -GIMP_OPERATION_HUE_SATURATION_CLASS -GIMP_IS_OPERATION_HUE_SATURATION_CLASS -GIMP_OPERATION_HUE_SATURATION_GET_CLASS -
- -
-gimpoperationcurves -GimpOperationCurves -GimpOperationCurves - -GimpOperationCurvesClass -GIMP_OPERATION_CURVES -GIMP_IS_OPERATION_CURVES -GIMP_TYPE_OPERATION_CURVES -gimp_operation_curves_get_type -GIMP_OPERATION_CURVES_CLASS -GIMP_IS_OPERATION_CURVES_CLASS -GIMP_OPERATION_CURVES_GET_CLASS -
- -
-gimpoperationlevels -GimpOperationLevels -GimpOperationLevels -gimp_operation_levels_map_input - -GimpOperationLevelsClass -GIMP_OPERATION_LEVELS -GIMP_IS_OPERATION_LEVELS -GIMP_TYPE_OPERATION_LEVELS -gimp_operation_levels_get_type -GIMP_OPERATION_LEVELS_CLASS -GIMP_IS_OPERATION_LEVELS_CLASS -GIMP_OPERATION_LEVELS_GET_CLASS -
- -
-gimpdesaturateconfig -GimpDesaturateConfig -GimpDesaturateConfig - -GimpDesaturateConfigClass -GIMP_DESATURATE_CONFIG -GIMP_IS_DESATURATE_CONFIG -GIMP_TYPE_DESATURATE_CONFIG -gimp_desaturate_config_get_type -GIMP_DESATURATE_CONFIG_CLASS -GIMP_IS_DESATURATE_CONFIG_CLASS -GIMP_DESATURATE_CONFIG_GET_CLASS -
- -
-gimpbrightnesscontrastconfig -GimpBrightnessContrastConfig -GimpBrightnessContrastConfig -gimp_brightness_contrast_config_set_node -gimp_brightness_contrast_config_to_levels_config - -GimpBrightnessContrastConfigClass -GIMP_BRIGHTNESS_CONTRAST_CONFIG -GIMP_IS_BRIGHTNESS_CONTRAST_CONFIG -GIMP_TYPE_BRIGHTNESS_CONTRAST_CONFIG -gimp_brightness_contrast_config_get_type -GIMP_BRIGHTNESS_CONTRAST_CONFIG_CLASS -GIMP_IS_BRIGHTNESS_CONTRAST_CONFIG_CLASS -GIMP_BRIGHTNESS_CONTRAST_CONFIG_GET_CLASS -
- -
-gimpcageconfig -GimpCageConfig -GimpCageConfig -GimpCageConfigClass -GimpCagePoint -gimp_cage_config_add_cage_point -gimp_cage_config_add_displacement -gimp_cage_config_commit_displacement -gimp_cage_config_deselect_points -gimp_cage_config_get_bounding_box -gimp_cage_config_get_n_points -gimp_cage_config_get_point_coordinate -gimp_cage_config_insert_cage_point -gimp_cage_config_point_inside -gimp_cage_config_point_is_selected -gimp_cage_config_remove_cage_point -gimp_cage_config_remove_last_cage_point -gimp_cage_config_remove_selected_points -gimp_cage_config_reset_displacement -gimp_cage_config_reverse_cage -gimp_cage_config_reverse_cage_if_needed -gimp_cage_config_select_add_area -gimp_cage_config_select_area -gimp_cage_config_select_point -gimp_cage_config_toggle_point_selection - -GIMP_CAGE_CONFIG -GIMP_CAGE_CONFIG_CLASS -GIMP_CAGE_CONFIG_GET_CLASS -GIMP_IS_CAGE_CONFIG -GIMP_IS_CAGE_CONFIG_CLASS -GIMP_TYPE_CAGE_CONFIG -gimp_cage_config_get_type -
- -
-gimphuesaturationconfig -GimpHueSaturationConfig -GimpHueSaturationConfig -gimp_hue_saturation_config_reset_range -gimp_hue_saturation_config_to_cruft - -GimpHueSaturationConfigClass -GIMP_HUE_SATURATION_CONFIG -GIMP_IS_HUE_SATURATION_CONFIG -GIMP_TYPE_HUE_SATURATION_CONFIG -gimp_hue_saturation_config_get_type -GIMP_HUE_SATURATION_CONFIG_CLASS -GIMP_IS_HUE_SATURATION_CONFIG_CLASS -GIMP_HUE_SATURATION_CONFIG_GET_CLASS -
- -
-gimpcolorizeconfig -GimpColorizeConfig -GimpColorizeConfig -gimp_colorize_config_to_cruft - -GimpColorizeConfigClass -GIMP_COLORIZE_CONFIG -GIMP_IS_COLORIZE_CONFIG -GIMP_TYPE_COLORIZE_CONFIG -gimp_colorize_config_get_type -GIMP_COLORIZE_CONFIG_CLASS -GIMP_IS_COLORIZE_CONFIG_CLASS -GIMP_COLORIZE_CONFIG_GET_CLASS -
- -
-gimplevelsconfig -GimpLevelsConfig -GimpLevelsConfig -gimp_levels_config_reset_channel -gimp_levels_config_stretch -gimp_levels_config_stretch_channel -gimp_levels_config_adjust_by_colors -gimp_levels_config_to_curves_config -gimp_levels_config_load_cruft -gimp_levels_config_save_cruft -gimp_levels_config_to_cruft - -GimpLevelsConfigClass -GIMP_LEVELS_CONFIG -GIMP_IS_LEVELS_CONFIG -GIMP_TYPE_LEVELS_CONFIG -gimp_levels_config_get_type -GIMP_LEVELS_CONFIG_CLASS -GIMP_IS_LEVELS_CONFIG_CLASS -GIMP_LEVELS_CONFIG_GET_CLASS -
- -
-gimpoperationcagecoefcalc -GimpOperationCageCoefCalc -GimpOperationCageCoefCalc -GimpOperationCageCoefCalcClass - -GIMP_IS_OPERATION_CAGE_COEF_CALC -GIMP_IS_OPERATION_CAGE_COEF_CALC_CLASS -GIMP_OPERATION_CAGE_COEF_CALC -GIMP_OPERATION_CAGE_COEF_CALC_CLASS -GIMP_OPERATION_CAGE_COEF_CALC_GET_CLASS -GIMP_TYPE_OPERATION_CAGE_COEF_CALC -gimp_operation_cage_coef_calc_get_type -
- -
-gimpoperationcagetransform -GimpOperationCageTransform -GimpOperationCageTransform -GimpOperationCageTransformClass - -GIMP_IS_OPERATION_CAGE_TRANSFORM -GIMP_IS_OPERATION_CAGE_TRANSFORM_CLASS -GIMP_OPERATION_CAGE_TRANSFORM -GIMP_OPERATION_CAGE_TRANSFORM_CLASS -GIMP_OPERATION_CAGE_TRANSFORM_GET_CLASS -GIMP_TYPE_OPERATION_CAGE_TRANSFORM -gimp_operation_cage_transform_get_type -
- -
-gimpoperationadditionmode -GimpOperationAdditionMode -GimpOperationAdditionMode -GimpOperationAdditionModeClass - -GIMP_IS_OPERATION_ADDITION_MODE -GIMP_IS_OPERATION_ADDITION_MODE_CLASS -GIMP_OPERATION_ADDITION_MODE -GIMP_OPERATION_ADDITION_MODE_CLASS -GIMP_OPERATION_ADDITION_MODE_GET_CLASS -GIMP_TYPE_OPERATION_ADDITION_MODE -gimp_operation_addition_mode_get_type -
- -
-gimpoperationantierasemode -GimpOperationAntiEraseMode -GimpOperationAntiEraseMode -GimpOperationAntiEraseModeClass - -GIMP_IS_OPERATION_ANTI_ERASE_MODE -GIMP_IS_OPERATION_ANTI_ERASE_MODE_CLASS -GIMP_OPERATION_ANTI_ERASE_MODE -GIMP_OPERATION_ANTI_ERASE_MODE_CLASS -GIMP_OPERATION_ANTI_ERASE_MODE_GET_CLASS -GIMP_TYPE_OPERATION_ANTI_ERASE_MODE -gimp_operation_anti_erase_mode_get_type -
- -
-gimpoperationbehindmode -GimpOperationBehindMode -GimpOperationBehindMode -GimpOperationBehindModeClass - -GIMP_IS_OPERATION_BEHIND_MODE -GIMP_IS_OPERATION_BEHIND_MODE_CLASS -GIMP_OPERATION_BEHIND_MODE -GIMP_OPERATION_BEHIND_MODE_CLASS -GIMP_OPERATION_BEHIND_MODE_GET_CLASS -GIMP_TYPE_OPERATION_BEHIND_MODE -gimp_operation_behind_mode_get_type -
- -
-gimpoperationburnmode -GimpOperationBurnMode -GimpOperationBurnMode -GimpOperationBurnModeClass - -GIMP_IS_OPERATION_BURN_MODE -GIMP_IS_OPERATION_BURN_MODE_CLASS -GIMP_OPERATION_BURN_MODE -GIMP_OPERATION_BURN_MODE_CLASS -GIMP_OPERATION_BURN_MODE_GET_CLASS -GIMP_TYPE_OPERATION_BURN_MODE -gimp_operation_burn_mode_get_type -
- -
-gimpoperationcolorerasemode -GimpOperationColorEraseMode -GimpOperationColorEraseMode -GimpOperationColorEraseModeClass - -GIMP_IS_OPERATION_COLOR_ERASE_MODE -GIMP_IS_OPERATION_COLOR_ERASE_MODE_CLASS -GIMP_OPERATION_COLOR_ERASE_MODE -GIMP_OPERATION_COLOR_ERASE_MODE_CLASS -GIMP_OPERATION_COLOR_ERASE_MODE_GET_CLASS -GIMP_TYPE_OPERATION_COLOR_ERASE_MODE -gimp_operation_color_erase_mode_get_type -
- -
-gimpoperationcolormode -GimpOperationColorMode -GimpOperationColorMode -GimpOperationColorModeClass - -GIMP_IS_OPERATION_COLOR_MODE -GIMP_IS_OPERATION_COLOR_MODE_CLASS -GIMP_OPERATION_COLOR_MODE -GIMP_OPERATION_COLOR_MODE_CLASS -GIMP_OPERATION_COLOR_MODE_GET_CLASS -GIMP_TYPE_OPERATION_COLOR_MODE -gimp_operation_color_mode_get_type -
- -
-gimpoperationdarkenonlymode -GimpOperationDarkenOnlyMode -GimpOperationDarkenOnlyMode -GimpOperationDarkenOnlyModeClass - -GIMP_IS_OPERATION_DARKEN_ONLY_MODE -GIMP_IS_OPERATION_DARKEN_ONLY_MODE_CLASS -GIMP_OPERATION_DARKEN_ONLY_MODE -GIMP_OPERATION_DARKEN_ONLY_MODE_CLASS -GIMP_OPERATION_DARKEN_ONLY_MODE_GET_CLASS -GIMP_TYPE_OPERATION_DARKEN_ONLY_MODE -gimp_operation_darken_only_mode_get_type -
- -
-gimpoperationdifferencemode -GimpOperationDifferenceMode -GimpOperationDifferenceMode -GimpOperationDifferenceModeClass - -GIMP_IS_OPERATION_DIFFERENCE_MODE -GIMP_IS_OPERATION_DIFFERENCE_MODE_CLASS -GIMP_OPERATION_DIFFERENCE_MODE -GIMP_OPERATION_DIFFERENCE_MODE_CLASS -GIMP_OPERATION_DIFFERENCE_MODE_GET_CLASS -GIMP_TYPE_OPERATION_DIFFERENCE_MODE -gimp_operation_difference_mode_get_type -
- -
-gimpoperationdissolvemode -GimpOperationDissolveMode -GimpOperationDissolveMode -GimpOperationDissolveModeClass - -GIMP_IS_OPERATION_DISSOLVE_MODE -GIMP_IS_OPERATION_DISSOLVE_MODE_CLASS -GIMP_OPERATION_DISSOLVE_MODE -GIMP_OPERATION_DISSOLVE_MODE_CLASS -GIMP_OPERATION_DISSOLVE_MODE_GET_CLASS -GIMP_TYPE_OPERATION_DISSOLVE_MODE -gimp_operation_dissolve_mode_get_type -
- -
-gimpoperationdividemode -GimpOperationDivideMode -GimpOperationDivideMode -GimpOperationDivideModeClass - -GIMP_IS_OPERATION_DIVIDE_MODE -GIMP_IS_OPERATION_DIVIDE_MODE_CLASS -GIMP_OPERATION_DIVIDE_MODE -GIMP_OPERATION_DIVIDE_MODE_CLASS -GIMP_OPERATION_DIVIDE_MODE_GET_CLASS -GIMP_TYPE_OPERATION_DIVIDE_MODE -gimp_operation_divide_mode_get_type -
- -
-gimpoperationdodgemode -GimpOperationDodgeMode -GimpOperationDodgeMode -GimpOperationDodgeModeClass - -GIMP_IS_OPERATION_DODGE_MODE -GIMP_IS_OPERATION_DODGE_MODE_CLASS -GIMP_OPERATION_DODGE_MODE -GIMP_OPERATION_DODGE_MODE_CLASS -GIMP_OPERATION_DODGE_MODE_GET_CLASS -GIMP_TYPE_OPERATION_DODGE_MODE -gimp_operation_dodge_mode_get_type -
- -
-gimpoperationerasemode -GimpOperationEraseMode -GimpOperationEraseMode -GimpOperationEraseModeClass - -GIMP_IS_OPERATION_ERASE_MODE -GIMP_IS_OPERATION_ERASE_MODE_CLASS -GIMP_OPERATION_ERASE_MODE -GIMP_OPERATION_ERASE_MODE_CLASS -GIMP_OPERATION_ERASE_MODE_GET_CLASS -GIMP_TYPE_OPERATION_ERASE_MODE -gimp_operation_erase_mode_get_type -
- -
-gimpoperationgrainextractmode -GimpOperationGrainExtractMode -GimpOperationGrainExtractMode -GimpOperationGrainExtractModeClass - -GIMP_IS_OPERATION_GRAIN_EXTRACT_MODE -GIMP_IS_OPERATION_GRAIN_EXTRACT_MODE_CLASS -GIMP_OPERATION_GRAIN_EXTRACT_MODE -GIMP_OPERATION_GRAIN_EXTRACT_MODE_CLASS -GIMP_OPERATION_GRAIN_EXTRACT_MODE_GET_CLASS -GIMP_TYPE_OPERATION_GRAIN_EXTRACT_MODE -gimp_operation_grain_extract_mode_get_type -
- -
-gimpoperationgrainmergemode -GimpOperationGrainMergeMode -GimpOperationGrainMergeMode -GimpOperationGrainMergeModeClass - -GIMP_IS_OPERATION_GRAIN_MERGE_MODE -GIMP_IS_OPERATION_GRAIN_MERGE_MODE_CLASS -GIMP_OPERATION_GRAIN_MERGE_MODE -GIMP_OPERATION_GRAIN_MERGE_MODE_CLASS -GIMP_OPERATION_GRAIN_MERGE_MODE_GET_CLASS -GIMP_TYPE_OPERATION_GRAIN_MERGE_MODE -gimp_operation_grain_merge_mode_get_type -
- -
-gimpoperationhardlightmode -GimpOperationHardlightMode -GimpOperationHardlightMode -GimpOperationHardlightModeClass - -GIMP_IS_OPERATION_HARDLIGHT_MODE -GIMP_IS_OPERATION_HARDLIGHT_MODE_CLASS -GIMP_OPERATION_HARDLIGHT_MODE -GIMP_OPERATION_HARDLIGHT_MODE_CLASS -GIMP_OPERATION_HARDLIGHT_MODE_GET_CLASS -GIMP_TYPE_OPERATION_HARDLIGHT_MODE -gimp_operation_hardlight_mode_get_type -
- -
-gimpoperationhuemode -GimpOperationHueMode -GimpOperationHueMode -GimpOperationHueModeClass - -GIMP_IS_OPERATION_HUE_MODE -GIMP_IS_OPERATION_HUE_MODE_CLASS -GIMP_OPERATION_HUE_MODE -GIMP_OPERATION_HUE_MODE_CLASS -GIMP_OPERATION_HUE_MODE_GET_CLASS -GIMP_TYPE_OPERATION_HUE_MODE -gimp_operation_hue_mode_get_type -
- -
-gimpoperationlightenonlymode -GimpOperationLightenOnlyMode -GimpOperationLightenOnlyMode -GimpOperationLightenOnlyModeClass - -GIMP_IS_OPERATION_LIGHTEN_ONLY_MODE -GIMP_IS_OPERATION_LIGHTEN_ONLY_MODE_CLASS -GIMP_OPERATION_LIGHTEN_ONLY_MODE -GIMP_OPERATION_LIGHTEN_ONLY_MODE_CLASS -GIMP_OPERATION_LIGHTEN_ONLY_MODE_GET_CLASS -GIMP_TYPE_OPERATION_LIGHTEN_ONLY_MODE -gimp_operation_lighten_only_mode_get_type -
- -
-gimpoperationmultiplymode -GimpOperationMultiplyMode -GimpOperationMultiplyMode -GimpOperationMultiplyModeClass - -GIMP_IS_OPERATION_MULTIPLY_MODE -GIMP_IS_OPERATION_MULTIPLY_MODE_CLASS -GIMP_OPERATION_MULTIPLY_MODE -GIMP_OPERATION_MULTIPLY_MODE_CLASS -GIMP_OPERATION_MULTIPLY_MODE_GET_CLASS -GIMP_TYPE_OPERATION_MULTIPLY_MODE -gimp_operation_multiply_mode_get_type -
- -
-gimpoperationoverlaymode -GimpOperationOverlayMode -GimpOperationOverlayMode -GimpOperationOverlayModeClass - -GIMP_IS_OPERATION_OVERLAY_MODE -GIMP_IS_OPERATION_OVERLAY_MODE_CLASS -GIMP_OPERATION_OVERLAY_MODE -GIMP_OPERATION_OVERLAY_MODE_CLASS -GIMP_OPERATION_OVERLAY_MODE_GET_CLASS -GIMP_TYPE_OPERATION_OVERLAY_MODE -gimp_operation_overlay_mode_get_type -
- -
-gimpoperationreplacemode -GimpOperationReplaceMode -GimpOperationReplaceMode -GimpOperationReplaceModeClass - -GIMP_IS_OPERATION_REPLACE_MODE -GIMP_IS_OPERATION_REPLACE_MODE_CLASS -GIMP_OPERATION_REPLACE_MODE -GIMP_OPERATION_REPLACE_MODE_CLASS -GIMP_OPERATION_REPLACE_MODE_GET_CLASS -GIMP_TYPE_OPERATION_REPLACE_MODE -gimp_operation_replace_mode_get_type -
- -
-gimpoperationsaturationmode -GimpOperationSaturationMode -GimpOperationSaturationMode -GimpOperationSaturationModeClass - -GIMP_IS_OPERATION_SATURATION_MODE -GIMP_IS_OPERATION_SATURATION_MODE_CLASS -GIMP_OPERATION_SATURATION_MODE -GIMP_OPERATION_SATURATION_MODE_CLASS -GIMP_OPERATION_SATURATION_MODE_GET_CLASS -GIMP_TYPE_OPERATION_SATURATION_MODE -gimp_operation_saturation_mode_get_type -
- -
-gimpoperationscreenmode -GimpOperationScreenMode -GimpOperationScreenMode -GimpOperationScreenModeClass - -GIMP_IS_OPERATION_SCREEN_MODE -GIMP_IS_OPERATION_SCREEN_MODE_CLASS -GIMP_OPERATION_SCREEN_MODE -GIMP_OPERATION_SCREEN_MODE_CLASS -GIMP_OPERATION_SCREEN_MODE_GET_CLASS -GIMP_TYPE_OPERATION_SCREEN_MODE -gimp_operation_screen_mode_get_type -
- -
-gimpoperationsoftlightmode -GimpOperationSoftlightMode -GimpOperationSoftlightMode -GimpOperationSoftlightModeClass - -GIMP_IS_OPERATION_SOFTLIGHT_MODE -GIMP_IS_OPERATION_SOFTLIGHT_MODE_CLASS -GIMP_OPERATION_SOFTLIGHT_MODE -GIMP_OPERATION_SOFTLIGHT_MODE_CLASS -GIMP_OPERATION_SOFTLIGHT_MODE_GET_CLASS -GIMP_TYPE_OPERATION_SOFTLIGHT_MODE -gimp_operation_softlight_mode_get_type -
- -
-gimpoperationsubtractmode -GimpOperationSubtractMode -GimpOperationSubtractMode -GimpOperationSubtractModeClass - -GIMP_IS_OPERATION_SUBTRACT_MODE -GIMP_IS_OPERATION_SUBTRACT_MODE_CLASS -GIMP_OPERATION_SUBTRACT_MODE -GIMP_OPERATION_SUBTRACT_MODE_CLASS -GIMP_OPERATION_SUBTRACT_MODE_GET_CLASS -GIMP_TYPE_OPERATION_SUBTRACT_MODE -gimp_operation_subtract_mode_get_type -
- -
-gimpoperationvaluemode -GimpOperationValueMode -GimpOperationValueMode -GimpOperationValueModeClass - -GIMP_IS_OPERATION_VALUE_MODE -GIMP_IS_OPERATION_VALUE_MODE_CLASS -GIMP_OPERATION_VALUE_MODE -GIMP_OPERATION_VALUE_MODE_CLASS -GIMP_OPERATION_VALUE_MODE_GET_CLASS -GIMP_TYPE_OPERATION_VALUE_MODE -gimp_operation_value_mode_get_type -
- -
-gimp -Gimp -Gimp -gimp_new -gimp_set_show_gui -gimp_get_show_gui -gimp_load_config -gimp_initialize -gimp_restore -gimp_is_restored -gimp_exit -gimp_get_image_iter -gimp_get_display_iter -gimp_get_image_windows -gimp_get_paint_info_iter -gimp_get_tool_info_iter -gimp_set_global_buffer -gimp_create_image -gimp_set_default_context -gimp_get_default_context -gimp_set_user_context -gimp_get_user_context -gimp_get_tool_info -gimp_message -gimp_message_valist -gimp_message_literal -gimp_image_opened -gimp_use_gegl - -GimpClass -GIMP -GIMP_IS_GIMP -GIMP_TYPE_GIMP -gimp_get_type -GIMP_CLASS -GIMP_IS_GIMP_CLASS -
- -
-gimp-contexts -Gimp-contexts -gimp_contexts_init -gimp_contexts_exit -gimp_contexts_load -gimp_contexts_save -gimp_contexts_clear -
- -
-gimp-gui -Gimp-gui -GimpGui -gimp_gui_init -gimp_gui_ungrab -gimp_threads_enter -gimp_threads_leave -gimp_get_window_strategy -gimp_get_empty_display -gimp_get_display_by_ID -gimp_get_display_ID -gimp_get_display_window_id -gimp_create_display -gimp_delete_display -gimp_reconnect_displays -gimp_set_busy -gimp_set_busy_until_idle -gimp_unset_busy -gimp_show_message -gimp_help -gimp_new_progress -gimp_free_progress -gimp_get_program_class -gimp_get_display_name -gimp_get_user_time -gimp_get_theme_dir -gimp_pdb_dialog_new -gimp_pdb_dialog_set -gimp_pdb_dialog_close -gimp_recent_list_add_uri -gimp_recent_list_load -
- -
-gimp-user-install -GimpUserInstall -GimpUserInstallLogFunc -gimp_user_install_new -gimp_user_install_run -gimp_user_install_free -gimp_user_install_set_log_handler -
- -
-gimp-debug -gimp_debug_add_instance -gimp_debug_enable_instances -gimp_debug_instances -gimp_debug_remove_instance -
- -
-gimp-edit -Gimp-edit -gimp_edit_cut -gimp_edit_copy -gimp_edit_copy_visible -gimp_edit_paste -gimp_edit_named_cut -gimp_edit_named_copy -gimp_edit_named_copy_visible -gimp_edit_clear -gimp_edit_fill -
- -
-gimp-gradients -Gimp-gradients -gimp_gradients_init -
- -
-gimp-modules -Gimp-modules -gimp_modules_init -gimp_modules_exit -gimp_modules_load -gimp_modules_unload -gimp_modules_refresh -
- -
-gimp-parasites -Gimp-parasites -gimp_parasite_attach -gimp_parasite_detach -gimp_parasite_find -gimp_parasite_list -gimp_parasite_shift_parent -gimp_parasiterc_load -gimp_parasiterc_save -
- -
-gimp-tags -Gimp-tags -gimp_tags_user_install -
- -
-gimp-templates -Gimp-templates -gimp_templates_load -gimp_templates_save -gimp_templates_migrate -
- -
-gimp-units -Gimp-units -gimp_units_init -gimp_units_exit -gimp_unitrc_load -gimp_unitrc_save -
- -
-gimp-utils -GIMP_TIMER_END -GIMP_TIMER_START -MAX4 -MIN4 -gimp_g_type_instance_get_memsize -gimp_g_object_get_memsize -gimp_g_hash_table_get_memsize -gimp_g_hash_table_get_memsize_foreach -gimp_g_slist_get_memsize -gimp_g_slist_get_memsize_foreach -gimp_g_list_get_memsize -gimp_g_list_get_memsize_foreach -gimp_g_value_get_memsize -gimp_g_param_spec_get_memsize -gimp_string_get_memsize -gimp_parasite_get_memsize -gimp_get_default_language -gimp_get_default_unit -gimp_parameters_append -gimp_parameters_append_valist -gimp_parameters_free -gimp_value_array_truncate -gimp_get_temp_filename -gimp_markup_extract_text -gimp_enum_get_value_name -GIMP_CONSTRAIN_LINE_90_DEGREES -GIMP_CONSTRAIN_LINE_45_DEGREES -GIMP_CONSTRAIN_LINE_15_DEGREES -gimp_constrain_line -
- -
-gimp-transform-region -gimp_transform_region -
- -
-gimp-transform-resize -gimp_transform_resize_boundary -
- -
-gimp-transform-utils -gimp_transform_get_rotate_center -gimp_transform_get_flip_axis -gimp_transform_matrix_flip -gimp_transform_matrix_flip_free -gimp_transform_matrix_rotate -gimp_transform_matrix_rotate_center -gimp_transform_matrix_rotate_rect -gimp_transform_matrix_scale -gimp_transform_matrix_shear -gimp_transform_matrix_perspective -gimp_transform_polygon_is_convex -
- -
-gimpbrush -GimpBrush -GimpBrush -gimp_brush_new -gimp_brush_get_standard -gimp_brush_begin_use -gimp_brush_end_use -gimp_brush_select_brush -gimp_brush_want_null_motion -gimp_brush_transform_size -gimp_brush_transform_mask -gimp_brush_transform_pixmap -gimp_brush_transform_boundary -gimp_brush_get_mask -gimp_brush_get_pixmap -gimp_brush_get_spacing -gimp_brush_set_spacing - -GimpBrushClass -GIMP_BRUSH -GIMP_IS_BRUSH -GIMP_TYPE_BRUSH -gimp_brush_get_type -GIMP_BRUSH_CLASS -GIMP_IS_BRUSH_CLASS -GIMP_BRUSH_GET_CLASS -
- -
-gimpbrush-boundary -gimp_brush_real_transform_boundary -
- -
-gimpbrush-transform -GimpBrush-transform -gimp_brush_real_transform_size -gimp_brush_real_transform_mask -gimp_brush_real_transform_pixmap -gimp_brush_transform_matrix -
- -
-gimpbrush-header -GimpBrush-header -GBRUSH_FILE_VERSION -GBRUSH_MAGIC -BrushHeader -
- -
-gimpbrush-load -GimpBrush-load -GIMP_BRUSH_FILE_EXTENSION -GIMP_BRUSH_PIXMAP_FILE_EXTENSION -GIMP_BRUSH_PS_FILE_EXTENSION -GIMP_BRUSH_PSP_FILE_EXTENSION -gimp_brush_load -gimp_brush_load_brush -gimp_brush_load_abr -
- -
-gimpbrushcache -GimpBrushCache -GimpBrushCache -GimpBrushCacheClass -gimp_brush_cache_add -gimp_brush_cache_clear -gimp_brush_cache_get -gimp_brush_cache_new - -GIMP_BRUSH_CACHE -GIMP_BRUSH_CACHE_CLASS -GIMP_BRUSH_CACHE_GET_CLASS -GIMP_IS_BRUSH_CACHE -GIMP_IS_BRUSH_CACHE_CLASS -GIMP_TYPE_BRUSH_CACHE -gimp_brush_cache_get_type -
- -
-gimpbrushclipboard -GimpBrushClipboard -GimpBrushClipboard -gimp_brush_clipboard_new - -GimpBrushClipboardClass -GIMP_BRUSH_CLIPBOARD -GIMP_IS_BRUSH_CLIPBOARD -GIMP_TYPE_BRUSH_CLIPBOARD -gimp_brush_clipboard_get_type -GIMP_BRUSH_CLIPBOARD_CLASS -GIMP_IS_BRUSH_CLIPBOARD_CLASS -GIMP_BRUSH_CLIPBOARD_GET_CLASS -
- -
-gimpbrushgenerated -GimpBrushGenerated -GimpBrushGenerated -gimp_brush_generated_new -gimp_brush_generated_set_radius -gimp_brush_generated_set_hardness -gimp_brush_generated_set_angle -gimp_brush_generated_set_aspect_ratio -gimp_brush_generated_get_radius -gimp_brush_generated_get_hardness -gimp_brush_generated_get_angle -gimp_brush_generated_get_aspect_ratio -gimp_brush_generated_get_shape -gimp_brush_generated_set_shape -gimp_brush_generated_get_spikes -gimp_brush_generated_set_spikes - -GimpBrushGeneratedClass -GIMP_BRUSH_GENERATED -GIMP_IS_BRUSH_GENERATED -GIMP_TYPE_BRUSH_GENERATED -gimp_brush_generated_get_type -GIMP_BRUSH_GENERATED_CLASS -GIMP_IS_BRUSH_GENERATED_CLASS -GIMP_BRUSH_GENERATED_GET_CLASS -
- -
-gimpbrushgenerated-load -GimpBrushGenerated-load -GIMP_BRUSH_GENERATED_FILE_EXTENSION -gimp_brush_generated_load -
- -
-gimpbrushgenerated-save -GimpBrushGenerated-save -gimp_brush_generated_save -
- -
-gimpbrushpipe -GimpBrushPipe -GIMP_BRUSH_PIPE_FILE_EXTENSION -PipeSelectModes -GimpBrushPipe -gimp_brush_pipe_load - -GimpBrushPipeClass -GIMP_BRUSH_PIPE -GIMP_IS_BRUSH_PIPE -GIMP_TYPE_BRUSH_PIPE -gimp_brush_pipe_get_type -GIMP_BRUSH_PIPE_CLASS -GIMP_IS_BRUSH_PIPE_CLASS -GIMP_BRUSH_PIPE_GET_CLASS -
- -
-gimpdynamics -GimpDynamics -GimpDynamics -GimpDynamicsClass -gimp_dynamics_get_output -gimp_dynamics_get_standard -gimp_dynamics_new - -GIMP_DYNAMICS -GIMP_DYNAMICS_CLASS -GIMP_DYNAMICS_GET_CLASS -GIMP_IS_DYNAMICS -GIMP_IS_DYNAMICS_CLASS -GIMP_TYPE_DYNAMICS -gimp_dynamics_get_type -
- -
-gimpdynamics-load -GimpDynamics-load -GIMP_DYNAMICS_FILE_EXTENSION -gimp_dynamics_load -
- -
-gimpdynamics-save -GimpDynamics-save -gimp_dynamics_save -
- -
-gimpdynamicsoutput -GimpDynamicsOutput -GimpDynamicsOutput -GimpDynamicsOutputClass -gimp_dynamics_output_new -gimp_dynamics_output_is_enabled -gimp_dynamics_output_get_linear_value -gimp_dynamics_output_get_angular_value -gimp_dynamics_output_get_aspect_value - -GIMP_DYNAMICS_OUTPUT -GIMP_DYNAMICS_OUTPUT_CLASS -GIMP_DYNAMICS_OUTPUT_GET_CLASS -GIMP_IS_DYNAMICS_OUTPUT -GIMP_IS_DYNAMICS_OUTPUT_CLASS -GIMP_TYPE_DYNAMICS_OUTPUT -gimp_dynamics_output_get_type -
- -
-gimpbuffer -GimpBuffer -GimpBuffer -gimp_buffer_new -gimp_buffer_new_from_pixbuf -gimp_buffer_get_bytes -gimp_buffer_get_image_type -gimp_buffer_get_width -gimp_buffer_get_height -gimp_buffer_get_tiles - -GimpBufferClass -GIMP_BUFFER -GIMP_IS_BUFFER -GIMP_TYPE_BUFFER -gimp_buffer_get_type -GIMP_BUFFER_CLASS -GIMP_IS_BUFFER_CLASS -GIMP_BUFFER_GET_CLASS -
- -
-gimpcurve -GimpCurve -GimpCurve -gimp_curve_new -gimp_curve_get_standard -gimp_curve_reset -gimp_curve_set_curve_type -gimp_curve_get_curve_type -gimp_curve_get_n_points -gimp_curve_get_n_samples -gimp_curve_get_closest_point -gimp_curve_set_point -gimp_curve_move_point -gimp_curve_delete_point -gimp_curve_get_point -gimp_curve_set_curve -gimp_curve_is_identity -gimp_curve_get_uchar - -GimpCurveClass -GIMP_CURVE -GIMP_IS_CURVE -GIMP_TYPE_CURVE -gimp_curve_get_type -GIMP_CURVE_CLASS -GIMP_IS_CURVE_CLASS -GIMP_CURVE_GET_CLASS -
- -
-gimpcurve-map -GimpCurve-map -gimp_curve_map_value -gimp_curve_map_pixels -
- -
-gimpcurve-load -GimpCurve-load -GIMP_CURVE_FILE_EXTENSION -gimp_curve_load -
- -
-gimpcurve-save -GimpCurve-save -gimp_curve_save -
- -
-gimpchannel -GimpChannel -GimpChannel -gimp_channel_new -gimp_channel_new_from_component -gimp_channel_new_from_alpha -gimp_channel_get_parent -gimp_channel_get_opacity -gimp_channel_set_opacity -gimp_channel_get_color -gimp_channel_set_color -gimp_channel_get_show_masked -gimp_channel_set_show_masked -gimp_channel_new_mask -gimp_channel_boundary -gimp_channel_bounds -gimp_channel_is_empty -gimp_channel_feather -gimp_channel_sharpen -gimp_channel_clear -gimp_channel_all -gimp_channel_invert -gimp_channel_border -gimp_channel_grow -gimp_channel_shrink -gimp_channel_push_undo - -GimpChannelClass -GIMP_CHANNEL -GIMP_IS_CHANNEL -GIMP_TYPE_CHANNEL -gimp_channel_get_type -GIMP_CHANNEL_CLASS -GIMP_IS_CHANNEL_CLASS -GIMP_CHANNEL_GET_CLASS -
- -
-gimpchannel-combine -GimpChannel-combine -gimp_channel_combine_rect -gimp_channel_combine_ellipse -gimp_channel_combine_ellipse_rect -gimp_channel_combine_mask -
- -
-gimpchannel-project -GimpChannel-project -gimp_channel_project_region -
- -
-gimpchannel-select -GimpChannel-select -gimp_channel_select_rectangle -gimp_channel_select_ellipse -gimp_channel_select_round_rect -gimp_channel_select_scan_convert -gimp_channel_select_polygon -gimp_channel_select_vectors -gimp_channel_select_channel -gimp_channel_select_alpha -gimp_channel_select_component -gimp_channel_select_fuzzy -gimp_channel_select_by_color -
- -
-gimpcontainer -GimpContainer -GimpContainer -GimpContainerPriv -gimp_container_get_type -gimp_container_get_children_type -gimp_container_get_policy -gimp_container_get_n_children -gimp_container_is_empty -gimp_container_add -gimp_container_remove -gimp_container_insert -gimp_container_reorder -gimp_container_clear -gimp_container_freeze -gimp_container_thaw -gimp_container_frozen -gimp_container_have -gimp_container_foreach -gimp_container_get_child_by_name -gimp_container_get_child_by_index -gimp_container_get_first_child -gimp_container_get_last_child -gimp_container_get_child_index -gimp_container_add_handler -gimp_container_remove_handler -gimp_container_get_neighbor_of -gimp_container_get_name_array - -GimpContainerClass -GIMP_CONTAINER -GIMP_IS_CONTAINER -GIMP_TYPE_CONTAINER -GIMP_CONTAINER_CLASS -GIMP_IS_CONTAINER_CLASS -GIMP_CONTAINER_GET_CLASS -
- -
-gimpcontainer-filter -GimpContainer-filter -gimp_container_filter -gimp_container_filter_by_name -gimp_container_get_filtered_name_array -
- -
-gimptreehandler -GimpTreeHandler -GimpTreeHandler -gimp_tree_handler_connect -gimp_tree_handler_disconnect - -GimpTreeHandlerClass -GIMP_TREE_HANDLER -GIMP_IS_TREE_HANDLER -GIMP_TYPE_TREE_HANDLER -gimp_tree_handler_get_type -GIMP_TREE_HANDLER_CLASS -GIMP_IS_TREE_HANDLER_CLASS -GIMP_TREE_HANDLER_GET_CLASS -
- -
-gimpcontext -GimpContext -GimpContext -gimp_context_new -gimp_context_get_parent -gimp_context_set_parent -gimp_context_define_property -gimp_context_property_defined -gimp_context_define_properties -gimp_context_get_serialize_properties -gimp_context_set_serialize_properties -gimp_context_copy_property -gimp_context_copy_properties -gimp_context_type_to_property -gimp_context_type_to_prop_name -gimp_context_type_to_signal_name -gimp_context_get_by_type -gimp_context_set_by_type -gimp_context_changed_by_type -gimp_context_get_image -gimp_context_set_image -gimp_context_image_changed -gimp_context_get_display -gimp_context_set_display -gimp_context_display_changed -gimp_context_get_tool -gimp_context_set_tool -gimp_context_tool_changed -gimp_context_get_paint_info -gimp_context_paint_info_changed -gimp_context_set_paint_info -gimp_context_get_foreground -gimp_context_set_foreground -gimp_context_foreground_changed -gimp_context_get_background -gimp_context_set_background -gimp_context_background_changed -gimp_context_set_default_colors -gimp_context_swap_colors -gimp_context_get_opacity -gimp_context_set_opacity -gimp_context_opacity_changed -gimp_context_get_paint_mode -gimp_context_set_paint_mode -gimp_context_paint_mode_changed -gimp_context_get_brush -gimp_context_set_brush -gimp_context_brush_changed -gimp_context_get_dynamics -gimp_context_set_dynamics -gimp_context_dynamics_changed -gimp_context_get_pattern -gimp_context_set_pattern -gimp_context_pattern_changed -gimp_context_get_gradient -gimp_context_set_gradient -gimp_context_gradient_changed -gimp_context_get_palette -gimp_context_set_palette -gimp_context_palette_changed -gimp_context_get_tool_preset -gimp_context_set_tool_preset -gimp_context_tool_preset_changed -gimp_context_get_font -gimp_context_get_font_name -gimp_context_set_font -gimp_context_set_font_name -gimp_context_font_changed -gimp_context_get_buffer -gimp_context_set_buffer -gimp_context_buffer_changed -gimp_context_get_imagefile -gimp_context_set_imagefile -gimp_context_imagefile_changed -gimp_context_get_template -gimp_context_set_template -gimp_context_template_changed - -GimpContextClass -GIMP_CONTEXT -GIMP_IS_CONTEXT -GIMP_TYPE_CONTEXT -gimp_context_get_type -GIMP_CONTEXT_CLASS -GIMP_IS_CONTEXT_CLASS -GIMP_CONTEXT_GET_CLASS -
- -
-gimparea -GimpArea -GimpArea -gimp_area_new -gimp_area_free -gimp_area_list_process -gimp_area_list_free -
- -
-gimperror -GimpErrorCode -GIMP_ERROR -gimp_error_quark -
- -
-gimpcoords -GimpCoords -gimp_coords_mix -gimp_coords_average -gimp_coords_add -gimp_coords_difference -gimp_coords_scale -gimp_coords_scalarprod -gimp_coords_length -gimp_coords_length_squared -gimp_coords_manhattan_dist -gimp_coords_equal -gimp_coords_direction -
- -
-gimpcoords-interpolate -GimpCoords-interpolate -gimp_coords_interpolate_bezier -gimp_coords_bezier_is_straight -gimp_coords_interpolate_catmull -
- -
-gimpdata -GimpData -GimpData -GimpDataError -gimp_data_save -gimp_data_dirty -gimp_data_clean -gimp_data_is_dirty -gimp_data_freeze -gimp_data_thaw -gimp_data_is_frozen -gimp_data_delete_from_disk -gimp_data_get_extension -gimp_data_set_filename -gimp_data_create_filename -gimp_data_get_filename -gimp_data_set_folder_tags -gimp_data_get_mime_type -gimp_data_is_writable -gimp_data_is_deletable -gimp_data_set_mtime -gimp_data_get_mtime -gimp_data_duplicate -gimp_data_make_internal -gimp_data_is_internal -gimp_data_compare -GIMP_DATA_ERROR -gimp_data_error_quark - -GimpDataClass -GIMP_DATA -GIMP_IS_DATA -GIMP_TYPE_DATA -gimp_data_get_type -GIMP_DATA_CLASS -GIMP_IS_DATA_CLASS -GIMP_DATA_GET_CLASS -
- -
-gimpdatafactory -GimpDataFactory -GimpDataNewFunc -GimpDataLoadFunc -GimpDataGetStandardFunc -GimpDataFactoryLoaderEntry -GimpDataFactory -GimpDataFactoryPriv -gimp_data_factory_new -gimp_data_factory_data_init -gimp_data_factory_data_refresh -gimp_data_factory_data_free -gimp_data_factory_data_save -gimp_data_factory_data_new -gimp_data_factory_data_duplicate -gimp_data_factory_data_save_single -gimp_data_factory_data_delete -gimp_data_factory_data_get_standard -gimp_data_factory_get_container -gimp_data_factory_get_container_obsolete -gimp_data_factory_get_gimp -gimp_data_factory_has_data_new_func - -GimpDataFactoryClass -GIMP_DATA_FACTORY -GIMP_IS_DATA_FACTORY -GIMP_TYPE_DATA_FACTORY -gimp_data_factory_get_type -GIMP_DATA_FACTORY_CLASS -GIMP_IS_DATA_FACTORY_CLASS -GIMP_DATA_FACTORY_GET_CLASS -
- -
-gimpdocumentlist -GimpDocumentList -GimpDocumentList -gimp_document_list_new -gimp_document_list_add_uri - -GimpDocumentListClass -GIMP_DOCUMENT_LIST -GIMP_IS_DOCUMENT_LIST -GIMP_TYPE_DOCUMENT_LIST -gimp_document_list_get_type -GIMP_DOCUMENT_LIST_CLASS -GIMP_IS_DOCUMENT_LIST_CLASS -
- -
-gimpdrawable -GimpDrawable -GimpDrawable -GimpDrawablePrivate -gimp_drawable_new -gimp_drawable_estimate_memsize -gimp_drawable_update -gimp_drawable_alpha_changed -gimp_drawable_invalidate_boundary -gimp_drawable_get_active_components -gimp_drawable_convert_type -gimp_drawable_apply_region -gimp_drawable_replace_region -gimp_drawable_project_region -gimp_drawable_init_src_region -gimp_drawable_get_tiles -gimp_drawable_set_tiles -gimp_drawable_set_tiles_full -gimp_drawable_get_source_node -gimp_drawable_get_mode_node -gimp_drawable_swap_pixels -gimp_drawable_push_undo -gimp_drawable_fill -gimp_drawable_fill_by_type -gimp_drawable_has_alpha -gimp_drawable_type -gimp_drawable_type_with_alpha -gimp_drawable_type_without_alpha -gimp_drawable_is_rgb -gimp_drawable_is_gray -gimp_drawable_is_indexed -gimp_drawable_bytes -gimp_drawable_bytes_with_alpha -gimp_drawable_bytes_without_alpha -gimp_drawable_get_colormap -gimp_drawable_get_floating_sel -gimp_drawable_attach_floating_sel -gimp_drawable_detach_floating_sel - -GimpDrawableClass -GIMP_DRAWABLE -GIMP_IS_DRAWABLE -GIMP_TYPE_DRAWABLE -gimp_drawable_get_type -GIMP_DRAWABLE_CLASS -GIMP_IS_DRAWABLE_CLASS -GIMP_DRAWABLE_GET_CLASS -
- -
-gimpdrawable-stroke -GimpDrawable-stroke -gimp_drawable_fill_boundary -gimp_drawable_stroke_boundary -gimp_drawable_fill_vectors -gimp_drawable_stroke_vectors -
- -
-gimpdrawableundo -GimpDrawableUndo -GimpDrawableUndo - -GimpDrawableUndoClass -GIMP_DRAWABLE_UNDO -GIMP_IS_DRAWABLE_UNDO -GIMP_TYPE_DRAWABLE_UNDO -gimp_drawable_undo_get_type -GIMP_DRAWABLE_UNDO_CLASS -GIMP_IS_DRAWABLE_UNDO_CLASS -GIMP_DRAWABLE_UNDO_GET_CLASS -
- -
-gimpimageundo -GimpImageUndo -GimpImageUndo - -GimpImageUndoClass -GIMP_IMAGE_UNDO -GIMP_IS_IMAGE_UNDO -GIMP_TYPE_IMAGE_UNDO -gimp_image_undo_get_type -GIMP_IMAGE_UNDO_CLASS -GIMP_IS_IMAGE_UNDO_CLASS -GIMP_IMAGE_UNDO_GET_CLASS -
- -
-gimplayerpropundo -GimpLayerPropUndo -GimpLayerPropUndo - -GimpLayerPropUndoClass -GIMP_LAYER_PROP_UNDO -GIMP_IS_LAYER_PROP_UNDO -GIMP_TYPE_LAYER_PROP_UNDO -gimp_layer_prop_undo_get_type -GIMP_LAYER_PROP_UNDO_CLASS -GIMP_IS_LAYER_PROP_UNDO_CLASS -GIMP_LAYER_PROP_UNDO_GET_CLASS -
- -
-gimpitempropundo -GimpItemPropUndo -GimpItemPropUndo - -GimpItemPropUndoClass -GIMP_ITEM_PROP_UNDO -GIMP_IS_ITEM_PROP_UNDO -GIMP_TYPE_ITEM_PROP_UNDO -gimp_item_prop_undo_get_type -GIMP_ITEM_PROP_UNDO_CLASS -GIMP_IS_ITEM_PROP_UNDO_CLASS -GIMP_ITEM_PROP_UNDO_GET_CLASS -
- -
-gimpchannelpropundo -GimpChannelPropUndo -GimpChannelPropUndo - -GimpChannelPropUndoClass -GIMP_CHANNEL_PROP_UNDO -GIMP_IS_CHANNEL_PROP_UNDO -GIMP_TYPE_CHANNEL_PROP_UNDO -gimp_channel_prop_undo_get_type -GIMP_CHANNEL_PROP_UNDO_CLASS -GIMP_IS_CHANNEL_PROP_UNDO_CLASS -GIMP_CHANNEL_PROP_UNDO_GET_CLASS -
- -
-gimpmaskundo -GimpMaskUndo -GimpMaskUndo - -GimpMaskUndoClass -GIMP_MASK_UNDO -GIMP_IS_MASK_UNDO -GIMP_TYPE_MASK_UNDO -gimp_mask_undo_get_type -GIMP_MASK_UNDO_CLASS -GIMP_IS_MASK_UNDO_CLASS -GIMP_MASK_UNDO_GET_CLASS -
- -
-gimpguideundo -GimpGuideUndo -GimpGuideUndo - -GimpGuideUndoClass -GIMP_GUIDE_UNDO -GIMP_IS_GUIDE_UNDO -GIMP_TYPE_GUIDE_UNDO -gimp_guide_undo_get_type -GIMP_GUIDE_UNDO_CLASS -GIMP_IS_GUIDE_UNDO_CLASS -GIMP_GUIDE_UNDO_GET_CLASS -
- -
-gimpsamplepointundo -GimpSamplePointUndo -GimpSamplePointUndo - -GimpSamplePointUndoClass -GIMP_SAMPLE_POINT_UNDO -GIMP_IS_SAMPLE_POINT_UNDO -GIMP_TYPE_SAMPLE_POINT_UNDO -gimp_sample_point_undo_get_type -GIMP_SAMPLE_POINT_UNDO_CLASS -GIMP_IS_SAMPLE_POINT_UNDO_CLASS -GIMP_SAMPLE_POINT_UNDO_GET_CLASS -
- -
-gimplayerundo -GimpLayerUndo -GimpLayerUndo - -GimpLayerUndoClass -GIMP_LAYER_UNDO -GIMP_IS_LAYER_UNDO -GIMP_TYPE_LAYER_UNDO -gimp_layer_undo_get_type -GIMP_LAYER_UNDO_CLASS -GIMP_IS_LAYER_UNDO_CLASS -GIMP_LAYER_UNDO_GET_CLASS -
- -
-gimpchannelundo -GimpChannelUndo -GimpChannelUndo - -GimpChannelUndoClass -GIMP_CHANNEL_UNDO -GIMP_IS_CHANNEL_UNDO -GIMP_TYPE_CHANNEL_UNDO -gimp_channel_undo_get_type -GIMP_CHANNEL_UNDO_CLASS -GIMP_IS_CHANNEL_UNDO_CLASS -GIMP_CHANNEL_UNDO_GET_CLASS -
- -
-gimplayermaskundo -GimpLayerMaskUndo -GimpLayerMaskUndo - -GimpLayerMaskUndoClass -GIMP_LAYER_MASK_UNDO -GIMP_IS_LAYER_MASK_UNDO -GIMP_TYPE_LAYER_MASK_UNDO -gimp_layer_mask_undo_get_type -GIMP_LAYER_MASK_UNDO_CLASS -GIMP_IS_LAYER_MASK_UNDO_CLASS -GIMP_LAYER_MASK_UNDO_GET_CLASS -
- -
-gimpfloatingselundo -GimpFloatingSelUndo -GimpFloatingSelUndo - -GimpFloatingSelUndoClass -GIMP_FLOATING_SEL_UNDO -GIMP_IS_FLOATING_SEL_UNDO -GIMP_TYPE_FLOATING_SEL_UNDO -gimp_floating_sel_undo_get_type -GIMP_FLOATING_SEL_UNDO_CLASS -GIMP_IS_FLOATING_SEL_UNDO_CLASS -GIMP_FLOATING_SEL_UNDO_GET_CLASS -
- -
-gimpdrawablemodundo -GimpDrawableModUndo -GimpDrawableModUndo - -GimpDrawableModUndoClass -GIMP_DRAWABLE_MOD_UNDO -GIMP_IS_DRAWABLE_MOD_UNDO -GIMP_TYPE_DRAWABLE_MOD_UNDO -gimp_drawable_mod_undo_get_type -GIMP_DRAWABLE_MOD_UNDO_CLASS -GIMP_IS_DRAWABLE_MOD_UNDO_CLASS -GIMP_DRAWABLE_MOD_UNDO_GET_CLASS -
- -
-gimplayermaskpropundo -GimpLayerMaskPropUndo -GimpLayerMaskPropUndo - -GimpLayerMaskPropUndoClass -GIMP_LAYER_MASK_PROP_UNDO -GIMP_IS_LAYER_MASK_PROP_UNDO -GIMP_TYPE_LAYER_MASK_PROP_UNDO -gimp_layer_mask_prop_undo_get_type -GIMP_LAYER_MASK_PROP_UNDO_CLASS -GIMP_IS_LAYER_MASK_PROP_UNDO_CLASS -GIMP_LAYER_MASK_PROP_UNDO_GET_CLASS -
- -
-gimpenvirontable -GimpEnvironTable -GimpEnvironTable -gimp_environ_table_new -gimp_environ_table_load -gimp_environ_table_add -gimp_environ_table_remove -gimp_environ_table_clear -gimp_environ_table_clear_all -gimp_environ_table_get_envp - -GimpEnvironTableClass -GIMP_ENVIRON_TABLE -GIMP_IS_ENVIRON_TABLE -GIMP_TYPE_ENVIRON_TABLE -gimp_environ_table_get_type -GIMP_ENVIRON_TABLE_CLASS -GIMP_IS_ENVIRON_TABLE_CLASS -GIMP_ENVIRON_TABLE_GET_CLASS -
- -
-gimpgradient -GimpGradient -GIMP_GRADIENT_DEFAULT_SAMPLE_SIZE -GimpGradientSegment -GimpGradient -gimp_gradient_new -gimp_gradient_get_standard -gimp_gradient_get_color_at -gimp_gradient_get_segment_at -gimp_gradient_has_fg_bg_segments -gimp_gradient_flatten -gimp_gradient_save_pov -gimp_gradient_segment_new -gimp_gradient_segment_get_left_pos -gimp_gradient_segment_set_left_pos -gimp_gradient_segment_get_middle_pos -gimp_gradient_segment_set_middle_pos -gimp_gradient_segment_get_right_pos -gimp_gradient_segment_set_right_pos -gimp_gradient_segment_get_left_color -gimp_gradient_segment_set_left_color -gimp_gradient_segment_get_left_color_type -gimp_gradient_segment_set_left_color_type -gimp_gradient_segment_get_right_color -gimp_gradient_segment_set_right_color -gimp_gradient_segment_get_right_color_type -gimp_gradient_segment_set_right_color_type -gimp_gradient_segment_get_coloring_type -gimp_gradient_segment_get_blending_function -gimp_gradient_segment_split_midpoint -gimp_gradient_segment_split_uniform -gimp_gradient_segment_get_last -gimp_gradient_segment_get_first -gimp_gradient_segment_get_nth -gimp_gradient_segment_free -gimp_gradient_segments_free -gimp_gradient_segment_range_delete -gimp_gradient_segment_range_set_coloring_type -gimp_gradient_segment_range_set_blending_function -gimp_gradient_segment_range_flip -gimp_gradient_segment_range_replicate -gimp_gradient_segment_range_split_uniform -gimp_gradient_segment_range_split_midpoint -gimp_gradient_segment_range_recenter_handles -gimp_gradient_segment_range_redistribute_handles -gimp_gradient_segment_range_move -gimp_gradient_segment_range_compress -gimp_gradient_segment_range_blend - -GimpGradientClass -GIMP_GRADIENT -GIMP_IS_GRADIENT -GIMP_TYPE_GRADIENT -gimp_gradient_get_type -GIMP_GRADIENT_CLASS -GIMP_IS_GRADIENT_CLASS -GIMP_GRADIENT_GET_CLASS -
- -
-gimpgradient-load -GimpGradient-load -GIMP_GRADIENT_FILE_EXTENSION -GIMP_GRADIENT_SVG_FILE_EXTENSION -gimp_gradient_load -gimp_gradient_load_svg -
- -
-gimpgradient-save -GimpGradient-save -gimp_gradient_save -
- -
-gimpgrid -GimpGrid -GimpGrid - -GimpGridClass -GIMP_GRID -GIMP_IS_GRID -GIMP_TYPE_GRID -gimp_grid_get_type -GIMP_GRID_CLASS -GIMP_IS_GRID_CLASS -GIMP_GRID_GET_CLASS -
- -
-gimpidtable -GimpIdTable -GimpIdTable -GimpIdTableClass -GimpIdTablePriv -gimp_id_table_new -gimp_id_table_insert -gimp_id_table_insert_with_id -gimp_id_table_lookup -gimp_id_table_remove -gimp_id_table_replace - -GIMP_ID_TABLE -GIMP_ID_TABLE_CLASS -GIMP_ID_TABLE_GET_CLASS -GIMP_IS_ID_TABLE -GIMP_IS_ID_TABLE_CLASS -GIMP_TYPE_ID_TABLE -gimp_id_table_get_type -
- -
-gimpimage -GimpImage -GIMP_IMAGE_TYPE_IS_RGB -GIMP_IMAGE_TYPE_IS_GRAY -GIMP_IMAGE_TYPE_IS_INDEXED -GIMP_IMAGE_TYPE_HAS_ALPHA -GIMP_IMAGE_TYPE_WITH_ALPHA -GIMP_IMAGE_TYPE_WITHOUT_ALPHA -GIMP_IMAGE_TYPE_BYTES -GIMP_IMAGE_TYPE_BASE_TYPE -GIMP_IMAGE_TYPE_FROM_BASE_TYPE -GIMP_IMAGE_ACTIVE_PARENT -GimpImageFlushAccumulator -GIMP_IMAGE_GET_PRIVATE -GimpImage -GimpImagePrivate -gimp_image_new -gimp_image_base_type -gimp_image_base_type_with_alpha -gimp_image_get_combination_mode -gimp_image_get_ID -gimp_image_get_by_ID -gimp_image_set_uri -gimp_image_get_uri -gimp_image_get_uri_or_untitled -gimp_image_get_any_uri -gimp_image_set_imported_uri -gimp_image_get_imported_uri -gimp_image_set_exported_uri -gimp_image_get_exported_uri -gimp_image_set_save_a_copy_uri -gimp_image_get_save_a_copy_uri -gimp_image_set_filename -gimp_image_get_filename -gimp_image_get_display_name -gimp_image_get_load_proc -gimp_image_set_load_proc -gimp_image_set_save_proc -gimp_image_get_save_proc -gimp_image_saved -gimp_image_exported -gimp_image_set_resolution -gimp_image_get_resolution -gimp_image_resolution_changed -gimp_image_set_unit -gimp_image_get_unit -gimp_image_unit_changed -gimp_image_get_width -gimp_image_get_height -gimp_image_has_alpha -gimp_image_is_empty -gimp_image_get_floating_selection -gimp_image_set_floating_selection -gimp_image_floating_selection_changed -gimp_image_get_mask -gimp_image_mask_changed -gimp_image_get_component_index -gimp_image_set_component_active -gimp_image_get_component_active -gimp_image_get_active_array -gimp_image_set_component_visible -gimp_image_get_component_visible -gimp_image_get_visible_array -gimp_image_mode_changed -gimp_image_alpha_changed -gimp_image_invalidate -gimp_image_guide_added -gimp_image_guide_removed -gimp_image_guide_moved -gimp_image_sample_point_added -gimp_image_sample_point_removed -gimp_image_sample_point_moved -gimp_image_colormap_changed -gimp_image_selection_invalidate -gimp_image_quick_mask_changed -gimp_image_size_changed_detailed -gimp_image_undo_event -gimp_image_dirty -gimp_image_clean -gimp_image_clean_all -gimp_image_is_dirty -gimp_image_is_export_dirty -gimp_image_export_clean_all -gimp_image_get_dirty_time -gimp_image_flush -gimp_image_get_display_count -gimp_image_inc_display_count -gimp_image_dec_display_count -gimp_image_get_instance_count -gimp_image_inc_instance_count -gimp_image_get_projection -gimp_image_get_foreground -gimp_image_get_background -gimp_image_get_color -gimp_image_transform_color -gimp_image_transform_rgb -gimp_image_transform_temp_buf -gimp_image_parasite_find -gimp_image_parasite_list -gimp_image_parasite_attach -gimp_image_parasite_detach -gimp_image_get_new_tattoo -gimp_image_set_tattoo_state -gimp_image_get_tattoo_state -gimp_image_get_layer_tree -gimp_image_get_channel_tree -gimp_image_get_vectors_tree -gimp_image_get_layers -gimp_image_get_channels -gimp_image_get_vectors -gimp_image_get_n_layers -gimp_image_get_n_channels -gimp_image_get_n_vectors -gimp_image_get_layer_iter -gimp_image_get_channel_iter -gimp_image_get_vectors_iter -gimp_image_get_layer_list -gimp_image_get_channel_list -gimp_image_get_vectors_list -gimp_image_get_active_drawable -gimp_image_get_active_layer -gimp_image_get_active_channel -gimp_image_get_active_vectors -gimp_image_set_active_layer -gimp_image_set_active_channel -gimp_image_unset_active_channel -gimp_image_set_active_vectors -gimp_image_get_layer_by_tattoo -gimp_image_get_channel_by_tattoo -gimp_image_get_vectors_by_tattoo -gimp_image_get_layer_by_name -gimp_image_get_channel_by_name -gimp_image_get_vectors_by_name -gimp_image_reorder_item -gimp_image_raise_item -gimp_image_raise_item_to_top -gimp_image_lower_item -gimp_image_lower_item_to_bottom -gimp_image_add_layer -gimp_image_remove_layer -gimp_image_add_layers -gimp_image_add_channel -gimp_image_remove_channel -gimp_image_add_vectors -gimp_image_remove_vectors -gimp_image_coords_in_active_pickable -gimp_image_invalidate_previews -gimp_image_get_string_untitled - -GimpImageClass -GIMP_IMAGE -GIMP_IS_IMAGE -GIMP_TYPE_IMAGE -gimp_image_get_type -GIMP_IMAGE_CLASS -GIMP_IS_IMAGE_CLASS -GIMP_IMAGE_GET_CLASS -
- -
-gimpimagefile -GimpImagefile -GimpImagefile -gimp_imagefile_new -gimp_imagefile_get_thumbnail -gimp_imagefile_get_gicon -gimp_imagefile_set_mime_type -gimp_imagefile_update -gimp_imagefile_check_thumbnail -gimp_imagefile_create_thumbnail -gimp_imagefile_create_thumbnail_weak -gimp_imagefile_save_thumbnail -gimp_imagefile_get_desc_string - -GimpImagefileClass -GIMP_IMAGEFILE -GIMP_IS_IMAGEFILE -GIMP_TYPE_IMAGEFILE -gimp_imagefile_get_type -GIMP_IMAGEFILE_CLASS -GIMP_IS_IMAGEFILE_CLASS -GIMP_IMAGEFILE_GET_CLASS -
- -
-gimpimagemap -GimpImageMap -GimpImageMapApplyFunc -GimpImageMap -gimp_image_map_new -gimp_image_map_apply -gimp_image_map_commit -gimp_image_map_clear -gimp_image_map_abort - -GimpImageMapClass -GIMP_IMAGE_MAP -GIMP_IS_IMAGE_MAP -GIMP_TYPE_IMAGE_MAP -gimp_image_map_get_type -GIMP_IMAGE_MAP_CLASS -GIMP_IS_IMAGE_MAP_CLASS -GIMP_IMAGE_MAP_GET_CLASS -
- -
-gimpimagemapconfig -GimpImageMapConfig -GimpImageMapConfig -gimp_image_map_config_compare - -GimpImageMapConfigClass -GIMP_IMAGE_MAP_CONFIG -GIMP_IS_IMAGE_MAP_CONFIG -GIMP_TYPE_IMAGE_MAP_CONFIG -gimp_image_map_config_get_type -GIMP_IMAGE_MAP_CONFIG_CLASS -GIMP_IS_IMAGE_MAP_CONFIG_CLASS -GIMP_IMAGE_MAP_CONFIG_GET_CLASS -
- -
-gimpinterpreterdb -GimpInterpreterDB -GimpInterpreterDB -gimp_interpreter_db_new -gimp_interpreter_db_load -gimp_interpreter_db_clear -gimp_interpreter_db_resolve -gimp_interpreter_db_get_extensions - -GimpInterpreterDBClass -GIMP_INTERPRETER_DB -GIMP_IS_INTERPRETER_DB -GIMP_TYPE_INTERPRETER_DB -gimp_interpreter_db_get_type -GIMP_INTERPRETER_DB_CLASS -GIMP_IS_INTERPRETER_DB_CLASS -GIMP_INTERPRETER_DB_GET_CLASS -
- -
-gimpitem -GimpItem -GimpItem -gimp_item_new -gimp_item_removed -gimp_item_is_removed -gimp_item_unset_removed -gimp_item_is_attached -gimp_item_get_parent -gimp_item_get_tree -gimp_item_get_container -gimp_item_get_container_iter -gimp_item_get_index -gimp_item_get_path -gimp_item_duplicate -gimp_item_convert -gimp_item_rename -gimp_item_get_width -gimp_item_get_height -gimp_item_set_size -gimp_item_get_offset -gimp_item_set_offset -gimp_item_get_offset_x -gimp_item_get_offset_y -gimp_item_translate -gimp_item_check_scaling -gimp_item_scale -gimp_item_scale_by_factors -gimp_item_scale_by_origin -gimp_item_resize -gimp_item_resize_to_image -gimp_item_flip -gimp_item_rotate -gimp_item_transform -gimp_item_stroke -gimp_item_to_selection -gimp_item_get_node -gimp_item_peek_node -gimp_item_get_offset_node -gimp_item_get_ID -gimp_item_get_by_ID -gimp_item_get_tattoo -gimp_item_set_tattoo -gimp_item_get_image -gimp_item_set_image -gimp_item_replace_item -gimp_item_get_parasites -gimp_item_set_parasites -gimp_item_parasite_attach -gimp_item_parasite_detach -gimp_item_parasite_find -gimp_item_parasite_list -gimp_item_get_visible -gimp_item_set_visible -gimp_item_is_visible -gimp_item_get_lock_content -gimp_item_set_lock_content -gimp_item_can_lock_content -gimp_item_is_content_locked -gimp_item_mask_bounds -gimp_item_mask_intersect -gimp_item_is_in_set - -GimpItemClass -GIMP_ITEM -GIMP_IS_ITEM -GIMP_TYPE_ITEM -gimp_item_get_type -GIMP_ITEM_CLASS -GIMP_IS_ITEM_CLASS -GIMP_ITEM_GET_CLASS -
- -
-gimpitemundo -GimpItemUndo -GimpItemUndo - -GimpItemUndoClass -GIMP_ITEM_UNDO -GIMP_IS_ITEM_UNDO -GIMP_TYPE_ITEM_UNDO -gimp_item_undo_get_type -GIMP_ITEM_UNDO_CLASS -GIMP_IS_ITEM_UNDO_CLASS -GIMP_ITEM_UNDO_GET_CLASS -
- -
-gimplayer -GimpLayer -GimpLayer -gimp_layer_new -gimp_layer_new_from_pixbuf -gimp_layer_new_from_region -gimp_layer_new_from_tiles -gimp_layer_get_parent -gimp_layer_get_mask -gimp_layer_create_mask -gimp_layer_add_mask -gimp_layer_apply_mask -gimp_layer_add_alpha -gimp_layer_flatten -gimp_layer_resize_to_image -gimp_layer_get_floating_sel_drawable -gimp_layer_set_floating_sel_drawable -gimp_layer_is_floating_sel -gimp_layer_set_opacity -gimp_layer_get_opacity -gimp_layer_set_mode -gimp_layer_get_mode -gimp_layer_set_lock_alpha -gimp_layer_get_lock_alpha -gimp_layer_can_lock_alpha - -GimpLayerClass -GIMP_LAYER -GIMP_IS_LAYER -GIMP_TYPE_LAYER -gimp_layer_get_type -GIMP_LAYER_CLASS -GIMP_IS_LAYER_CLASS -GIMP_LAYER_GET_CLASS -
- -
-gimplayer-floating-sel -GimpLayer-floating-sel -floating_sel_attach -floating_sel_anchor -floating_sel_to_layer -floating_sel_activate_drawable -floating_sel_boundary -floating_sel_invalidate -
- -
-gimplayer-project -GimpLayer-project -gimp_layer_project_region -
- -
-gimpgrouplayer -GimpGroupLayer -GimpGroupLayer -gimp_group_layer_new -gimp_group_layer_get_projection -gimp_group_layer_suspend_resize -gimp_group_layer_resume_resize - -GimpGroupLayerClass -GIMP_GROUP_LAYER -GIMP_IS_GROUP_LAYER -GIMP_TYPE_GROUP_LAYER -gimp_group_layer_get_type -GIMP_GROUP_LAYER_CLASS -GIMP_IS_GROUP_LAYER_CLASS -GIMP_GROUP_LAYER_GET_CLASS -
- -
-gimpgrouplayerundo -GimpGroupLayerUndo -GimpGroupLayerUndo - -GimpGroupLayerUndoClass -GIMP_GROUP_LAYER_UNDO -GIMP_IS_GROUP_LAYER_UNDO -GIMP_TYPE_GROUP_LAYER_UNDO -gimp_group_layer_undo_get_type -GIMP_GROUP_LAYER_UNDO_CLASS -GIMP_IS_GROUP_LAYER_UNDO_CLASS -GIMP_GROUP_LAYER_UNDO_GET_CLASS -
- -
-gimplayermask -GimpLayerMask -GimpLayerMask -gimp_layer_mask_new -gimp_layer_mask_set_layer -gimp_layer_mask_get_layer -gimp_layer_mask_set_apply -gimp_layer_mask_get_apply -gimp_layer_mask_set_edit -gimp_layer_mask_get_edit -gimp_layer_mask_set_show -gimp_layer_mask_get_show - -GimpLayerMaskClass -GIMP_LAYER_MASK -GIMP_IS_LAYER_MASK -GIMP_TYPE_LAYER_MASK -gimp_layer_mask_get_type -GIMP_LAYER_MASK_CLASS -GIMP_IS_LAYER_MASK_CLASS -GIMP_LAYER_MASK_GET_CLASS -
- -
-gimplist -GimpList -GimpList -gimp_list_new -gimp_list_new_weak -gimp_list_reverse -gimp_list_set_sort_func -gimp_list_sort -gimp_list_sort_by_name - -GimpListClass -GIMP_LIST -GIMP_IS_LIST -GIMP_TYPE_LIST -gimp_list_get_type -GIMP_LIST_CLASS -GIMP_IS_LIST_CLASS -GIMP_LIST_GET_CLASS -
- -
-gimpitemtree -GimpItemTree -GimpItemTree -GimpItemTreeClass -gimp_item_tree_add_item -gimp_item_tree_get_active_item -gimp_item_tree_get_insert_pos -gimp_item_tree_get_item_by_name -gimp_item_tree_new -gimp_item_tree_remove_item -gimp_item_tree_rename_item -gimp_item_tree_reorder_item -gimp_item_tree_set_active_item - -GIMP_IS_ITEM_TREE -GIMP_IS_ITEM_TREE_CLASS -GIMP_ITEM_TREE -GIMP_ITEM_TREE_CLASS -GIMP_TYPE_ITEM_TREE -gimp_item_tree_get_type -
- -
-gimpitemstack -GimpItemStack -GimpItemStack -gimp_item_stack_new -gimp_item_stack_get_n_items -gimp_item_stack_is_flat -gimp_item_stack_get_item_iter -gimp_item_stack_get_item_list -gimp_item_stack_get_item_by_tattoo -gimp_item_stack_get_item_by_path -gimp_item_stack_get_parent_by_path -gimp_item_stack_invalidate_previews - -GimpItemStackClass -GIMP_ITEM_STACK -GIMP_IS_ITEM_STACK -GIMP_TYPE_ITEM_STACK -gimp_item_stack_get_type -GIMP_ITEM_STACK_CLASS -GIMP_IS_ITEM_STACK_CLASS -
- -
-gimpdrawablestack -GimpDrawableStack -GimpDrawableStack -gimp_drawable_stack_new -gimp_drawable_stack_get_graph - -GimpDrawableStackClass -GIMP_DRAWABLE_STACK -GIMP_IS_DRAWABLE_STACK -GIMP_TYPE_DRAWABLE_STACK -gimp_drawable_stack_get_type -GIMP_DRAWABLE_STACK_CLASS -GIMP_IS_DRAWABLE_STACK_CLASS -
- -
-gimpobject -GimpObject -GimpObject -GimpObjectPrivate -gimp_object_set_name -gimp_object_get_name -gimp_object_set_name_safe -gimp_object_set_static_name -gimp_object_take_name -gimp_object_name_changed -gimp_object_name_free -gimp_object_name_collate -gimp_object_get_memsize - -GimpObjectClass -GIMP_OBJECT -GIMP_IS_OBJECT -GIMP_TYPE_OBJECT -gimp_object_get_type -GIMP_OBJECT_CLASS -GIMP_IS_OBJECT_CLASS -GIMP_OBJECT_GET_CLASS -
- -
-gimppaintinfo -GimpPaintInfo -GimpPaintInfo -gimp_paint_info_new -gimp_paint_info_set_standard -gimp_paint_info_get_standard - -GimpPaintInfoClass -GIMP_PAINT_INFO -GIMP_IS_PAINT_INFO -GIMP_TYPE_PAINT_INFO -gimp_paint_info_get_type -GIMP_PAINT_INFO_CLASS -GIMP_IS_PAINT_INFO_CLASS -GIMP_PAINT_INFO_GET_CLASS -
- -
-gimppalette -GimpPalette -GimpPaletteEntry -GimpPalette -gimp_palette_new -gimp_palette_get_standard -gimp_palette_get_colors -gimp_palette_get_n_colors -gimp_palette_add_entry -gimp_palette_delete_entry -gimp_palette_set_entry -gimp_palette_set_entry_color -gimp_palette_set_entry_name -gimp_palette_get_entry -gimp_palette_set_columns -gimp_palette_get_columns -gimp_palette_find_entry - -GimpPaletteClass -GIMP_PALETTE -GIMP_IS_PALETTE -GIMP_TYPE_PALETTE -gimp_palette_get_type -GIMP_PALETTE_CLASS -GIMP_IS_PALETTE_CLASS -GIMP_PALETTE_GET_CLASS -
- -
-gimppalette-import -GimpPalette-import -gimp_palette_import_from_file -gimp_palette_import_from_gradient -gimp_palette_import_from_image -gimp_palette_import_from_indexed_image -gimp_palette_import_from_drawable -
- -
-gimppalette-load -GimpPalette-load -GIMP_PALETTE_FILE_EXTENSION -GimpPaletteFileFormat -gimp_palette_load -gimp_palette_load_act -gimp_palette_load_riff -gimp_palette_load_psp -gimp_palette_load_aco -gimp_palette_load_css -gimp_palette_load_detect_format -
- -
-gimppalette-save -GimpPalette-save -gimp_palette_save -
- -
-gimpparasitelist -GimpParasiteList -GimpParasiteList -gimp_parasite_list_new -gimp_parasite_list_copy -gimp_parasite_list_add -gimp_parasite_list_remove -gimp_parasite_list_length -gimp_parasite_list_persistent_length -gimp_parasite_list_foreach -gimp_parasite_list_find - -GimpParasiteListClass -GIMP_PARASITE_LIST -GIMP_IS_PARASITE_LIST -GIMP_TYPE_PARASITE_LIST -gimp_parasite_list_get_type -GIMP_PARASITE_LIST_CLASS -GIMP_IS_PARASITE_LIST_CLASS -GIMP_PARASITE_LIST_GET_CLASS -
- -
-gimppattern -GimpPattern -GimpPattern -gimp_pattern_new -gimp_pattern_get_standard -gimp_pattern_get_mask - -GimpPatternClass -GIMP_PATTERN -GIMP_IS_PATTERN -GIMP_TYPE_PATTERN -gimp_pattern_get_type -GIMP_PATTERN_CLASS -GIMP_IS_PATTERN_CLASS -GIMP_PATTERN_GET_CLASS -
- -
-gimppattern-load -GimpPattern-load -GIMP_PATTERN_FILE_EXTENSION -gimp_pattern_load -gimp_pattern_load_pixbuf -
- -
-gimppattern-header -GimpPattern-header -GPATTERN_FILE_VERSION -GPATTERN_MAGIC -PatternHeader -
- -
-gimppatternclipboard -GimpPatternClipboard -GimpPatternClipboard -gimp_pattern_clipboard_new - -GimpPatternClipboardClass -GIMP_PATTERN_CLIPBOARD -GIMP_IS_PATTERN_CLIPBOARD -GIMP_TYPE_PATTERN_CLIPBOARD -gimp_pattern_clipboard_get_type -GIMP_PATTERN_CLIPBOARD_CLASS -GIMP_IS_PATTERN_CLIPBOARD_CLASS -GIMP_PATTERN_CLIPBOARD_GET_CLASS -
- -
-gimpprogress -GimpProgress -GimpProgress -GimpProgressInterface -gimp_progress_start -gimp_progress_end -gimp_progress_is_active -gimp_progress_set_text -gimp_progress_set_value -gimp_progress_get_value -gimp_progress_pulse -gimp_progress_get_window_id -gimp_progress_message -gimp_progress_cancel -gimp_progress_update_and_flush - -GIMP_PROGRESS -GIMP_IS_PROGRESS -GIMP_TYPE_PROGRESS -gimp_progress_interface_get_type -GIMP_PROGRESS_GET_IFACE -
- -
-gimppdbprogress -GimpPdbProgress -GimpPdbProgress -gimp_pdb_progress_get_by_callback - -GimpPdbProgressClass -GIMP_PDB_PROGRESS -GIMP_IS_PDB_PROGRESS -GIMP_TYPE_PDB_PROGRESS -gimp_pdb_progress_get_type -GIMP_PDB_PROGRESS_CLASS -GIMP_IS_PDB_PROGRESS_CLASS -GIMP_PDB_PROGRESS_GET_CLASS -
- -
-gimpsubprogress -GimpSubProgress -GimpSubProgress -gimp_sub_progress_new -gimp_sub_progress_set_range -gimp_sub_progress_set_step - -GimpSubProgressClass -GIMP_SUB_PROGRESS -GIMP_IS_SUB_PROGRESS -GIMP_TYPE_SUB_PROGRESS -gimp_sub_progress_get_type -GIMP_SUB_PROGRESS_CLASS -GIMP_IS_SUB_PROGRESS_CLASS -GIMP_SUB_PROGRESS_GET_CLASS -
- -
-gimpselection -GimpSelection -GimpSelection -gimp_selection_new -gimp_selection_push_stroking -gimp_selection_pop_stroking -gimp_selection_load -gimp_selection_save -gimp_selection_extract -gimp_selection_float - -GimpSelectionClass -GIMP_SELECTION -GIMP_IS_SELECTION -GIMP_TYPE_SELECTION -gimp_selection_get_type -GIMP_SELECTION_CLASS -GIMP_IS_SELECTION_CLASS -GIMP_SELECTION_GET_CLASS -
- -
-gimpsizebox -GimpSizeBox -GimpSizeBox - -GimpSizeBoxClass -GIMP_SIZE_BOX -GIMP_IS_SIZE_BOX -GIMP_TYPE_SIZE_BOX -gimp_size_box_get_type -GIMP_SIZE_BOX_CLASS -GIMP_IS_SIZE_BOX_CLASS -GIMP_SIZE_BOX_GET_CLASS -
- -
-gimptag -GimpTag -GimpTag -gimp_tag_new -gimp_tag_try_new -gimp_tag_get_name -gimp_tag_get_hash -gimp_tag_get_internal -gimp_tag_set_internal -gimp_tag_equals -gimp_tag_compare_func -gimp_tag_compare_with_string -gimp_tag_string_make_valid -gimp_tag_is_tag_separator -gimp_tag_or_null_ref -gimp_tag_or_null_unref - -GimpTagClass -GIMP_TAG -GIMP_IS_TAG -GIMP_TYPE_TAG -gimp_tag_get_type -GIMP_TAG_CLASS -GIMP_IS_TAG_CLASS -GIMP_TAG_GET_CLASS -
- -
-gimptagcache -GimpTagCache -GimpTagCache -GimpTagCachePriv -gimp_tag_cache_new -gimp_tag_cache_load -gimp_tag_cache_save -gimp_tag_cache_add_container - -GimpTagCacheClass -GIMP_TAG_CACHE -GIMP_IS_TAG_CACHE -GIMP_TYPE_TAG_CACHE -gimp_tag_cache_get_type -GIMP_TAG_CACHE_CLASS -GIMP_IS_TAG_CACHE_CLASS -GIMP_TAG_CACHE_GET_CLASS -
- -
-gimptagentry -GimpTagEntry -GimpTagEntry -gimp_tag_entry_new -gimp_tag_entry_set_selected_items -gimp_tag_entry_parse_tags -gimp_tag_entry_set_tag_string -gimp_tag_entry_get_separator - -GimpTagEntryClass -GIMP_TAG_ENTRY -GIMP_IS_TAG_ENTRY -GIMP_TYPE_TAG_ENTRY -gimp_tag_entry_get_type -GIMP_TAG_ENTRY_CLASS -GIMP_IS_TAG_ENTRY_CLASS -GIMP_TAG_ENTRY_GET_CLASS -
- -
-gimptagged -GimpTagged -GimpTagged -GimpTaggedInterface -gimp_tagged_add_tag -gimp_tagged_remove_tag -gimp_tagged_get_tags -gimp_tagged_set_tags -gimp_tagged_get_identifier -gimp_tagged_get_checksum -gimp_tagged_has_tag - -GIMP_TAGGED -GIMP_IS_TAGGED -GIMP_TYPE_TAGGED -gimp_tagged_interface_get_type -GIMP_TAGGED_GET_IFACE -
- -
-gimptagpopup -GimpTagPopup -PopupTagData -GimpTagPopup -gimp_tag_popup_new -gimp_tag_popup_show - -GimpTagPopupClass -GIMP_TAG_POPUP -GIMP_IS_TAG_POPUP -GIMP_TYPE_TAG_POPUP -gimp_tag_popup_get_type -GIMP_TAG_POPUP_CLASS -GIMP_IS_TAG_POPUP_CLASS -GIMP_TAG_POPUP_GET_CLASS -
- -
-gimptemplate -GimpTemplate -GIMP_DEFAULT_IMAGE_WIDTH -GIMP_DEFAULT_IMAGE_HEIGHT -GIMP_TEMPLATE_PARAM_COPY_FIRST -GimpTemplate -gimp_template_new -gimp_template_set_from_image -gimp_template_get_width -gimp_template_get_height -gimp_template_get_unit -gimp_template_get_resolution_x -gimp_template_get_resolution_y -gimp_template_get_resolution_unit -gimp_template_get_image_type -gimp_template_get_fill_type -gimp_template_get_comment -gimp_template_get_initial_size - -GimpTemplateClass -GIMP_TEMPLATE -GIMP_IS_TEMPLATE -GIMP_TYPE_TEMPLATE -gimp_template_get_type -GIMP_TEMPLATE_CLASS -GIMP_IS_TEMPLATE_CLASS -GIMP_TEMPLATE_GET_CLASS -
- -
-gimpdashpattern -GimpDashPattern -GIMP_TYPE_DASH_PATTERN -GIMP_VALUE_HOLDS_DASH_PATTERN -gimp_dash_pattern_get_type -gimp_dash_pattern_new_from_preset -gimp_dash_pattern_new_from_segments -gimp_dash_pattern_fill_segments -gimp_dash_pattern_from_value_array -gimp_dash_pattern_to_value_array -gimp_dash_pattern_copy -gimp_dash_pattern_free -
- -
-gimpfilloptions -GimpFillOptions -GimpFillOptions -gimp_fill_options_new -gimp_fill_options_get_antialias -gimp_fill_options_get_style - -GimpFillOptionsClass -GIMP_FILL_OPTIONS -GIMP_IS_FILL_OPTIONS -GIMP_TYPE_FILL_OPTIONS -gimp_fill_options_get_type -GIMP_FILL_OPTIONS_CLASS -GIMP_IS_FILL_OPTIONS_CLASS -GIMP_FILL_OPTIONS_GET_CLASS -
- -
-gimpstrokeoptions -GimpStrokeOptions -GimpStrokeOptions -gimp_stroke_options_new -gimp_stroke_options_get_method -gimp_stroke_options_get_width -gimp_stroke_options_get_unit -gimp_stroke_options_get_cap_style -gimp_stroke_options_get_join_style -gimp_stroke_options_get_miter_limit -gimp_stroke_options_get_dash_offset -gimp_stroke_options_get_dash_info -gimp_stroke_options_get_paint_options -gimp_stroke_options_get_emulate_dynamics -gimp_stroke_options_take_dash_pattern -gimp_stroke_options_prepare -gimp_stroke_options_finish - -GimpStrokeOptionsClass -GIMP_STROKE_OPTIONS -GIMP_IS_STROKE_OPTIONS -GIMP_TYPE_STROKE_OPTIONS -gimp_stroke_options_get_type -GIMP_STROKE_OPTIONS_CLASS -GIMP_IS_STROKE_OPTIONS_CLASS -GIMP_STROKE_OPTIONS_GET_CLASS -
- -
-gimptoolinfo -GimpToolInfo -GimpToolInfo -gimp_tool_info_new -gimp_tool_info_set_standard -gimp_tool_info_get_standard -gimp_tool_info_build_options_filename - -GimpToolInfoClass -GIMP_TOOL_INFO -GIMP_IS_TOOL_INFO -GIMP_TYPE_TOOL_INFO -gimp_tool_info_get_type -GIMP_TOOL_INFO_CLASS -GIMP_IS_TOOL_INFO_CLASS -GIMP_TOOL_INFO_GET_CLASS -
- -
-gimptooloptions -GimpToolOptions -GimpToolOptions -gimp_tool_options_reset -gimp_tool_options_delete -gimp_tool_options_serialize -gimp_tool_options_deserialize -gimp_tool_options_create_folder - -GimpToolOptionsClass -GIMP_TOOL_OPTIONS -GIMP_IS_TOOL_OPTIONS -GIMP_TYPE_TOOL_OPTIONS -gimp_tool_options_get_type -GIMP_TOOL_OPTIONS_CLASS -GIMP_IS_TOOL_OPTIONS_CLASS -GIMP_TOOL_OPTIONS_GET_CLASS -
- -
-gimptoolpreset -GimpToolPreset -GimpToolPreset -GimpToolPresetClass -gimp_tool_preset_get_prop_mask -gimp_tool_preset_new - -GIMP_IS_TOOL_PRESET -GIMP_IS_TOOL_PRESET_CLASS -GIMP_TOOL_PRESET -GIMP_TOOL_PRESET_CLASS -GIMP_TOOL_PRESET_GET_CLASS -GIMP_TYPE_TOOL_PRESET -gimp_tool_preset_get_type -
- -
-gimptoolpreset-load -GimpToolPreset-load -GIMP_TOOL_PRESET_FILE_EXTENSION -gimp_tool_preset_load -
- -
-gimptoolpreset-save -GimpToolPreset-save -gimp_tool_preset_save -
- -
-gimpundo -GimpUndo -GimpUndo -GimpUndoAccumulator -gimp_undo_pop -gimp_undo_free -gimp_undo_create_preview -gimp_undo_refresh_preview -gimp_undo_type_to_name -gimp_undo_is_weak -gimp_undo_get_age -gimp_undo_reset_age - -GimpUndoClass -GIMP_UNDO -GIMP_IS_UNDO -GIMP_TYPE_UNDO -gimp_undo_get_type -GIMP_UNDO_CLASS -GIMP_IS_UNDO_CLASS -GIMP_UNDO_GET_CLASS -
- -
-gimpundostack -GimpUndoStack -GimpUndoStack -gimp_undo_stack_new -gimp_undo_stack_push_undo -gimp_undo_stack_pop_undo -gimp_undo_stack_free_bottom -gimp_undo_stack_peek -gimp_undo_stack_get_depth - -GimpUndoStackClass -GIMP_UNDO_STACK -GIMP_IS_UNDO_STACK -GIMP_TYPE_UNDO_STACK -gimp_undo_stack_get_type -GIMP_UNDO_STACK_CLASS -GIMP_IS_UNDO_STACK_CLASS -GIMP_UNDO_STACK_GET_CLASS -
- -
-gimpviewable -GimpViewable -GIMP_VIEWABLE_MAX_BUTTON_SIZE -GIMP_VIEWABLE_MAX_MENU_SIZE -GIMP_VIEWABLE_MAX_PREVIEW_SIZE -GIMP_VIEWABLE_MAX_POPUP_SIZE -GIMP_VIEWABLE_PRIORITY_IDLE -GimpViewable -gimp_viewable_invalidate_preview -gimp_viewable_size_changed -gimp_viewable_calc_preview_size -gimp_viewable_get_size -gimp_viewable_get_preview_size -gimp_viewable_get_popup_size -gimp_viewable_get_preview -gimp_viewable_get_new_preview -gimp_viewable_get_dummy_preview -gimp_viewable_get_pixbuf -gimp_viewable_get_new_pixbuf -gimp_viewable_get_dummy_pixbuf -gimp_viewable_get_description -gimp_viewable_get_stock_id -gimp_viewable_set_stock_id -gimp_viewable_preview_freeze -gimp_viewable_preview_thaw -gimp_viewable_preview_is_frozen -gimp_viewable_get_parent -gimp_viewable_set_parent -gimp_viewable_get_children -gimp_viewable_get_expanded -gimp_viewable_set_expanded -gimp_viewable_is_ancestor - -GimpViewableClass -GIMP_VIEWABLE -GIMP_IS_VIEWABLE -GIMP_TYPE_VIEWABLE -gimp_viewable_get_type -GIMP_VIEWABLE_CLASS -GIMP_IS_VIEWABLE_CLASS -GIMP_VIEWABLE_GET_CLASS -
- -
-gimpparamspecs -GIMP_PARAM_NO_VALIDATE -GIMP_TYPE_INT32 -GIMP_VALUE_HOLDS_INT32 -GIMP_TYPE_PARAM_INT32 -GimpParamSpecInt32 -gimp_param_int32_get_type -gimp_param_spec_int32 -GIMP_TYPE_INT16 -GIMP_VALUE_HOLDS_INT16 -gimp_int16_get_type -GIMP_TYPE_PARAM_INT16 -GIMP_PARAM_SPEC_INT16 -GIMP_IS_PARAM_SPEC_INT16 -GimpParamSpecInt16 -gimp_param_int16_get_type -gimp_param_spec_int16 -GIMP_TYPE_INT8 -GIMP_VALUE_HOLDS_INT8 -gimp_int8_get_type -GIMP_TYPE_PARAM_INT8 -GIMP_PARAM_SPEC_INT8 -GIMP_IS_PARAM_SPEC_INT8 -GimpParamSpecInt8 -gimp_param_int8_get_type -gimp_param_spec_int8 -GIMP_TYPE_PARAM_STRING -GIMP_PARAM_SPEC_STRING -GIMP_IS_PARAM_SPEC_STRING -GimpParamSpecString -gimp_param_string_get_type -gimp_param_spec_string -GIMP_TYPE_PARAM_ENUM -GIMP_PARAM_SPEC_ENUM -GIMP_IS_PARAM_SPEC_ENUM -GimpParamSpecEnum -gimp_param_enum_get_type -gimp_param_spec_enum -gimp_param_spec_enum_exclude_value -GIMP_TYPE_IMAGE_ID -GIMP_VALUE_HOLDS_IMAGE_ID -gimp_image_id_get_type -GIMP_TYPE_PARAM_IMAGE_ID -GIMP_PARAM_SPEC_IMAGE_ID -GIMP_IS_PARAM_SPEC_IMAGE_ID -GimpParamSpecImageID -gimp_param_image_id_get_type -gimp_param_spec_image_id -gimp_value_get_image -gimp_value_set_image -GIMP_TYPE_ITEM_ID -GIMP_VALUE_HOLDS_ITEM_ID -gimp_item_id_get_type -GIMP_TYPE_PARAM_ITEM_ID -GIMP_PARAM_SPEC_ITEM_ID -GIMP_IS_PARAM_SPEC_ITEM_ID -GimpParamSpecItemID -gimp_param_item_id_get_type -gimp_param_spec_item_id -gimp_value_get_item -gimp_value_set_item -GIMP_TYPE_DRAWABLE_ID -GIMP_VALUE_HOLDS_DRAWABLE_ID -gimp_drawable_id_get_type -GIMP_TYPE_PARAM_DRAWABLE_ID -GIMP_PARAM_SPEC_DRAWABLE_ID -GIMP_IS_PARAM_SPEC_DRAWABLE_ID -GimpParamSpecDrawableID -gimp_param_drawable_id_get_type -gimp_param_spec_drawable_id -gimp_value_get_drawable -gimp_value_set_drawable -GIMP_TYPE_LAYER_ID -GIMP_VALUE_HOLDS_LAYER_ID -gimp_layer_id_get_type -GIMP_TYPE_PARAM_LAYER_ID -GIMP_PARAM_SPEC_LAYER_ID -GIMP_IS_PARAM_SPEC_LAYER_ID -GimpParamSpecLayerID -gimp_param_layer_id_get_type -gimp_param_spec_layer_id -gimp_value_get_layer -gimp_value_set_layer -GIMP_TYPE_CHANNEL_ID -GIMP_VALUE_HOLDS_CHANNEL_ID -gimp_channel_id_get_type -GIMP_TYPE_PARAM_CHANNEL_ID -GIMP_PARAM_SPEC_CHANNEL_ID -GIMP_IS_PARAM_SPEC_CHANNEL_ID -GimpParamSpecChannelID -gimp_param_channel_id_get_type -gimp_param_spec_channel_id -gimp_value_get_channel -gimp_value_set_channel -GIMP_TYPE_LAYER_MASK_ID -GIMP_VALUE_HOLDS_LAYER_MASK_ID -gimp_layer_mask_id_get_type -GIMP_TYPE_PARAM_LAYER_MASK_ID -GIMP_PARAM_SPEC_LAYER_MASK_ID -GIMP_IS_PARAM_SPEC_LAYER_MASK_ID -GimpParamSpecLayerMaskID -gimp_param_layer_mask_id_get_type -gimp_param_spec_layer_mask_id -gimp_value_get_layer_mask -gimp_value_set_layer_mask -GIMP_TYPE_SELECTION_ID -GIMP_VALUE_HOLDS_SELECTION_ID -gimp_selection_id_get_type -GIMP_TYPE_PARAM_SELECTION_ID -GIMP_PARAM_SPEC_SELECTION_ID -GIMP_IS_PARAM_SPEC_SELECTION_ID -GimpParamSpecSelectionID -gimp_param_selection_id_get_type -gimp_param_spec_selection_id -gimp_value_get_selection -gimp_value_set_selection -GIMP_TYPE_VECTORS_ID -GIMP_VALUE_HOLDS_VECTORS_ID -gimp_vectors_id_get_type -GIMP_TYPE_PARAM_VECTORS_ID -GIMP_PARAM_SPEC_VECTORS_ID -GIMP_IS_PARAM_SPEC_VECTORS_ID -GimpParamSpecVectorsID -gimp_param_vectors_id_get_type -gimp_param_spec_vectors_id -gimp_value_get_vectors -gimp_value_set_vectors -GIMP_TYPE_DISPLAY_ID -GIMP_VALUE_HOLDS_DISPLAY_ID -gimp_display_id_get_type -GIMP_TYPE_PARAM_DISPLAY_ID -GIMP_PARAM_SPEC_DISPLAY_ID -GIMP_IS_PARAM_SPEC_DISPLAY_ID -GimpParamSpecDisplayID -gimp_param_display_id_get_type -gimp_param_spec_display_id -gimp_value_get_display -gimp_value_set_display -GimpArray -gimp_array_new -gimp_array_copy -gimp_array_free -GIMP_TYPE_ARRAY -GIMP_VALUE_HOLDS_ARRAY -gimp_array_get_type -GIMP_TYPE_PARAM_ARRAY -GIMP_PARAM_SPEC_ARRAY -GIMP_IS_PARAM_SPEC_ARRAY -GimpParamSpecArray -gimp_param_array_get_type -gimp_param_spec_array -GIMP_TYPE_INT8_ARRAY -GIMP_VALUE_HOLDS_INT8_ARRAY -gimp_int8_array_get_type -GIMP_TYPE_PARAM_INT8_ARRAY -GIMP_PARAM_SPEC_INT8_ARRAY -GIMP_IS_PARAM_SPEC_INT8_ARRAY -GimpParamSpecInt8Array -gimp_param_int8_array_get_type -gimp_param_spec_int8_array -gimp_value_get_int8array -gimp_value_dup_int8array -gimp_value_set_int8array -gimp_value_set_static_int8array -gimp_value_take_int8array -GIMP_TYPE_INT32_ARRAY -GIMP_VALUE_HOLDS_INT32_ARRAY -gimp_int32_array_get_type -GIMP_TYPE_PARAM_INT32_ARRAY -GIMP_PARAM_SPEC_INT32_ARRAY -GIMP_IS_PARAM_SPEC_INT32_ARRAY -GimpParamSpecInt32Array -gimp_param_int32_array_get_type -gimp_param_spec_int32_array -gimp_value_get_int32array -gimp_value_dup_int32array -gimp_value_set_int32array -gimp_value_set_static_int32array -gimp_value_take_int32array -GIMP_TYPE_FLOAT_ARRAY -GIMP_VALUE_HOLDS_FLOAT_ARRAY -gimp_float_array_get_type -GIMP_TYPE_PARAM_FLOAT_ARRAY -GIMP_PARAM_SPEC_FLOAT_ARRAY -GIMP_IS_PARAM_SPEC_FLOAT_ARRAY -GimpParamSpecFloatArray -gimp_param_float_array_get_type -gimp_param_spec_float_array -gimp_value_get_floatarray -gimp_value_dup_floatarray -gimp_value_set_floatarray -gimp_value_set_static_floatarray -gimp_value_take_floatarray -gimp_string_array_new -gimp_string_array_copy -gimp_string_array_free -GIMP_TYPE_STRING_ARRAY -GIMP_VALUE_HOLDS_STRING_ARRAY -gimp_string_array_get_type -GIMP_TYPE_PARAM_STRING_ARRAY -GIMP_PARAM_SPEC_STRING_ARRAY -GIMP_IS_PARAM_SPEC_STRING_ARRAY -GimpParamSpecStringArray -gimp_param_string_array_get_type -gimp_param_spec_string_array -gimp_value_get_stringarray -gimp_value_dup_stringarray -gimp_value_set_stringarray -gimp_value_set_static_stringarray -gimp_value_take_stringarray -GIMP_TYPE_COLOR_ARRAY -GIMP_VALUE_HOLDS_COLOR_ARRAY -gimp_color_array_get_type -gimp_param_color_array_get_type -GIMP_TYPE_PARAM_COLOR_ARRAY -GIMP_PARAM_SPEC_COLOR_ARRAY -GIMP_IS_PARAM_SPEC_COLOR_ARRAY -GimpParamSpecColorArray -gimp_color_array_get_type -gimp_param_spec_color_array -gimp_value_dup_colorarray -gimp_value_get_colorarray -gimp_value_set_colorarray -gimp_value_set_static_colorarray -gimp_value_take_colorarray - -GIMP_PARAM_SPEC_INT32 -GIMP_IS_PARAM_SPEC_INT32 -gimp_int32_get_type -
- -
-gimpparamspecs-desc -gimp_param_spec_get_desc -
- -
-gimpparamspecs-duplicate -gimp_param_spec_duplicate -
- -
-gimpcanvas -GimpCanvas -GIMP_CANVAS_EVENT_MASK -GimpCanvas -gimp_canvas_new -gimp_canvas_get_layout -gimp_canvas_set_bg_color - -GimpCanvasClass -GIMP_CANVAS -GIMP_IS_CANVAS -GIMP_TYPE_CANVAS -gimp_canvas_get_type -GIMP_CANVAS_CLASS -GIMP_IS_CANVAS_CLASS -GIMP_CANVAS_GET_CLASS -
- -
-gimpcanvaspath -GimpCanvasPath -GimpCanvasPath -GimpCanvasPathClass -gimp_canvas_path_new -gimp_canvas_path_set - -GIMP_CANVAS_PATH -GIMP_IS_CANVAS_PATH -GIMP_TYPE_CANVAS_PATH -gimp_canvas_path_get_type -GIMP_CANVAS_PATH_CLASS -GIMP_IS_CANVAS_PATH_CLASS -GIMP_CANVAS_PATH_GET_CLASS -
- -
-gimpcanvascursor -GimpCanvasCursor -GimpCanvasCursor -GimpCanvasCursorClass -gimp_canvas_cursor_new -gimp_canvas_cursor_set - -GIMP_CANVAS_CURSOR -GIMP_IS_CANVAS_CURSOR -GIMP_TYPE_CANVAS_CURSOR -gimp_canvas_cursor_get_type -GIMP_CANVAS_CURSOR_CLASS -GIMP_IS_CANVAS_CURSOR_CLASS -GIMP_CANVAS_CURSOR_GET_CLASS -
- -
-gimpcanvasrectangle -GimpCanvasRectangle -GimpCanvasRectangle -GimpCanvasRectangleClass -gimp_canvas_rectangle_new -gimp_canvas_rectangle_set - -GIMP_CANVAS_RECTANGLE -GIMP_IS_CANVAS_RECTANGLE -GIMP_TYPE_CANVAS_RECTANGLE -gimp_canvas_rectangle_get_type -GIMP_CANVAS_RECTANGLE_CLASS -GIMP_IS_CANVAS_RECTANGLE_CLASS -GIMP_CANVAS_RECTANGLE_GET_CLASS -
- -
-gimpcanvasrectangleguides -GimpCanvasRectangleGuides -GimpCanvasRectangleGuides -GimpCanvasRectangleGuidesClass -gimp_canvas_rectangle_guides_new -gimp_canvas_rectangle_guides_set - -GIMP_CANVAS_RECTANGLE_GUIDES -GIMP_CANVAS_RECTANGLE_GUIDES_CLASS -GIMP_CANVAS_RECTANGLE_GUIDES_GET_CLASS -GIMP_IS_CANVAS_RECTANGLE_GUIDES -GIMP_IS_CANVAS_RECTANGLE_GUIDES_CLASS -GIMP_TYPE_CANVAS_RECTANGLE_GUIDES -gimp_canvas_rectangle_guides_get_type -
- -
-gimpcanvassamplepoint -GimpCanvasSamplePoint -GimpCanvasSamplePoint -GimpCanvasSamplePointClass -gimp_canvas_sample_point_new -gimp_canvas_sample_point_set - -GIMP_CANVAS_SAMPLE_POINT -GIMP_IS_CANVAS_SAMPLE_POINT -GIMP_TYPE_CANVAS_SAMPLE_POINT -gimp_canvas_sample_point_get_type -GIMP_CANVAS_SAMPLE_POINT_CLASS -GIMP_IS_CANVAS_SAMPLE_POINT_CLASS -GIMP_CANVAS_SAMPLE_POINT_GET_CLASS -
- -
-gimpcanvaslayerboundary -GimpCanvasLayerBoundary -GimpCanvasLayerBoundary -GimpCanvasLayerBoundaryClass -gimp_canvas_layer_boundary_new -gimp_canvas_layer_boundary_set_layer - -GIMP_CANVAS_LAYER_BOUNDARY -GIMP_IS_CANVAS_LAYER_BOUNDARY -GIMP_TYPE_CANVAS_LAYER_BOUNDARY -gimp_canvas_layer_boundary_get_type -GIMP_CANVAS_LAYER_BOUNDARY_CLASS -GIMP_IS_CANVAS_LAYER_BOUNDARY_CLASS -GIMP_CANVAS_LAYER_BOUNDARY_GET_CLASS -
- -
-gimpcombotagentry -GimpComboTagEntry -GimpComboTagEntry -gimp_combo_tag_entry_new - -GimpComboTagEntryClass -GIMP_COMBO_TAG_ENTRY -GIMP_IS_COMBO_TAG_ENTRY -GIMP_TYPE_COMBO_TAG_ENTRY -gimp_combo_tag_entry_get_type -GIMP_COMBO_TAG_ENTRY_CLASS -GIMP_IS_COMBO_TAG_ENTRY_CLASS -GIMP_COMBO_TAG_ENTRY_GET_CLASS -
- -
-gimpcanvascorner -GimpCanvasCorner -GimpCanvasCorner -GimpCanvasCornerClass -gimp_canvas_corner_new - -GIMP_CANVAS_CORNER -GIMP_IS_CANVAS_CORNER -GIMP_TYPE_CANVAS_CORNER -gimp_canvas_corner_get_type -GIMP_CANVAS_CORNER_CLASS -GIMP_IS_CANVAS_CORNER_CLASS -GIMP_CANVAS_CORNER_GET_CLASS -
- -
-gimpcanvasgrid -GimpCanvasGrid -GimpCanvasGrid -GimpCanvasGridClass -gimp_canvas_grid_new - -GIMP_CANVAS_GRID -GIMP_IS_CANVAS_GRID -GIMP_TYPE_CANVAS_GRID -gimp_canvas_grid_get_type -GIMP_CANVAS_GRID_CLASS -GIMP_IS_CANVAS_GRID_CLASS -GIMP_CANVAS_GRID_GET_CLASS -
- -
-gimpcanvasgroup -GimpCanvasGroup -GimpCanvasGroupClass -GimpCanvasGroup -gimp_canvas_group_new -gimp_canvas_group_add_item -gimp_canvas_group_remove_item -gimp_canvas_group_set_group_stroking -gimp_canvas_group_set_group_filling - -GIMP_CANVAS_GROUP -GIMP_IS_CANVAS_GROUP -GIMP_TYPE_CANVAS_GROUP -gimp_canvas_group_get_type -GIMP_CANVAS_GROUP_CLASS -GIMP_IS_CANVAS_GROUP_CLASS -GIMP_CANVAS_GROUP_GET_CLASS -
- -
-gimpcanvashandle -GimpCanvasHandle -GimpCanvasHandle -GimpCanvasHandleClass -gimp_canvas_handle_new -gimp_canvas_handle_set_angles -gimp_canvas_handle_set_position - -GIMP_CANVAS_HANDLE -GIMP_IS_CANVAS_HANDLE -GIMP_TYPE_CANVAS_HANDLE -gimp_canvas_handle_get_type -GIMP_CANVAS_HANDLE_CLASS -GIMP_IS_CANVAS_HANDLE_CLASS -GIMP_CANVAS_HANDLE_GET_CLASS -
- -
-gimpcanvasline -GimpCanvasLine -GimpCanvasLine -GimpCanvasLineClass -gimp_canvas_line_new -gimp_canvas_line_set - -GIMP_CANVAS_LINE -GIMP_IS_CANVAS_LINE -GIMP_TYPE_CANVAS_LINE -gimp_canvas_line_get_type -GIMP_CANVAS_LINE_CLASS -GIMP_IS_CANVAS_LINE_CLASS -GIMP_CANVAS_LINE_GET_CLASS -
- -
-gimpcanvasproxygroup -GimpCanvasProxyGroup -GimpCanvasProxyGroup -GimpCanvasProxyGroupClass -gimp_canvas_proxy_group_new -gimp_canvas_proxy_group_add_item -gimp_canvas_proxy_group_remove_item -gimp_canvas_proxy_group_get_item - -GIMP_CANVAS_PROXY_GROUP -GIMP_IS_CANVAS_PROXY_GROUP -GIMP_TYPE_CANVAS_PROXY_GROUP -gimp_canvas_proxy_group_get_type -GIMP_CANVAS_PROXY_GROUP_CLASS -GIMP_IS_CANVAS_PROXY_GROUP_CLASS -GIMP_CANVAS_PROXY_GROUP_GET_CLASS -
- -
-gimpcanvaspolygon -GimpCanvasPolygon -GimpCanvasPolygon -GimpCanvasPolygonClass -gimp_canvas_polygon_new -gimp_canvas_polygon_new_from_coords - -GIMP_CANVAS_POLYGON -GIMP_IS_CANVAS_POLYGON -GIMP_TYPE_CANVAS_POLYGON -gimp_canvas_polygon_get_type -GIMP_CANVAS_POLYGON_CLASS -GIMP_IS_CANVAS_POLYGON_CLASS -GIMP_CANVAS_POLYGON_GET_CLASS -
- -
-gimpcanvaspen -GimpCanvasPen -GimpCanvasPen -GimpCanvasPenClass -gimp_canvas_pen_new - -GIMP_CANVAS_PEN -GIMP_IS_CANVAS_PEN -GIMP_TYPE_CANVAS_PEN -gimp_canvas_pen_get_type -GIMP_CANVAS_PEN_CLASS -GIMP_IS_CANVAS_PEN_CLASS -GIMP_CANVAS_PEN_GET_CLASS -
- -
-gimpcanvasguide -GimpCanvasGuide -GimpCanvasGuide -GimpCanvasGuideClass -gimp_canvas_guide_new -gimp_canvas_guide_set - -GIMP_CANVAS_GUIDE -GIMP_IS_CANVAS_GUIDE -GIMP_TYPE_CANVAS_GUIDE -gimp_canvas_guide_get_type -GIMP_CANVAS_GUIDE_CLASS -GIMP_IS_CANVAS_GUIDE_CLASS -GIMP_CANVAS_GUIDE_GET_CLASS -
- -
-gimpcanvasitem -GimpCanvasItem -GimpCanvasItemClass -GimpCanvasItem -gimp_canvas_item_draw -gimp_canvas_item_get_extents -gimp_canvas_item_hit -gimp_canvas_item_set_visible -gimp_canvas_item_get_visible -gimp_canvas_item_set_line_cap -gimp_canvas_item_set_highlight -gimp_canvas_item_get_highlight -gimp_canvas_item_begin_change -gimp_canvas_item_end_change -gimp_canvas_item_suspend_stroking -gimp_canvas_item_resume_stroking -gimp_canvas_item_suspend_filling -gimp_canvas_item_resume_filling - -GIMP_CANVAS_ITEM -GIMP_IS_CANVAS_ITEM -GIMP_TYPE_CANVAS_ITEM -gimp_canvas_item_get_type -GIMP_CANVAS_ITEM_CLASS -GIMP_IS_CANVAS_ITEM_CLASS -GIMP_CANVAS_ITEM_GET_CLASS -
- -
-gimpcanvasitem-utils -GimpCanvasItem-utils -gimp_canvas_item_shift_to_north_west -gimp_canvas_item_shift_to_center -
- -
-gimpcanvaspassepartout -GimpCanvasPassePartout -GimpCanvasPassePartout -GimpCanvasPassePartoutClass -gimp_canvas_passe_partout_new - -GIMP_CANVAS_PASSE_PARTOUT -GIMP_IS_CANVAS_PASSE_PARTOUT -GIMP_TYPE_CANVAS_PASSE_PARTOUT -gimp_canvas_passe_partout_get_type -GIMP_CANVAS_PASSE_PARTOUT_CLASS -GIMP_IS_CANVAS_PASSE_PARTOUT_CLASS -GIMP_CANVAS_PASSE_PARTOUT_GET_CLASS -
- -
-gimpcanvastextcursor -GimpCanvasTextCursor -GimpCanvasTextCursor -GimpCanvasTextCursorClass -gimp_canvas_text_cursor_new - -GIMP_CANVAS_TEXT_CURSOR -GIMP_IS_CANVAS_TEXT_CURSOR -GIMP_TYPE_CANVAS_TEXT_CURSOR -gimp_canvas_text_cursor_get_type -GIMP_CANVAS_TEXT_CURSOR_CLASS -GIMP_IS_CANVAS_TEXT_CURSOR_CLASS -GIMP_CANVAS_TEXT_CURSOR_GET_CLASS -
- -
-gimpcanvastransformguides -GimpCanvasTransformGuides -GimpCanvasTransformGuides -GimpCanvasTransformGuidesClass -gimp_canvas_transform_guides_new -gimp_canvas_transform_guides_set - -GIMP_CANVAS_TRANSFORM_GUIDES -GIMP_CANVAS_TRANSFORM_GUIDES_CLASS -GIMP_CANVAS_TRANSFORM_GUIDES_GET_CLASS -GIMP_IS_CANVAS_TRANSFORM_GUIDES -GIMP_IS_CANVAS_TRANSFORM_GUIDES_CLASS -GIMP_TYPE_CANVAS_TRANSFORM_GUIDES -gimp_canvas_transform_guides_get_type -
- -
-gimpcanvastransformpreview -GimpCanvasTransformPreview -GimpCanvasTransformPreview -GimpCanvasTransformPreviewClass -gimp_canvas_transform_preview_new - -GIMP_CANVAS_TRANSFORM_PREVIEW -GIMP_CANVAS_TRANSFORM_PREVIEW_CLASS -GIMP_CANVAS_TRANSFORM_PREVIEW_GET_CLASS -GIMP_IS_CANVAS_TRANSFORM_PREVIEW -GIMP_IS_CANVAS_TRANSFORM_PREVIEW_CLASS -GIMP_TYPE_CANVAS_TRANSFORM_PREVIEW -gimp_canvas_transform_preview_get_type -
- -
-gimpcanvasboundary -GimpCanvasBoundary -GimpCanvasBoundary -GimpCanvasBoundaryClass -gimp_canvas_boundary_new - -GIMP_CANVAS_BOUNDARY -GIMP_IS_CANVAS_BOUNDARY -GIMP_TYPE_CANVAS_BOUNDARY -gimp_canvas_boundary_get_type -GIMP_CANVAS_BOUNDARY_CLASS -GIMP_IS_CANVAS_BOUNDARY_CLASS -GIMP_CANVAS_BOUNDARY_GET_CLASS -
- -
-gimpcanvasarc -GimpCanvasArc -GimpCanvasArc -GimpCanvasArcClass -gimp_canvas_arc_new - -GIMP_CANVAS_ARC -GIMP_IS_CANVAS_ARC -GIMP_TYPE_CANVAS_ARC -gimp_canvas_arc_get_type -GIMP_CANVAS_ARC_CLASS -GIMP_IS_CANVAS_ARC_CLASS -GIMP_CANVAS_ARC_GET_CLASS -
- -
-gimpcanvasprogress -GimpCanvasProgress -GimpCanvasProgress -GimpCanvasProgressClass -gimp_canvas_progress_new - -GIMP_CANVAS_PROGRESS -GIMP_IS_CANVAS_PROGRESS -GIMP_TYPE_CANVAS_PROGRESS -gimp_canvas_progress_get_type -GIMP_CANVAS_PROGRESS_CLASS -GIMP_IS_CANVAS_PROGRESS_CLASS -GIMP_CANVAS_PROGRESS_GET_CLASS -
- -
-gimpdisplay -GimpDisplay -GimpDisplay -gimp_display_new -gimp_display_delete -gimp_display_close -gimp_display_get_ID -gimp_display_get_by_ID -gimp_display_get_action_name -gimp_display_get_gimp -gimp_display_get_image -gimp_display_set_image -gimp_display_get_instance -gimp_display_get_shell -gimp_display_empty -gimp_display_fill -gimp_display_update_area -gimp_display_flush -gimp_display_flush_now - -GimpDisplayClass -GIMP_DISPLAY -GIMP_IS_DISPLAY -GIMP_TYPE_DISPLAY -gimp_display_get_type -GIMP_DISPLAY_CLASS -GIMP_IS_DISPLAY_CLASS -GIMP_DISPLAY_GET_CLASS -
- -
-gimpdisplay-foreach -GimpDisplay-foreach -gimp_displays_dirty -gimp_displays_get_dirty_images -gimp_displays_delete -gimp_displays_close -gimp_displays_reconnect -gimp_displays_get_num_visible -gimp_displays_set_busy -gimp_displays_unset_busy -
- -
-gimpdisplay-handlers -GimpDisplay-handlers -gimp_display_connect -gimp_display_disconnect -
- -
-gimpdisplayoptions -GimpDisplayOptions -GimpDisplayOptions - -GimpDisplayOptionsClass -GIMP_DISPLAY_OPTIONS -GIMP_IS_DISPLAY_OPTIONS -GIMP_TYPE_DISPLAY_OPTIONS -GIMP_TYPE_DISPLAY_OPTIONS_FULLSCREEN -GIMP_TYPE_DISPLAY_OPTIONS_NO_IMAGE -gimp_display_options_get_type -gimp_display_options_fullscreen_get_type -gimp_display_options_no_image_get_type -GIMP_DISPLAY_OPTIONS_CLASS -GIMP_IS_DISPLAY_OPTIONS_CLASS -GIMP_DISPLAY_OPTIONS_GET_CLASS -
- -
-gimpimagewindow -GimpImageWindow -GimpImageWindow -GimpImageWindowClass -gimp_image_window_add_shell -gimp_image_window_destroy -gimp_image_window_get_active_shell -gimp_image_window_get_default_dockbook -gimp_image_window_get_fullscreen -gimp_image_window_get_left_docks -gimp_image_window_get_n_shells -gimp_image_window_get_right_docks -gimp_image_window_get_shell -gimp_image_window_get_show_menubar -gimp_image_window_get_show_statusbar -gimp_image_window_get_ui_manager -gimp_image_window_has_toolbox -gimp_image_window_is_iconified -gimp_image_window_keep_canvas_pos -gimp_image_window_new -gimp_image_window_remove_shell -gimp_image_window_set_active_shell -gimp_image_window_set_fullscreen -gimp_image_window_set_show_menubar -gimp_image_window_set_show_statusbar -gimp_image_window_shrink_wrap - -GIMP_IMAGE_WINDOW -GIMP_IMAGE_WINDOW_CLASS -GIMP_IMAGE_WINDOW_GET_CLASS -GIMP_IS_IMAGE_WINDOW -GIMP_IS_IMAGE_WINDOW_CLASS -GIMP_TYPE_IMAGE_WINDOW -gimp_image_window_get_type -
- -
-gimpdisplayshell -GimpDisplayShell -PROJ_ROUND -PROJ_ROUND64 -SCALEX -SCALEY -UNSCALEX -UNSCALEY -FUNSCALEX -FUNSCALEY -GimpDisplayShell -gimp_display_shell_new -gimp_display_shell_add_overlay -gimp_display_shell_move_overlay -gimp_display_shell_get_window -gimp_display_shell_get_statusbar -gimp_display_shell_present -gimp_display_shell_reconnect -gimp_display_shell_empty -gimp_display_shell_fill -gimp_display_shell_scale_changed -gimp_display_shell_scaled -gimp_display_shell_scrolled -gimp_display_shell_get_unit -gimp_display_shell_set_unit -gimp_display_shell_snap_coords -gimp_display_shell_mask_bounds -gimp_display_shell_flush -gimp_display_shell_pause -gimp_display_shell_resume -gimp_display_shell_set_highlight -gimp_display_shell_set_mask - -GimpDisplayShellClass -GIMP_DISPLAY_SHELL -GIMP_IS_DISPLAY_SHELL -GIMP_TYPE_DISPLAY_SHELL -gimp_display_shell_get_type -GIMP_DISPLAY_SHELL_CLASS -GIMP_IS_DISPLAY_SHELL_CLASS -GIMP_DISPLAY_SHELL_GET_CLASS -
- -
-gimpdisplayshell-appearance -GimpDisplayShell-appearance -gimp_display_shell_appearance_update -gimp_display_shell_set_show_selection -gimp_display_shell_get_show_selection -gimp_display_shell_set_show_layer -gimp_display_shell_get_show_layer -gimp_display_shell_set_show_grid -gimp_display_shell_get_show_grid -gimp_display_shell_set_show_guides -gimp_display_shell_get_show_guides -gimp_display_shell_set_snap_to_grid -gimp_display_shell_get_snap_to_grid -gimp_display_shell_set_snap_to_guides -gimp_display_shell_get_snap_to_guides -gimp_display_shell_get_snap_to_canvas -gimp_display_shell_set_snap_to_canvas -gimp_display_shell_get_snap_to_vectors -gimp_display_shell_set_snap_to_vectors -gimp_display_shell_set_show_menubar -gimp_display_shell_get_show_menubar -gimp_display_shell_set_show_rulers -gimp_display_shell_get_show_rulers -gimp_display_shell_set_show_sample_points -gimp_display_shell_get_show_sample_points -gimp_display_shell_set_show_scrollbars -gimp_display_shell_get_show_scrollbars -gimp_display_shell_set_show_statusbar -gimp_display_shell_get_show_statusbar -gimp_display_shell_set_padding -gimp_display_shell_get_padding -
- -
-gimpdisplayshell-callbacks -GimpDisplayShell-callbacks -gimp_display_shell_canvas_realize -gimp_display_shell_canvas_size_allocate -gimp_display_shell_canvas_expose -gimp_display_shell_canvas_expose_after -gimp_display_shell_navigation_button_press -gimp_display_shell_origin_button_press -gimp_display_shell_quick_mask_button_press -gimp_display_shell_quick_mask_toggled -
- -
-gimpdisplayshell-tool-events -GimpDisplayShell-tool-events -gimp_display_shell_events -gimp_display_shell_canvas_tool_events -gimp_display_shell_buffer_hover -gimp_display_shell_buffer_stroke -gimp_display_shell_hruler_button_press -gimp_display_shell_vruler_button_press -
- -
-gimpdisplayshell-close -GimpDisplayShell-close -gimp_display_shell_close -
- -
-gimpdisplayshell-cursor -GimpDisplayShell-cursor -gimp_display_shell_set_cursor -gimp_display_shell_unset_cursor -gimp_display_shell_set_override_cursor -gimp_display_shell_unset_override_cursor -gimp_display_shell_update_software_cursor -gimp_display_shell_clear_software_cursor -
- -
-gimpdisplayshell-dnd -GimpDisplayShell-dnd -gimp_display_shell_dnd_init -
- -
-gimpdisplayshell-draw -GimpDisplayShell-draw -gimp_display_shell_draw_checkerboard -gimp_display_shell_draw_get_scaled_image_size -gimp_display_shell_draw_get_scaled_image_size_for_scale -gimp_display_shell_draw_image -gimp_display_shell_draw_selection_in -gimp_display_shell_draw_selection_out -
- -
-gimpdisplayshell-expose -GimpDisplayShell-expose -gimp_display_shell_expose_area -gimp_display_shell_expose_full -gimp_display_shell_expose_region -
- -
-gimpdisplayshell-filter-dialog -GimpDisplayShell-filter-dialog -gimp_display_shell_filter_dialog_new -
- -
-gimpdisplayshell-filter -GimpDisplayShell-filter -gimp_display_shell_filter_new -gimp_display_shell_filter_set -
- -
-gimpdisplayshell-grab -gimp_display_shell_keyboard_grab -gimp_display_shell_keyboard_ungrab -gimp_display_shell_pointer_grab -gimp_display_shell_pointer_ungrab -
- -
-gimpdisplayshell-handlers -GimpDisplayShell-handlers -gimp_display_shell_connect -gimp_display_shell_disconnect -
- -
-gimpdisplayshell-icon -GimpDisplayShell-icon -gimp_display_shell_icon_update -gimp_display_shell_icon_update_stop -
- -
-gimpdisplayshell-items -GimpDisplayShell-items -gimp_display_shell_add_item -gimp_display_shell_add_preview_item -gimp_display_shell_add_tool_item -gimp_display_shell_items_free -gimp_display_shell_items_init -gimp_display_shell_remove_item -gimp_display_shell_remove_preview_item -gimp_display_shell_remove_tool_item -
- -
-gimpdisplayshell-layer-select -GimpDisplayShell-layer-select -gimp_display_shell_layer_select_init -
- -
-gimpdisplayshell-render -GimpDisplayShell-render -GIMP_DISPLAY_RENDER_BUF_WIDTH -GIMP_DISPLAY_RENDER_BUF_HEIGHT -gimp_display_shell_render -
- -
-gimpdisplayshell-scale -GimpDisplayShell-scale -gimp_display_shell_update_scrollbars_and_rulers -gimp_display_shell_scale_update_scrollbars -gimp_display_shell_scale_update_rulers -gimp_display_shell_scale_revert -gimp_display_shell_scale_can_revert -gimp_display_shell_scale_set_dot_for_dot -gimp_display_shell_get_screen_resolution -gimp_display_shell_scale -gimp_display_shell_scale_fit_in -gimp_display_shell_scale_image_is_within_viewport -gimp_display_shell_scale_fill -gimp_display_shell_scale_handle_zoom_revert -gimp_display_shell_scale_by_values -gimp_display_shell_scale_shrink_wrap -gimp_display_shell_scale_resize -gimp_display_shell_calculate_scale_x_and_y -gimp_display_shell_set_initial_scale -gimp_display_shell_push_zoom_focus_pointer_pos -
- -
-gimpdisplayshell-scale-dialog -gimp_display_shell_scale_dialog -
- -
-gimpdisplayshell-scroll -GimpDisplayShell-scroll -gimp_display_shell_scroll_center_image_coordinate -gimp_display_shell_scroll -gimp_display_shell_scroll_set_offset -gimp_display_shell_scroll_clamp_offsets -gimp_display_shell_scroll_clamp_and_update -gimp_display_shell_scroll_unoverscrollify -gimp_display_shell_scroll_center_image -gimp_display_shell_scroll_center_image_on_next_size_allocate -gimp_display_shell_scroll_get_scaled_viewport -gimp_display_shell_scroll_get_viewport -gimp_display_shell_scroll_get_disp_offset -gimp_display_shell_scroll_get_render_start_offset -gimp_display_shell_scroll_setup_hscrollbar -gimp_display_shell_scroll_setup_vscrollbar -
- -
-gimpdisplayshell-autoscroll -GimpDisplayShell-autoscroll -gimp_display_shell_autoscroll_start -gimp_display_shell_autoscroll_stop -
- -
-gimpdisplayshell-selection -GimpDisplayShell-selection -Selection -gimp_display_shell_selection_init -gimp_display_shell_selection_free -gimp_display_shell_selection_pause -gimp_display_shell_selection_resume -gimp_display_shell_selection_restart -gimp_display_shell_selection_set_show -gimp_display_shell_selection_undraw -
- -
-gimpdisplayshell-style -GimpDisplayShell-style -gimp_display_shell_set_grid_style -gimp_display_shell_set_guide_style -gimp_display_shell_set_layer_style -gimp_display_shell_set_outline_bg_style -gimp_display_shell_set_outline_fg_style -gimp_display_shell_set_passe_partout_style -gimp_display_shell_set_pen_style -gimp_display_shell_set_sample_point_style -gimp_display_shell_set_selection_in_style -gimp_display_shell_set_selection_out_style -gimp_display_shell_set_tool_bg_style -gimp_display_shell_set_tool_fg_style -gimp_display_shell_set_vectors_bg_style -gimp_display_shell_set_vectors_fg_style -
- -
-gimpdisplayshell-title -GimpDisplayShell-title -gimp_display_shell_title_update -
- -
-gimpdisplayshell-progress -GimpDisplayShell-progress -gimp_display_shell_progress_iface_init -
- -
-gimpdisplayshell-transform -GimpDisplayShell-transform -gimp_display_shell_transform_coords -gimp_display_shell_untransform_coords -gimp_display_shell_transform_xy -gimp_display_shell_untransform_xy -gimp_display_shell_transform_xy_f -gimp_display_shell_untransform_xy_f -gimp_display_shell_transform_segments -gimp_display_shell_transform_coords -gimp_display_shell_untransform_viewport -
- -
-gimpmotionbuffer -GimpMotionBuffer -GimpMotionBuffer -GimpMotionBufferClass -gimp_motion_buffer_new -gimp_motion_buffer_begin_stroke -gimp_motion_buffer_end_stroke -gimp_motion_buffer_motion_event -gimp_motion_buffer_get_last_motion_time -gimp_motion_buffer_request_stroke -gimp_motion_buffer_request_hover - -GIMP_IS_MOTION_BUFFER -GIMP_IS_MOTION_BUFFER_CLASS -GIMP_MOTION_BUFFER -GIMP_MOTION_BUFFER_CLASS -GIMP_MOTION_BUFFER_GET_CLASS -GIMP_TYPE_MOTION_BUFFER -gimp_motion_buffer_get_type -
- -
-gimpnavigationeditor -GimpNavigationEditor -GimpNavigationEditor -gimp_navigation_editor_new -gimp_navigation_editor_popup - -GimpNavigationEditorClass -GIMP_NAVIGATION_EDITOR -GIMP_IS_NAVIGATION_EDITOR -GIMP_TYPE_NAVIGATION_EDITOR -gimp_navigation_editor_get_type -GIMP_NAVIGATION_EDITOR_CLASS -GIMP_IS_NAVIGATION_EDITOR_CLASS -GIMP_NAVIGATION_EDITOR_GET_CLASS -
- -
-gimpstatusbar -CURSOR_FORMAT_LENGTH -GimpStatusbar -GimpStatusbar -gimp_statusbar_new -gimp_statusbar_set_shell -gimp_statusbar_get_visible -gimp_statusbar_set_visible -gimp_statusbar_empty -gimp_statusbar_fill -gimp_statusbar_override_window_title -gimp_statusbar_restore_window_title -gimp_statusbar_push -gimp_statusbar_push_valist -gimp_statusbar_push_coords -gimp_statusbar_push_length -gimp_statusbar_replace -gimp_statusbar_replace_valist -gimp_statusbar_peek -gimp_statusbar_pop -gimp_statusbar_push_temp -gimp_statusbar_push_temp_valist -gimp_statusbar_pop_temp -gimp_statusbar_update_cursor -gimp_statusbar_clear_cursor - -GimpStatusbarClass -GIMP_STATUSBAR -GIMP_IS_STATUSBAR -GIMP_TYPE_STATUSBAR -gimp_statusbar_get_type -GIMP_STATUSBAR_CLASS -GIMP_IS_STATUSBAR_CLASS -GIMP_STATUSBAR_GET_CLASS -
- -
-gimpmultiwindowstrategy -GimpMultiWindowStrategy -GimpMultiWindowStrategy -GimpMultiWindowStrategyClass -gimp_multi_window_strategy_get_singleton - -GIMP_IS_MULTI_WINDOW_STRATEGY -GIMP_IS_MULTI_WINDOW_STRATEGY_CLASS -GIMP_MULTI_WINDOW_STRATEGY -GIMP_MULTI_WINDOW_STRATEGY_CLASS -GIMP_MULTI_WINDOW_STRATEGY_GET_CLASS -GIMP_TYPE_MULTI_WINDOW_STRATEGY -gimp_multi_window_strategy_get_type -
- -
-gimpsinglewindowstrategy -GimpSingleWindowStrategy -GimpSingleWindowStrategy -GimpSingleWindowStrategyClass -gimp_single_window_strategy_get_singleton - -GIMP_IS_SINGLE_WINDOW_STRATEGY -GIMP_IS_SINGLE_WINDOW_STRATEGY_CLASS -GIMP_SINGLE_WINDOW_STRATEGY -GIMP_SINGLE_WINDOW_STRATEGY_CLASS -GIMP_SINGLE_WINDOW_STRATEGY_GET_CLASS -GIMP_TYPE_SINGLE_WINDOW_STRATEGY -gimp_single_window_strategy_get_type -
- -
-gimpairbrush -GimpAirbrush -GimpAirbrush -gimp_airbrush_register - -GimpAirbrushClass -GIMP_AIRBRUSH -GIMP_IS_AIRBRUSH -GIMP_TYPE_AIRBRUSH -gimp_airbrush_get_type -GIMP_AIRBRUSH_CLASS -GIMP_IS_AIRBRUSH_CLASS -GIMP_AIRBRUSH_GET_CLASS -
- -
-gimpairbrushoptions -GimpAirbrushOptions -GimpAirbrushOptions - -GimpAirbrushOptionsClass -GIMP_AIRBRUSH_OPTIONS -GIMP_IS_AIRBRUSH_OPTIONS -GIMP_TYPE_AIRBRUSH_OPTIONS -gimp_airbrush_options_get_type -GIMP_AIRBRUSH_OPTIONS_CLASS -GIMP_IS_AIRBRUSH_OPTIONS_CLASS -GIMP_AIRBRUSH_OPTIONS_GET_CLASS -
- -
-gimpclone -GimpClone -GimpClone -gimp_clone_register - -GimpCloneClass -GIMP_CLONE -GIMP_IS_CLONE -GIMP_TYPE_CLONE -gimp_clone_get_type -GIMP_CLONE_CLASS -GIMP_IS_CLONE_CLASS -GIMP_CLONE_GET_CLASS -
- -
-gimpcloneoptions -GimpCloneOptions -GimpCloneOptions - -GimpCloneOptionsClass -GIMP_CLONE_OPTIONS -GIMP_IS_CLONE_OPTIONS -GIMP_TYPE_CLONE_OPTIONS -gimp_clone_options_get_type -GIMP_CLONE_OPTIONS_CLASS -GIMP_IS_CLONE_OPTIONS_CLASS -GIMP_CLONE_OPTIONS_GET_CLASS -
- -
-gimpconvolve -GimpConvolve -GimpConvolve -gimp_convolve_register - -GimpConvolveClass -GIMP_CONVOLVE -GIMP_IS_CONVOLVE -GIMP_TYPE_CONVOLVE -gimp_convolve_get_type -GIMP_CONVOLVE_CLASS -GIMP_IS_CONVOLVE_CLASS -GIMP_CONVOLVE_GET_CLASS -
- -
-gimpconvolveoptions -GimpConvolveOptions -GimpConvolveOptions - -GimpConvolveOptionsClass -GIMP_CONVOLVE_OPTIONS -GIMP_IS_CONVOLVE_OPTIONS -GIMP_TYPE_CONVOLVE_OPTIONS -gimp_convolve_options_get_type -GIMP_CONVOLVE_OPTIONS_CLASS -GIMP_IS_CONVOLVE_OPTIONS_CLASS -GIMP_CONVOLVE_OPTIONS_GET_CLASS -
- -
-gimpdodgeburn -GimpDodgeBurn -GimpDodgeBurn -gimp_dodge_burn_register - -GimpDodgeBurnClass -GIMP_DODGE_BURN -GIMP_IS_DODGE_BURN -GIMP_TYPE_DODGE_BURN -gimp_dodge_burn_get_type -GIMP_DODGE_BURN_CLASS -GIMP_IS_DODGE_BURN_CLASS -
- -
-gimpdodgeburnoptions -GimpDodgeBurnOptions -GimpDodgeBurnOptions - -GimpDodgeBurnOptionsClass -GIMP_DODGE_BURN_OPTIONS -GIMP_IS_DODGE_BURN_OPTIONS -GIMP_TYPE_DODGE_BURN_OPTIONS -gimp_dodge_burn_options_get_type -GIMP_DODGE_BURN_OPTIONS_CLASS -GIMP_IS_DODGE_BURN_OPTIONS_CLASS -GIMP_DODGE_BURN_OPTIONS_GET_CLASS -
- -
-gimperaser -GimpEraser -GimpEraser -gimp_eraser_register - -GimpEraserClass -GIMP_ERASER -GIMP_IS_ERASER -GIMP_TYPE_ERASER -gimp_eraser_get_type -GIMP_ERASER_CLASS -GIMP_IS_ERASER_CLASS -GIMP_ERASER_GET_CLASS -
- -
-gimperaseroptions -GimpEraserOptions -GimpEraserOptions - -GimpEraserOptionsClass -GIMP_ERASER_OPTIONS -GIMP_IS_ERASER_OPTIONS -GIMP_TYPE_ERASER_OPTIONS -gimp_eraser_options_get_type -GIMP_ERASER_OPTIONS_CLASS -GIMP_IS_ERASER_OPTIONS_CLASS -GIMP_ERASER_OPTIONS_GET_CLASS -
- -
-gimppaintbrush -GimpPaintbrush -GimpPaintbrush -gimp_paintbrush_register - -GimpPaintbrushClass -GIMP_PAINTBRUSH -GIMP_IS_PAINTBRUSH -GIMP_TYPE_PAINTBRUSH -gimp_paintbrush_get_type -GIMP_PAINTBRUSH_CLASS -GIMP_IS_PAINTBRUSH_CLASS -GIMP_PAINTBRUSH_GET_CLASS -
- -
-gimppaintcore -GimpPaintCore -GimpPaintCore -GimpPaintCoreClass -gimp_paint_core_paint -gimp_paint_core_start -gimp_paint_core_finish -gimp_paint_core_cancel -gimp_paint_core_cleanup -gimp_paint_core_interpolate -gimp_paint_core_set_current_coords -gimp_paint_core_get_current_coords -gimp_paint_core_set_last_coords -gimp_paint_core_get_last_coords -gimp_paint_core_round_line -gimp_paint_core_get_paint_area -gimp_paint_core_get_orig_image -gimp_paint_core_get_orig_proj -gimp_paint_core_paste -gimp_paint_core_replace -gimp_paint_core_validate_undo_tiles -gimp_paint_core_validate_canvas_tiles -gimp_paint_core_validate_saved_proj_tiles -gimp_paint_core_smooth_coords - -GIMP_PAINT_CORE -GIMP_IS_PAINT_CORE -GIMP_TYPE_PAINT_CORE -gimp_paint_core_get_type -GIMP_PAINT_CORE_CLASS -GIMP_IS_PAINT_CORE_CLASS -GIMP_PAINT_CORE_GET_CLASS -
- -
-gimppaintcore-stroke -GimpPaintCore-stroke -gimp_paint_core_stroke -gimp_paint_core_stroke_boundary -gimp_paint_core_stroke_vectors -
- -
-gimppaintcoreundo -GimpPaintCoreUndo -GimpPaintCoreUndo - -GimpPaintCoreUndoClass -GIMP_PAINT_CORE_UNDO -GIMP_IS_PAINT_CORE_UNDO -GIMP_TYPE_PAINT_CORE_UNDO -gimp_paint_core_undo_get_type -GIMP_PAINT_CORE_UNDO_CLASS -GIMP_IS_PAINT_CORE_UNDO_CLASS -GIMP_PAINT_CORE_UNDO_GET_CLASS -
- -
-gimpbrushcore -GimpBrushCore -BRUSH_CORE_SUBSAMPLE -BRUSH_CORE_SOLID_SUBSAMPLE -BRUSH_CORE_JITTER_LUTSIZE -GimpBrushCore -gimp_brush_core_set_brush -gimp_brush_core_set_dynamics -gimp_brush_core_paste_canvas -gimp_brush_core_replace_canvas -gimp_brush_core_color_area_with_pixmap -gimp_brush_core_get_brush_mask -gimp_brush_core_eval_transform_dynamics - -GimpBrushCoreClass -GIMP_BRUSH_CORE -GIMP_IS_BRUSH_CORE -GIMP_TYPE_BRUSH_CORE -gimp_brush_core_get_type -GIMP_BRUSH_CORE_CLASS -GIMP_IS_BRUSH_CORE_CLASS -GIMP_BRUSH_CORE_GET_CLASS -
- -
-gimpbrushcore-kernels -GimpBrushCore-kernels -KERNEL_WIDTH -KERNEL_HEIGHT -KERNEL_SUBSAMPLE -KERNEL_SUM -
- -
-gimpsourcecore -GimpSourceCore -GimpSourceCore -gimp_source_core_motion - -GimpSourceCoreClass -GIMP_SOURCE_CORE -GIMP_IS_SOURCE_CORE -GIMP_TYPE_SOURCE_CORE -gimp_source_core_get_type -GIMP_SOURCE_CORE_CLASS -GIMP_IS_SOURCE_CORE_CLASS -GIMP_SOURCE_CORE_GET_CLASS -
- -
-gimpheal -GimpHeal -GimpHeal -gimp_heal_register - -GimpHealClass -GIMP_HEAL -GIMP_IS_HEAL -GIMP_TYPE_HEAL -gimp_heal_get_type -GIMP_HEAL_CLASS -GIMP_IS_HEAL_CLASS -GIMP_HEAL_GET_CLASS -
- -
-gimpink -GimpInk -GimpInk -gimp_ink_register - -GimpInkClass -GIMP_INK -GIMP_IS_INK -GIMP_TYPE_INK -gimp_ink_get_type -GIMP_INK_CLASS -GIMP_IS_INK_CLASS -GIMP_INK_GET_CLASS -
- -
-gimpinkundo -GimpInkUndo -GimpInkUndo - -GimpInkUndoClass -GIMP_INK_UNDO -GIMP_IS_INK_UNDO -GIMP_TYPE_INK_UNDO -gimp_ink_undo_get_type -GIMP_INK_UNDO_CLASS -GIMP_IS_INK_UNDO_CLASS -GIMP_INK_UNDO_GET_CLASS -
- -
-gimpink-blob -GimpInk-blob -GimpBlobPoint -GimpBlobSpan -GimpBlob -GimpBlobFunc -gimp_blob_polygon -gimp_blob_square -gimp_blob_diamond -gimp_blob_ellipse -gimp_blob_bounds -gimp_blob_convex_union -gimp_blob_duplicate -
- -
-gimpinkoptions -GimpInkOptions -GimpInkOptions - -GimpInkOptionsClass -GIMP_INK_OPTIONS -GIMP_IS_INK_OPTIONS -GIMP_TYPE_INK_OPTIONS -gimp_ink_options_get_type -GIMP_INK_OPTIONS_CLASS -GIMP_IS_INK_OPTIONS_CLASS -GIMP_INK_OPTIONS_GET_CLASS -
- -
-gimppaintoptions -GimpPaintOptions -GIMP_PAINT_OPTIONS_CONTEXT_MASK -GimpJitterOptions -GimpFadeOptions -GimpGradientOptions -GimpSmoothingOptions -GimpPaintOptions -gimp_paint_options_new -gimp_paint_options_get_fade -gimp_paint_options_get_jitter -gimp_paint_options_get_gradient_color -gimp_paint_options_get_brush_mode -gimp_paint_options_copy_brush_props -gimp_paint_options_copy_dynamics_props -gimp_paint_options_copy_gradient_props - -GimpPaintOptionsClass -GIMP_PAINT_OPTIONS -GIMP_IS_PAINT_OPTIONS -GIMP_TYPE_PAINT_OPTIONS -gimp_paint_options_get_type -GIMP_PAINT_OPTIONS_CLASS -GIMP_IS_PAINT_OPTIONS_CLASS -GIMP_PAINT_OPTIONS_GET_CLASS -
- -
-gimpsourceoptions -GimpSourceOptions -GimpSourceOptions - -GimpSourceOptionsClass -GIMP_SOURCE_OPTIONS -GIMP_IS_SOURCE_OPTIONS -GIMP_TYPE_SOURCE_OPTIONS -gimp_source_options_get_type -GIMP_SOURCE_OPTIONS_CLASS -GIMP_IS_SOURCE_OPTIONS_CLASS -GIMP_SOURCE_OPTIONS_GET_CLASS -
- -
-gimppencil -GimpPencil -GimpPencil -gimp_pencil_register - -GimpPencilClass -GIMP_PENCIL -GIMP_IS_PENCIL -GIMP_TYPE_PENCIL -gimp_pencil_get_type -GIMP_PENCIL_CLASS -GIMP_IS_PENCIL_CLASS -GIMP_PENCIL_GET_CLASS -
- -
-gimppenciloptions -GimpPencilOptions -GimpPencilOptions - -GimpPencilOptionsClass -GIMP_PENCIL_OPTIONS -GIMP_IS_PENCIL_OPTIONS -GIMP_TYPE_PENCIL_OPTIONS -gimp_pencil_options_get_type -GIMP_PENCIL_OPTIONS_CLASS -GIMP_IS_PENCIL_OPTIONS_CLASS -GIMP_PENCIL_OPTIONS_GET_CLASS -
- -
-gimpperspectiveclone -GimpPerspectiveClone -GimpPerspectiveClone -gimp_perspective_clone_register -gimp_perspective_clone_set_transform -gimp_perspective_clone_get_source_point - -GimpPerspectiveCloneClass -GIMP_PERSPECTIVE_CLONE -GIMP_IS_PERSPECTIVE_CLONE -GIMP_TYPE_PERSPECTIVE_CLONE -gimp_perspective_clone_get_type -GIMP_PERSPECTIVE_CLONE_CLASS -GIMP_IS_PERSPECTIVE_CLONE_CLASS -GIMP_PERSPECTIVE_CLONE_GET_CLASS -
- -
-gimpperspectivecloneoptions -GimpPerspectiveCloneOptions -GimpPerspectiveCloneOptions - -GimpPerspectiveCloneOptionsClass -GIMP_PERSPECTIVE_CLONE_OPTIONS -GIMP_IS_PERSPECTIVE_CLONE_OPTIONS -GIMP_TYPE_PERSPECTIVE_CLONE_OPTIONS -gimp_perspective_clone_options_get_type -GIMP_PERSPECTIVE_CLONE_OPTIONS_CLASS -GIMP_IS_PERSPECTIVE_CLONE_OPTIONS_CLASS -GIMP_PERSPECTIVE_CLONE_OPTIONS_GET_CLASS -
- -
-gimpsmudge -GimpSmudge -GimpSmudge -gimp_smudge_register - -GimpSmudgeClass -GIMP_SMUDGE -GIMP_IS_SMUDGE -GIMP_TYPE_SMUDGE -gimp_smudge_get_type -GIMP_SMUDGE_CLASS -GIMP_IS_SMUDGE_CLASS -GIMP_SMUDGE_GET_CLASS -
- -
-gimpsmudgeoptions -GimpSmudgeOptions -GimpSmudgeOptions - -GimpSmudgeOptionsClass -GIMP_SMUDGE_OPTIONS -GIMP_IS_SMUDGE_OPTIONS -GIMP_TYPE_SMUDGE_OPTIONS -gimp_smudge_options_get_type -GIMP_SMUDGE_OPTIONS_CLASS -GIMP_IS_SMUDGE_OPTIONS_CLASS -GIMP_SMUDGE_OPTIONS_GET_CLASS -
- -
-gimp-fonts -Gimp-fonts -gimp_fonts_init -gimp_fonts_load -gimp_fonts_reset -
- -
-gimpfilteredcontainer -GimpFilteredContainer -GimpFilteredContainer -gimp_filtered_container_new - -GimpFilteredContainerClass -GIMP_FILTERED_CONTAINER -GIMP_IS_FILTERED_CONTAINER -GIMP_TYPE_FILTERED_CONTAINER -gimp_filtered_container_get_type -GIMP_FILTERED_CONTAINER_CLASS -GIMP_IS_FILTERED_CONTAINER_CLASS -GIMP_FILTERED_CONTAINER_GET_CLASS -
- -
-gimptaggedcontainer -GimpTaggedContainer -GimpTaggedContainer -GimpTaggedContainerClass -gimp_tagged_container_get_filter -gimp_tagged_container_get_tag_count -gimp_tagged_container_new -gimp_tagged_container_set_filter - -GIMP_IS_TAGGED_CONTAINER -GIMP_IS_TAGGED_CONTAINER_CLASS -GIMP_TAGGED_CONTAINER -GIMP_TAGGED_CONTAINER_CLASS -GIMP_TAGGED_CONTAINER_GET_CLASS -GIMP_TYPE_TAGGED_CONTAINER -gimp_tagged_container_get_type -
- -
-gimpfont -GimpFont -GimpFont -gimp_font_get_standard - -GimpFontClass -GIMP_FONT -GIMP_IS_FONT -GIMP_TYPE_FONT -gimp_font_get_type -GIMP_FONT_CLASS -GIMP_IS_FONT_CLASS -GIMP_FONT_GET_CLASS -
- -
-gimpfontlist -GimpFontList -GimpFontList -gimp_font_list_new -gimp_font_list_restore - -GimpFontListClass -GIMP_FONT_LIST -GIMP_IS_FONT_LIST -GIMP_TYPE_FONT_LIST -gimp_font_list_get_type -GIMP_FONT_LIST_CLASS -GIMP_IS_FONT_LIST_CLASS -GIMP_FONT_LIST_GET_CLASS -
- -
-gimptext -GimpText -GimpText -gimp_text_get_transformation - -GimpTextClass -GIMP_TEXT -GIMP_IS_TEXT -GIMP_TYPE_TEXT -gimp_text_get_type -GIMP_TEXT_CLASS -GIMP_IS_TEXT_CLASS -GIMP_TEXT_GET_CLASS -
- -
-gimptext-compat -GimpText-compat -text_render -text_get_extents -
- -
-gimptext-parasite -GimpText-parasite -gimp_text_parasite_name -gimp_text_to_parasite -gimp_text_from_parasite -gimp_text_gdyntext_parasite_name -gimp_text_from_gdyntext_parasite -
- -
-gimptext-vectors -GimpText-vectors -gimp_text_vectors_new -
- -
-gimptext-xlfd -GimpText-xlfd -gimp_text_font_name_from_xlfd -gimp_text_font_size_from_xlfd -gimp_text_set_font_from_xlfd -
- -
-gimptextlayer -GimpTextLayer -GimpTextLayer -gimp_text_layer_new -gimp_text_layer_set_text -gimp_text_layer_get_text -gimp_text_layer_discard -gimp_text_layer_set -gimp_item_is_text_layer - -GimpTextLayerClass -GIMP_TEXT_LAYER -GIMP_IS_TEXT_LAYER -GIMP_TYPE_TEXT_LAYER -gimp_text_layer_get_type -GIMP_TEXT_LAYER_CLASS -GIMP_IS_TEXT_LAYER_CLASS -GIMP_TEXT_LAYER_GET_CLASS -
- -
-gimptextlayer-transform -GimpTextLayer-transform -gimp_text_layer_scale -gimp_text_layer_flip -gimp_text_layer_rotate -gimp_text_layer_transform -
- -
-gimptextlayer-xcf -GimpTextLayer-xcf -gimp_text_layer_xcf_load_hack -gimp_text_layer_xcf_save_prepare -gimp_text_layer_get_xcf_flags -gimp_text_layer_set_xcf_flags -
- -
-gimptextlayout -GimpTextLayout -GimpTextLayout -gimp_text_layout_new -gimp_text_layout_get_size -gimp_text_layout_get_offsets -gimp_text_layout_get_resolution -gimp_text_layout_get_text -gimp_text_layout_get_pango_layout -gimp_text_layout_get_transform -gimp_text_layout_transform_rect -gimp_text_layout_transform_point -gimp_text_layout_transform_distance -gimp_text_layout_untransform_rect -gimp_text_layout_untransform_point -gimp_text_layout_untransform_distance - -GimpTextLayoutClass -GIMP_TEXT_LAYOUT -GIMP_IS_TEXT_LAYOUT -GIMP_TYPE_TEXT_LAYOUT -gimp_text_layout_get_type -
- -
-gimptextlayout-render -GimpTextLayout-render -gimp_text_layout_render -
- -
-gimptextundo -GimpTextUndo -GimpTextUndo - -GimpTextUndoClass -GIMP_TEXT_UNDO -GIMP_IS_TEXT_UNDO -GIMP_TYPE_TEXT_UNDO -gimp_text_undo_get_type -GIMP_TEXT_UNDO_CLASS -GIMP_IS_TEXT_UNDO_CLASS -GIMP_TEXT_UNDO_GET_CLASS -
- -
-gimpairbrushtool -GimpAirbrushTool -GimpAirbrushTool -gimp_airbrush_tool_register - -GimpAirbrushToolClass -GIMP_AIRBRUSH_TOOL -GIMP_IS_AIRBRUSH_TOOL -GIMP_TYPE_AIRBRUSH_TOOL -gimp_airbrush_tool_get_type -GIMP_AIRBRUSH_TOOL_CLASS -GIMP_IS_AIRBRUSH_TOOL_CLASS -GIMP_AIRBRUSH_TOOL_GET_CLASS -
- -
-gimpalignoptions -GimpAlignOptions -ALIGN_OPTIONS_N_BUTTONS -GimpAlignOptions -gimp_align_options_gui - -GimpAlignOptionsClass -GIMP_ALIGN_OPTIONS -GIMP_IS_ALIGN_OPTIONS -GIMP_TYPE_ALIGN_OPTIONS -gimp_align_options_get_type -GIMP_ALIGN_OPTIONS_CLASS -GIMP_IS_ALIGN_OPTIONS_CLASS -GIMP_ALIGN_OPTIONS_GET_CLASS -
- -
-gimpaligntool -GimpAlignTool -GimpAlignTool -GimpAlignToolFunction -gimp_align_tool_register -GIMP_ALIGN_TOOL_GET_OPTIONS - -GimpAlignToolClass -GIMP_ALIGN_TOOL -GIMP_IS_ALIGN_TOOL -GIMP_TYPE_ALIGN_TOOL -gimp_align_tool_get_type -GIMP_ALIGN_TOOL_CLASS -GIMP_IS_ALIGN_TOOL_CLASS -GIMP_ALIGN_TOOL_GET_CLASS -
- -
-gimpblendoptions -GimpBlendOptions -GimpBlendOptions -gimp_blend_options_gui - -GimpBlendOptionsClass -GIMP_BLEND_OPTIONS -GIMP_IS_BLEND_OPTIONS -GIMP_TYPE_BLEND_OPTIONS -gimp_blend_options_get_type -GIMP_BLEND_OPTIONS_CLASS -GIMP_IS_BLEND_OPTIONS_CLASS -GIMP_BLEND_OPTIONS_GET_CLASS -
- -
-gimpblendtool -GimpBlendTool -GimpBlendTool -gimp_blend_tool_register -GIMP_BLEND_TOOL_GET_OPTIONS - -GimpBlendToolClass -GIMP_BLEND_TOOL -GIMP_IS_BLEND_TOOL -GIMP_TYPE_BLEND_TOOL -gimp_blend_tool_get_type -GIMP_BLEND_TOOL_CLASS -GIMP_IS_BLEND_TOOL_CLASS -GIMP_BLEND_TOOL_GET_CLASS -
- -
-gimpbrushtool -GimpBrushTool -GimpBrushTool -gimp_brush_tool_create_outline - -GimpBrushToolClass -GIMP_BRUSH_TOOL -GIMP_IS_BRUSH_TOOL -GIMP_TYPE_BRUSH_TOOL -gimp_brush_tool_get_type -GIMP_BRUSH_TOOL_CLASS -GIMP_IS_BRUSH_TOOL_CLASS -GIMP_BRUSH_TOOL_GET_CLASS -
- -
-gimpbrightnesscontrasttool -GimpBrightnessContrastTool -GimpBrightnessContrastTool -gimp_brightness_contrast_tool_register - -GimpBrightnessContrastToolClass -GIMP_BRIGHTNESS_CONTRAST_TOOL -GIMP_IS_BRIGHTNESS_CONTRAST_TOOL -GIMP_TYPE_BRIGHTNESS_CONTRAST_TOOL -gimp_brightness_contrast_tool_get_type -GIMP_BRIGHTNESS_CONTRAST_TOOL_CLASS -GIMP_IS_BRIGHTNESS_CONTRAST_TOOL_CLASS -GIMP_BRIGHTNESS_CONTRAST_TOOL_GET_CLASS -
- -
-gimpbucketfilloptions -GimpBucketFillOptions -GimpBucketFillOptions -gimp_bucket_fill_options_gui - -GimpBucketFillOptionsClass -GIMP_BUCKET_FILL_OPTIONS -GIMP_IS_BUCKET_FILL_OPTIONS -GIMP_TYPE_BUCKET_FILL_OPTIONS -gimp_bucket_fill_options_get_type -GIMP_BUCKET_FILL_OPTIONS_CLASS -GIMP_IS_BUCKET_FILL_OPTIONS_CLASS -GIMP_BUCKET_FILL_OPTIONS_GET_CLASS -
- -
-gimpbucketfilltool -GimpBucketFillTool -GimpBucketFillTool -gimp_bucket_fill_tool_register -GIMP_BUCKET_FILL_TOOL_GET_OPTIONS - -GimpBucketFillToolClass -GIMP_BUCKET_FILL_TOOL -GIMP_IS_BUCKET_FILL_TOOL -GIMP_TYPE_BUCKET_FILL_TOOL -gimp_bucket_fill_tool_get_type -GIMP_BUCKET_FILL_TOOL_CLASS -GIMP_IS_BUCKET_FILL_TOOL_CLASS -GIMP_BUCKET_FILL_TOOL_GET_CLASS -
- -
-gimpbycolorselecttool -GimpByColorSelectTool -GimpByColorSelectTool -gimp_by_color_select_tool_register - -GimpByColorSelectToolClass -GIMP_BY_COLOR_SELECT_TOOL -GIMP_IS_BY_COLOR_SELECT_TOOL -GIMP_TYPE_BY_COLOR_SELECT_TOOL -gimp_by_color_select_tool_get_type -GIMP_BY_COLOR_SELECT_TOOL_CLASS -GIMP_IS_BY_COLOR_SELECT_TOOL_CLASS -GIMP_BY_COLOR_SELECT_TOOL_GET_CLASS -
- -
-gimpcageoptions -GimpCageOptions -GimpCageOptions -GimpCageOptionsClass -gimp_cage_options_gui - -GIMP_CAGE_OPTIONS -GIMP_IS_CAGE_OPTIONS -GIMP_TYPE_CAGE_OPTIONS -gimp_cage_options_get_type -GIMP_CAGE_OPTIONS_CLASS -GIMP_IS_CAGE_OPTIONS_CLASS -GIMP_CAGE_OPTIONS_GET_CLASS -
- -
-gimpcagetool -GimpCageTool -GIMP_CAGE_TOOL_GET_OPTIONS -GimpCageTool -GimpCageToolClass -gimp_cage_tool_register - -GIMP_CAGE_TOOL -GIMP_IS_CAGE_TOOL -GIMP_TYPE_CAGE_TOOL -gimp_cage_tool_get_type -GIMP_CAGE_TOOL_CLASS -GIMP_IS_CAGE_TOOL_CLASS -GIMP_CAGE_TOOL_GET_CLASS -
- -
-gimpclonetool -GimpCloneTool -GimpCloneTool -gimp_clone_tool_register - -GimpCloneToolClass -GIMP_CLONE_TOOL -GIMP_IS_CLONE_TOOL -GIMP_TYPE_CLONE_TOOL -gimp_clone_tool_get_type -GIMP_CLONE_TOOL_CLASS -GIMP_IS_CLONE_TOOL_CLASS -GIMP_CLONE_TOOL_GET_CLASS -
- -
-gimpcolorbalancetool -GimpColorBalanceTool -GimpColorBalanceTool -gimp_color_balance_tool_register - -GimpColorBalanceToolClass -GIMP_COLOR_BALANCE_TOOL -GIMP_IS_COLOR_BALANCE_TOOL -GIMP_TYPE_COLOR_BALANCE_TOOL -gimp_color_balance_tool_get_type -GIMP_COLOR_BALANCE_TOOL_CLASS -GIMP_IS_COLOR_BALANCE_TOOL_CLASS -GIMP_COLOR_BALANCE_TOOL_GET_CLASS -
- -
-gimpcolorizetool -GimpColorizeTool -GimpColorizeTool -gimp_colorize_tool_register - -GimpColorizeToolClass -GIMP_COLORIZE_TOOL -GIMP_IS_COLORIZE_TOOL -GIMP_TYPE_COLORIZE_TOOL -gimp_colorize_tool_get_type -GIMP_COLORIZE_TOOL_CLASS -GIMP_IS_COLORIZE_TOOL_CLASS -GIMP_COLORIZE_TOOL_GET_CLASS -
- -
-gimpcoloroptions -GimpColorOptions -GimpColorOptions -gimp_color_options_gui - -GimpColorOptionsClass -GIMP_COLOR_OPTIONS -GIMP_IS_COLOR_OPTIONS -GIMP_TYPE_COLOR_OPTIONS -gimp_color_options_get_type -GIMP_COLOR_OPTIONS_CLASS -GIMP_IS_COLOR_OPTIONS_CLASS -GIMP_COLOR_OPTIONS_GET_CLASS -
- -
-gimpcolorpickeroptions -GimpColorPickerOptions -GimpColorPickerOptions -gimp_color_picker_options_gui - -GimpColorPickerOptionsClass -GIMP_COLOR_PICKER_OPTIONS -GIMP_IS_COLOR_PICKER_OPTIONS -GIMP_TYPE_COLOR_PICKER_OPTIONS -gimp_color_picker_options_get_type -GIMP_COLOR_PICKER_OPTIONS_CLASS -GIMP_IS_COLOR_PICKER_OPTIONS_CLASS -GIMP_COLOR_PICKER_OPTIONS_GET_CLASS -
- -
-gimpcolorpickertool -GimpColorPickerTool -GimpColorPickerTool -gimp_color_picker_tool_register -GIMP_COLOR_PICKER_TOOL_GET_OPTIONS - -GimpColorPickerToolClass -GIMP_COLOR_PICKER_TOOL -GIMP_IS_COLOR_PICKER_TOOL -GIMP_TYPE_COLOR_PICKER_TOOL -gimp_color_picker_tool_get_type -GIMP_COLOR_PICKER_TOOL_CLASS -GIMP_IS_COLOR_PICKER_TOOL_CLASS -GIMP_COLOR_PICKER_TOOL_GET_CLASS -
- -
-gimpcolortool -GimpColorTool -GimpColorTool -gimp_color_tool_enable -gimp_color_tool_disable -gimp_color_tool_is_enabled -gimp_color_tool_start_sample_point -GIMP_COLOR_TOOL_GET_OPTIONS - -GimpColorToolClass -GIMP_COLOR_TOOL -GIMP_IS_COLOR_TOOL -GIMP_TYPE_COLOR_TOOL -gimp_color_tool_get_type -GIMP_COLOR_TOOL_CLASS -GIMP_IS_COLOR_TOOL_CLASS -GIMP_COLOR_TOOL_GET_CLASS -
- -
-gimpconvolvetool -GimpConvolveTool -GimpConvolveTool -gimp_convolve_tool_register -GIMP_CONVOLVE_TOOL_GET_OPTIONS - -GimpConvolveToolClass -GIMP_CONVOLVE_TOOL -GIMP_IS_CONVOLVE_TOOL -GIMP_TYPE_CONVOLVE_TOOL -gimp_convolve_tool_get_type -GIMP_CONVOLVE_TOOL_CLASS -GIMP_IS_CONVOLVE_TOOL_CLASS -GIMP_CONVOLVE_TOOL_GET_CLASS -
- -
-gimpcropoptions -GimpCropOptions -GimpCropOptions -gimp_crop_options_gui - -GimpCropOptionsClass -GIMP_CROP_OPTIONS -GIMP_IS_CROP_OPTIONS -GIMP_TYPE_CROP_OPTIONS -gimp_crop_options_get_type -GIMP_CROP_OPTIONS_CLASS -GIMP_IS_CROP_OPTIONS_CLASS -GIMP_CROP_OPTIONS_GET_CLASS -
- -
-gimpcroptool -GimpCropTool -GimpCropTool -gimp_crop_tool_register -GIMP_CROP_TOOL_GET_OPTIONS - -GimpCropToolClass -GIMP_CROP_TOOL -GIMP_IS_CROP_TOOL -GIMP_TYPE_CROP_TOOL -gimp_crop_tool_get_type -GIMP_CROP_TOOL_CLASS -GIMP_IS_CROP_TOOL_CLASS -GIMP_CROP_TOOL_GET_CLASS -
- -
-gimpcurvestool -GimpCurvesTool -GimpCurvesTool -gimp_curves_tool_register - -GimpCurvesToolClass -GIMP_CURVES_TOOL -GIMP_IS_CURVES_TOOL -GIMP_TYPE_CURVES_TOOL -gimp_curves_tool_get_type -GIMP_CURVES_TOOL_CLASS -GIMP_IS_CURVES_TOOL_CLASS -
- -
-gimpdodgeburntool -GimpDodgeBurnTool -GimpDodgeBurnTool -gimp_dodge_burn_tool_register -GIMP_DODGE_BURN_TOOL_GET_OPTIONS - -GimpDodgeBurnToolClass -GIMP_DODGE_BURN_TOOL -GIMP_IS_DODGE_BURN_TOOL -GIMP_TYPE_DODGE_BURN_TOOL -gimp_dodge_burn_tool_get_type -GIMP_DODGE_BURN_TOOL_CLASS -GIMP_IS_DODGE_BURN_TOOL_CLASS -
- -
-gimpdrawtool -GimpDrawTool -GimpDrawTool -GIMP_TOOL_HANDLE_SIZE_CIRCLE -GIMP_TOOL_HANDLE_SIZE_CROSS -GIMP_TOOL_HANDLE_SIZE_LARGE -GIMP_TOOL_HANDLE_SIZE_SMALL -gimp_draw_tool_start -gimp_draw_tool_stop -gimp_draw_tool_is_active -gimp_draw_tool_pause -gimp_draw_tool_resume -gimp_draw_tool_calc_distance -gimp_draw_tool_calc_distance_square -gimp_draw_tool_add_preview -gimp_draw_tool_remove_preview -gimp_draw_tool_add_item -gimp_draw_tool_remove_item -gimp_draw_tool_add_stroke_group -gimp_draw_tool_add_fill_group -gimp_draw_tool_push_group -gimp_draw_tool_pop_group -gimp_draw_tool_add_line -gimp_draw_tool_add_guide -gimp_draw_tool_add_crosshair -gimp_draw_tool_add_sample_point -gimp_draw_tool_add_rectangle -gimp_draw_tool_add_rectangle_guides -gimp_draw_tool_add_arc -gimp_draw_tool_add_transform_guides -gimp_draw_tool_add_transform_preview -gimp_draw_tool_add_handle -gimp_draw_tool_add_corner -gimp_draw_tool_add_lines -gimp_draw_tool_add_strokes -gimp_draw_tool_add_path -gimp_draw_tool_add_pen -gimp_draw_tool_add_boundary -gimp_draw_tool_add_text_cursor -gimp_draw_tool_on_handle -gimp_draw_tool_on_vectors -gimp_draw_tool_on_vectors_curve -gimp_draw_tool_on_vectors_handle - -GimpDrawToolClass -GIMP_DRAW_TOOL -GIMP_IS_DRAW_TOOL -GIMP_TYPE_DRAW_TOOL -gimp_draw_tool_get_type -GIMP_DRAW_TOOL_CLASS -GIMP_IS_DRAW_TOOL_CLASS -GIMP_DRAW_TOOL_GET_CLASS -
- -
-gimpellipseselecttool -GimpEllipseSelectTool -GimpEllipseSelectTool -gimp_ellipse_select_tool_register - -GimpEllipseSelectToolClass -GIMP_ELLIPSE_SELECT_TOOL -GIMP_IS_ELLIPSE_SELECT_TOOL -GIMP_TYPE_ELLIPSE_SELECT_TOOL -gimp_ellipse_select_tool_get_type -GIMP_ELLIPSE_SELECT_TOOL_CLASS -GIMP_IS_ELLIPSE_SELECT_TOOL_CLASS -GIMP_ELLIPSE_SELECT_TOOL_GET_CLASS -
- -
-gimperasertool -GimpEraserTool -GimpEraserTool -gimp_eraser_tool_register -GIMP_ERASER_TOOL_GET_OPTIONS - -GimpEraserToolClass -GIMP_ERASER_TOOL -GIMP_IS_ERASER_TOOL -GIMP_TYPE_ERASER_TOOL -gimp_eraser_tool_get_type -GIMP_ERASER_TOOL_CLASS -GIMP_IS_ERASER_TOOL_CLASS -GIMP_ERASER_TOOL_GET_CLASS -
- -
-gimpflipoptions -GimpFlipOptions -GimpFlipOptions -gimp_flip_options_gui - -GimpFlipOptionsClass -GIMP_FLIP_OPTIONS -GIMP_IS_FLIP_OPTIONS -GIMP_TYPE_FLIP_OPTIONS -gimp_flip_options_get_type -GIMP_FLIP_OPTIONS_CLASS -GIMP_IS_FLIP_OPTIONS_CLASS -GIMP_FLIP_OPTIONS_GET_CLASS -
- -
-gimpfliptool -GimpFlipTool -GimpFlipTool -gimp_flip_tool_register -GIMP_FLIP_TOOL_GET_OPTIONS - -GimpFlipToolClass -GIMP_FLIP_TOOL -GIMP_IS_FLIP_TOOL -GIMP_TYPE_FLIP_TOOL -gimp_flip_tool_get_type -GIMP_FLIP_TOOL_CLASS -GIMP_IS_FLIP_TOOL_CLASS -GIMP_FLIP_TOOL_GET_CLASS -
- -
-gimpforegroundselecttool -GimpForegroundSelectTool -GimpForegroundSelectTool -gimp_foreground_select_tool_register -GIMP_FOREGROUND_SELECT_TOOL_GET_OPTIONS - -GimpForegroundSelectToolClass -GIMP_FOREGROUND_SELECT_TOOL -GIMP_IS_FOREGROUND_SELECT_TOOL -GIMP_TYPE_FOREGROUND_SELECT_TOOL -gimp_foreground_select_tool_get_type -GIMP_FOREGROUND_SELECT_TOOL_CLASS -GIMP_IS_FOREGROUND_SELECT_TOOL_CLASS -GIMP_FOREGROUND_SELECT_TOOL_GET_CLASS -
- -
-gimpforegroundselectoptions -GimpForegroundSelectOptions -GimpForegroundSelectOptions -gimp_foreground_select_options_gui -gimp_foreground_select_options_get_mask_color - -GimpForegroundSelectOptionsClass -GIMP_FOREGROUND_SELECT_OPTIONS -GIMP_IS_FOREGROUND_SELECT_OPTIONS -GIMP_TYPE_FOREGROUND_SELECT_OPTIONS -gimp_foreground_select_options_get_type -GIMP_FOREGROUND_SELECT_OPTIONS_CLASS -GIMP_IS_FOREGROUND_SELECT_OPTIONS_CLASS -GIMP_FOREGROUND_SELECT_OPTIONS_GET_CLASS -
- -
-gimpforegroundselecttoolundo -GimpForegroundSelectToolUndo -GimpForegroundSelectToolUndo - -GimpForegroundSelectToolUndoClass -GIMP_FOREGROUND_SELECT_TOOL_UNDO -GIMP_IS_FOREGROUND_SELECT_TOOL_UNDO -GIMP_TYPE_FOREGROUND_SELECT_TOOL_UNDO -gimp_foreground_select_tool_undo_get_type -GIMP_FOREGROUND_SELECT_TOOL_UNDO_CLASS -GIMP_IS_FOREGROUND_SELECT_TOOL_UNDO_CLASS -GIMP_FOREGROUND_SELECT_TOOL_UNDO_GET_CLASS -
- -
-gimpfreeselecttool -GimpFreeSelectTool -GimpFreeSelectTool -gimp_free_select_tool_register -gimp_free_select_tool_select -gimp_free_select_tool_get_points - -GimpFreeSelectToolClass -GIMP_FREE_SELECT_TOOL -GIMP_IS_FREE_SELECT_TOOL -GIMP_TYPE_FREE_SELECT_TOOL -gimp_free_select_tool_get_type -GIMP_FREE_SELECT_TOOL_CLASS -GIMP_IS_FREE_SELECT_TOOL_CLASS -GIMP_FREE_SELECT_TOOL_GET_CLASS -
- -
-gimpfuzzyselecttool -GimpFuzzySelectTool -GimpFuzzySelectTool -gimp_fuzzy_select_tool_register - -GimpFuzzySelectToolClass -GIMP_FUZZY_SELECT_TOOL -GIMP_IS_FUZZY_SELECT_TOOL -GIMP_TYPE_FUZZY_SELECT_TOOL -gimp_fuzzy_select_tool_get_type -GIMP_FUZZY_SELECT_TOOL_CLASS -GIMP_IS_FUZZY_SELECT_TOOL_CLASS -GIMP_FUZZY_SELECT_TOOL_GET_CLASS -
- -
-gimphealtool -GimpHealTool -GimpHealTool -gimp_heal_tool_register - -GimpHealToolClass -GIMP_HEAL_TOOL -GIMP_IS_HEAL_TOOL -GIMP_TYPE_HEAL_TOOL -gimp_heal_tool_get_type -GIMP_HEAL_TOOL_CLASS -GIMP_IS_HEAL_TOOL_CLASS -GIMP_HEAL_TOOL_GET_CLASS -
- -
-gimphistogramoptions -GimpHistogramOptions -GimpHistogramOptions -GimpHistogramOptionsClass -gimp_histogram_options_gui -gimp_histogram_options_connect_view - -GIMP_HISTOGRAM_OPTIONS -GIMP_IS_HISTOGRAM_OPTIONS -GIMP_TYPE_HISTOGRAM_OPTIONS -gimp_histogram_options_get_type -GIMP_HISTOGRAM_OPTIONS_CLASS -GIMP_IS_HISTOGRAM_OPTIONS_CLASS -GIMP_HISTOGRAM_OPTIONS_GET_CLASS -
- -
-gimphuesaturationtool -GimpHueSaturationTool -GimpHueSaturationTool -gimp_hue_saturation_tool_register - -GimpHueSaturationToolClass -GIMP_HUE_SATURATION_TOOL -GIMP_IS_HUE_SATURATION_TOOL -GIMP_TYPE_HUE_SATURATION_TOOL -gimp_hue_saturation_tool_get_type -GIMP_HUE_SATURATION_TOOL_CLASS -GIMP_IS_HUE_SATURATION_TOOL_CLASS -GIMP_HUE_SATURATION_TOOL_GET_CLASS -
- -
-gimpdesaturatetool -GimpDesaturateTool -GimpDesaturateTool -gimp_desaturate_tool_register - -GimpDesaturateToolClass -GIMP_DESATURATE_TOOL -GIMP_IS_DESATURATE_TOOL -GIMP_TYPE_DESATURATE_TOOL -gimp_desaturate_tool_get_type -GIMP_DESATURATE_TOOL_CLASS -GIMP_IS_DESATURATE_TOOL_CLASS -GIMP_DESATURATE_TOOL_GET_CLASS -
- -
-gimpimagemapoptions -GimpImageMapOptions -GimpImageMapOptions - -GimpImageMapOptionsClass -GIMP_IMAGE_MAP_OPTIONS -GIMP_IS_IMAGE_MAP_OPTIONS -GIMP_TYPE_IMAGE_MAP_OPTIONS -gimp_image_map_options_get_type -GIMP_IMAGE_MAP_OPTIONS_CLASS -GIMP_IS_IMAGE_MAP_OPTIONS_CLASS -GIMP_IMAGE_MAP_OPTIONS_GET_CLASS -
- -
-gimpimagemaptool -GimpImageMapTool -GimpImageMapTool -gimp_image_map_tool_preview -gimp_image_map_tool_create_map -gimp_image_map_tool_edit_as -gimp_image_map_tool_dialog_get_label_group -gimp_image_map_tool_dialog_get_vbox -GIMP_IMAGE_MAP_TOOL_GET_OPTIONS - -GimpImageMapToolClass -GIMP_IMAGE_MAP_TOOL -GIMP_IS_IMAGE_MAP_TOOL -GIMP_TYPE_IMAGE_MAP_TOOL -gimp_image_map_tool_get_type -GIMP_IMAGE_MAP_TOOL_CLASS -GIMP_IS_IMAGE_MAP_TOOL_CLASS -GIMP_IMAGE_MAP_TOOL_GET_CLASS -
- -
-gimpimagemaptool-settings -GimpImageMapTool-settings -gimp_image_map_tool_add_settings_gui -gimp_image_map_tool_real_settings_import -gimp_image_map_tool_real_settings_export -
- -
-gimpgegltool -GimpGeglTool -GimpGeglTool -gimp_gegl_tool_register - -GimpGeglToolClass -GIMP_GEGL_TOOL -GIMP_IS_GEGL_TOOL -GIMP_TYPE_GEGL_TOOL -gimp_gegl_tool_get_type -GIMP_GEGL_TOOL_CLASS -GIMP_IS_GEGL_TOOL_CLASS -GIMP_GEGL_TOOL_GET_CLASS -
- -
-gimpinktool -GimpInkTool -GimpInkTool -gimp_ink_tool_register - -GimpInkToolClass -GIMP_INK_TOOL -GIMP_IS_INK_TOOL -GIMP_TYPE_INK_TOOL -gimp_ink_tool_get_type -GIMP_INK_TOOL_CLASS -GIMP_IS_INK_TOOL_CLASS -GIMP_INK_TOOL_GET_CLASS -
- -
-gimpinkoptions-gui -GimpInkOptions-gui -gimp_ink_options_gui -
- -
-gimpiscissorsoptions -GimpIscissorsOptions -GimpIscissorsOptions -GimpIscissorsOptionsClass -gimp_iscissors_options_gui - -GIMP_ISCISSORS_OPTIONS -GIMP_IS_ISCISSORS_OPTIONS -GIMP_TYPE_ISCISSORS_OPTIONS -gimp_iscissors_options_get_type -GIMP_ISCISSORS_OPTIONS_CLASS -GIMP_IS_ISCISSORS_OPTIONS_CLASS -GIMP_ISCISSORS_OPTIONS_GET_CLASS -
- -
-gimpiscissorstool -GimpIscissorsTool -IscissorsState -IscissorsOps -ICurve -GimpIscissorsTool -gimp_iscissors_tool_register -GIMP_ISCISSORS_TOOL_GET_OPTIONS - -GimpIscissorsToolClass -GIMP_ISCISSORS_TOOL -GIMP_IS_ISCISSORS_TOOL -GIMP_TYPE_ISCISSORS_TOOL -gimp_iscissors_tool_get_type -GIMP_ISCISSORS_TOOL_CLASS -GIMP_IS_ISCISSORS_TOOL_CLASS -GIMP_ISCISSORS_TOOL_GET_CLASS -
- -
-gimplevelstool -GimpLevelsTool -GimpLevelsTool -gimp_levels_tool_register - -GimpLevelsToolClass -GIMP_LEVELS_TOOL -GIMP_IS_LEVELS_TOOL -GIMP_TYPE_LEVELS_TOOL -gimp_levels_tool_get_type -GIMP_LEVELS_TOOL_CLASS -GIMP_IS_LEVELS_TOOL_CLASS -GIMP_LEVELS_TOOL_GET_CLASS -
- -
-gimpmagnifyoptions -GimpMagnifyOptions -GimpMagnifyOptions -gimp_magnify_options_gui - -GimpMagnifyOptionsClass -GIMP_MAGNIFY_OPTIONS -GIMP_IS_MAGNIFY_OPTIONS -GIMP_TYPE_MAGNIFY_OPTIONS -gimp_magnify_options_get_type -GIMP_MAGNIFY_OPTIONS_CLASS -GIMP_IS_MAGNIFY_OPTIONS_CLASS -GIMP_MAGNIFY_OPTIONS_GET_CLASS -
- -
-gimpmagnifytool -GimpMagnifyTool -GimpMagnifyTool -gimp_magnify_tool_register -GIMP_MAGNIFY_TOOL_GET_OPTIONS - -GimpMagnifyToolClass -GIMP_MAGNIFY_TOOL -GIMP_IS_MAGNIFY_TOOL -GIMP_TYPE_MAGNIFY_TOOL -gimp_magnify_tool_get_type -GIMP_MAGNIFY_TOOL_CLASS -GIMP_IS_MAGNIFY_TOOL_CLASS -GIMP_MAGNIFY_TOOL_GET_CLASS -
- -
-gimpmeasureoptions -GimpMeasureOptions -GimpMeasureOptions -gimp_measure_options_gui - -GimpMeasureOptionsClass -GIMP_MEASURE_OPTIONS -GIMP_IS_MEASURE_OPTIONS -GIMP_TYPE_MEASURE_OPTIONS -gimp_measure_options_get_type -GIMP_MEASURE_OPTIONS_CLASS -GIMP_IS_MEASURE_OPTIONS_CLASS -GIMP_MEASURE_OPTIONS_GET_CLASS -
- -
-gimpmeasuretool -GimpMeasureTool -MeasureFunction -GimpMeasureTool -gimp_measure_tool_register -GIMP_MEASURE_TOOL_GET_OPTIONS - -GimpMeasureToolClass -GIMP_MEASURE_TOOL -GIMP_IS_MEASURE_TOOL -GIMP_TYPE_MEASURE_TOOL -gimp_measure_tool_get_type -GIMP_MEASURE_TOOL_CLASS -GIMP_IS_MEASURE_TOOL_CLASS -GIMP_MEASURE_TOOL_GET_CLASS -
- -
-gimpmoveoptions -GimpMoveOptions -GimpMoveOptions -gimp_move_options_gui - -GimpMoveOptionsClass -GIMP_MOVE_OPTIONS -GIMP_IS_MOVE_OPTIONS -GIMP_TYPE_MOVE_OPTIONS -gimp_move_options_get_type -GIMP_MOVE_OPTIONS_CLASS -GIMP_IS_MOVE_OPTIONS_CLASS -GIMP_MOVE_OPTIONS_GET_CLASS -
- -
-gimpmovetool -GimpMoveTool -GimpMoveTool -gimp_move_tool_register -gimp_move_tool_start_hguide -gimp_move_tool_start_vguide -GIMP_MOVE_TOOL_GET_OPTIONS - -GimpMoveToolClass -GIMP_MOVE_TOOL -GIMP_IS_MOVE_TOOL -GIMP_TYPE_MOVE_TOOL -gimp_move_tool_get_type -GIMP_MOVE_TOOL_CLASS -GIMP_IS_MOVE_TOOL_CLASS -GIMP_MOVE_TOOL_GET_CLASS -
- -
-gimppaintbrushtool -GimpPaintbrushTool -GimpPaintbrushTool -gimp_paintbrush_tool_register - -GimpPaintbrushToolClass -GIMP_PAINTBRUSH_TOOL -GIMP_IS_PAINTBRUSH_TOOL -GIMP_TYPE_PAINTBRUSH_TOOL -gimp_paintbrush_tool_get_type -GIMP_PAINTBRUSH_TOOL_CLASS -GIMP_IS_PAINTBRUSH_TOOL_CLASS -GIMP_PAINTBRUSH_TOOL_GET_CLASS -
- -
-gimppainttool -GimpPaintTool -GimpPaintTool -gimp_paint_tool_enable_color_picker -GIMP_PAINT_TOOL_GET_OPTIONS - -GimpPaintToolClass -GIMP_PAINT_TOOL -GIMP_IS_PAINT_TOOL -GIMP_TYPE_PAINT_TOOL -gimp_paint_tool_get_type -GIMP_PAINT_TOOL_CLASS -GIMP_IS_PAINT_TOOL_CLASS -GIMP_PAINT_TOOL_GET_CLASS -
- -
-gimppenciltool -GimpPencilTool -GimpPencilTool -gimp_pencil_tool_register - -GimpPencilToolClass -GIMP_PENCIL_TOOL -GIMP_IS_PENCIL_TOOL -GIMP_TYPE_PENCIL_TOOL -gimp_pencil_tool_get_type -GIMP_PENCIL_TOOL_CLASS -GIMP_IS_PENCIL_TOOL_CLASS -GIMP_PENCIL_TOOL_GET_CLASS -
- -
-gimpperspectivetool -GimpPerspectiveTool -GimpPerspectiveTool -gimp_perspective_tool_register - -GimpPerspectiveToolClass -GIMP_PERSPECTIVE_TOOL -GIMP_IS_PERSPECTIVE_TOOL -GIMP_TYPE_PERSPECTIVE_TOOL -gimp_perspective_tool_get_type -GIMP_PERSPECTIVE_TOOL_CLASS -GIMP_IS_PERSPECTIVE_TOOL_CLASS -GIMP_PERSPECTIVE_TOOL_GET_CLASS -
- -
-gimpperspectiveclonetool -GimpPerspectiveCloneTool -GimpPerspectiveCloneTool -gimp_perspective_clone_tool_register -GIMP_PERSPECTIVE_CLONE_TOOL_GET_OPTIONS - -GimpPerspectiveCloneToolClass -GIMP_PERSPECTIVE_CLONE_TOOL -GIMP_IS_PERSPECTIVE_CLONE_TOOL -GIMP_TYPE_PERSPECTIVE_CLONE_TOOL -gimp_perspective_clone_tool_get_type -GIMP_PERSPECTIVE_CLONE_TOOL_CLASS -GIMP_IS_PERSPECTIVE_CLONE_TOOL_CLASS -GIMP_PERSPECTIVE_CLONE_TOOL_GET_CLASS -
- -
-gimpposterizetool -GimpPosterizeTool -GimpPosterizeTool -gimp_posterize_tool_register - -GimpPosterizeToolClass -GIMP_POSTERIZE_TOOL -GIMP_IS_POSTERIZE_TOOL -GIMP_TYPE_POSTERIZE_TOOL -gimp_posterize_tool_get_type -GIMP_POSTERIZE_TOOL_CLASS -GIMP_IS_POSTERIZE_TOOL_CLASS -GIMP_POSTERIZE_TOOL_GET_CLASS -
- -
-gimprectangleoptions -GimRrectangleOptions -GimpRectangleOptionsProp -GimpRectangleOptions -GimpRectangleOptionsInterface -GimpRectangleOptionsPrivate -GIMP_RECTANGLE_OPTIONS_GET_PRIVATE -gimp_rectangle_options_gui -gimp_rectangle_options_fixed_rule_active -gimp_rectangle_options_get_private -gimp_rectangle_options_install_properties -gimp_rectangle_options_get_property -gimp_rectangle_options_set_property -gimp_rectangle_options_get_width_entry - -GIMP_RECTANGLE_OPTIONS -GIMP_IS_RECTANGLE_OPTIONS -GIMP_TYPE_RECTANGLE_OPTIONS -gimp_rectangle_options_interface_get_type -GIMP_RECTANGLE_OPTIONS_GET_INTERFACE -
- -
-gimprectangletool -GimpRectangleTool -GimpRectangleTool -GimpRectangleToolInterface -GimpRectangleToolProp -GimpRectangleFunction -GIMP_RECTANGLE_TOOL_GET_OPTIONS -gimp_rectangle_tool_constructor -gimp_rectangle_tool_init -gimp_rectangle_tool_control -gimp_rectangle_tool_button_press -gimp_rectangle_tool_button_release -gimp_rectangle_tool_motion -gimp_rectangle_tool_key_press -gimp_rectangle_tool_active_modifier_key -gimp_rectangle_tool_oper_update -gimp_rectangle_tool_cursor_update -gimp_rectangle_tool_draw -gimp_rectangle_tool_execute -gimp_rectangle_tool_cancel -gimp_rectangle_tool_set_constraint -gimp_rectangle_tool_get_constraint -gimp_rectangle_tool_get_function -gimp_rectangle_tool_set_function -gimp_rectangle_tool_constraint_size_set -gimp_rectangle_tool_pending_size_set -gimp_rectangle_tool_rectangle_is_new -gimp_rectangle_tool_point_in_rectangle -gimp_rectangle_tool_frame_item -gimp_rectangle_tool_install_properties -gimp_rectangle_tool_set_property -gimp_rectangle_tool_get_property - -GIMP_RECTANGLE_TOOL -GIMP_IS_RECTANGLE_TOOL -GIMP_TYPE_RECTANGLE_TOOL -gimp_rectangle_tool_interface_get_type -GIMP_RECTANGLE_TOOL_GET_INTERFACE -
- -
-gimprectangleselectoptions -GimpRectangleSelectOptions -GimpRectangleSelectOptions -gimp_rectangle_select_options_gui - -GimpRectangleSelectOptionsClass -GIMP_RECTANGLE_SELECT_OPTIONS -GIMP_IS_RECTANGLE_SELECT_OPTIONS -GIMP_TYPE_RECTANGLE_SELECT_OPTIONS -gimp_rectangle_select_options_get_type -GIMP_RECTANGLE_SELECT_OPTIONS_CLASS -GIMP_IS_RECTANGLE_SELECT_OPTIONS_CLASS -GIMP_RECTANGLE_SELECT_OPTIONS_GET_CLASS -
- -
-gimprectangleselecttool -GimpRectangleSelectTool -GimpRectangleSelectTool -gimp_rectangle_select_tool_register -GIMP_RECTANGLE_SELECT_TOOL_GET_OPTIONS - -GimpRectangleSelectToolClass -GIMP_RECTANGLE_SELECT_TOOL -GIMP_IS_RECTANGLE_SELECT_TOOL -GIMP_TYPE_RECTANGLE_SELECT_TOOL -gimp_rectangle_select_tool_get_type -GIMP_RECTANGLE_SELECT_TOOL_CLASS -GIMP_IS_RECTANGLE_SELECT_TOOL_CLASS -GIMP_RECTANGLE_SELECT_TOOL_GET_CLASS -
- -
-gimpregionselectoptions -GimpRegionSelectOptions -GimpRegionSelectOptions -gimp_region_select_options_gui - -GimpRegionSelectOptionsClass -GIMP_REGION_SELECT_OPTIONS -GIMP_IS_REGION_SELECT_OPTIONS -GIMP_TYPE_REGION_SELECT_OPTIONS -gimp_region_select_options_get_type -GIMP_REGION_SELECT_OPTIONS_CLASS -GIMP_IS_REGION_SELECT_OPTIONS_CLASS -GIMP_REGION_SELECT_OPTIONS_GET_CLASS -
- -
-gimpregionselecttool -GimpRegionSelectTool -GimpRegionSelectTool -GIMP_REGION_SELECT_TOOL_GET_OPTIONS - -GimpRegionSelectToolClass -GIMP_REGION_SELECT_TOOL -GIMP_IS_REGION_SELECT_TOOL -GIMP_TYPE_REGION_SELECT_TOOL -gimp_region_select_tool_get_type -GIMP_REGION_SELECT_TOOL_CLASS -GIMP_IS_REGION_SELECT_TOOL_CLASS -GIMP_REGION_SELECT_TOOL_GET_CLASS -
- -
-gimprotatetool -GimpRotateTool -GimpRotateTool -gimp_rotate_tool_register - -GimpRotateToolClass -GIMP_ROTATE_TOOL -GIMP_IS_ROTATE_TOOL -GIMP_TYPE_ROTATE_TOOL -gimp_rotate_tool_get_type -GIMP_ROTATE_TOOL_CLASS -GIMP_IS_ROTATE_TOOL_CLASS -GIMP_ROTATE_TOOL_GET_CLASS -
- -
-gimpscaletool -GimpScaleTool -GimpScaleTool -gimp_scale_tool_register - -GimpScaleToolClass -GIMP_SCALE_TOOL -GIMP_IS_SCALE_TOOL -GIMP_TYPE_SCALE_TOOL -gimp_scale_tool_get_type -GIMP_SCALE_TOOL_CLASS -GIMP_SCALE_TOOL_GET_CLASS -
- -
-gimpselectionoptions -GimpSelectionOptions -GimpSelectionOptions -gimp_selection_options_gui - -GimpSelectionOptionsClass -GIMP_SELECTION_OPTIONS -GIMP_IS_SELECTION_OPTIONS -GIMP_TYPE_SELECTION_OPTIONS -gimp_selection_options_get_type -GIMP_SELECTION_OPTIONS_CLASS -GIMP_IS_SELECTION_OPTIONS_CLASS -GIMP_SELECTION_OPTIONS_GET_CLASS -
- -
-gimpselectiontool -GimpSelectionTool -GimpSelectionTool -GimpSelectionToolClass -gimp_selection_tool_start_edit -GIMP_SELECTION_TOOL_GET_OPTIONS - -GIMP_SELECTION_TOOL -GIMP_IS_SELECTION_TOOL -GIMP_TYPE_SELECTION_TOOL -gimp_selection_tool_get_type -GIMP_SELECTION_TOOL_CLASS -GIMP_IS_SELECTION_TOOL_CLASS -GIMP_SELECTION_TOOL_GET_CLASS -
- -
-gimpsourcetool -GimpSourceTool -GimpSourceTool -GIMP_SOURCE_TOOL_GET_OPTIONS - -GimpSourceToolClass -GIMP_SOURCE_TOOL -GIMP_IS_SOURCE_TOOL -GIMP_TYPE_SOURCE_TOOL -gimp_source_tool_get_type -GIMP_SOURCE_TOOL_CLASS -GIMP_IS_SOURCE_TOOL_CLASS -GIMP_SOURCE_TOOL_GET_CLASS -
- -
-gimpsheartool -GimpShearTool -GimpShearTool -gimp_shear_tool_register - -GimpShearToolClass -GIMP_SHEAR_TOOL -GIMP_IS_SHEAR_TOOL -GIMP_TYPE_SHEAR_TOOL -gimp_shear_tool_get_type -GIMP_SHEAR_TOOL_CLASS -GIMP_IS_SHEAR_TOOL_CLASS -GIMP_SHEAR_TOOL_GET_CLASS -
- -
-gimpsmudgetool -GimpSmudgeTool -GimpSmudgeTool -gimp_smudge_tool_register - -GimpSmudgeToolClass -GIMP_SMUDGE_TOOL -GIMP_IS_SMUDGE_TOOL -GIMP_TYPE_SMUDGE_TOOL -gimp_smudge_tool_get_type -GIMP_SMUDGE_TOOL_CLASS -GIMP_IS_SMUDGE_TOOL_CLASS -GIMP_SMUDGE_TOOL_GET_CLASS -
- -
-gimptextoptions -GimpTextOptions -GimpTextOptions -gimp_text_options_connect_text -gimp_text_options_gui -gimp_text_options_editor_new - -GimpTextOptionsClass -GIMP_TEXT_OPTIONS -GIMP_IS_TEXT_OPTIONS -GIMP_TYPE_TEXT_OPTIONS -gimp_text_options_get_type -GIMP_TEXT_OPTIONS_CLASS -GIMP_IS_TEXT_OPTIONS_CLASS -GIMP_TEXT_OPTIONS_GET_CLASS -
- -
-gimptexttool -GimpTextTool -GimpTextTool -GIMP_TEXT_TOOL_GET_OPTIONS -gimp_text_tool_register -gimp_text_tool_set_layer -gimp_text_tool_get_has_text_selection -gimp_text_tool_delete_selection -gimp_text_tool_cut_clipboard -gimp_text_tool_copy_clipboard -gimp_text_tool_paste_clipboard -gimp_text_tool_create_vectors -gimp_text_tool_create_vectors_warped -gimp_text_tool_clear_layout -gimp_text_tool_ensure_layout - -GimpTextToolClass -GIMP_TEXT_TOOL -GIMP_IS_TEXT_TOOL -GIMP_TYPE_TEXT_TOOL -gimp_text_tool_get_type -GIMP_TEXT_TOOL_CLASS -GIMP_IS_TEXT_TOOL_CLASS -
- -
-gimptexttool-editor -GimpTextTool-editor -gimp_text_tool_editor_button_press -gimp_text_tool_editor_button_release -gimp_text_tool_editor_finalize -gimp_text_tool_editor_get_cursor_rect -gimp_text_tool_editor_halt -gimp_text_tool_editor_init -gimp_text_tool_editor_key_press -gimp_text_tool_editor_key_release -gimp_text_tool_editor_motion -gimp_text_tool_editor_position -gimp_text_tool_editor_start -gimp_text_tool_reset_im_context -
- -
-gimpthresholdtool -GimpThresholdTool -GimpThresholdTool -gimp_threshold_tool_register - -GimpThresholdToolClass -GIMP_THRESHOLD_TOOL -GIMP_IS_THRESHOLD_TOOL -GIMP_TYPE_THRESHOLD_TOOL -gimp_threshold_tool_get_type -GIMP_THRESHOLD_TOOL_CLASS -GIMP_IS_THRESHOLD_TOOL_CLASS -GIMP_THRESHOLD_TOOL_GET_CLASS -
- -
-gimptool -GimpTool -GimpTool -GimpToolClass -gimp_tool_get_options -gimp_tool_has_display -gimp_tool_has_image -gimp_tool_initialize -gimp_tool_control -gimp_tool_button_press -gimp_tool_button_release -gimp_tool_motion -gimp_tool_set_focus_display -gimp_tool_key_press -gimp_tool_key_release -gimp_tool_set_modifier_state -gimp_tool_set_active_modifier_state -gimp_tool_oper_update -gimp_tool_cursor_update -gimp_tool_get_popup -gimp_tool_push_status -gimp_tool_push_status_coords -gimp_tool_push_status_length -gimp_tool_replace_status -gimp_tool_pop_status -gimp_tool_message -gimp_tool_message_literal -gimp_tool_set_cursor -GIMP_TOOL_GET_OPTIONS - -GIMP_TOOL -GIMP_IS_TOOL -GIMP_TYPE_TOOL -gimp_tool_get_type -GIMP_TOOL_CLASS -GIMP_IS_TOOL_CLASS -GIMP_TOOL_GET_CLASS -
- -
-gimptool-progress -GimpTool-progress -gimp_tool_progress_iface_init -
- -
-gimptoolcontrol -GimpToolControl -GimpToolControl -gimp_tool_control_activate -gimp_tool_control_halt -gimp_tool_control_is_active -gimp_tool_control_pause -gimp_tool_control_resume -gimp_tool_control_is_paused -gimp_tool_control_set_preserve -gimp_tool_control_get_preserve -gimp_tool_control_set_scroll_lock -gimp_tool_control_get_scroll_lock -gimp_tool_control_set_handle_empty_image -gimp_tool_control_get_handle_empty_image -gimp_tool_control_set_wants_click -gimp_tool_control_get_wants_click -gimp_tool_control_set_wants_double_click -gimp_tool_control_get_wants_double_click -gimp_tool_control_set_wants_triple_click -gimp_tool_control_get_wants_triple_click -gimp_tool_control_set_wants_all_key_events -gimp_tool_control_get_wants_all_key_events -gimp_tool_control_set_dirty_mask -gimp_tool_control_get_dirty_mask -gimp_tool_control_set_motion_mode -gimp_tool_control_get_motion_mode -gimp_tool_control_set_snap_to -gimp_tool_control_get_snap_to -gimp_tool_control_set_snap_offsets -gimp_tool_control_get_snap_offsets -gimp_tool_control_set_toggled -gimp_tool_control_get_toggled -gimp_tool_control_set_cursor -gimp_tool_control_set_tool_cursor -gimp_tool_control_set_cursor_modifier -gimp_tool_control_set_toggle_cursor -gimp_tool_control_set_toggle_tool_cursor -gimp_tool_control_set_toggle_cursor_modifier -gimp_tool_control_get_cursor -gimp_tool_control_get_tool_cursor -gimp_tool_control_get_cursor_modifier -gimp_tool_control_get_precision -gimp_tool_control_set_precision -gimp_tool_control_set_action_value_1 -gimp_tool_control_get_action_value_1 -gimp_tool_control_set_action_value_2 -gimp_tool_control_get_action_value_2 -gimp_tool_control_set_action_value_3 -gimp_tool_control_get_action_value_3 -gimp_tool_control_set_action_value_4 -gimp_tool_control_get_action_value_4 -gimp_tool_control_set_action_object_1 -gimp_tool_control_get_action_object_1 -gimp_tool_control_set_action_object_2 -gimp_tool_control_get_action_object_2 - -GimpToolControlClass -GIMP_TOOL_CONTROL -GIMP_IS_TOOL_CONTROL -GIMP_TYPE_TOOL_CONTROL -gimp_tool_control_get_type -GIMP_TOOL_CONTROL_CLASS -GIMP_IS_TOOL_CONTROL_CLASS -GIMP_TOOL_CONTROL_GET_CLASS -
- -
-gimptransformoptions -GimpTransformOptions -GimpTransformOptions -gimp_transform_options_gui -gimp_transform_options_show_preview - -GimpTransformOptionsClass -GIMP_TRANSFORM_OPTIONS -GIMP_IS_TRANSFORM_OPTIONS -GIMP_TYPE_TRANSFORM_OPTIONS -gimp_transform_options_get_type -GIMP_TRANSFORM_OPTIONS_CLASS -GIMP_IS_TRANSFORM_OPTIONS_CLASS -GIMP_TRANSFORM_OPTIONS_GET_CLASS -
- -
-gimptransformtool -GimpTransformTool -GimpTransformTool -TransformAction -TransInfo -TRANS_INFO_SIZE -GIMP_TRANSFORM_TOOL_GET_OPTIONS -gimp_transform_tool_recalc_matrix - -GimpTransformToolClass -GIMP_TRANSFORM_TOOL -GIMP_IS_TRANSFORM_TOOL -GIMP_TYPE_TRANSFORM_TOOL -gimp_transform_tool_get_type -GIMP_TRANSFORM_TOOL_CLASS -GIMP_IS_TRANSFORM_TOOL_CLASS -GIMP_TRANSFORM_TOOL_GET_CLASS -
- -
-gimptransformtoolundo -GimpTransformToolUndo -GimpTransformToolUndo - -GimpTransformToolUndoClass -GIMP_TRANSFORM_TOOL_UNDO -GIMP_IS_TRANSFORM_TOOL_UNDO -GIMP_TYPE_TRANSFORM_TOOL_UNDO -gimp_transform_tool_undo_get_type -GIMP_TRANSFORM_TOOL_UNDO_CLASS -GIMP_IS_TRANSFORM_TOOL_UNDO_CLASS -GIMP_TRANSFORM_TOOL_UNDO_GET_CLASS -
- -
-gimpvectoroptions -GimpVectorOptions -GimpVectorOptions -gimp_vector_options_gui - -GimpVectorOptionsClass -GIMP_VECTOR_OPTIONS -GIMP_IS_VECTOR_OPTIONS -GIMP_TYPE_VECTOR_OPTIONS -gimp_vector_options_get_type -GIMP_VECTOR_OPTIONS_CLASS -GIMP_IS_VECTOR_OPTIONS_CLASS -GIMP_VECTOR_OPTIONS_GET_CLASS -
- -
-gimpvectortool -GimpVectorTool -GimpVectorTool -GimpVectorFunction -gimp_vector_tool_register -gimp_vector_tool_set_vectors -GIMP_VECTOR_TOOL_GET_OPTIONS - -GimpVectorToolClass -GIMP_VECTOR_TOOL -GIMP_IS_VECTOR_TOOL -GIMP_TYPE_VECTOR_TOOL -gimp_vector_tool_get_type -GIMP_VECTOR_TOOL_CLASS -GIMP_IS_VECTOR_TOOL_CLASS -GIMP_VECTOR_TOOL_GET_CLASS -
- -
-gimpbezierdesc -GimpBezierDesc -gimp_bezier_desc_copy -gimp_bezier_desc_free -gimp_bezier_desc_new -gimp_bezier_desc_new_from_bound_segs -gimp_bezier_desc_translate - -GIMP_TYPE_BEZIER_DESC -gimp_bezier_desc_get_type -
- -
-gimpbezierstroke -GimpBezierStroke -GimpBezierStroke -gimp_bezier_stroke_new -gimp_bezier_stroke_new_from_coords -gimp_bezier_stroke_extend -gimp_bezier_stroke_new_moveto -gimp_bezier_stroke_lineto -gimp_bezier_stroke_conicto -gimp_bezier_stroke_cubicto -gimp_bezier_stroke_arcto -gimp_bezier_stroke_new_ellipse - -GimpBezierStrokeClass -GIMP_BEZIER_STROKE -GIMP_IS_BEZIER_STROKE -GIMP_TYPE_BEZIER_STROKE -gimp_bezier_stroke_get_type -GIMP_BEZIER_STROKE_CLASS -GIMP_IS_BEZIER_STROKE_CLASS -GIMP_BEZIER_STROKE_GET_CLASS -
- -
-gimpstroke -GimpStroke -GimpStroke -gimp_stroke_set_ID -gimp_stroke_get_ID -gimp_stroke_anchor_get -gimp_stroke_nearest_point_get -gimp_stroke_nearest_tangent_get -gimp_stroke_nearest_intersection_get -gimp_stroke_anchor_get_next -gimp_stroke_anchor_select -gimp_stroke_anchor_move_relative -gimp_stroke_anchor_move_absolute -gimp_stroke_control_points_get -gimp_stroke_point_is_movable -gimp_stroke_point_move_relative -gimp_stroke_point_move_absolute -gimp_stroke_close -gimp_stroke_anchor_convert -gimp_stroke_anchor_delete -gimp_stroke_open -gimp_stroke_anchor_is_insertable -gimp_stroke_anchor_insert -gimp_stroke_is_extendable -gimp_stroke_extend -gimp_stroke_connect_stroke -gimp_stroke_is_empty -gimp_stroke_get_length -gimp_stroke_get_distance -gimp_stroke_get_point_at_dist -gimp_stroke_interpolate -gimp_stroke_make_bezier -gimp_stroke_duplicate -gimp_stroke_translate -gimp_stroke_scale -gimp_stroke_rotate -gimp_stroke_flip -gimp_stroke_flip_free -gimp_stroke_transform -gimp_stroke_get_draw_anchors -gimp_stroke_get_draw_controls -gimp_stroke_get_draw_lines - -GimpStrokeClass -GIMP_STROKE -GIMP_IS_STROKE -GIMP_TYPE_STROKE -gimp_stroke_get_type -GIMP_STROKE_CLASS -GIMP_IS_STROKE_CLASS -GIMP_STROKE_GET_CLASS -
- -
-gimpstroke-new -GimpStroke-new -gimp_stroke_new_from_coords -
- -
-gimpvectors -GimpVectors -GimpVectors -gimp_vectors_new -gimp_vectors_get_parent -gimp_vectors_freeze -gimp_vectors_thaw -gimp_vectors_copy_strokes -gimp_vectors_add_strokes -gimp_vectors_anchor_get -gimp_vectors_anchor_get_next -gimp_vectors_anchor_move_relative -gimp_vectors_anchor_move_absolute -gimp_vectors_anchor_delete -gimp_vectors_anchor_select -gimp_vectors_stroke_add -gimp_vectors_stroke_remove -gimp_vectors_stroke_get -gimp_vectors_stroke_get_next -gimp_vectors_stroke_get_length -gimp_vectors_stroke_get_by_ID -gimp_vectors_get_length -gimp_vectors_get_distance -gimp_vectors_get_n_strokes -gimp_vectors_interpolate -gimp_vectors_bounds -gimp_vectors_get_bezier - -GimpVectorsClass -GIMP_VECTORS -GIMP_IS_VECTORS -GIMP_TYPE_VECTORS -gimp_vectors_get_type -GIMP_VECTORS_CLASS -GIMP_IS_VECTORS_CLASS -GIMP_VECTORS_GET_CLASS -
- -
-gimpvectors-compat -GimpVectors-compat -GimpVectorsCompatPoint -gimp_vectors_compat_new -gimp_vectors_compat_get_points -gimp_vectors_compat_is_compatible -
- -
-gimpvectors-preview -GimpVectors-preview -gimp_vectors_get_new_preview -
- -
-gimpvectors-import -GimpVectors-import -gimp_vectors_import_file -gimp_vectors_import_buffer -
- -
-gimpvectors-export -GimpVectors-export -gimp_vectors_export_file -gimp_vectors_export_string -
- -
-gimpvectors-warp -GimpVectors-warp -gimp_vectors_warp_point -gimp_vectors_warp_vectors -
- -
-gimpvectorsundo -GimpVectorsUndo -GimpVectorsUndo - -GimpVectorsUndoClass -GIMP_VECTORS_UNDO -GIMP_IS_VECTORS_UNDO -GIMP_TYPE_VECTORS_UNDO -gimp_vectors_undo_get_type -GIMP_VECTORS_UNDO_CLASS -GIMP_IS_VECTORS_UNDO_CLASS -GIMP_VECTORS_UNDO_GET_CLASS -
- -
-gimpvectorsmodundo -GimpVectorsModUndo -GimpVectorsModUndo - -GimpVectorsModUndoClass -GIMP_VECTORS_MOD_UNDO -GIMP_IS_VECTORS_MOD_UNDO -GIMP_TYPE_VECTORS_MOD_UNDO -gimp_vectors_mod_undo_get_type -GIMP_VECTORS_MOD_UNDO_CLASS -GIMP_IS_VECTORS_MOD_UNDO_CLASS -GIMP_VECTORS_MOD_UNDO_GET_CLASS -
- -
-gimpvectorspropundo -GimpVectorsPropUndo -GimpVectorsPropUndo - -GimpVectorsPropUndoClass -GIMP_VECTORS_PROP_UNDO -GIMP_IS_VECTORS_PROP_UNDO -GIMP_TYPE_VECTORS_PROP_UNDO -gimp_vectors_prop_undo_get_type -GIMP_VECTORS_PROP_UNDO_CLASS -GIMP_IS_VECTORS_PROP_UNDO_CLASS -GIMP_VECTORS_PROP_UNDO_GET_CLASS -
- -
-gimpactiongroup -GimpActionGroup -GimpActionGroup -GimpActionEntry -GimpToggleActionEntry -GimpRadioActionEntry -GimpEnumActionEntry -GimpStringActionEntry -GimpPlugInActionEntry -gimp_action_group_new -gimp_action_groups_from_name -gimp_action_group_update -gimp_action_group_add_actions -gimp_action_group_add_toggle_actions -gimp_action_group_add_radio_actions -gimp_action_group_add_enum_actions -gimp_action_group_add_string_actions -gimp_action_group_add_plug_in_actions -gimp_action_group_activate_action -gimp_action_group_set_action_visible -gimp_action_group_set_action_sensitive -gimp_action_group_set_action_active -gimp_action_group_set_action_label -gimp_action_group_set_action_tooltip -gimp_action_group_get_action_tooltip -gimp_action_group_set_action_color -gimp_action_group_set_action_viewable -gimp_action_group_set_action_hide_empty -gimp_action_group_set_action_always_show_image - -GimpActionGroupClass -GIMP_ACTION_GROUP -GIMP_IS_ACTION_GROUP -GIMP_TYPE_ACTION_GROUP -gimp_action_group_get_type -GIMP_ACTION_GROUP_CLASS -GIMP_IS_ACTION_GROUP_CLASS -GIMP_ACTION_GROUP_GET_CLASS -
- -
-gimpactionview -GimpActionView -GimpActionView -gimp_action_view_new -gimp_action_view_set_filter - -GimpActionViewClass -GIMP_ACTION_VIEW -GIMP_IS_ACTION_VIEW -GIMP_TYPE_ACTION_VIEW -gimp_action_view_get_type -GIMP_ACTION_VIEW_CLASS -GIMP_IS_ACTION_VIEW_CLASS -GIMP_ACTION_VIEW_GET_CLASS -
- -
-gimpactioneditor -GimpActionEditor -GimpActionEditor -gimp_action_editor_new - -GimpActionEditorClass -GIMP_ACTION_EDITOR -GIMP_IS_ACTION_EDITOR -GIMP_TYPE_ACTION_EDITOR -gimp_action_editor_get_type -GIMP_ACTION_EDITOR_CLASS -GIMP_IS_ACTION_EDITOR_CLASS -GIMP_ACTION_EDITOR_GET_CLASS -
- -
-gimpaction -GimpAction -GimpAction -gimp_action_new -gimp_action_name_compare - -GimpActionClass -GIMP_ACTION -GIMP_IS_ACTION -GIMP_TYPE_ACTION -gimp_action_get_type -GIMP_ACTION_CLASS -GIMP_IS_ACTION_CLASS -GIMP_ACTION_GET_CLASS -
- -
-gimpenumaction -GimpEnumAction -GimpEnumAction -gimp_enum_action_new -gimp_enum_action_selected - -GimpEnumActionClass -GIMP_ENUM_ACTION -GIMP_IS_ENUM_ACTION -GIMP_TYPE_ENUM_ACTION -gimp_enum_action_get_type -GIMP_ENUM_ACTION_CLASS -GIMP_IS_ENUM_ACTION_CLASS -GIMP_ENUM_ACTION_GET_CLASS -
- -
-gimppluginaction -GimpPlugInAction -GimpPlugInAction -gimp_plug_in_action_new -gimp_plug_in_action_selected - -GimpPlugInActionClass -GIMP_PLUG_IN_ACTION -GIMP_IS_PLUG_IN_ACTION -GIMP_TYPE_PLUG_IN_ACTION -gimp_plug_in_action_get_type -GIMP_PLUG_IN_ACTION_CLASS -GIMP_IS_PLUG_IN_ACTION_CLASS -GIMP_PLUG_IN_ACTION_GET_CLASS -
- -
-gimpradioaction -GimpRadioAction -GimpRadioAction -gimp_radio_action_new - -GimpRadioActionClass -GIMP_RADIO_ACTION -GIMP_IS_RADIO_ACTION -GIMP_TYPE_RADIO_ACTION -gimp_radio_action_get_type -GIMP_RADIO_ACTION_CLASS -GIMP_IS_RADIO_ACTION_CLASS -GIMP_RADIO_ACTION_GET_CLASS -
- -
-gimpstringaction -GimpStringAction -GimpStringAction -gimp_string_action_new -gimp_string_action_selected - -GimpStringActionClass -GIMP_STRING_ACTION -GIMP_IS_STRING_ACTION -GIMP_TYPE_STRING_ACTION -gimp_string_action_get_type -GIMP_STRING_ACTION_CLASS -GIMP_IS_STRING_ACTION_CLASS -GIMP_STRING_ACTION_GET_CLASS -
- -
-gimptoggleaction -GimpToggleAction -GimpToggleAction -gimp_toggle_action_new - -GimpToggleActionClass -GIMP_TOGGLE_ACTION -GIMP_IS_TOGGLE_ACTION -GIMP_TYPE_TOGGLE_ACTION -gimp_toggle_action_get_type -GIMP_TOGGLE_ACTION_CLASS -GIMP_IS_TOGGLE_ACTION_CLASS -GIMP_TOGGLE_ACTION_GET_CLASS -
- -
-gimpblobeditor -GimpBlobEditor -GimpBlobEditor -gimp_blob_editor_new - -GimpBlobEditorClass -GIMP_BLOB_EDITOR -GIMP_IS_BLOB_EDITOR -GIMP_TYPE_BLOB_EDITOR -gimp_blob_editor_get_type -GIMP_BLOB_EDITOR_CLASS -GIMP_IS_BLOB_EDITOR_CLASS -GIMP_BLOB_EDITOR_GET_CLASS -
- -
-gimpdynamicseditor -GimpDynamicsEditor -GimpDynamicsEditor -gimp_dynamics_editor_new - -GimpDynamicsEditorClass -GIMP_DYNAMICS_EDITOR -GIMP_IS_DYNAMICS_EDITOR -GIMP_TYPE_DYNAMICS_EDITOR -gimp_dynamics_editor_get_type -GIMP_DYNAMICS_EDITOR_CLASS -GIMP_IS_DYNAMICS_EDITOR_CLASS -GIMP_DYNAMICS_EDITOR_GET_CLASS -
- -
-gimpdynamicsoutputeditor -GimpDynamicsOutputEditor -GimpDynamicsOutputEditor -GimpDynamicsOutputEditorClass -gimp_dynamics_output_editor_new - -GIMP_DYNAMICS_OUTPUT_EDITOR -GIMP_DYNAMICS_OUTPUT_EDITOR_CLASS -GIMP_DYNAMICS_OUTPUT_EDITOR_GET_CLASS -GIMP_IS_DYNAMICS_OUTPUT_EDITOR -GIMP_IS_DYNAMICS_OUTPUT_EDITOR_CLASS -GIMP_TYPE_DYNAMICS_OUTPUT_EDITOR -gimp_dynamics_output_editor_get_type -
- -
-gimpdynamicsfactoryview -GimpDynamicsFactoryView -GimpDynamicsFactoryView -GimpDynamicsFactoryViewClass -gimp_dynamics_factory_view_new - -GIMP_DYNAMICS_FACTORY_VIEW -GIMP_DYNAMICS_FACTORY_VIEW_CLASS -GIMP_DYNAMICS_FACTORY_VIEW_GET_CLASS -GIMP_IS_DYNAMICS_FACTORY_VIEW -GIMP_IS_DYNAMICS_FACTORY_VIEW_CLASS -GIMP_TYPE_DYNAMICS_FACTORY_VIEW -gimp_dynamics_factory_view_get_type -
- -
-gimpbrusheditor -GimpBrushEditor -GimpBrushEditor -gimp_brush_editor_new - -GimpBrushEditorClass -GIMP_BRUSH_EDITOR -GIMP_IS_BRUSH_EDITOR -GIMP_TYPE_BRUSH_EDITOR -gimp_brush_editor_get_type -GIMP_BRUSH_EDITOR_CLASS -GIMP_IS_BRUSH_EDITOR_CLASS -GIMP_BRUSH_EDITOR_GET_CLASS -
- -
-gimpbrushfactoryview -GimpBrushFactoryView -GimpBrushFactoryView -gimp_brush_factory_view_new - -GimpBrushFactoryViewClass -GIMP_BRUSH_FACTORY_VIEW -GIMP_IS_BRUSH_FACTORY_VIEW -GIMP_TYPE_BRUSH_FACTORY_VIEW -gimp_brush_factory_view_get_type -GIMP_BRUSH_FACTORY_VIEW_CLASS -GIMP_IS_BRUSH_FACTORY_VIEW_CLASS -GIMP_BRUSH_FACTORY_VIEW_GET_CLASS -
- -
-gimpbufferview -GimpBufferView -GimpBufferView -gimp_buffer_view_new - -GimpBufferViewClass -GIMP_BUFFER_VIEW -GIMP_IS_BUFFER_VIEW -GIMP_TYPE_BUFFER_VIEW -gimp_buffer_view_get_type -GIMP_BUFFER_VIEW_CLASS -GIMP_IS_BUFFER_VIEW_CLASS -GIMP_BUFFER_VIEW_GET_CLASS -
- -
-gimpcellrendererdashes -GimpCellRendererDashes -GimpCellRendererDashes -gimp_cell_renderer_dashes_new - -GimpCellRendererDashesClass -GIMP_CELL_RENDERER_DASHES -GIMP_IS_CELL_RENDERER_DASHES -GIMP_TYPE_CELL_RENDERER_DASHES -gimp_cell_renderer_dashes_get_type -GIMP_CELL_RENDERER_DASHES_CLASS -GIMP_IS_CELL_RENDERER_DASHES_CLASS -GIMP_CELL_RENDERER_DASHES_GET_CLASS -
- -
-gimpcellrendererviewable -GimpCellRendererViewable -GimpCellRendererViewable -gimp_cell_renderer_viewable_new -gimp_cell_renderer_viewable_clicked -gimp_cell_renderer_viewable_pre_clicked - -GimpCellRendererViewableClass -GIMP_CELL_RENDERER_VIEWABLE -GIMP_IS_CELL_RENDERER_VIEWABLE -GIMP_TYPE_CELL_RENDERER_VIEWABLE -gimp_cell_renderer_viewable_get_type -GIMP_CELL_RENDERER_VIEWABLE_CLASS -GIMP_IS_CELL_RENDERER_VIEWABLE_CLASS -GIMP_CELL_RENDERER_VIEWABLE_GET_CLASS -
- -
-gimpchanneltreeview -GimpChannelTreeView -GimpChannelTreeView -GimpChannelTreeViewPriv - -GimpChannelTreeViewClass -GIMP_CHANNEL_TREE_VIEW -GIMP_IS_CHANNEL_TREE_VIEW -GIMP_TYPE_CHANNEL_TREE_VIEW -gimp_channel_tree_view_get_type -GIMP_CHANNEL_TREE_VIEW_CLASS -GIMP_IS_CHANNEL_TREE_VIEW_CLASS -GIMP_CHANNEL_TREE_VIEW_GET_CLASS -
- -
-gimpcolorbar -GimpColorBar -GimpColorBar -gimp_color_bar_new -gimp_color_bar_set_color -gimp_color_bar_set_channel -gimp_color_bar_set_buffers - -GimpColorBarClass -GIMP_COLOR_BAR -GIMP_IS_COLOR_BAR -GIMP_TYPE_COLOR_BAR -gimp_color_bar_get_type -GIMP_COLOR_BAR_CLASS -GIMP_IS_COLOR_BAR_CLASS -GIMP_COLOR_BAR_GET_CLASS -
- -
-gimpcolordialog -GimpColorDialog -GimpColorDialog -gimp_color_dialog_new -gimp_color_dialog_set_color -gimp_color_dialog_get_color - -GimpColorDialogClass -GIMP_COLOR_DIALOG -GIMP_IS_COLOR_DIALOG -GIMP_TYPE_COLOR_DIALOG -gimp_color_dialog_get_type -GIMP_COLOR_DIALOG_CLASS -GIMP_IS_COLOR_DIALOG_CLASS -GIMP_COLOR_DIALOG_GET_CLASS -
- -
-gimpcoloreditor -GimpColorEditor -GimpColorEditor -gimp_color_editor_new - -GimpColorEditorClass -GIMP_COLOR_EDITOR -GIMP_IS_COLOR_EDITOR -GIMP_TYPE_COLOR_EDITOR -gimp_color_editor_get_type -GIMP_COLOR_EDITOR_CLASS -GIMP_IS_COLOR_EDITOR_CLASS -GIMP_COLOR_EDITOR_GET_CLASS -
- -
-gimpcolormapeditor -GimpColormapEditor -GimpColormapEditor -gimp_colormap_editor_new -gimp_colormap_editor_get_index -gimp_colormap_editor_set_index -gimp_colormap_editor_max_index - -GimpColormapEditorClass -GIMP_COLORMAP_EDITOR -GIMP_IS_COLORMAP_EDITOR -GIMP_TYPE_COLORMAP_EDITOR -gimp_colormap_editor_get_type -GIMP_COLORMAP_EDITOR_CLASS -GIMP_IS_COLORMAP_EDITOR_CLASS -GIMP_COLORMAP_EDITOR_GET_CLASS -
- -
-gimpcolordisplayeditor -GimpColorDisplayEditor -GimpColorDisplayEditor -gimp_color_display_editor_new - -GimpColorDisplayEditorClass -GIMP_COLOR_DISPLAY_EDITOR -GIMP_IS_COLOR_DISPLAY_EDITOR -GIMP_TYPE_COLOR_DISPLAY_EDITOR -gimp_color_display_editor_get_type -GIMP_COLOR_DISPLAY_EDITOR_CLASS -GIMP_IS_COLOR_DISPLAY_EDITOR_CLASS -GIMP_COLOR_DISPLAY_EDITOR_GET_CLASS -
- -
-gimpcolorframe -GimpColorFrame -GIMP_COLOR_FRAME_ROWS -GimpColorFrame -gimp_color_frame_new -gimp_color_frame_set_mode -gimp_color_frame_set_has_number -gimp_color_frame_set_number -gimp_color_frame_set_has_color_area -gimp_color_frame_set_color -gimp_color_frame_set_invalid - -GimpColorFrameClass -GIMP_COLOR_FRAME -GIMP_IS_COLOR_FRAME -GIMP_TYPE_COLOR_FRAME -gimp_color_frame_get_type -GIMP_COLOR_FRAME_CLASS -GIMP_IS_COLOR_FRAME_CLASS -GIMP_COLOR_FRAME_GET_CLASS -
- -
-gimpcolorpanel -GimpColorPanel -GimpColorPanel -gimp_color_panel_new -gimp_color_panel_set_context - -GimpColorPanelClass -GIMP_COLOR_PANEL -GIMP_IS_COLOR_PANEL -GIMP_TYPE_COLOR_PANEL -gimp_color_panel_get_type -GIMP_COLOR_PANEL_CLASS -GIMP_IS_COLOR_PANEL_CLASS -GIMP_COLOR_PANEL_GET_CLASS -
- -
-gimpcolorselectorpalette -GimpColorSelectorPalette -GimpColorSelectorPalette - -GimpColorSelectorPaletteClass -GIMP_COLOR_SELECTOR_PALETTE -GIMP_IS_COLOR_SELECTOR_PALETTE -GIMP_TYPE_COLOR_SELECTOR_PALETTE -gimp_color_selector_palette_get_type -GIMP_COLOR_SELECTOR_PALETTE_CLASS -GIMP_IS_COLOR_SELECTOR_PALETTE_CLASS -GIMP_COLOR_SELECTOR_PALETTE_GET_CLASS -
- -
-gimpcomponenteditor -GimpComponentEditor -GimpComponentEditor -gimp_component_editor_new -gimp_component_editor_set_view_size - -GimpComponentEditorClass -GIMP_COMPONENT_EDITOR -GIMP_IS_COMPONENT_EDITOR -GIMP_TYPE_COMPONENT_EDITOR -gimp_component_editor_get_type -GIMP_COMPONENT_EDITOR_CLASS -GIMP_IS_COMPONENT_EDITOR_CLASS -GIMP_COMPONENT_EDITOR_GET_CLASS -
- -
-gimpcontainereditor -GimpContainerEditor -GimpContainerEditor -GimpContainerEditorPrivate -gimp_container_editor_get_selection_mode -gimp_container_editor_set_selection_mode - -GimpContainerEditorClass -GIMP_CONTAINER_EDITOR -GIMP_IS_CONTAINER_EDITOR -GIMP_TYPE_CONTAINER_EDITOR -gimp_container_editor_get_type -GIMP_CONTAINER_EDITOR_CLASS -GIMP_IS_CONTAINER_EDITOR_CLASS -GIMP_CONTAINER_EDITOR_GET_CLASS -
- -
-gimpcontainerbox -GimpContainerBox -GimpContainerBox -gimp_container_box_set_size_request - -GimpContainerBoxClass -GIMP_CONTAINER_BOX -GIMP_IS_CONTAINER_BOX -GIMP_TYPE_CONTAINER_BOX -gimp_container_box_get_type -GIMP_CONTAINER_BOX_CLASS -GIMP_IS_CONTAINER_BOX_CLASS -GIMP_CONTAINER_BOX_GET_CLASS -
- -
-gimpcontainerentry -GimpContainerEntry -GimpContainerEntry -gimp_container_entry_new - -GimpContainerEntryClass -GIMP_CONTAINER_ENTRY -GIMP_IS_CONTAINER_ENTRY -GIMP_TYPE_CONTAINER_ENTRY -gimp_container_entry_get_type -GIMP_CONTAINER_ENTRY_CLASS -GIMP_IS_CONTAINER_ENTRY_CLASS -GIMP_CONTAINER_ENTRY_GET_CLASS -
- -
-gimpcontainergridview -GimpContainerGridView -GimpContainerGridView -gimp_container_grid_view_new - -GimpContainerGridViewClass -GIMP_CONTAINER_GRID_VIEW -GIMP_IS_CONTAINER_GRID_VIEW -GIMP_TYPE_CONTAINER_GRID_VIEW -gimp_container_grid_view_get_type -GIMP_CONTAINER_GRID_VIEW_CLASS -GIMP_IS_CONTAINER_GRID_VIEW_CLASS -GIMP_CONTAINER_GRID_VIEW_GET_CLASS -
- -
-gimpcontainericonview -GimpContainerIconView -GimpContainerIconView -GimpContainerIconViewClass -GimpContainerIconViewPriv -gimp_container_icon_view_new - -GIMP_CONTAINER_ICON_VIEW -GIMP_CONTAINER_ICON_VIEW_CLASS -GIMP_CONTAINER_ICON_VIEW_GET_CLASS -GIMP_IS_CONTAINER_ICON_VIEW -GIMP_IS_CONTAINER_ICON_VIEW_CLASS -GIMP_TYPE_CONTAINER_ICON_VIEW -gimp_container_icon_view_get_type -
- -gimpcontainerpopup -GimpContainerPopup -GimpContainerPopup -gimp_container_popup_new -gimp_container_popup_show -gimp_container_popup_get_view_type -gimp_container_popup_set_view_type -gimp_container_popup_get_view_size -gimp_container_popup_set_view_size - -GimpContainerPopupClass -GIMP_CONTAINER_POPUP -GIMP_IS_CONTAINER_POPUP -GIMP_TYPE_CONTAINER_POPUP -gimp_container_popup_get_type -GIMP_CONTAINER_POPUP_CLASS -GIMP_IS_CONTAINER_POPUP_CLASS -GIMP_CONTAINER_POPUP_GET_CLASS - - -
-gimpcontainertreestore -GimpContainerTreeStore -GimpContainerTreeStore -GimpContainerTreeStoreClass -gimp_container_tree_store_columns_init -gimp_container_tree_store_columns_add -gimp_container_tree_store_new -gimp_container_tree_store_add_renderer_cell -gimp_container_tree_store_set_use_name -gimp_container_tree_store_get_use_name -gimp_container_tree_store_set_context -gimp_container_tree_store_insert_item -gimp_container_tree_store_rename_item -gimp_container_tree_store_reorder_item -gimp_container_tree_store_remove_item -gimp_container_tree_store_clear_items -gimp_container_tree_store_set_view_size - -GIMP_CONTAINER_TREE_STORE -GIMP_CONTAINER_TREE_STORE_CLASS -GIMP_CONTAINER_TREE_STORE_GET_CLASS -GIMP_IS_CONTAINER_TREE_STORE -GIMP_IS_CONTAINER_TREE_STORE_CLASS -GIMP_TYPE_CONTAINER_TREE_STORE -gimp_container_tree_store_get_type -
- -
-gimpcontainertreeview -GimpContainerTreeView -GimpContainerTreeView -GimpContainerTreeViewPriv -gimp_container_tree_view_new -gimp_container_tree_view_set_main_column_title -gimp_container_tree_view_add_toggle_cell -gimp_container_tree_view_add_renderer_cell -gimp_container_tree_view_set_dnd_drop_to_empty -gimp_container_tree_view_connect_name_edited - -GimpContainerTreeViewClass -GIMP_CONTAINER_TREE_VIEW -GIMP_IS_CONTAINER_TREE_VIEW -GIMP_TYPE_CONTAINER_TREE_VIEW -gimp_container_tree_view_get_type -GIMP_CONTAINER_TREE_VIEW_CLASS -GIMP_IS_CONTAINER_TREE_VIEW_CLASS -GIMP_CONTAINER_TREE_VIEW_GET_CLASS -
- -
-gimpcontainertreeview-dnd -GimpContainerTreeView-dnd -gimp_container_tree_view_drag_leave -gimp_container_tree_view_drag_motion -gimp_container_tree_view_drag_drop -gimp_container_tree_view_drag_data_received -gimp_container_tree_view_real_drop_possible -gimp_container_tree_view_real_drop_viewable -
- -
-gimpcontainercombobox -GimpContainerComboBox -GimpContainerComboBox -gimp_container_combo_box_new - -GimpContainerComboBoxClass -GIMP_CONTAINER_COMBO_BOX -GIMP_IS_CONTAINER_COMBO_BOX -GIMP_TYPE_CONTAINER_COMBO_BOX -gimp_container_combo_box_get_type -GIMP_CONTAINER_COMBO_BOX_CLASS -GIMP_IS_CONTAINER_COMBO_BOX_CLASS -GIMP_CONTAINER_COMBO_BOX_GET_CLASS -
- -
-gimpcontainerview -GimpContainerViewProp -GimpContainerView -GimpContainerView -GimpContainerViewInterface -gimp_container_view_get_container -gimp_container_view_set_container -gimp_container_view_get_context -gimp_container_view_set_context -gimp_container_view_get_selection_mode -gimp_container_view_set_selection_mode -gimp_container_view_get_view_size -gimp_container_view_set_view_size -gimp_container_view_get_reorderable -gimp_container_view_set_reorderable -gimp_container_view_get_dnd_widget -gimp_container_view_set_dnd_widget -gimp_container_view_enable_dnd -gimp_container_view_select_item -gimp_container_view_activate_item -gimp_container_view_context_item -gimp_container_view_get_selected -gimp_container_view_lookup -gimp_container_view_item_selected -gimp_container_view_multi_selected -gimp_container_view_item_activated -gimp_container_view_item_context -gimp_container_view_install_properties -gimp_container_view_set_property -gimp_container_view_get_property - -GIMP_CONTAINER_VIEW -GIMP_IS_CONTAINER_VIEW -GIMP_TYPE_CONTAINER_VIEW -gimp_container_view_interface_get_type -GIMP_CONTAINER_VIEW_GET_IFACE -
- -
-gimpcontainerview-utils -GimpContainerView-utils -gimp_container_view_get_by_dockable -gimp_container_view_remove_active -
- -
-gimpdataeditor -GimpDataEditor -GimpDataEditor -GimpDataEditorClass -gimp_data_editor_set_data -gimp_data_editor_get_data -gimp_data_editor_get_edit_active -gimp_data_editor_set_edit_active - -GIMP_DATA_EDITOR -GIMP_IS_DATA_EDITOR -GIMP_TYPE_DATA_EDITOR -gimp_data_editor_get_type -GIMP_DATA_EDITOR_CLASS -GIMP_IS_DATA_EDITOR_CLASS -GIMP_DATA_EDITOR_GET_CLASS -
- -
-gimpdatafactoryview -GimpDataFactoryView -GimpDataFactoryView -GimpDataFactoryViewPriv -gimp_data_factory_view_new -gimp_data_factory_view_get_edit_button -gimp_data_factory_view_get_duplicate_button -gimp_data_factory_view_get_data_factory -gimp_data_factory_view_get_children_type -gimp_data_factory_view_has_data_new_func -gimp_data_factory_view_have - -GimpDataFactoryViewClass -GIMP_DATA_FACTORY_VIEW -GIMP_IS_DATA_FACTORY_VIEW -GIMP_TYPE_DATA_FACTORY_VIEW -gimp_data_factory_view_get_type -GIMP_DATA_FACTORY_VIEW_CLASS -GIMP_IS_DATA_FACTORY_VIEW_CLASS -GIMP_DATA_FACTORY_VIEW_GET_CLASS -
- -
-gimpcontrollereditor -GimpControllerEditor -GimpControllerEditor -gimp_controller_editor_new - -GimpControllerEditorClass -GIMP_CONTROLLER_EDITOR -GIMP_IS_CONTROLLER_EDITOR -GIMP_TYPE_CONTROLLER_EDITOR -gimp_controller_editor_get_type -GIMP_CONTROLLER_EDITOR_CLASS -GIMP_IS_CONTROLLER_EDITOR_CLASS -GIMP_CONTROLLER_EDITOR_GET_CLASS -
- -
-gimpcontrollerlist -GimpControllerList -GimpControllerList -gimp_controller_list_new - -GimpControllerListClass -GIMP_CONTROLLER_LIST -GIMP_IS_CONTROLLER_LIST -GIMP_TYPE_CONTROLLER_LIST -gimp_controller_list_get_type -GIMP_CONTROLLER_LIST_CLASS -GIMP_IS_CONTROLLER_LIST_CLASS -GIMP_CONTROLLER_LIST_GET_CLASS -
- -
-gimpcontrollerkeyboard -GimpControllerKeyboard -GimpControllerKeyboard -gimp_controller_keyboard_key_press - -GimpControllerKeyboardClass -GIMP_CONTROLLER_KEYBOARD -GIMP_IS_CONTROLLER_KEYBOARD -GIMP_TYPE_CONTROLLER_KEYBOARD -gimp_controller_keyboard_get_type -GIMP_CONTROLLER_KEYBOARD_CLASS -GIMP_IS_CONTROLLER_KEYBOARD_CLASS -GIMP_CONTROLLER_KEYBOARD_GET_CLASS -GIMP_ENABLE_CONTROLLER_UNDER_CONSTRUCTION -
- -
-gimpcontrollermouse -GimpControllerMouse -GIMP_ENABLE_CONTROLLER_UNDER_CONSTRUCTION -GimpControllerMouse -GimpControllerMouseClass -gimp_controller_mouse_button - -GIMP_CONTROLLER_MOUSE -GIMP_CONTROLLER_MOUSE_CLASS -GIMP_CONTROLLER_MOUSE_GET_CLASS -GIMP_IS_CONTROLLER_MOUSE -GIMP_IS_CONTROLLER_MOUSE_CLASS -GIMP_TYPE_CONTROLLER_MOUSE -gimp_controller_mouse_get_type -
- -
-gimpcontrollerwheel -GimpControllerWheel -GimpControllerWheel -gimp_controller_wheel_scroll - -GimpControllerWheelClass -GIMP_CONTROLLER_WHEEL -GIMP_IS_CONTROLLER_WHEEL -GIMP_TYPE_CONTROLLER_WHEEL -gimp_controller_wheel_get_type -GIMP_CONTROLLER_WHEEL_CLASS -GIMP_IS_CONTROLLER_WHEEL_CLASS -GIMP_CONTROLLER_WHEEL_GET_CLASS -GIMP_ENABLE_CONTROLLER_UNDER_CONSTRUCTION -
- -
-gimpcontrollerinfo -GimpControllerInfo -GimpControllerInfo -GimpControllerEventSnooper -gimp_controller_info_new -gimp_controller_info_set_enabled -gimp_controller_info_get_enabled -gimp_controller_info_set_event_snooper - -GimpControllerInfoClass -GIMP_CONTROLLER_INFO -GIMP_IS_CONTROLLER_INFO -GIMP_TYPE_CONTROLLER_INFO -gimp_controller_info_get_type -GIMP_CONTROLLER_INFO_CLASS -GIMP_IS_CONTROLLER_INFO_CLASS -GIMP_CONTROLLER_INFO_GET_CLASS -
- -
-gimpcontrollers -gimp_controllers_init -gimp_controllers_exit -gimp_controllers_restore -gimp_controllers_save -gimp_controllers_get_list -gimp_controllers_get_ui_manager -gimp_controllers_get_mouse -gimp_controllers_get_wheel -gimp_controllers_get_keyboard -
- -
-gimpcursorview -GimpCursorView -GimpCursorView -GimpCursorViewPriv -gimp_cursor_view_new -gimp_cursor_view_set_sample_merged -gimp_cursor_view_get_sample_merged -gimp_cursor_view_update_cursor -gimp_cursor_view_clear_cursor - -GimpCursorViewClass -GIMP_CURSOR_VIEW -GIMP_IS_CURSOR_VIEW -GIMP_TYPE_CURSOR_VIEW -gimp_cursor_view_get_type -GIMP_CURSOR_VIEW_CLASS -GIMP_IS_CURSOR_VIEW_CLASS -GIMP_CURSOR_VIEW_GET_CLASS -
- -
-gimpcurveview -GimpCurveView -GimpCurveView -gimp_curve_view_new -gimp_curve_view_set_curve -gimp_curve_view_get_curve -gimp_curve_view_add_background -gimp_curve_view_remove_background -gimp_curve_view_remove_all_backgrounds -gimp_curve_view_set_selected -gimp_curve_view_set_range_x -gimp_curve_view_set_range_y -gimp_curve_view_set_xpos -gimp_curve_view_set_x_axis_label -gimp_curve_view_set_y_axis_label - -GimpCurveViewClass -GIMP_CURVE_VIEW -GIMP_IS_CURVE_VIEW -GIMP_TYPE_CURVE_VIEW -gimp_curve_view_get_type -GIMP_CURVE_VIEW_CLASS -GIMP_IS_CURVE_VIEW_CLASS -GIMP_CURVE_VIEW_GET_CLASS -
- -
-gimpdbusservice -GimpDBusService -GIMP_DBUS_SERVICE_NAME -GIMP_DBUS_SERVICE_PATH -GIMP_DBUS_SERVICE_INTERFACE -GimpDBusService -gimp_dbus_service_new -gimp_dbus_service_open -gimp_dbus_service_open_as_new -gimp_dbus_service_activate - -GimpDBusServiceClass -GIMP_DBUS_SERVICE -GIMP_IS_DBUS_SERVICE -GIMP_TYPE_DBUS_SERVICE -gimp_dbus_service_get_type -GIMP_DBUS_SERVICE_CLASS -GIMP_IS_DBUS_SERVICE_CLASS -GIMP_DBUS_SERVICE_GET_CLASS -
- -
-gimpdeviceeditor -GimpDeviceEditor -GimpDeviceEditor -GimpDeviceEditorClass -gimp_device_editor_new - -GIMP_DEVICE_EDITOR -GIMP_DEVICE_EDITOR_CLASS -GIMP_DEVICE_EDITOR_GET_CLASS -GIMP_IS_DEVICE_EDITOR -GIMP_IS_DEVICE_EDITOR_CLASS -GIMP_TYPE_DEVICE_EDITOR -gimp_device_editor_get_type -
- -
-gimpdeviceinfo -GimpDeviceInfo -GIMP_DEVICE_INFO_CONTEXT_MASK -GimpDeviceInfo -gimp_device_info_new -gimp_device_info_get_device -gimp_device_info_set_device -gimp_device_info_get_mode -gimp_device_info_set_mode -gimp_device_info_has_cursor -gimp_device_info_get_n_axes -gimp_device_info_get_axis_use -gimp_device_info_set_axis_use -gimp_device_info_get_n_keys -gimp_device_info_get_key -gimp_device_info_set_key -gimp_device_info_get_curve -gimp_device_info_map_axis -gimp_device_info_changed -gimp_device_info_get_by_device -gimp_device_info_compare - -GimpDeviceInfoClass -GIMP_DEVICE_INFO -GIMP_IS_DEVICE_INFO -GIMP_TYPE_DEVICE_INFO -gimp_device_info_get_type -GIMP_DEVICE_INFO_CLASS -GIMP_IS_DEVICE_INFO_CLASS -GIMP_DEVICE_INFO_GET_CLASS -
- -
-gimpdeviceinfo-coords -GimpDeviceInfo-coords -gimp_device_info_get_device_coords -gimp_device_info_get_device_state -gimp_device_info_get_event_coords -gimp_device_info_get_event_state -gimp_device_info_get_time_coords -
- -
-gimpdeviceinfoeditor -GimpDeviceInfoEditor -GimpDeviceInfoEditor -GimpDeviceInfoEditorClass -gimp_device_info_editor_new - -GIMP_DEVICE_INFO_EDITOR -GIMP_DEVICE_INFO_EDITOR_CLASS -GIMP_DEVICE_INFO_EDITOR_GET_CLASS -GIMP_IS_DEVICE_INFO_EDITOR -GIMP_IS_DEVICE_INFO_EDITOR_CLASS -GIMP_TYPE_DEVICE_INFO_EDITOR -gimp_device_info_editor_get_type -
- -
-gimpdevicestatus -GimpDeviceStatus -GimpDeviceStatusEntry -GimpDeviceStatus -gimp_device_status_new - -GimpDeviceStatusClass -GIMP_DEVICE_STATUS -GIMP_IS_DEVICE_STATUS -GIMP_TYPE_DEVICE_STATUS -gimp_device_status_get_type -GIMP_DEVICE_STATUS_CLASS -GIMP_IS_DEVICE_STATUS_CLASS -GIMP_DEVICE_STATUS_GET_CLASS -
- -
-gimpdialogfactory -GimpDialogFactory -GimpDialogFactory -GimpDialogFactoryPrivate -GIMP_DIALOG_VISIBILITY_KEY -GimpDialogVisibilityState -GimpDialogNewFunc -GimpDialogFactoryEntry -gimp_dialog_factory_new -gimp_dialog_factory_register_entry -gimp_dialog_factory_find_entry -gimp_dialog_factory_find_session_info -gimp_dialog_factory_find_widget -gimp_dialog_factory_get_context -gimp_dialog_factory_get_menu_factory -gimp_dialog_factory_get_open_dialogs -gimp_dialog_factory_get_session_infos -gimp_dialog_factory_add_session_info -gimp_dialog_factory_dialog_new -gimp_dialog_factory_dialog_raise -gimp_dialog_factory_dockable_new -gimp_dialog_factory_add_dialog -gimp_dialog_factory_add_foreign -gimp_dialog_factory_remove_dialog -gimp_dialog_factory_hide_dialog -gimp_dialog_factory_save -gimp_dialog_factory_restore -gimp_dialog_factory_set_state -gimp_dialog_factory_get_state -gimp_dialog_factory_show_with_display -gimp_dialog_factory_hide_with_display -gimp_dialog_factory_set_busy -gimp_dialog_factory_unset_busy -gimp_dialog_factory_from_widget -gimp_dialog_factory_set_has_min_size -gimp_dialog_factory_get_has_min_size -gimp_dialog_factory_get_singleton -gimp_dialog_factory_set_singleton - -GimpDialogFactoryClass -GIMP_DIALOG_FACTORY -GIMP_IS_DIALOG_FACTORY -GIMP_TYPE_DIALOG_FACTORY -gimp_dialog_factory_get_type -GIMP_DIALOG_FACTORY_CLASS -GIMP_IS_DIALOG_FACTORY_CLASS -GIMP_DIALOG_FACTORY_GET_CLASS -
- -
-gimpwindowstrategy -GimpWindowStrategy -GimpWindowStrategy -GimpWindowStrategyInterface -gimp_window_strategy_show_dockable_dialog - -GIMP_IS_WINDOW_STRATEGY -GIMP_TYPE_WINDOW_STRATEGY -GIMP_WINDOW_STRATEGY -GIMP_WINDOW_STRATEGY_GET_IFACE -gimp_window_strategy_interface_get_type -
- -
-gimpuiconfigurer -GimpUIConfigurer -GimpUIConfigurer -GimpUIConfigurerClass -gimp_ui_configurer_configure - -GIMP_IS_UI_CONFIGURER -GIMP_IS_UI_CONFIGURER_CLASS -GIMP_TYPE_UI_CONFIGURER -GIMP_UI_CONFIGURER -GIMP_UI_CONFIGURER_CLASS -GIMP_UI_CONFIGURER_GET_CLASS -GimpUIConfigurerPrivate -gimp_ui_configurer_get_type -
- -
-gimpwindow -GimpWindow -GimpWindow - -GimpWindowClass -GIMP_WINDOW -GIMP_IS_WINDOW -GIMP_TYPE_WINDOW -gimp_window_get_type -GIMP_WINDOW_CLASS -GIMP_IS_WINDOW_CLASS -GIMP_WINDOW_GET_CLASS -
- -
-gimpdockwindow -GimpDockWindow -GimpDockWindow -GimpDockWindowPrivate -gimp_dock_window_new -gimp_dock_window_get_id -gimp_dock_window_add_dock -gimp_dock_window_remove_dock -gimp_dock_window_get_context -gimp_dock_window_get_dialog_factory -gimp_dock_window_get_auto_follow_active -gimp_dock_window_set_auto_follow_active -gimp_dock_window_get_show_image_menu -gimp_dock_window_set_show_image_menu -gimp_dock_window_setup -gimp_dock_window_has_toolbox -gimp_dock_window_from_dock - -GimpDockWindowClass -GIMP_DOCK_WINDOW -GIMP_IS_DOCK_WINDOW -GIMP_TYPE_DOCK_WINDOW -gimp_dock_window_get_type -GIMP_DOCK_WINDOW_CLASS -GIMP_IS_DOCK_WINDOW_CLASS -GIMP_DOCK_WINDOW_GET_CLASS -
- -
-gimppanedbox -GimpPanedBox -GimpPanedBox -GimpPanedBoxClass -gimp_paned_box_add_widget -gimp_paned_box_new -gimp_paned_box_remove_widget -gimp_paned_box_set_drag_handler -gimp_paned_box_set_dropped_cb -gimp_paned_box_will_handle_drag - -GIMP_IS_PANED_BOX -GIMP_IS_PANED_BOX_CLASS -GIMP_PANED_BOX -GIMP_PANED_BOX_CLASS -GIMP_PANED_BOX_GET_CLASS -GIMP_TYPE_PANED_BOX -GimpPanedBoxPrivate -gimp_paned_box_get_type -
- -
-gimpdockcolumns -GimpDockColumns -GimpDockColumns -GimpDockColumnsClass -gimp_dock_columns_add_dock -gimp_dock_columns_get_context -gimp_dock_columns_get_dialog_factory -gimp_dock_columns_get_docks -gimp_dock_columns_get_ui_manager -gimp_dock_columns_new -gimp_dock_columns_prepare_dockbook -gimp_dock_columns_remove_dock -gimp_dock_columns_set_context - -GIMP_DOCK_COLUMNS -GIMP_DOCK_COLUMNS_CLASS -GIMP_DOCK_COLUMNS_GET_CLASS -GIMP_IS_DOCK_COLUMNS -GIMP_IS_DOCK_COLUMNS_CLASS -GIMP_TYPE_DOCK_COLUMNS -GimpDockColumnsPrivate -gimp_dock_columns_get_type -
- -
-gimpdockcontainer -GimpDockContainer -GimpDockContainer -GimpDockContainerInterface -gimp_dock_container_add_dock -gimp_dock_container_get_dock_side -gimp_dock_container_get_docks -gimp_dock_container_get_ui_manager - -GIMP_DOCK_CONTAINER -GIMP_DOCK_CONTAINER_GET_IFACE -GIMP_IS_DOCK_CONTAINER -GIMP_TYPE_DOCK_CONTAINER -gimp_dock_container_interface_get_type -
- -
-gimpdock -GimpDock -GIMP_DOCK_BOOK_SEPARATOR -GIMP_DOCK_COLUMN_SEPARATOR -GIMP_DOCK_DOCKABLE_SEPARATOR -GimpDock -GimpDockPrivate -gimp_dock_get_description -gimp_dock_set_host_geometry_hints -gimp_dock_invalidate_geometry -gimp_dock_update_with_context -gimp_dock_get_context -gimp_dock_get_dialog_factory -gimp_dock_get_ui_manager -gimp_dock_get_dockbooks -gimp_dock_get_n_dockables -gimp_dock_get_main_vbox -gimp_dock_get_vbox -gimp_dock_get_id -gimp_dock_set_id -gimp_dock_add -gimp_dock_remove -gimp_dock_add_book -gimp_dock_remove_book -gimp_dock_temp_add -gimp_dock_temp_remove - -GimpDockClass -GIMP_DOCK -GIMP_IS_DOCK -GIMP_TYPE_DOCK -gimp_dock_get_type -GIMP_DOCK_CLASS -GIMP_IS_DOCK_CLASS -GIMP_DOCK_GET_CLASS -
- -
-gimpdockable -GIMP_DOCKABLE_DRAG_OFFSET -GimpDockable -GimpDockable -GimpDockablePrivate -gimp_dockable_new -gimp_dockable_set_dockbook -gimp_dockable_get_dockbook -gimp_dockable_get_tab_style -gimp_dockable_get_name -gimp_dockable_get_blurb -gimp_dockable_get_help_id -gimp_dockable_get_stock_id -gimp_dockable_get_icon -gimp_dockable_get_locked -gimp_dockable_set_drag_pos -gimp_dockable_get_drag_pos -gimp_dockable_get_drag_handler -gimp_dockable_set_locked -gimp_dockable_is_locked -gimp_dockable_set_tab_style -gimp_dockable_set_actual_tab_style -gimp_dockable_get_actual_tab_style -gimp_dockable_create_tab_widget -gimp_dockable_create_drag_widget -gimp_dockable_set_context -gimp_dockable_get_menu -gimp_dockable_set_drag_handler -gimp_dockable_detach -gimp_dockable_blink -gimp_dockable_blink_cancel - -GimpDockableClass -GIMP_DOCKABLE -GIMP_IS_DOCKABLE -GIMP_TYPE_DOCKABLE -gimp_dockable_get_type -GIMP_DOCKABLE_CLASS -GIMP_IS_DOCKABLE_CLASS -GIMP_DOCKABLE_GET_CLASS -
- -
-gimpdocked -GimpDocked -GimpDocked -GimpDockedInterface -gimp_docked_set_aux_info -gimp_docked_get_aux_info -gimp_docked_get_preview -gimp_docked_set_context -gimp_docked_get_prefer_icon -gimp_docked_get_menu -gimp_docked_get_title -gimp_docked_title_changed -gimp_docked_has_button_bar -gimp_docked_set_show_button_bar -gimp_docked_get_show_button_bar - -GIMP_DOCKED -GIMP_IS_DOCKED -GIMP_TYPE_DOCKED -gimp_docked_interface_get_type -GIMP_DOCKED_GET_IFACE -
- -
-gimpdockbook -GimpDockbook -GimpDockbook -GimpDockbookPrivate -gimp_dockbook_new -gimp_dockbook_get_dock -gimp_dockbook_set_dock -gimp_dockbook_get_ui_manager -gimp_dockbook_add -gimp_dockbook_add_from_dialog_factory -gimp_dockbook_remove -gimp_dockbook_update_with_context -gimp_dockbook_create_tab_widget -gimp_dockbook_create_tab_widget -gimp_dockbook_update_auto_tab_style -gimp_dockbook_drop_dockable -gimp_dockbook_set_drag_handler -gimp_dockbook_drag_source_to_dockable - -GimpDockbookClass -GIMP_DOCKBOOK -GIMP_IS_DOCKBOOK -GIMP_TYPE_DOCKBOOK -gimp_dockbook_get_type -GIMP_DOCKBOOK_CLASS -GIMP_IS_DOCKBOOK_CLASS -GIMP_DOCKBOOK_GET_CLASS -
- -
-gimpdocumentview -GimpDocumentView -GimpDocumentView -gimp_document_view_new - -GimpDocumentViewClass -GIMP_DOCUMENT_VIEW -GIMP_IS_DOCUMENT_VIEW -GIMP_TYPE_DOCUMENT_VIEW -gimp_document_view_get_type -GIMP_DOCUMENT_VIEW_CLASS -GIMP_IS_DOCUMENT_VIEW_CLASS -GIMP_DOCUMENT_VIEW_GET_CLASS -
- -
-gimpdrawabletreeview -GimpDrawableTreeView -GimpDrawableTreeView - -GimpDrawableTreeViewClass -GIMP_DRAWABLE_TREE_VIEW -GIMP_IS_DRAWABLE_TREE_VIEW -GIMP_TYPE_DRAWABLE_TREE_VIEW -gimp_drawable_tree_view_get_type -GIMP_DRAWABLE_TREE_VIEW_CLASS -GIMP_IS_DRAWABLE_TREE_VIEW_CLASS -GIMP_DRAWABLE_TREE_VIEW_GET_CLASS -
- -
-gimpeditor -GimpEditor -GimpEditor -GimpEditorPrivate -gimp_editor_new -gimp_editor_create_menu -gimp_editor_popup_menu -gimp_editor_add_button -gimp_editor_add_action_button -gimp_editor_add_stock_box -gimp_editor_set_show_name -gimp_editor_set_name -gimp_editor_set_box_style -gimp_editor_get_ui_manager -gimp_editor_get_button_box -gimp_editor_get_menu_factory -gimp_editor_get_popup_data -gimp_editor_get_ui_path - -GimpEditorClass -GIMP_EDITOR -GIMP_IS_EDITOR -GIMP_TYPE_EDITOR -gimp_editor_get_type -GIMP_EDITOR_CLASS -GIMP_IS_EDITOR_CLASS -GIMP_EDITOR_GET_CLASS -
- -
-gimperrorconsole -GimpErrorConsole -GimpErrorConsole -gimp_error_console_new -gimp_error_console_add -error_console_select_all_cmd_callback -error_console_save_cmd_callback - -GimpErrorConsoleClass -GIMP_ERROR_CONSOLE -GIMP_IS_ERROR_CONSOLE -GIMP_TYPE_ERROR_CONSOLE -gimp_error_console_get_type -GIMP_ERROR_CONSOLE_CLASS -GIMP_IS_ERROR_CONSOLE_CLASS -GIMP_ERROR_CONSOLE_GET_CLASS -
- -
-gimperrordialog -GimpErrorDialog -GimpErrorDialog -gimp_error_dialog_new -gimp_error_dialog_add - -GimpErrorDialogClass -GIMP_ERROR_DIALOG -GIMP_IS_ERROR_DIALOG -GIMP_TYPE_ERROR_DIALOG -gimp_error_dialog_get_type -GIMP_ERROR_DIALOG_CLASS -GIMP_IS_ERROR_DIALOG_CLASS -GIMP_ERROR_DIALOG_GET_CLASS -
- -
-gimpfontview -GimpFontView -GimpFontView -gimp_font_view_new - -GimpFontViewClass -GIMP_FONT_VIEW -GIMP_IS_FONT_VIEW -GIMP_TYPE_FONT_VIEW -gimp_font_view_get_type -GIMP_FONT_VIEW_CLASS -GIMP_IS_FONT_VIEW_CLASS -GIMP_FONT_VIEW_GET_CLASS -
- -
-gimpgradienteditor -GRAD_NUM_COLORS -GradientEditorDragMode -GimpGradientEditor -GimpGradientEditor -gimp_gradient_editor_new -gimp_gradient_editor_update -gimp_gradient_editor_zoom - -GimpGradientEditorClass -GIMP_GRADIENT_EDITOR -GIMP_IS_GRADIENT_EDITOR -GIMP_TYPE_GRADIENT_EDITOR -gimp_gradient_editor_get_type -GIMP_GRADIENT_EDITOR_CLASS -GIMP_IS_GRADIENT_EDITOR_CLASS -GIMP_GRADIENT_EDITOR_GET_CLASS -
- -
-gimpdasheditor -GimpDashEditor -GimpDashEditor -gimp_dash_editor_new -gimp_dash_editor_shift_left -gimp_dash_editor_shift_right - -GimpDashEditorClass -GIMP_DASH_EDITOR -GIMP_IS_DASH_EDITOR -GIMP_TYPE_DASH_EDITOR -gimp_dash_editor_get_type -GIMP_DASH_EDITOR_CLASS -GIMP_IS_DASH_EDITOR_CLASS -GIMP_DASH_EDITOR_GET_CLASS -
- -
-gimpfgbgeditor -GimpFgBgEditor -GimpFgBgEditor -gimp_fg_bg_editor_new -gimp_fg_bg_editor_set_context -gimp_fg_bg_editor_set_active - -GimpFgBgEditorClass -GIMP_FG_BG_EDITOR -GIMP_IS_FG_BG_EDITOR -GIMP_TYPE_FG_BG_EDITOR -gimp_fg_bg_editor_get_type -GIMP_FG_BG_EDITOR_CLASS -GIMP_IS_FG_BG_EDITOR_CLASS -GIMP_FG_BG_EDITOR_GET_CLASS -
- -
-gimpfgbgview -GimpFgBgView -GimpFgBgView -gimp_fg_bg_view_new -gimp_fg_bg_view_set_context - -GimpFgBgViewClass -GIMP_FG_BG_VIEW -GIMP_IS_FG_BG_VIEW -GIMP_TYPE_FG_BG_VIEW -gimp_fg_bg_view_get_type -GIMP_FG_BG_VIEW_CLASS -GIMP_IS_FG_BG_VIEW_CLASS -GIMP_FG_BG_VIEW_GET_CLASS -
- -
-gimpfiledialog -GimpFileDialog -GimpFileDialogState -GimpFileDialog -gimp_file_dialog_new -gimp_file_dialog_set_sensitive -gimp_file_dialog_set_file_proc -gimp_file_dialog_set_open_image -gimp_file_dialog_set_save_image -gimp_file_dialog_get_state -gimp_file_dialog_set_state -gimp_file_dialog_state_destroy - -GimpFileDialogClass -GIMP_FILE_DIALOG -GIMP_IS_FILE_DIALOG -GIMP_TYPE_FILE_DIALOG -gimp_file_dialog_get_type -GIMP_FILE_DIALOG_CLASS -GIMP_IS_FILE_DIALOG_CLASS -GIMP_FILE_DIALOG_GET_CLASS -
- -
-gimpfileprocview -GimpFileProcView -GimpFileProcView -gimp_file_proc_view_new -gimp_file_proc_view_get_proc -gimp_file_proc_view_set_proc -gimp_file_proc_view_get_help_id - -GimpFileProcViewClass -GIMP_FILE_PROC_VIEW -GIMP_IS_FILE_PROC_VIEW -GIMP_TYPE_FILE_PROC_VIEW -gimp_file_proc_view_get_type -GIMP_FILE_PROC_VIEW_CLASS -GIMP_IS_FILE_PROC_VIEW_CLASS -GIMP_FILE_PROC_VIEW_GET_CLASS -
- -
-gimpgrideditor -GimpGridEditor -GimpGridEditor -gimp_grid_editor_new - -GimpGridEditorClass -GIMP_GRID_EDITOR -GIMP_IS_GRID_EDITOR -GIMP_TYPE_GRID_EDITOR -gimp_grid_editor_get_type -GIMP_GRID_EDITOR_CLASS -GIMP_IS_GRID_EDITOR_CLASS -GIMP_GRID_EDITOR_GET_CLASS -
- -
-gimphandlebar -GimpHandleBar -GimpHandleBar -gimp_handle_bar_new -gimp_handle_bar_set_adjustment - -GimpHandleBarClass -GIMP_HANDLE_BAR -GIMP_IS_HANDLE_BAR -GIMP_TYPE_HANDLE_BAR -gimp_handle_bar_get_type -GIMP_HANDLE_BAR_CLASS -GIMP_IS_HANDLE_BAR_CLASS -GIMP_HANDLE_BAR_GET_CLASS -
- -
-gimphistogrambox -GimpHistogramBox -GimpHistogramBox -gimp_histogram_box_new -gimp_histogram_box_set_channel - -GimpHistogramBoxClass -GIMP_HISTOGRAM_BOX -GIMP_IS_HISTOGRAM_BOX -GIMP_TYPE_HISTOGRAM_BOX -gimp_histogram_box_get_type -GIMP_HISTOGRAM_BOX_CLASS -GIMP_IS_HISTOGRAM_BOX_CLASS -GIMP_HISTOGRAM_BOX_GET_CLASS -
- -
-gimphistogrameditor -GimpHistogramEditor -GimpHistogramEditor -gimp_histogram_editor_new - -GimpHistogramEditorClass -GIMP_HISTOGRAM_EDITOR -GIMP_IS_HISTOGRAM_EDITOR -GIMP_TYPE_HISTOGRAM_EDITOR -gimp_histogram_editor_get_type -GIMP_HISTOGRAM_EDITOR_CLASS -GIMP_IS_HISTOGRAM_EDITOR_CLASS -GIMP_HISTOGRAM_EDITOR_GET_CLASS -
- -
-gimphistogramview -GimpHistogramView -GimpHistogramView -gimp_histogram_view_new -gimp_histogram_view_set_histogram -gimp_histogram_view_get_histogram -gimp_histogram_view_get_background -gimp_histogram_view_set_background -gimp_histogram_view_set_channel -gimp_histogram_view_get_channel -gimp_histogram_view_set_scale -gimp_histogram_view_get_scale -gimp_histogram_view_set_range -gimp_histogram_view_get_range - -GimpHistogramViewClass -GIMP_HISTOGRAM_VIEW -GIMP_IS_HISTOGRAM_VIEW -GIMP_TYPE_HISTOGRAM_VIEW -gimp_histogram_view_get_type -GIMP_HISTOGRAM_VIEW_CLASS -GIMP_IS_HISTOGRAM_VIEW_CLASS -GIMP_HISTOGRAM_VIEW_GET_CLASS -
- -
-gimpiconpicker -GimpIconPicker -GimpIconPicker -GimpIconPickerClass -gimp_icon_picker_new -gimp_icon_picker_get_stock_id -gimp_icon_picker_set_stock_id - -GIMP_ICON_PICKER -GIMP_ICON_PICKER_CLASS -GIMP_ICON_PICKER_GET_CLASS -GIMP_IS_ICON_PICKER -GIMP_IS_ICON_PICKER_CLASS -GIMP_TYPE_ICON_PICKER -gimp_icon_picker_get_type -
- -
-gimplanguagecombobox -GimpLanguageComboBox -GimpLanguageComboBox -GimpLanguageComboBoxClass -gimp_language_combo_box_get_code -gimp_language_combo_box_new -gimp_language_combo_box_set_code - -GIMP_IS_LANGUAGE_COMBO_BOX -GIMP_IS_LANGUAGE_COMBO_BOX_CLASS -GIMP_LANGUAGE_COMBO_BOX -GIMP_LANGUAGE_COMBO_BOX_CLASS -GIMP_LANGUAGE_COMBO_BOX_GET_CLASS -GIMP_TYPE_LANGUAGE_COMBO_BOX -gimp_language_combo_box_get_type -
- -
-gimplanguageentry -GimpLanguageEntry -GimpLanguageEntry -gimp_language_entry_new -gimp_language_entry_get_code -gimp_language_entry_set_code - -GimpLanguageEntryClass -GIMP_LANGUAGE_ENTRY -GIMP_IS_LANGUAGE_ENTRY -GIMP_TYPE_LANGUAGE_ENTRY -gimp_language_entry_get_type -GIMP_LANGUAGE_ENTRY_CLASS -GIMP_IS_LANGUAGE_ENTRY_CLASS -GIMP_LANGUAGE_ENTRY_GET_CLASS -
- -
-gimplanguagestore -GimpLanguageStore -GimpLanguageStore -gimp_language_store_new -gimp_language_store_add -gimp_language_store_lookup - -GimpLanguageStoreClass -GIMP_LANGUAGE_STORE -GIMP_IS_LANGUAGE_STORE -GIMP_TYPE_LANGUAGE_STORE -gimp_language_store_get_type -GIMP_LANGUAGE_STORE_CLASS -GIMP_IS_LANGUAGE_STORE_CLASS -GIMP_LANGUAGE_STORE_GET_CLASS -
- -
-gimplanguagestore-parser -GimpLanguageStore-parser -gimp_language_store_parse_iso_codes -
- -
-gimptranslationstore -GimpTranslationStore -GimpTranslationStoreClass -gimp_translation_store_new - -GIMP_IS_TRANSLATION_STORE -GIMP_IS_TRANSLATION_STORE_CLASS -GIMP_TRANSLATION_STORE -GIMP_TRANSLATION_STORE_CLASS -GIMP_TRANSLATION_STORE_GET_CLASS -GIMP_TYPE_TRANSLATION_STORE -gimp_translation_store_get_type -
- -
-gimpmenudock -GimpMenuDock -GimpMenuDock -GimpMenuDockPrivate -gimp_menu_dock_new - -GimpMenuDockClass -GIMP_MENU_DOCK -GIMP_IS_MENU_DOCK -GIMP_TYPE_MENU_DOCK -gimp_menu_dock_get_type -GIMP_MENU_DOCK_CLASS -GIMP_IS_MENU_DOCK_CLASS -GIMP_MENU_DOCK_GET_CLASS -
- -
-gimpimageeditor -GimpImageEditor -GimpImageEditor -GimpImageEditorClass -gimp_image_editor_get_image -gimp_image_editor_set_image - -GIMP_IMAGE_EDITOR -GIMP_IS_IMAGE_EDITOR -GIMP_TYPE_IMAGE_EDITOR -gimp_image_editor_get_type -GIMP_IMAGE_EDITOR_CLASS -GIMP_IS_IMAGE_EDITOR_CLASS -GIMP_IMAGE_EDITOR_GET_CLASS -
- -
-gimpimageview -GimpImageView -GimpImageView -gimp_image_view_new - -GimpImageViewClass -GIMP_IMAGE_VIEW -GIMP_IS_IMAGE_VIEW -GIMP_TYPE_IMAGE_VIEW -gimp_image_view_get_type -GIMP_IMAGE_VIEW_CLASS -GIMP_IS_IMAGE_VIEW_CLASS -GIMP_IMAGE_VIEW_GET_CLASS -
- -
-gimpitemtreeview -GimpItemTreeView -GimpGetContainerFunc -GimpGetItemFunc -GimpSetItemFunc -GimpAddItemFunc -GimpRemoveItemFunc -GimpNewItemFunc -GimpItemTreeView -GimpItemTreeView -GimpItemTreeViewPriv -gimp_item_tree_view_new -gimp_item_tree_view_get_image -gimp_item_tree_view_set_image -gimp_item_tree_view_add_options -gimp_item_tree_view_get_lock_box -gimp_item_tree_view_get_new_button -gimp_item_tree_view_get_edit_button -gimp_item_tree_view_get_drop_index - -GimpItemTreeViewClass -GIMP_ITEM_TREE_VIEW -GIMP_IS_ITEM_TREE_VIEW -GIMP_TYPE_ITEM_TREE_VIEW -gimp_item_tree_view_get_type -GIMP_ITEM_TREE_VIEW_CLASS -GIMP_IS_ITEM_TREE_VIEW_CLASS -GIMP_ITEM_TREE_VIEW_GET_CLASS -
- -
-gimplayertreeview -GimpLayerTreeView -GimpLayerTreeView -GimpLayerTreeViewPriv - -GimpLayerTreeViewClass -GIMP_LAYER_TREE_VIEW -GIMP_IS_LAYER_TREE_VIEW -GIMP_TYPE_LAYER_TREE_VIEW -gimp_layer_tree_view_get_type -GIMP_LAYER_TREE_VIEW_CLASS -GIMP_IS_LAYER_TREE_VIEW_CLASS -GIMP_LAYER_TREE_VIEW_GET_CLASS -
- -
-gimpactionfactory -GimpActionFactory -GimpActionFactoryEntry -GimpActionFactory -gimp_action_factory_new -gimp_action_factory_group_register -gimp_action_factory_group_new - -GimpActionFactoryClass -GIMP_ACTION_FACTORY -GIMP_IS_ACTION_FACTORY -GIMP_TYPE_ACTION_FACTORY -gimp_action_factory_get_type -GIMP_ACTION_FACTORY_CLASS -GIMP_IS_ACTION_FACTORY_CLASS -GIMP_ACTION_FACTORY_GET_CLASS -
- -
-gimpmenufactory -GimpMenuFactory -GimpMenuFactoryEntry -GimpMenuFactory -GimpMenuFactoryPrivate -gimp_menu_factory_new -gimp_menu_factory_manager_register -gimp_menu_factory_get_registered_menus -gimp_menu_factory_manager_new - -GimpMenuFactoryClass -GIMP_MENU_FACTORY -GIMP_IS_MENU_FACTORY -GIMP_TYPE_MENU_FACTORY -gimp_menu_factory_get_type -GIMP_MENU_FACTORY_CLASS -GIMP_IS_MENU_FACTORY_CLASS -GIMP_MENU_FACTORY_GET_CLASS -
- -
-gimpmessagebox -GimpMessageBox -GimpMessageBox -gimp_message_box_new -gimp_message_box_set_primary_text -gimp_message_box_set_text -gimp_message_box_set_markup -gimp_message_box_repeat - -GimpMessageBoxClass -GIMP_MESSAGE_BOX -GIMP_IS_MESSAGE_BOX -GIMP_TYPE_MESSAGE_BOX -gimp_message_box_get_type -GIMP_MESSAGE_BOX_CLASS -GIMP_IS_MESSAGE_BOX_CLASS -GIMP_MESSAGE_BOX_GET_CLASS -
- -
-gimpmessagedialog -GimpMessageDialog -GimpMessageDialog -gimp_message_dialog_new - -GimpMessageDialogClass -GIMP_MESSAGE_DIALOG -GIMP_IS_MESSAGE_DIALOG -GIMP_TYPE_MESSAGE_DIALOG -gimp_message_dialog_get_type -GIMP_MESSAGE_DIALOG_CLASS -GIMP_IS_MESSAGE_DIALOG_CLASS -GIMP_MESSAGE_DIALOG_GET_CLASS -
- -
-gimpuimanager -GimpUIManager -GimpUIManagerUIEntry -GimpUIManager -gimp_ui_manager_new -gimp_ui_managers_from_name -gimp_ui_manager_update -gimp_ui_manager_get_action_group -gimp_ui_manager_find_action -gimp_ui_manager_activate_action -gimp_ui_manager_ui_register -gimp_ui_manager_ui_popup - -GimpUIManagerClass -GIMP_UI_MANAGER -GIMP_IS_UI_MANAGER -GIMP_TYPE_UI_MANAGER -gimp_ui_manager_get_type -GIMP_UI_MANAGER_CLASS -GIMP_IS_UI_MANAGER_CLASS -GIMP_UI_MANAGER_GET_CLASS -
- -
-gimpsamplepointeditor -GimpSamplePointEditor -GimpSamplePointEditor -gimp_sample_point_editor_new -gimp_sample_point_editor_set_sample_merged -gimp_sample_point_editor_get_sample_merged - -GimpSamplePointEditorClass -GIMP_SAMPLE_POINT_EDITOR -GIMP_IS_SAMPLE_POINT_EDITOR -GIMP_TYPE_SAMPLE_POINT_EDITOR -gimp_sample_point_editor_get_type -GIMP_SAMPLE_POINT_EDITOR_CLASS -GIMP_IS_SAMPLE_POINT_EDITOR_CLASS -GIMP_SAMPLE_POINT_EDITOR_GET_CLASS -
- -
-gimpspinscale -GimpSpinScale -GimpSpinScale -GimpSpinScaleClass -gimp_spin_scale_get_scale_limits -gimp_spin_scale_new -gimp_spin_scale_set_scale_limits -gimp_spin_scale_unset_scale_limits - -GIMP_IS_SPIN_SCALE -GIMP_IS_SPIN_SCALE_CLASS -GIMP_SPIN_SCALE -GIMP_SPIN_SCALE_CLASS -GIMP_SPIN_SCALE_GET_CLASS -GIMP_TYPE_SPIN_SCALE -gimp_spin_scale_get_type -
- -
-gimpimagepropview -GimpImagePropView -GimpImagePropView -gimp_image_prop_view_new - -GimpImagePropViewClass -GIMP_IMAGE_PROP_VIEW -GIMP_IS_IMAGE_PROP_VIEW -GIMP_TYPE_IMAGE_PROP_VIEW -gimp_image_prop_view_get_type -GIMP_IMAGE_PROP_VIEW_CLASS -GIMP_IS_IMAGE_PROP_VIEW_CLASS -GIMP_IMAGE_PROP_VIEW_GET_CLASS -
- -
-gimpimagecommenteditor -GimpImageCommentEditor -GimpImageCommentEditor -gimp_image_comment_editor_new - -GimpImageCommentEditorClass -GIMP_IMAGE_COMMENT_EDITOR -GIMP_IS_IMAGE_COMMENT_EDITOR -GIMP_TYPE_IMAGE_COMMENT_EDITOR -gimp_image_comment_editor_get_type -GIMP_IMAGE_COMMENT_EDITOR_CLASS -GIMP_IS_IMAGE_COMMENT_EDITOR_CLASS -GIMP_IMAGE_COMMENT_EDITOR_GET_CLASS -
- -
-gimpimageparasiteview -GimpImageParasiteView -GimpImageParasiteView -gimp_image_parasite_view_new -gimp_image_parasite_view_get_image -gimp_image_parasite_view_get_parasite - -GimpImageParasiteViewClass -GIMP_IMAGE_PARASITE_VIEW -GIMP_IS_IMAGE_PARASITE_VIEW -GIMP_TYPE_IMAGE_PARASITE_VIEW -gimp_image_parasite_view_get_type -GIMP_IMAGE_PARASITE_VIEW_CLASS -GIMP_IS_IMAGE_PARASITE_VIEW_CLASS -GIMP_IMAGE_PARASITE_VIEW_GET_CLASS -
- -
-gimpimageprofileview -GimpImageProfileView -GimpImageProfileView -gimp_image_profile_view_new - -GimpImageProfileViewClass -GIMP_IMAGE_PROFILE_VIEW -GIMP_IS_IMAGE_PROFILE_VIEW -GIMP_TYPE_IMAGE_PROFILE_VIEW -gimp_image_profile_view_get_type -GIMP_IMAGE_PROFILE_VIEW_CLASS -GIMP_IS_IMAGE_PROFILE_VIEW_CLASS -GIMP_IMAGE_PROFILE_VIEW_GET_CLASS -
- -
-gimpoverlaybox -GimpOverlayBox -GimpOverlayBox -GimpOverlayBoxClass -gimp_overlay_box_add_child -gimp_overlay_box_new -gimp_overlay_box_scroll -gimp_overlay_box_set_child_alignment -gimp_overlay_box_set_child_angle -gimp_overlay_box_set_child_opacity -gimp_overlay_box_set_child_position - -GIMP_IS_OVERLAY_BOX -GIMP_IS_OVERLAY_BOX_CLASS -GIMP_OVERLAY_BOX -GIMP_OVERLAY_BOX_CLASS -GIMP_OVERLAY_BOX_GET_CLASS -GIMP_TYPE_OVERLAY_BOX -gimp_overlay_box_get_type -
- -
-gimpoverlaychild -GimpOverlayChild -gimp_overlay_child_damage -gimp_overlay_child_expose -gimp_overlay_child_find -gimp_overlay_child_free -gimp_overlay_child_invalidate -gimp_overlay_child_new -gimp_overlay_child_pick -gimp_overlay_child_realize -gimp_overlay_child_size_allocate -gimp_overlay_child_size_request -gimp_overlay_child_unrealize -
- -
-gimpoverlaydialog -GimpOverlayDialog -GimpOverlayDialog -GimpOverlayDialogClass -gimp_overlay_dialog_add_button -gimp_overlay_dialog_add_buttons_valist -gimp_overlay_dialog_new -gimp_overlay_dialog_response - -GIMP_IS_OVERLAY_DIALOG -GIMP_IS_OVERLAY_DIALOG_CLASS -GIMP_OVERLAY_DIALOG -GIMP_OVERLAY_DIALOG_CLASS -GIMP_OVERLAY_DIALOG_GET_CLASS -GIMP_TYPE_OVERLAY_DIALOG -gimp_overlay_dialog_get_type -
- -
-gimpoverlayframe -GimpOverlayFrame -GimpOverlayFrame -GimpOverlayFrameClass -gimp_overlay_frame_new - -GIMP_IS_OVERLAY_FRAME -GIMP_IS_OVERLAY_FRAME_CLASS -GIMP_OVERLAY_FRAME -GIMP_OVERLAY_FRAME_CLASS -GIMP_OVERLAY_FRAME_GET_CLASS -GIMP_TYPE_OVERLAY_FRAME -gimp_overlay_frame_get_type -
- -
-gimppaletteeditor -GimpPaletteEditor -GimpPaletteEditor -gimp_palette_editor_new -gimp_palette_editor_get_index -gimp_palette_editor_set_index -gimp_palette_editor_max_index -gimp_palette_editor_pick_color -gimp_palette_editor_zoom - -GimpPaletteEditorClass -GIMP_PALETTE_EDITOR -GIMP_IS_PALETTE_EDITOR -GIMP_TYPE_PALETTE_EDITOR -gimp_palette_editor_get_type -GIMP_PALETTE_EDITOR_CLASS -GIMP_IS_PALETTE_EDITOR_CLASS -GIMP_PALETTE_EDITOR_GET_CLASS -
- -
-gimppatternfactoryview -GimpPatternFactoryView -GimpPatternFactoryView -gimp_pattern_factory_view_new - -GimpPatternFactoryViewClass -GIMP_PATTERN_FACTORY_VIEW -GIMP_IS_PATTERN_FACTORY_VIEW -GIMP_TYPE_PATTERN_FACTORY_VIEW -gimp_pattern_factory_view_get_type -GIMP_PATTERN_FACTORY_VIEW_CLASS -GIMP_IS_PATTERN_FACTORY_VIEW_CLASS -GIMP_PATTERN_FACTORY_VIEW_GET_CLASS -
- -
-gimppdbdialog -GimpPdbDialog -GimpPdbDialog -gimp_pdb_dialog_run_callback -gimp_pdb_dialog_get_by_callback - -GimpPdbDialogClass -GIMP_PDB_DIALOG -GIMP_IS_PDB_DIALOG -GIMP_TYPE_PDB_DIALOG -gimp_pdb_dialog_get_type -GIMP_PDB_DIALOG_CLASS -GIMP_IS_PDB_DIALOG_CLASS -GIMP_PDB_DIALOG_GET_CLASS -
- -
-gimpfontselect -GimpFontSelect -GimpFontSelect - -GimpFontSelectClass -GIMP_FONT_SELECT -GIMP_IS_FONT_SELECT -GIMP_TYPE_FONT_SELECT -gimp_font_select_get_type -GIMP_FONT_SELECT_CLASS -GIMP_IS_FONT_SELECT_CLASS -GIMP_FONT_SELECT_GET_CLASS -
- -
-gimppaletteselect -GimpPaletteSelect -GimpPaletteSelect - -GimpPaletteSelectClass -GIMP_PALETTE_SELECT -GIMP_IS_PALETTE_SELECT -GIMP_TYPE_PALETTE_SELECT -gimp_palette_select_get_type -GIMP_PALETTE_SELECT_CLASS -GIMP_IS_PALETTE_SELECT_CLASS -GIMP_PALETTE_SELECT_GET_CLASS -
- -
-gimpgradientselect -GimpGradientSelect -GimpGradientSelect - -GimpGradientSelectClass -GIMP_GRADIENT_SELECT -GIMP_IS_GRADIENT_SELECT -GIMP_TYPE_GRADIENT_SELECT -gimp_gradient_select_get_type -GIMP_GRADIENT_SELECT_CLASS -GIMP_IS_GRADIENT_SELECT_CLASS -GIMP_GRADIENT_SELECT_GET_CLASS -
- -
-gimpbrushselect -GimpBrushSelect -GimpBrushSelect - -GimpBrushSelectClass -GIMP_BRUSH_SELECT -GIMP_IS_BRUSH_SELECT -GIMP_TYPE_BRUSH_SELECT -gimp_brush_select_get_type -GIMP_BRUSH_SELECT_CLASS -GIMP_IS_BRUSH_SELECT_CLASS -GIMP_BRUSH_SELECT_GET_CLASS -
- -
-gimppatternselect -GimpPatternSelect -GimpPatternSelect - -GimpPatternSelectClass -GIMP_PATTERN_SELECT -GIMP_IS_PATTERN_SELECT -GIMP_TYPE_PATTERN_SELECT -gimp_pattern_select_get_type -GIMP_PATTERN_SELECT_CLASS -GIMP_IS_PATTERN_SELECT_CLASS -GIMP_PATTERN_SELECT_GET_CLASS -
- -
-gimpview -GimpView -GimpView -gimp_view_new -gimp_view_new_full -gimp_view_new_by_types -gimp_view_new_full_by_types -gimp_view_get_viewable -gimp_view_set_viewable -gimp_view_set_expand - -GimpViewClass -GIMP_VIEW -GIMP_IS_VIEW -GIMP_TYPE_VIEW -gimp_view_get_type -GIMP_VIEW_CLASS -GIMP_IS_VIEW_CLASS -GIMP_VIEW_GET_CLASS -
- -
-gimpview-popup -GimpView-popup -gimp_view_popup_show -
- -
-gimpnavigationview -GimpNavigationView -GimpNavigationView -gimp_navigation_view_set_marker -gimp_navigation_view_set_motion_offset -gimp_navigation_view_get_local_marker -gimp_navigation_view_grab_pointer - -GimpNavigationViewClass -GIMP_NAVIGATION_VIEW -GIMP_IS_NAVIGATION_VIEW -GIMP_TYPE_NAVIGATION_VIEW -gimp_navigation_view_get_type -GIMP_NAVIGATION_VIEW_CLASS -GIMP_IS_NAVIGATION_VIEW_CLASS -GIMP_NAVIGATION_VIEW_GET_CLASS -
- -
-gimppaletteview -GimpPaletteView -GimpPaletteView -gimp_palette_view_select_entry - -GimpPaletteViewClass -GIMP_PALETTE_VIEW -GIMP_IS_PALETTE_VIEW -GIMP_TYPE_PALETTE_VIEW -gimp_palette_view_get_type -GIMP_PALETTE_VIEW_CLASS -GIMP_IS_PALETTE_VIEW_CLASS -GIMP_PALETTE_VIEW_GET_CLASS -
- -
-gimpviewrenderer -GimpViewRenderer -GIMP_VIEW_MAX_BORDER_WIDTH -GimpViewRenderer -gimp_view_renderer_new -gimp_view_renderer_new_full -gimp_view_renderer_set_context -gimp_view_renderer_set_viewable -gimp_view_renderer_set_size -gimp_view_renderer_set_size_full -gimp_view_renderer_set_dot_for_dot -gimp_view_renderer_set_border_color -gimp_view_renderer_set_border_type -gimp_view_renderer_set_background -gimp_view_renderer_invalidate -gimp_view_renderer_update -gimp_view_renderer_update_idle -gimp_view_renderer_remove_idle -gimp_view_renderer_draw -gimp_view_renderer_render_stock -gimp_view_renderer_render_pixbuf -gimp_view_renderer_render_temp_buf -gimp_view_renderer_render_temp_buf_simple - -GimpViewRendererClass -GIMP_VIEW_RENDERER -GIMP_IS_VIEW_RENDERER -GIMP_TYPE_VIEW_RENDERER -gimp_view_renderer_get_type -GIMP_VIEW_RENDERER_CLASS -GIMP_IS_VIEW_RENDERER_CLASS -GIMP_VIEW_RENDERER_GET_CLASS -
- -
-gimpviewrenderer-frame -GimpViewRenderer-frame -gimp_view_renderer_get_frame_pixbuf -gimp_view_renderer_get_frame_size -
- -
-gimpviewrenderer-utils -GimpViewRenderer-utils -gimp_view_renderer_type_from_viewable_type -
- -
-gimpviewrendererbrush -GimpViewRendererBrush -GimpViewRendererBrush - -GimpViewRendererBrushClass -GIMP_VIEW_RENDERER_BRUSH -GIMP_IS_VIEW_RENDERER_BRUSH -GIMP_TYPE_VIEW_RENDERER_BRUSH -gimp_view_renderer_brush_get_type -GIMP_VIEW_RENDERER_BRUSH_CLASS -GIMP_IS_VIEW_RENDERER_BRUSH_CLASS -GIMP_VIEW_RENDERER_BRUSH_GET_CLASS -
- -
-gimpviewrendererbuffer -GimpViewRendererBuffer -GimpViewRendererBuffer - -GimpViewRendererBufferClass -GIMP_VIEW_RENDERER_BUFFER -GIMP_IS_VIEW_RENDERER_BUFFER -GIMP_TYPE_VIEW_RENDERER_BUFFER -gimp_view_renderer_buffer_get_type -GIMP_VIEW_RENDERER_BUFFER_CLASS -GIMP_IS_VIEW_RENDERER_BUFFER_CLASS -GIMP_VIEW_RENDERER_BUFFER_GET_CLASS -
- -
-gimpviewrendererdrawable -GimpViewRendererDrawable -GimpViewRendererDrawable - -GimpViewRendererDrawableClass -GIMP_VIEW_RENDERER_DRAWABLE -GIMP_IS_VIEW_RENDERER_DRAWABLE -GIMP_TYPE_VIEW_RENDERER_DRAWABLE -gimp_view_renderer_drawable_get_type -GIMP_VIEW_RENDERER_DRAWABLE_CLASS -GIMP_IS_VIEW_RENDERER_DRAWABLE_CLASS -GIMP_VIEW_RENDERER_DRAWABLE_GET_CLASS -
- -
-gimpviewrenderergradient -GimpViewRendererGradient -GimpViewRendererGradient -gimp_view_renderer_gradient_set_offsets -gimp_view_renderer_gradient_set_reverse - -GimpViewRendererGradientClass -GIMP_VIEW_RENDERER_GRADIENT -GIMP_IS_VIEW_RENDERER_GRADIENT -GIMP_TYPE_VIEW_RENDERER_GRADIENT -gimp_view_renderer_gradient_get_type -GIMP_VIEW_RENDERER_GRADIENT_CLASS -GIMP_IS_VIEW_RENDERER_GRADIENT_CLASS -GIMP_VIEW_RENDERER_GRADIENT_GET_CLASS -
- -
-gimpviewrendererimage -GimpViewRendererImage -GimpViewRendererImage - -GimpViewRendererImageClass -GIMP_VIEW_RENDERER_IMAGE -GIMP_IS_VIEW_RENDERER_IMAGE -GIMP_TYPE_VIEW_RENDERER_IMAGE -gimp_view_renderer_image_get_type -GIMP_VIEW_RENDERER_IMAGE_CLASS -GIMP_IS_VIEW_RENDERER_IMAGE_CLASS -GIMP_VIEW_RENDERER_IMAGE_GET_CLASS -
- -
-gimpviewrendererimagefile -GimpViewRendererImagefile -GimpViewRendererImagefile - -GimpViewRendererImagefileClass -GIMP_VIEW_RENDERER_IMAGEFILE -GIMP_IS_VIEW_RENDERER_IMAGEFILE -GIMP_TYPE_VIEW_RENDERER_IMAGEFILE -gimp_view_renderer_imagefile_get_type -GIMP_VIEW_RENDERER_IMAGEFILE_CLASS -GIMP_IS_VIEW_RENDERER_IMAGEFILE_CLASS -GIMP_VIEW_RENDERER_IMAGEFILE_GET_CLASS -
- -
-gimpviewrendererlayer -GimpViewRendererLayer -GimpViewRendererLayer - -GimpViewRendererLayerClass -GIMP_VIEW_RENDERER_LAYER -GIMP_IS_VIEW_RENDERER_LAYER -GIMP_TYPE_VIEW_RENDERER_LAYER -gimp_view_renderer_layer_get_type -GIMP_VIEW_RENDERER_LAYER_CLASS -GIMP_IS_VIEW_RENDERER_LAYER_CLASS -GIMP_VIEW_RENDERER_LAYER_GET_CLASS -
- -
-gimpviewrendererpalette -GimpViewRendererPalette -GimpViewRendererPalette -gimp_view_renderer_palette_set_cell_size -gimp_view_renderer_palette_set_draw_grid - -GimpViewRendererPaletteClass -GIMP_VIEW_RENDERER_PALETTE -GIMP_IS_VIEW_RENDERER_PALETTE -GIMP_TYPE_VIEW_RENDERER_PALETTE -gimp_view_renderer_palette_get_type -GIMP_VIEW_RENDERER_PALETTE_CLASS -GIMP_IS_VIEW_RENDERER_PALETTE_CLASS -GIMP_VIEW_RENDERER_PALETTE_GET_CLASS -
- -
-gimpviewrenderervectors -GimpViewRendererVectors -GimpViewRendererVectors - -GimpViewRendererVectorsClass -GIMP_VIEW_RENDERER_VECTORS -GIMP_IS_VIEW_RENDERER_VECTORS -GIMP_TYPE_VIEW_RENDERER_VECTORS -gimp_view_renderer_vectors_get_type -GIMP_VIEW_RENDERER_VECTORS_CLASS -GIMP_IS_VIEW_RENDERER_VECTORS_CLASS -GIMP_VIEW_RENDERER_VECTORS_GET_CLASS -
- -
-gimpprogressbox -GimpProgressBox -GimpProgressBox -gimp_progress_box_new - -GimpProgressBoxClass -GIMP_PROGRESS_BOX -GIMP_IS_PROGRESS_BOX -GIMP_TYPE_PROGRESS_BOX -gimp_progress_box_get_type -GIMP_PROGRESS_BOX_CLASS -GIMP_IS_PROGRESS_BOX_CLASS -GIMP_PROGRESS_BOX_GET_CLASS -
- -
-gimpprogressdialog -GimpProgressDialog -GimpProgressDialog -gimp_progress_dialog_new - -GimpProgressDialogClass -GIMP_PROGRESS_DIALOG -GIMP_IS_PROGRESS_DIALOG -GIMP_TYPE_PROGRESS_DIALOG -gimp_progress_dialog_get_type -GIMP_PROGRESS_DIALOG_CLASS -GIMP_IS_PROGRESS_DIALOG_CLASS -GIMP_PROGRESS_DIALOG_GET_CLASS -
- -
-gimpprofilechooserdialog -GimpProfileChooserDialog -GimpProfileChooserDialog -gimp_profile_chooser_dialog_new -gimp_profile_chooser_dialog_get_desc - -GimpProfileChooserDialogClass -GIMP_PROFILE_CHOOSER_DIALOG -GIMP_IS_PROFILE_CHOOSER_DIALOG -GIMP_TYPE_PROFILE_CHOOSER_DIALOG -gimp_profile_chooser_dialog_get_type -GIMP_PROFILE_CHOOSER_DIALOG_CLASS -GIMP_IS_PROFILE_CHOOSER_DIALOG_CLASS -GIMP_PROFILE_CHOOSER_DIALOG_GET_CLASS -
- -
-gimpscalecombobox -GimpScaleComboBox -GimpScaleComboBox -gimp_scale_combo_box_new -gimp_scale_combo_box_set_scale -gimp_scale_combo_box_get_scale - -GimpScaleComboBoxClass -GIMP_SCALE_COMBO_BOX -GIMP_IS_SCALE_COMBO_BOX -GIMP_TYPE_SCALE_COMBO_BOX -gimp_scale_combo_box_get_type -GIMP_SCALE_COMBO_BOX_CLASS -GIMP_IS_SCALE_COMBO_BOX_CLASS -GIMP_SCALE_COMBO_BOX_GET_CLASS -
- -
-gimpselectioneditor -GimpSelectionEditor -GimpSelectionEditor -gimp_selection_editor_new - -GimpSelectionEditorClass -GIMP_SELECTION_EDITOR -GIMP_IS_SELECTION_EDITOR -GIMP_TYPE_SELECTION_EDITOR -gimp_selection_editor_get_type -GIMP_SELECTION_EDITOR_CLASS -GIMP_IS_SELECTION_EDITOR_CLASS -GIMP_SELECTION_EDITOR_GET_CLASS -
- -
-gimpsessionmanaged -GimpSessionManaged -GimpSessionManaged -GimpSessionManagedInterface -gimp_session_managed_get_aux_info -gimp_session_managed_set_aux_info - -GIMP_IS_SESSION_MANAGED -GIMP_SESSION_MANAGED -GIMP_SESSION_MANAGED_GET_IFACE -GIMP_TYPE_SESSION_MANAGED -gimp_session_managed_interface_get_type -
- -
-gimpsessioninfo -GimpSessionInfo -GimpSessionInfo -GimpSessionInfoPrivate -gimp_session_info_new -gimp_session_info_restore -gimp_session_info_apply_geometry -gimp_session_info_read_geometry -gimp_session_info_get_info -gimp_session_info_get_info_with_widget -gimp_session_info_clear_info -gimp_session_info_is_singleton -gimp_session_info_is_session_managed -gimp_session_info_get_remember_size -gimp_session_info_get_remember_if_open -gimp_session_info_get_widget -gimp_session_info_set_widget -gimp_session_info_get_factory_entry -gimp_session_info_set_factory_entry -gimp_session_info_get_open -gimp_session_info_append_book -gimp_session_info_get_x -gimp_session_info_get_y -gimp_session_info_get_width -gimp_session_info_get_height -gimp_session_info_class_set_position_accuracy -gimp_session_info_class_apply_position_accuracy - -GimpSessionInfoClass -GIMP_SESSION_INFO -GIMP_IS_SESSION_INFO -GIMP_TYPE_SESSION_INFO -gimp_session_info_get_type -GIMP_SESSION_INFO_CLASS -GIMP_IS_SESSION_INFO_CLASS -GIMP_SESSION_INFO_GET_CLASS -
- -
-gimpsessioninfo-aux -GimpSessionInfo-aux -GimpSessionInfoAux -gimp_session_info_aux_new -gimp_session_info_aux_free -gimp_session_info_aux_new_from_props -gimp_session_info_aux_set_props -gimp_session_info_aux_serialize -gimp_session_info_aux_deserialize -
- -
-gimpsessioninfo-book -GimpSessionInfo-book -GimpSessionInfoBook -gimp_session_info_book_new -gimp_session_info_book_free -gimp_session_info_book_serialize -gimp_session_info_book_deserialize -gimp_session_info_book_from_widget -gimp_session_info_book_restore -
- -
-gimpsessioninfo-dock -GimpSessionInfo-dock -GimpSessionInfoDock -gimp_session_info_dock_new -gimp_session_info_dock_free -gimp_session_info_dock_serialize -gimp_session_info_dock_deserialize -gimp_session_info_dock_from_widget -gimp_session_info_dock_restore -
- -
-gimpsessioninfo-dockable -GimpSessionInfo-dockable -GimpSessionInfoDockable -gimp_session_info_dockable_new -gimp_session_info_dockable_free -gimp_session_info_dockable_serialize -gimp_session_info_dockable_deserialize -gimp_session_info_dockable_from_widget -gimp_session_info_dockable_restore -
- -
-gimpscalebutton -GimpScaleButton -GimpScaleButton -gimp_scale_button_new - -GimpScaleButtonClass -GIMP_SCALE_BUTTON -GIMP_IS_SCALE_BUTTON -GIMP_TYPE_SCALE_BUTTON -gimp_scale_button_get_type -GIMP_SCALE_BUTTON_CLASS -GIMP_IS_SCALE_BUTTON_CLASS -GIMP_SCALE_BUTTON_GET_CLASS -
- -
-gimpsettingsbox -GimpSettingsBox -GimpSettingsBox -gimp_settings_box_new -gimp_settings_box_add_current -gimp_settings_box_get_combo - -GimpSettingsBoxClass -GIMP_SETTINGS_BOX -GIMP_IS_SETTINGS_BOX -GIMP_TYPE_SETTINGS_BOX -gimp_settings_box_get_type -GIMP_SETTINGS_BOX_CLASS -GIMP_IS_SETTINGS_BOX_CLASS -GIMP_SETTINGS_BOX_GET_CLASS -
- -
-gimpsettingseditor -GimpSettingsEditor -GimpSettingsEditor -gimp_settings_editor_new - -GimpSettingsEditorClass -GIMP_SETTINGS_EDITOR -GIMP_IS_SETTINGS_EDITOR -GIMP_TYPE_SETTINGS_EDITOR -gimp_settings_editor_get_type -GIMP_SETTINGS_EDITOR_CLASS -GIMP_IS_SETTINGS_EDITOR_CLASS -GIMP_SETTINGS_EDITOR_GET_CLASS -
- -
-gimpfilleditor -GimpFillEditor -GimpFillEditor -gimp_fill_editor_new - -GimpFillEditorClass -GIMP_FILL_EDITOR -GIMP_IS_FILL_EDITOR -GIMP_TYPE_FILL_EDITOR -gimp_fill_editor_get_type -GIMP_FILL_EDITOR_CLASS -GIMP_IS_FILL_EDITOR_CLASS -GIMP_FILL_EDITOR_GET_CLASS -
- -
-gimpstrokeeditor -GimpStrokeEditor -GimpStrokeEditor -gimp_stroke_editor_new - -GimpStrokeEditorClass -GIMP_STROKE_EDITOR -GIMP_IS_STROKE_EDITOR -GIMP_TYPE_STROKE_EDITOR -gimp_stroke_editor_get_type -GIMP_STROKE_EDITOR_CLASS -GIMP_IS_STROKE_EDITOR_CLASS -GIMP_STROKE_EDITOR_GET_CLASS -
- -
-gimptemplateeditor -GimpTemplateEditor -GimpTemplateEditor -gimp_template_editor_new -gimp_template_editor_show_advanced -gimp_template_editor_get_size_se -gimp_template_editor_get_template - -GimpTemplateEditorClass -GIMP_TEMPLATE_EDITOR -GIMP_IS_TEMPLATE_EDITOR -GIMP_TYPE_TEMPLATE_EDITOR -gimp_template_editor_get_type -GIMP_TEMPLATE_EDITOR_CLASS -GIMP_IS_TEMPLATE_EDITOR_CLASS -GIMP_TEMPLATE_EDITOR_GET_CLASS -
- -
-gimptemplateview -GimpTemplateView -GimpTemplateView -gimp_template_view_new - -GimpTemplateViewClass -GIMP_TEMPLATE_VIEW -GIMP_IS_TEMPLATE_VIEW -GIMP_TYPE_TEMPLATE_VIEW -gimp_template_view_get_type -GIMP_TEMPLATE_VIEW_CLASS -GIMP_IS_TEMPLATE_VIEW_CLASS -GIMP_TEMPLATE_VIEW_GET_CLASS -
- -
-gimptextbuffer -GimpTextBuffer -GimpTextBuffer -GimpTextBufferClass -gimp_text_buffer_change_baseline -gimp_text_buffer_change_kerning -gimp_text_buffer_change_size -gimp_text_buffer_clear_insert_tags -gimp_text_buffer_get_iter_at_index -gimp_text_buffer_get_iter_baseline -gimp_text_buffer_get_iter_color -gimp_text_buffer_get_iter_font -gimp_text_buffer_get_iter_index -gimp_text_buffer_get_iter_kerning -gimp_text_buffer_get_iter_size -gimp_text_buffer_get_markup -gimp_text_buffer_get_text -gimp_text_buffer_has_markup -gimp_text_buffer_insert -gimp_text_buffer_load -gimp_text_buffer_name_to_tag -gimp_text_buffer_new -gimp_text_buffer_save -gimp_text_buffer_set_baseline -gimp_text_buffer_set_color -gimp_text_buffer_set_font -gimp_text_buffer_set_insert_tags -gimp_text_buffer_set_kerning -gimp_text_buffer_set_markup -gimp_text_buffer_set_size -gimp_text_buffer_set_text -gimp_text_buffer_tag_to_name - -GIMP_IS_TEXT_BUFFER -GIMP_IS_TEXT_BUFFER_CLASS -GIMP_TEXT_BUFFER -GIMP_TEXT_BUFFER_CLASS -GIMP_TYPE_TEXT_BUFFER -gimp_text_buffer_get_type -
- -
-gimptextbuffer-serialize -GimpTextBuffer-serialize -WORD_JOINER -WORD_JOINER_LENGTH -gimp_text_buffer_deserialize -gimp_text_buffer_post_deserialize -gimp_text_buffer_pre_serialize -gimp_text_buffer_serialize -
- -
-gimptexttag -GIMP_TEXT_PROP_NAME_BASELINE -GIMP_TEXT_PROP_NAME_COLOR -GIMP_TEXT_PROP_NAME_FONT -GIMP_TEXT_PROP_NAME_KERNING -GIMP_TEXT_PROP_NAME_SIZE -gimp_text_tag_get_baseline -gimp_text_tag_get_color -gimp_text_tag_get_font -gimp_text_tag_get_kerning -gimp_text_tag_get_size -
- -
-gimptexteditor -GimpTextEditor -GimpTextEditor -gimp_text_editor_new -gimp_text_editor_set_text -gimp_text_editor_get_text -gimp_text_editor_set_direction -gimp_text_editor_get_direction -gimp_text_editor_set_font_name -gimp_text_editor_get_font_name - -GimpTextEditorClass -GIMP_TEXT_EDITOR -GIMP_IS_TEXT_EDITOR -GIMP_TYPE_TEXT_EDITOR -gimp_text_editor_get_type -
- -
-gimptextproxy -GimpTextProxy -GimpTextProxy -gimp_text_proxy_new - -GimpTextProxyClass -GIMP_TEXT_PROXY -GIMP_IS_TEXT_PROXY -GIMP_TYPE_TEXT_PROXY -gimp_text_proxy_get_type -GIMP_TEXT_PROXY_CLASS -GIMP_IS_TEXT_PROXY_CLASS -
- -
-gimptextstyleeditor -GimpTextStyleEditor -GimpTextStyleEditor -GimpTextStyleEditorClass -gimp_text_style_editor_list_tags -gimp_text_style_editor_new - -GIMP_IS_TEXT_STYLE_EDITOR -GIMP_IS_TEXT_STYLE_EDITOR_CLASS -GIMP_TEXT_STYLE_EDITOR -GIMP_TEXT_STYLE_EDITOR_CLASS -GIMP_TEXT_STYLE_EDITOR_GET_CLASS -GIMP_TYPE_TEXT_STYLE_EDITOR -gimp_text_style_editor_get_type -
- -
-gimpthumbbox -GimpThumbBox -GimpThumbBox -gimp_thumb_box_new -gimp_thumb_box_take_uri -gimp_thumb_box_take_uris - -GimpThumbBoxClass -GIMP_THUMB_BOX -GIMP_IS_THUMB_BOX -GIMP_TYPE_THUMB_BOX -gimp_thumb_box_get_type -GIMP_THUMB_BOX_CLASS -GIMP_IS_THUMB_BOX_CLASS -GIMP_THUMB_BOX_GET_CLASS -
- -
-gimptooloptionseditor -GimpToolOptionsEditor -GimpToolOptionsEditor -GimpToolOptionsEditorPrivate -gimp_tool_options_editor_new -gimp_tool_options_editor_get_tool_options - -GimpToolOptionsEditorClass -GIMP_TOOL_OPTIONS_EDITOR -GIMP_IS_TOOL_OPTIONS_EDITOR -GIMP_TYPE_TOOL_OPTIONS_EDITOR -gimp_tool_options_editor_get_type -GIMP_TOOL_OPTIONS_EDITOR_CLASS -GIMP_IS_TOOL_OPTIONS_EDITOR_CLASS -GIMP_TOOL_OPTIONS_EDITOR_GET_CLASS -
- -
-gimptoolpreseteditor -GimpToolPresetEditor -GimpToolPresetEditor -GimpToolPresetEditorClass -gimp_tool_preset_editor_new - -GIMP_IS_TOOL_PRESET_EDITOR -GIMP_IS_TOOL_PRESET_EDITOR_CLASS -GIMP_TOOL_PRESET_EDITOR -GIMP_TOOL_PRESET_EDITOR_CLASS -GIMP_TOOL_PRESET_EDITOR_GET_CLASS -GIMP_TYPE_TOOL_PRESET_EDITOR -GimpToolPresetEditorPrivate -gimp_tool_preset_editor_get_type -
- -
-gimptoolpresetfactoryview -GimpToolPresetFactoryView -GimpToolPresetFactoryView -GimpToolPresetFactoryViewClass -gimp_tool_preset_factory_view_new - -GIMP_IS_TOOL_PRESET_FACTORY_VIEW -GIMP_IS_TOOL_PRESET_FACTORY_VIEW_CLASS -GIMP_TOOL_PRESET_FACTORY_VIEW -GIMP_TOOL_PRESET_FACTORY_VIEW_CLASS -GIMP_TOOL_PRESET_FACTORY_VIEW_GET_CLASS -GIMP_TYPE_TOOL_PRESET_FACTORY_VIEW -gimp_tool_preset_factory_view_get_type -
- -
-gimptoolbox -GimpToolbox -GimpToolbox -GimpToolboxPrivate -gimp_toolbox_new -gimp_toolbox_get_context -gimp_toolbox_set_drag_handler - -GimpToolboxClass -GIMP_TOOLBOX -GIMP_IS_TOOLBOX -GIMP_TYPE_TOOLBOX -gimp_toolbox_get_type -GIMP_TOOLBOX_CLASS -GIMP_IS_TOOLBOX_CLASS -GIMP_TOOLBOX_GET_CLASS -
- -
-gimptoolbox-dnd -GimpToolbox-dnd -gimp_toolbox_dnd_init -
- -
-gimptoolbox-color-area -GimpToolbox-color-area -gimp_toolbox_color_area_create -
- -
-gimptoolbox-image-area -GimpToolbox-image-area -gimp_toolbox_image_area_create -
- -
-gimptoolbox-indicator-area -GimpToolbox-indicator-area -gimp_toolbox_indicator_area_create -
- -
-gimptoolpalette -GimpToolPalette -GimpToolPaletteClass -GimpToolPalette -gimp_tool_palette_new -gimp_tool_palette_set_toolbox -gimp_tool_palette_get_button_size - -GIMP_TOOL_PALETTE -GIMP_IS_TOOL_PALETTE -GIMP_TYPE_TOOL_PALETTE -gimp_tool_palette_get_type -GIMP_TOOL_PALETTE_CLASS -GIMP_IS_TOOL_PALETTE_CLASS -GIMP_TOOL_PALETTE_GET_CLASS -
- -
-gimptooldialog -GimpToolDialog -GimpToolDialog -gimp_tool_dialog_new -gimp_tool_dialog_set_shell - -GimpToolDialogClass -GIMP_TOOL_DIALOG -GIMP_IS_TOOL_DIALOG -GIMP_TYPE_TOOL_DIALOG -gimp_tool_dialog_get_type -GIMP_TOOL_DIALOG_CLASS -GIMP_IS_TOOL_DIALOG_CLASS -GIMP_TOOL_DIALOG_GET_CLASS -
- -
-gimptooleditor -GimpToolEditor -GimpToolEditor -gimp_tool_editor_new -gimp_tool_editor_revert_changes - -GimpToolEditorClass -GIMP_TOOL_EDITOR -GIMP_IS_TOOL_EDITOR -GIMP_TYPE_TOOL_EDITOR -gimp_tool_editor_get_type -GIMP_TOOL_EDITOR_CLASS -GIMP_IS_TOOL_EDITOR_CLASS -GIMP_TOOL_EDITOR_GET_CLASS -
- -
-gimpundoeditor -GimpUndoEditor -GimpUndoEditor -gimp_undo_editor_new - -GimpUndoEditorClass -GIMP_UNDO_EDITOR -GIMP_IS_UNDO_EDITOR -GIMP_TYPE_UNDO_EDITOR -gimp_undo_editor_get_type -GIMP_UNDO_EDITOR_CLASS -GIMP_IS_UNDO_EDITOR_CLASS -GIMP_UNDO_EDITOR_GET_CLASS -
- -
-gimpvectorstreeview -GimpVectorsTreeView -GimpVectorsTreeView - -GimpVectorsTreeViewClass -GIMP_VECTORS_TREE_VIEW -GIMP_IS_VECTORS_TREE_VIEW -GIMP_TYPE_VECTORS_TREE_VIEW -gimp_vectors_tree_view_get_type -GIMP_VECTORS_TREE_VIEW_CLASS -GIMP_IS_VECTORS_TREE_VIEW_CLASS -GIMP_VECTORS_TREE_VIEW_GET_CLASS -
- -
-gimpviewablebutton -GimpViewableButton -GimpViewableButton -gimp_viewable_button_new -gimp_viewable_button_get_view_type -gimp_viewable_button_set_view_type -gimp_viewable_button_set_view_size -gimp_viewable_button_get_view_size - -GimpViewableButtonClass -GIMP_VIEWABLE_BUTTON -GIMP_IS_VIEWABLE_BUTTON -GIMP_TYPE_VIEWABLE_BUTTON -gimp_viewable_button_get_type -GIMP_VIEWABLE_BUTTON_CLASS -GIMP_IS_VIEWABLE_BUTTON_CLASS -GIMP_VIEWABLE_BUTTON_GET_CLASS -
- -
-gimpviewablebox -gimp_brush_box_new -gimp_prop_brush_box_new -gimp_dynamics_box_new -gimp_prop_dynamics_box_new -gimp_pattern_box_new -gimp_prop_pattern_box_new -gimp_gradient_box_new -gimp_prop_gradient_box_new -gimp_palette_box_new -gimp_prop_palette_box_new -gimp_font_box_new -gimp_prop_font_box_new -
- -
-gimpviewabledialog -GimpViewableDialog -GimpViewableDialog -gimp_viewable_dialog_new -gimp_viewable_dialog_set_viewable - -GimpViewableDialogClass -GIMP_VIEWABLE_DIALOG -GIMP_IS_VIEWABLE_DIALOG -GIMP_TYPE_VIEWABLE_DIALOG -gimp_viewable_dialog_get_type -GIMP_VIEWABLE_DIALOG_CLASS -GIMP_IS_VIEWABLE_DIALOG_CLASS -GIMP_VIEWABLE_DIALOG_GET_CLASS -
- -
-gtkwrapbox -GtkWrapBoxChild -GtkWrapBox -GtkWrapBox -GTK_JUSTIFY_TOP -GTK_JUSTIFY_BOTTOM -gtk_wrap_box_set_homogeneous -gtk_wrap_box_set_hspacing -gtk_wrap_box_set_vspacing -gtk_wrap_box_set_justify -gtk_wrap_box_set_line_justify -gtk_wrap_box_set_aspect_ratio -gtk_wrap_box_pack -gtk_wrap_box_pack_wrapped -gtk_wrap_box_reorder_child -gtk_wrap_box_query_child_packing -gtk_wrap_box_set_child_packing -gtk_wrap_box_query_line_lengths - -GtkWrapBoxClass -GTK_WRAP_BOX -GTK_IS_WRAP_BOX -GTK_TYPE_WRAP_BOX -gtk_wrap_box_get_type -GTK_WRAP_BOX_CLASS -GTK_IS_WRAP_BOX_CLASS -GTK_WRAP_BOX_GET_CLASS -
- -
-gtkhwrapbox -GtkHWrapBox -GtkHWrapBox -gtk_hwrap_box_new - -GtkHWrapBoxClass -GTK_HWRAP_BOX -GTK_IS_HWRAP_BOX -GTK_TYPE_HWRAP_BOX -gtk_hwrap_box_get_type -GTK_HWRAP_BOX_CLASS -GTK_IS_HWRAP_BOX_CLASS -GTK_HWRAP_BOX_GET_CLASS -
- -
-app -app_libs_init -app_abort -app_exit -app_run -
- -
-batch -batch_run -
- -
-errors -errors_init -errors_exit -gimp_fatal_error -gimp_terminate -
- -
-git-version -GIMP_GIT_LAST_COMMIT_YEAR -GIMP_GIT_VERSION -
- -
-language -language_init -
- -
-sanity -sanity_check -
- -
-signals -gimp_init_signal_handlers -
- -
-tests -gimp_init_for_testing -gimp_init_for_gui_testing -gimp_init_for_gui_testing_with_rc -gimp_test_run_temp_mainloop -gimp_test_run_mainloop_until_idle -gimp_test_bail_if_no_display -
- -
-unique -gimp_unique_open -
- -
-units -units_init -
- -
-version -gimp_version_show -
- -
-about -GIMP_ACRONYM -GIMP_NAME -GIMP_COPYRIGHT -GIMP_LICENSE -
- -
-gimp-log -GimpLogFlags -gimp_log_flags -gimp_log_init -gimp_log -gimp_logv -GIMP_LOG -TOOL_EVENTS -TOOL_FOCUS -DND -HELP -DIALOG_FACTORY -MENUS -SAVE_DIALOG -IMAGE_SCALE -SHADOW_TILES -SCALE -WM -FLOATING_SELECTION -SHM -TEXT_EDITING -KEY_EVENTS -AUTO_TAB_STYLE -INSTANCES -RECTANGLE_TOOL -BRUSH_CACHE -
- -
-base-enums -GIMP_TYPE_CURVE_TYPE -GimpCurveType -GIMP_TYPE_HISTOGRAM_CHANNEL -GimpHistogramChannel -GIMP_TYPE_LAYER_MODE_EFFECTS -GimpLayerModeEffects -GIMP_TYPE_HUE_RANGE -GimpHueRange -GimpConvolutionType -SioxRefinementType - -gimp_curve_type_get_type -gimp_histogram_channel_get_type -gimp_layer_mode_effects_get_type -gimp_hue_range_get_type -
- -
-base-types -MAX_CHANNELS -RED -GREEN -BLUE -ALPHA -GRAY -ALPHA_G -INDEXED -ALPHA_I -TileValidateProc -
- -
-base -base_init -base_exit -
- -
-base-utils -get_pid -get_number_of_processors -get_physical_memory_size -get_backtrace -
- -
-boundary -BOUNDARY_HALF_WAY -BoundaryType -BoundSeg -boundary_find -boundary_sort -boundary_simplify -boundary_offset -
- -
-color-balance -ColorBalance -color_balance_init -color_balance_create_lookup_tables -color_balance -
- -
-colorize -Colorize -colorize_init -colorize_calculate -colorize -
- -
-cpercep -cpercep_init -cpercep_rgb_to_space -cpercep_space_to_rgb -cpercep_distance_space -
- -
-curves -Curves -curves_init -curves_lut_func -
- -
-gimphistogram -GimpHistogram -gimp_histogram_new -gimp_histogram_duplicate -gimp_histogram_ref -gimp_histogram_unref -gimp_histogram_calculate -gimp_histogram_get_maximum -gimp_histogram_get_count -gimp_histogram_get_mean -gimp_histogram_get_median -gimp_histogram_get_std_dev -gimp_histogram_get_value -gimp_histogram_get_channel -gimp_histogram_get_threshold -gimp_histogram_n_channels -
- -
-gimplut -GimpLut -GimpLutFunc -gimp_lut_new -gimp_lut_free -gimp_lut_setup -gimp_lut_setup_exact -gimp_lut_process -gimp_lut_process_inline -
- -
-desaturate -desaturate_region -
- -
-hue-saturation -HueSaturation -hue_saturation_init -hue_saturation_calculate_transfers -hue_saturation -
- -
-levels -Levels -levels_init -levels_lut_func -
- -
-lut-funcs -brightness_contrast_lut_new -brightness_contrast_lut_setup -invert_lut_new -add_lut_new -intersect_lut_new -threshold_lut_new -posterize_lut_new -posterize_lut_setup -equalize_lut_new -
- -
-pixel-processor -GIMP_MAX_NUM_THREADS -PixelProcessorFunc -PixelProcessorProgressFunc -pixel_processor_init -pixel_processor_set_num_threads -pixel_processor_exit -pixel_regions_process_parallel -pixel_regions_process_parallel_progress -
- -
-pixel-region -PixelRegion -PixelRegionHolder -PixelRegionIterator -pixel_region_init -pixel_region_init_temp_buf -pixel_region_init_data -pixel_region_resize -pixel_region_get_row -pixel_region_set_row -pixel_region_get_col -pixel_region_set_col -pixel_region_has_alpha -pixel_regions_register -pixel_regions_process -pixel_regions_process_stop -
- -
-pixel-surround -PixelSurround -PixelSurroundMode -pixel_surround_new -pixel_surround_set_bg -pixel_surround_lock -pixel_surround_release -pixel_surround_destroy -
- -
-siox -SIOX_DEFAULT_SMOOTHNESS -SIOX_DEFAULT_SENSITIVITY_L -SIOX_DEFAULT_SENSITIVITY_A -SIOX_DEFAULT_SENSITIVITY_B -SIOX_DRB_ADD -SIOX_DRB_SUBTRACT -SioxState -SioxProgressFunc -siox_init -siox_foreground_extract -siox_done -siox_drb -
- -
-temp-buf -TempBuf -temp_buf_new -temp_buf_copy -temp_buf_resize -temp_buf_scale -temp_buf_copy_area -temp_buf_demultiply -temp_buf_free -temp_buf_get_data -temp_buf_get_data_size -temp_buf_data_clear -temp_buf_get_memsize -temp_buf_dump -
- -
-threshold -Threshold -threshold -
- -
-tile-cache -tile_cache_init -tile_cache_exit -tile_cache_set_size -tile_cache_suspend_idle_swapper -tile_cache_insert -tile_cache_flush -
- -
-tile-manager -tile_manager_exit -tile_manager_new -tile_manager_ref -tile_manager_unref -tile_manager_duplicate -tile_manager_set_validate_proc -tile_manager_validate_tile -tile_manager_invalidate_area -tile_manager_get -tile_manager_get_at -tile_manager_get_tile -tile_manager_get_tile_col_row -tile_manager_map_tile -tile_manager_map -tile_manager_width -tile_manager_height -tile_manager_bpp -tile_manager_get_memsize -tile_manager_get_tile_coordinates -tile_manager_map_over_tile -tile_manager_read_pixel_data -tile_manager_write_pixel_data -tile_manager_read_pixel_data_1 -tile_manager_write_pixel_data_1 - -GIMP_TYPE_TILE_MANAGER -GIMP_VALUE_HOLDS_TILE_MANAGER -gimp_tile_manager_get_type -
- -
-tile-manager-preview -tile_manager_get_preview -tile_manager_get_sub_preview -
- -
-tile-manager-private -TileManager -
- -
-tile-pyramid -TilePyramid -tile_pyramid_new -tile_pyramid_destroy -tile_pyramid_get_level -tile_pyramid_get_tiles -tile_pyramid_invalidate_area -tile_pyramid_set_validate_proc -tile_pyramid_get_width -tile_pyramid_get_height -tile_pyramid_get_bpp -tile_pyramid_get_memsize -
- -
-tile-swap -tile_swap_init -tile_swap_exit -tile_swap_in -tile_swap_out -tile_swap_delete -tile_swap_test -
- -
-tile -TILE_WIDTH -TILE_HEIGHT -tile_new -tile_lock -tile_release -tile_alloc -tile_size -tile_ewidth -tile_eheight -tile_bpp -tile_is_valid -tile_attach -tile_detach -tile_data_pointer -tile_global_refcount -
- -
-tile-rowhints -TileRowHint -TILEROWHINT_UNKNOWN -TILEROWHINT_OPAQUE -TILEROWHINT_TRANSPARENT -TILEROWHINT_MIXED -TILEROWHINT_OUTOFRANGE -TILEROWHINT_UNDEFINED -TILEROWHINT_BROKEN -tile_get_rowhint -tile_set_rowhint -tile_allocate_rowhints -tile_update_rowhints -
- -
-tile-private -TILE_DATA_POINTER -Tile -TileLink -
- -
-gimp-composite-generic -gimp_composite_generic_init -gimp_composite_generic_install -gimp_composite_addition_any_any_any_generic -gimp_composite_anti_erase_any_any_any_generic -gimp_composite_behind_any_any_any_generic -gimp_composite_blend_any_any_any_generic -gimp_composite_burn_any_any_any_generic -gimp_composite_color_any_any_any_generic -gimp_composite_color_erase_any_any_any_generic -gimp_composite_color_only_any_any_any_generic -gimp_composite_convert_any_any_any_generic -gimp_composite_darken_any_any_any_generic -gimp_composite_difference_any_any_any_generic -gimp_composite_dissolve_any_any_any_generic -gimp_composite_divide_any_any_any_generic -gimp_composite_dodge_any_any_any_generic -gimp_composite_erase_any_any_any_generic -gimp_composite_grain_extract_any_any_any_generic -gimp_composite_grain_merge_any_any_any_generic -gimp_composite_hardlight_any_any_any_generic -gimp_composite_hue_any_any_any_generic -gimp_composite_lighten_any_any_any_generic -gimp_composite_multiply_any_any_any_generic -gimp_composite_normal_any_any_any_generic -gimp_composite_overlay_any_any_any_generic -gimp_composite_replace_any_any_any_generic -gimp_composite_saturation_any_any_any_generic -gimp_composite_scale_any_any_any_generic -gimp_composite_screen_any_any_any_generic -gimp_composite_softlight_any_any_any_generic -gimp_composite_subtract_any_any_any_generic -gimp_composite_swap_any_any_any_generic -gimp_composite_value_any_any_any_generic -
- -
-gimp-composite-util -
- -
-gimp-composite -GimpPixelFormat -GIMP_COMPOSITE_ALPHA_OPAQUE -GIMP_COMPOSITE_ALPHA_TRANSPARENT -GimpCompositeOperation -gimp_composite_dispatch -gimp_composite_init -gimp_composite_context_print -gimp_composite_pixelformat_astext -gimp_composite_mode_astext -gimp_composite_use_cpu_accel -GIMP_COMPOSITE_OPTION_NOEXTENSIONS -GIMP_COMPOSITE_OPTION_VERBOSE -
- -
-gimpconfig-dump -GimpConfig-dump -GimpConfigDumpFormat -gimp_config_dump -
- -
-gimpconfig-file -GimpConfig-file -gimp_config_file_copy -gimp_config_file_backup_on_error -
- -
-gimpconfig-utils -GimpConfig-utils -gimp_config_connect -gimp_config_connect_full -gimp_config_disconnect -
- -
-gimpxmlparser -GimpXmlParser -GimpXmlParser -gimp_xml_parser_new -gimp_xml_parser_parse_file -gimp_xml_parser_parse_fd -gimp_xml_parser_parse_io_channel -gimp_xml_parser_parse_buffer -gimp_xml_parser_free -
- -
-core-enums -GimpAlignReferenceType -GimpAlignmentType -GimpBrushGeneratedShape -GimpCapStyle -GimpColorProfilePolicy -GimpContainerPolicy -GimpContextPropMask -GimpContextPropType -GimpConvertDitherType -GimpConvertPaletteType -GimpDashPreset -GimpDirtyMask -GimpDynamicsOutputType -GimpFillStyle -GimpFillType -GimpGradientColor -GimpGradientSegmentColor -GimpGradientSegmentType -GimpGravityType -GimpImageScaleCheckType -GimpItemSet -GimpItemTypeMask -GimpJoinStyle -GimpMaskApplyMode -GimpMergeType -GimpMessageSeverity -GimpOffsetType -GimpOrientationType -GimpRotationType -GimpSelectCriterion -GimpStrokeMethod -GimpThumbnailSize -GimpUndoEvent -GimpUndoMode -GimpUndoType -GimpViewSize -GimpViewType - -GIMP_TYPE_ALIGNMENT_TYPE -GIMP_TYPE_ALIGN_REFERENCE_TYPE -GIMP_TYPE_BRUSH_GENERATED_SHAPE -GIMP_TYPE_CAP_STYLE -GIMP_TYPE_COLOR_PROFILE_POLICY -GIMP_TYPE_CONTAINER_POLICY -GIMP_TYPE_CONVERT_DITHER_TYPE -GIMP_TYPE_CONVERT_PALETTE_TYPE -GIMP_TYPE_DASH_PRESET -GIMP_TYPE_DIRTY_MASK -GIMP_TYPE_DYNAMICS_OUTPUT_TYPE -GIMP_TYPE_FILL_STYLE -GIMP_TYPE_FILL_TYPE -GIMP_TYPE_GRADIENT_COLOR -GIMP_TYPE_GRADIENT_SEGMENT_COLOR -GIMP_TYPE_GRADIENT_SEGMENT_TYPE -GIMP_TYPE_GRAVITY_TYPE -GIMP_TYPE_ITEM_SET -GIMP_TYPE_JOIN_STYLE -GIMP_TYPE_MASK_APPLY_MODE -GIMP_TYPE_MERGE_TYPE -GIMP_TYPE_MESSAGE_SEVERITY -GIMP_TYPE_OFFSET_TYPE -GIMP_TYPE_ORIENTATION_TYPE -GIMP_TYPE_ROTATION_TYPE -GIMP_TYPE_SELECT_CRITERION -GIMP_TYPE_STROKE_METHOD -GIMP_TYPE_THUMBNAIL_SIZE -GIMP_TYPE_UNDO_EVENT -GIMP_TYPE_UNDO_MODE -GIMP_TYPE_UNDO_TYPE -GIMP_TYPE_VIEW_SIZE -GIMP_TYPE_VIEW_TYPE -gimp_align_reference_type_get_type -gimp_alignment_type_get_type -gimp_brush_generated_shape_get_type -gimp_cap_style_get_type -gimp_color_profile_policy_get_type -gimp_container_policy_get_type -gimp_convert_dither_type_get_type -gimp_convert_palette_type_get_type -gimp_dash_preset_get_type -gimp_dirty_mask_get_type -gimp_dynamics_output_type_get_type -gimp_fill_style_get_type -gimp_fill_type_get_type -gimp_gradient_color_get_type -gimp_gradient_segment_color_get_type -gimp_gradient_segment_type_get_type -gimp_gravity_type_get_type -gimp_item_set_get_type -gimp_join_style_get_type -gimp_mask_apply_mode_get_type -gimp_merge_type_get_type -gimp_message_severity_get_type -gimp_offset_type_get_type -gimp_orientation_type_get_type -gimp_rotation_type_get_type -gimp_select_criterion_get_type -gimp_stroke_method_get_type -gimp_thumbnail_size_get_type -gimp_undo_event_get_type -gimp_undo_mode_get_type -gimp_undo_type_get_type -gimp_view_size_get_type -gimp_view_type_get_type -
- -
-core-types -GIMP_OPACITY_TRANSPARENT -GIMP_OPACITY_OPAQUE -GimpCoords -GIMP_COORDS_MIN_PRESSURE -GIMP_COORDS_MAX_PRESSURE -GIMP_COORDS_DEFAULT_PRESSURE -GIMP_COORDS_MIN_TILT -GIMP_COORDS_MAX_TILT -GIMP_COORDS_DEFAULT_TILT -GIMP_COORDS_MIN_WHEEL -GIMP_COORDS_MAX_WHEEL -GIMP_COORDS_DEFAULT_WHEEL -GIMP_COORDS_DEFAULT_VELOCITY -GIMP_COORDS_DEFAULT_VALUES -GIMP_COORDS_DEFAULT_DIRECTION -GimpTattoo -GimpInitStatusFunc -GimpObjectFilterFunc -GimpMemsizeFunc -
- -
-gimpdrawable-blend -GimpDrawable-blend -gimp_drawable_blend -
- -
-gimpdrawable-brightness-contrast -GimpDrawable-brightness-contrast -gimp_drawable_brightness_contrast -
- -
-gimpdrawable-bucket-fill -GimpDrawable-bucket-fill -gimp_drawable_bucket_fill -gimp_drawable_bucket_fill_full -
- -
-gimpdrawable-color-balance -GimpDrawable-color-balance -gimp_drawable_color_balance -
- -
-gimpdrawable-colorize -GimpDrawable-colorize -gimp_drawable_colorize -
- -
-gimpdrawable-combine -GimpDrawable-combine -gimp_drawable_real_apply_region -gimp_drawable_real_replace_region -
- -
-gimpdrawable-convert -GimpDrawable-convert -gimp_drawable_convert_rgb -gimp_drawable_convert_grayscale -gimp_drawable_convert_tiles_rgb -gimp_drawable_convert_tiles_grayscale -
- -
-gimpdrawable-curves -GimpDrawable-curves -gimp_drawable_curves_spline -gimp_drawable_curves_explicit -
- -
-gimpdrawable-desaturate -GimpDrawable-desaturate -gimp_drawable_desaturate -
- -
-gimpdrawable-equalize -GimpDrawable-equalize -gimp_drawable_equalize -
- -
-gimpdrawable-foreground-extract -GimpDrawable-foreground-extract -gimp_drawable_foreground_extract -gimp_drawable_foreground_extract_siox_init -gimp_drawable_foreground_extract_siox -gimp_drawable_foreground_extract_siox_done -
- -
-gimpdrawable-histogram -GimpDrawable-histogram -gimp_drawable_calculate_histogram -
- -
-gimpdrawable-hue-saturation -GimpDrawable-hue-saturation -gimp_drawable_hue_saturation -
- -
-gimpdrawable-invert -GimpDrawable-invert -gimp_drawable_invert -
- -
-gimpdrawable-levels -GimpDrawable-levels -gimp_drawable_levels -gimp_drawable_levels_stretch -
- -
-gimpdrawable-offset -GimpDrawable-offset -gimp_drawable_offset -
- -
-gimpdrawable-operation -GimpDrawable-operation -gimp_drawable_apply_operation -gimp_drawable_apply_operation_to_tiles -
- -
-gimpdrawable-posterize -GimpDrawable-posterize -gimp_drawable_posterize -
- -
-gimpdrawable-preview -GimpDrawable-preview -gimp_drawable_get_preview -gimp_drawable_get_sub_preview -gimp_drawable_preview_bytes -
- -
-gimpdrawable-process -GimpDrawable-process -gimp_drawable_process -gimp_drawable_process_lut -
- -
-gimpdrawable-shadow -GimpDrawable-shadow -gimp_drawable_get_shadow_tiles -gimp_drawable_free_shadow_tiles -gimp_drawable_merge_shadow_tiles -
- -
-gimpdrawable-threshold -GimpDrawable-threshold -gimp_drawable_threshold -
- -
-gimpdrawable-transform -GimpDrawable-transform -gimp_drawable_transform_tiles_affine -gimp_drawable_transform_tiles_flip -gimp_drawable_transform_tiles_rotate -gimp_drawable_transform_affine -gimp_drawable_transform_flip -gimp_drawable_transform_rotate -gimp_drawable_transform_cut -gimp_drawable_transform_paste -
- -
-gimpguide -GimpGuide -GimpGuide -gimp_guide_new -gimp_guide_get_ID -gimp_guide_get_orientation -gimp_guide_set_orientation -gimp_guide_get_position -gimp_guide_set_position -gimp_guide_removed - -GimpGuideClass -GIMP_GUIDE -GIMP_IS_GUIDE -GIMP_TYPE_GUIDE -gimp_guide_get_type -GIMP_GUIDE_CLASS -GIMP_IS_GUIDE_CLASS -GIMP_GUIDE_GET_CLASS -
- -
-gimpsamplepoint -GimpSamplePoint -GimpSamplePoint -gimp_sample_point_new -gimp_sample_point_ref -gimp_sample_point_unref - -GIMP_TYPE_SAMPLE_POINT -gimp_sample_point_get_type -
- -
-gimpimage-arrange -GimpImage-arrange -gimp_image_arrange_objects -
- -
-gimpimage-colorhash -GimpImage-colorhash -gimp_image_color_hash_init -gimp_image_color_hash_exit -gimp_image_color_hash_invalidate -gimp_image_color_hash_rgb_to_indexed -
- -
-gimpimage-colormap -GimpImage-colormap -GIMP_IMAGE_COLORMAP_SIZE -gimp_image_colormap_init -gimp_image_colormap_dispose -gimp_image_colormap_free -gimp_image_get_colormap_palette -gimp_image_get_colormap -gimp_image_get_colormap_size -gimp_image_set_colormap -gimp_image_get_colormap_entry -gimp_image_set_colormap_entry -gimp_image_add_colormap_entry -
- -
-gimpimage-contiguous-region -GimpImage-contiguous-region -gimp_image_contiguous_region_by_seed -gimp_image_contiguous_region_by_color -
- -
-gimpimage-convert -GimpImage-convert -MAXNUMCOLORS -gimp_image_convert -gimp_image_convert_set_dither_matrix -
- -
-gimpimage-crop -GimpImage-crop -gimp_image_crop -gimp_image_crop_auto_shrink -
- -
-gimpimage-duplicate -GimpImage-duplicate -gimp_image_duplicate -
- -
-gimpimage-flip -GimpImage-flip -gimp_image_flip -
- -
-gimpimage-grid -GimpImage-grid -gimp_image_get_grid -gimp_image_set_grid -gimp_grid_parasite_name -gimp_grid_to_parasite -gimp_grid_from_parasite -
- -
-gimpimage-guides -GimpImage-guides -gimp_image_add_hguide -gimp_image_add_vguide -gimp_image_add_guide -gimp_image_remove_guide -gimp_image_move_guide -gimp_image_find_guide -gimp_image_get_guides -gimp_image_get_guide -gimp_image_get_next_guide -
- -
-gimpimage-item-list -GimpImage-item-list -gimp_image_item_list_translate -gimp_image_item_list_flip -gimp_image_item_list_rotate -gimp_image_item_list_transform -gimp_image_item_list_get_list -gimp_image_item_list_filter -
- -
-gimpimage-merge -GimpImage-merge -gimp_image_merge_visible_layers -gimp_image_merge_down -gimp_image_merge_group_layer -gimp_image_flatten -gimp_image_merge_visible_vectors -
- -
-gimpimage-new -GimpImage-new -gimp_image_new_from_buffer -gimp_image_new_from_component -gimp_image_new_from_drawable -gimp_image_new_from_pixbuf -gimp_image_new_from_template -gimp_image_new_get_last_template -gimp_image_new_set_last_template -
- -
-gimpimage-pick-color -GimpImage-pick-color -gimp_image_pick_color -
- -
-gimpimage-pick-layer -GimpImage-pick-layer -gimp_image_pick_layer -gimp_image_pick_layer_by_bounds -gimp_image_pick_text_layer -
- -
-gimpimage-preview -GimpImage-preview -gimp_image_get_preview_size -gimp_image_get_popup_size -gimp_image_get_preview -gimp_image_get_new_preview -
- -
-gimpimage-quick-mask -GimpImage-quick-mask -GIMP_IMAGE_QUICK_MASK_NAME -gimp_image_set_quick_mask_state -gimp_image_get_quick_mask_state -gimp_image_set_quick_mask_color -gimp_image_get_quick_mask_color -gimp_image_get_quick_mask -gimp_image_quick_mask_invert -gimp_image_get_quick_mask_inverted -
- -
-gimpimage-resize -GimpImage-resize -gimp_image_resize -gimp_image_resize_to_layers -gimp_image_resize_with_layers -gimp_image_resize_to_selection -
- -
-gimpimage-rotate -GimpImage-rotate -gimp_image_rotate -
- -
-gimpimage-sample-points -GimpImage-sample-points -gimp_image_add_sample_point_at_pos -gimp_image_add_sample_point -gimp_image_remove_sample_point -gimp_image_move_sample_point -gimp_image_get_sample_points -gimp_image_find_sample_point -
- -
-gimpimage-scale -GimpImage-scale -gimp_image_scale -gimp_image_scale_check -
- -
-gimpimage-snap -GimpImage-snap -gimp_image_snap_x -gimp_image_snap_y -gimp_image_snap_point -gimp_image_snap_rectangle -
- -
-gimpimage-undo -GimpImage-undo -gimp_image_undo_is_enabled -gimp_image_undo_enable -gimp_image_undo_disable -gimp_image_undo_freeze -gimp_image_undo_thaw -gimp_image_undo -gimp_image_redo -gimp_image_strong_undo -gimp_image_strong_redo -gimp_image_get_undo_stack -gimp_image_get_redo_stack -gimp_image_undo_free -gimp_image_get_undo_group_count -gimp_image_undo_group_start -gimp_image_undo_group_end -gimp_image_undo_push -gimp_image_undo_can_compress -
- -
-gimpimage-undo-push -GimpImage-undo-push -gimp_image_undo_push_image_type -gimp_image_undo_push_image_size -gimp_image_undo_push_image_resolution -gimp_image_undo_push_image_grid -gimp_image_undo_push_image_colormap -gimp_image_undo_push_drawable -gimp_image_undo_push_drawable_mod -gimp_image_undo_push_mask -gimp_image_undo_push_item_rename -gimp_image_undo_push_item_displace -gimp_image_undo_push_item_visibility -gimp_image_undo_push_item_reorder -gimp_image_undo_push_item_parasite -gimp_image_undo_push_item_parasite_remove -gimp_image_undo_push_layer_add -gimp_image_undo_push_layer_remove -gimp_image_undo_push_layer_mask_add -gimp_image_undo_push_layer_mask_remove -gimp_image_undo_push_layer_mask_apply -gimp_image_undo_push_layer_mask_show -gimp_image_undo_push_layer_mode -gimp_image_undo_push_layer_opacity -gimp_image_undo_push_layer_lock_alpha -gimp_image_undo_push_group_layer_suspend -gimp_image_undo_push_group_layer_resume -gimp_image_undo_push_group_layer_convert -gimp_image_undo_push_text_layer -gimp_image_undo_push_text_layer_modified -gimp_image_undo_push_channel_add -gimp_image_undo_push_channel_remove -gimp_image_undo_push_channel_color -gimp_image_undo_push_vectors_add -gimp_image_undo_push_vectors_remove -gimp_image_undo_push_vectors_mod -gimp_image_undo_push_fs_to_layer -gimp_image_undo_push_image_parasite -gimp_image_undo_push_image_parasite_remove -gimp_image_undo_push_item_parasite -gimp_image_undo_push_item_parasite_remove -gimp_image_undo_push_guide -gimp_image_undo_push_sample_point -gimp_image_undo_push_cantundo -
- -
-gimpitem-exclusive -gimp_item_toggle_exclusive_visible -
- -
-gimpitem-preview -GimpItem-preview -gimp_item_get_preview_size -gimp_item_get_popup_size -
- -
-gimppickable -GimpPickable -GimpPickable -GimpPickableInterface -gimp_pickable_get_image -gimp_pickable_get_image_type -gimp_pickable_get_bytes -gimp_pickable_get_tiles -gimp_pickable_get_color_at -gimp_pickable_get_opacity_at -gimp_pickable_get_pixel_at -gimp_pickable_pick_color -gimp_pickable_flush - -GIMP_PICKABLE -GIMP_IS_PICKABLE -GIMP_TYPE_PICKABLE -gimp_pickable_interface_get_type -GIMP_PICKABLE_GET_IFACE -
- -
-gimppreviewcache -PREVIEW_CACHE_PRIME_WIDTH -PREVIEW_CACHE_PRIME_HEIGHT -gimp_preview_cache_get -gimp_preview_cache_add -gimp_preview_cache_invalidate -gimp_preview_cache_get_memsize -
- -
-gimpprojectable -GimpProjectable -GIMP_PROJECTABLE_GET_IFACE -GimpProjectable -gimp_projectable_invalidate -gimp_projectable_flush -gimp_projectable_structure_changed -gimp_projectable_get_image -gimp_projectable_get_image_type -gimp_projectable_get_offset -gimp_projectable_get_size -gimp_projectable_get_graph -gimp_projectable_invalidate_preview -gimp_projectable_get_layers -gimp_projectable_get_channels - -GimpProjectableInterface -GIMP_PROJECTABLE -GIMP_IS_PROJECTABLE -GIMP_TYPE_PROJECTABLE -gimp_projectable_interface_get_type -
- -
-gimpprojection -GimpProjectionIdleRender -GimpProjection -GimpProjection -gimp_projection_new -gimp_projection_get_sink_node -gimp_projection_get_tiles_at_level -gimp_projection_get_level -gimp_projection_flush -gimp_projection_flush_now -gimp_projection_finish_draw -gimp_projection_estimate_memsize - -GimpProjectionClass -GIMP_PROJECTION -GIMP_IS_PROJECTION -GIMP_TYPE_PROJECTION -gimp_projection_get_type -GIMP_PROJECTION_CLASS -GIMP_IS_PROJECTION_CLASS -GIMP_PROJECTION_GET_CLASS -
- -
-gimpprojection-construct -GimpProjection-construct -gimp_projection_construct -
- -
-gimpscanconvert -GimpScanConvert -GimpScanConvert -gimp_scan_convert_new -gimp_scan_convert_free -gimp_scan_convert_set_pixel_ratio -gimp_scan_convert_set_clip_rectangle -gimp_scan_convert_add_polyline -gimp_scan_convert_add_bezier -gimp_scan_convert_stroke -gimp_scan_convert_render -gimp_scan_convert_render_full -gimp_scan_convert_render_value -gimp_scan_convert_compose -gimp_scan_convert_compose_value -
- -
-gimpunit -gimp_user_units_free -
- -
-gimpmarshal -gimp_marshal_BOOLEAN__BOOLEAN -gimp_marshal_BOOLEAN__ENUM_INT -gimp_marshal_BOOLEAN__OBJECT_POINTER -gimp_marshal_BOOLEAN__OBJECT_POINTER_STRING -gimp_marshal_BOOLEAN__STRING -gimp_marshal_BOOLEAN__STRING_FLAGS -gimp_marshal_VOID__BOOLEAN_INT_INT_INT_INT -gimp_marshal_VOID__BOXED_ENUM -gimp_marshal_VOID__DOUBLE_DOUBLE -gimp_marshal_VOID__DOUBLE_DOUBLE_DOUBLE_DOUBLE -gimp_marshal_VOID__ENUM_ENUM_BOXED_INT -gimp_marshal_VOID__ENUM_INT -gimp_marshal_VOID__ENUM_INT_BOOLEAN -gimp_marshal_VOID__ENUM_OBJECT -gimp_marshal_VOID__ENUM_POINTER -gimp_marshal_VOID__INT_INT -gimp_marshal_VOID__INT_INT_INT_INT -gimp_marshal_VOID__OBJECT_BOOLEAN -gimp_marshal_VOID__OBJECT_INT -gimp_marshal_VOID__OBJECT_OBJECT -gimp_marshal_VOID__OBJECT_POINTER -gimp_marshal_VOID__POINTER_BOXED -gimp_marshal_VOID__POINTER_ENUM -gimp_marshal_VOID__POINTER_FLAGS_BOOLEAN -gimp_marshal_VOID__STRING_BOOLEAN_UINT_FLAGS -gimp_marshal_VOID__STRING_FLAGS -gimp_marshal_VOID__STRING_STRING_STRING -gimp_marshal_VOID__POINTER_UINT_FLAGS -
- -
-display-enums -GimpCursorPrecision -GimpGuidesType -GimpHandleAnchor -GimpHandleType -GimpPathStyle -GimpZoomFocus - -GIMP_TYPE_CURSOR_PRECISION -GIMP_TYPE_GUIDES_TYPE -GIMP_TYPE_HANDLE_ANCHOR -GIMP_TYPE_HANDLE_TYPE -GIMP_TYPE_PATH_STYLE -GIMP_TYPE_ZOOM_FOCUS -gimp_cursor_precision_get_type -gimp_guides_type_get_type -gimp_handle_anchor_get_type -gimp_handle_type_get_type -gimp_path_style_get_type -gimp_zoom_focus_get_type -
- -
-gimp-file -GIMP_FILE_EXPORT_LAST_URI_KEY -GIMP_FILE_OPEN_LAST_URI_KEY -GIMP_FILE_SAVE_LAST_URI_KEY -
- -
-file-open -file_open_image -file_open_with_display -file_open_with_proc_and_display -file_open_layers -file_open_thumbnail -file_open_from_command_line -
- -
-file-procedure -FileProcedureGroup -file_procedure_find -file_procedure_find_by_prefix -file_procedure_find_by_extension -file_procedure_in_group -
- -
-file-save -file_save -
- -
-file-utils -file_utils_filename_is_uri -file_utils_filename_to_uri -file_utils_any_to_uri -file_utils_filename_from_uri -file_utils_uri_with_new_ext -file_utils_uri_to_utf8_filename -file_utils_uri_display_basename -file_utils_uri_display_name -file_utils_load_thumbnail -file_utils_save_thumbnail -
- -
-authors -
- -
-color-history -COLOR_HISTORY_SIZE -color_history_save -color_history_restore -color_history_add -color_history_set -color_history_get -
- -
-convert-dialog -convert_dialog_new -
- -
-data-delete-dialog -data_delete_dialog_new -
- -
-dialogs-types -GimpScaleCallback -
- -
-dialogs-constructors -dialogs_image_new_new -dialogs_file_open_new -dialogs_file_open_location_new -dialogs_file_save_new -dialogs_file_export_new -dialogs_preferences_get -dialogs_input_devices_get -dialogs_keyboard_shortcuts_get -dialogs_module_get -dialogs_tips_get -dialogs_about_get -dialogs_error_get -dialogs_close_all_get -dialogs_quit_get -dialogs_toolbox_new -dialogs_toolbox_dock_window_new -dialogs_dock_new -dialogs_dock_window_new -dialogs_brush_grid_view_new -dialogs_brush_list_view_new -dialogs_dynamics_list_view_new -dialogs_tool_preset_list_view_new -dialogs_buffer_grid_view_new -dialogs_buffer_list_view_new -dialogs_channel_list_view_new -dialogs_color_editor_new -dialogs_colormap_editor_new -dialogs_cursor_view_new -dialogs_device_status_new -dialogs_dock_new -dialogs_document_grid_view_new -dialogs_document_list_view_new -dialogs_error_console_new -dialogs_font_grid_view_new -dialogs_font_list_view_new -dialogs_gradient_grid_view_new -dialogs_gradient_list_view_new -dialogs_histogram_editor_new -dialogs_image_grid_view_new -dialogs_image_list_view_new -dialogs_layer_list_view_new -dialogs_navigation_editor_new -dialogs_palette_grid_view_new -dialogs_palette_list_view_new -dialogs_path_list_view_new -dialogs_pattern_grid_view_new -dialogs_pattern_list_view_new -dialogs_sample_point_editor_new -dialogs_selection_editor_new -dialogs_template_grid_view_new -dialogs_template_list_view_new -dialogs_tool_options_new -dialogs_undo_editor_new -dialogs_vectors_list_view_new -dialogs_brush_editor_get -dialogs_dynamics_editor_get -dialogs_gradient_editor_get -dialogs_tool_preset_editor_get -dialogs_palette_editor_get -dialogs_palette_import_get -
- -
-dialogs -global_dialog_factory -global_recent_docks -dialogs_init -dialogs_exit -dialogs_load_recent_docks -dialogs_save_recent_docks -dialogs_get_toolbox -
- -
-about-dialog -about_dialog_create -
- -
-image-new-dialog -image_new_dialog_new -image_new_dialog_set -
- -
-file-open-dialog -file_open_dialog_new -
- -
-file-open-location-dialog -file_open_location_dialog_new -
- -
-file-save-dialog -file_save_dialog_new -file_save_dialog_save_image -
- -
-grid-dialog -grid_dialog_new -
- -
-quit-dialog -quit_dialog_new -close_all_dialog_new -
- -
-image-properties-dialog -image_properties_dialog_new -
- -
-input-devices-dialog -input_devices_dialog_new -
- -
-keyboard-shortcuts-dialog -keyboard_shortcuts_dialog_new -
- -
-stroke-dialog -stroke_dialog_new -
- -
-gui -gui_libs_init -gui_init -gui_abort -gui_message -
- -
-gui-unique -GIMP_UNIQUE_WIN32_WINDOW_CLASS -GIMP_UNIQUE_WIN32_WINDOW_NAME -gui_unique_init -gui_unique_exit -
- -
-gui-vtable -gui_vtable_init -
- -
-ige-mac-menu -IgeMacMenuGroup -ige_mac_menu_set_menu_bar -ige_mac_menu_set_quit_menu_item -ige_mac_menu_add_app_menu_group -ige_mac_menu_add_app_menu_item -
- -
-themes -themes_init -themes_exit -themes_list_themes -themes_get_theme_dir -themes_get_theme_file -
- -
-image-scale-dialog -image_scale_dialog_new -
- -
-module-dialog -module_dialog_new -
- -
-palette-import-dialog -palette_import_dialog_new -
- -
-preferences-dialog -preferences_dialog_create -
- -
-print-size-dialog -GimpResolutionCallback -print_size_dialog_new -
- -
-resize-dialog -GimpResizeCallback -resize_dialog_new -
- -
-resolution-calibrate-dialog -resolution_calibrate_dialog -
- -
-scale-dialog -scale_dialog_new -
- -
-session -session_init -session_exit -session_restore -session_save -session_clear -
- -
-splash -splash_create -splash_destroy -splash_update -
- -
-tips-dialog -tips_dialog_create -
- -
-tips-parser -GimpTip -gimp_tip_new -gimp_tip_free -gimp_tips_from_file -gimp_tips_free -
- -
-user-install-dialog -user_install_dialog_run -
- -
-channel-options-dialog -ChannelOptionsDialog -channel_options_dialog_new -
- -
-vectors-options-dialog -VectorsOptionsDialog -vectors_options_dialog_new -
- -
-template-options-dialog -TemplateOptionsDialog -template_options_dialog_new -
- -
-layer-options-dialog -LayerOptionsDialog -layer_options_dialog_new -
- -
-layer-add-mask-dialog -LayerAddMaskDialog -layer_add_mask_dialog_new -
- -
-image-merge-layers-dialog -ImageMergeLayersDialog -image_merge_layers_dialog_new -
- -
-vectors-export-dialog -VectorsExportDialog -vectors_export_dialog_new -
- -
-vectors-import-dialog -VectorsImportDialog -vectors_import_dialog_new -
- - -
-paint-enums -GIMP_TYPE_BRUSH_APPLICATION_MODE -GimpBrushApplicationMode -GIMP_TYPE_PERSPECTIVE_CLONE_MODE -GimpPerspectiveCloneMode -GIMP_TYPE_CONVOLVE_TYPE -GimpConvolveType -GIMP_TYPE_INK_BLOB_TYPE -GimpInkBlobType -GimpPaintState -GIMP_TYPE_SOURCE_ALIGN_MODE -GimpSourceAlignMode - -gimp_brush_application_mode_get_type -gimp_perspective_clone_mode_get_type -gimp_convolve_type_get_type -gimp_ink_blob_type_get_type -gimp_source_align_mode_get_type -
- -
-paint-types -GimpPaintRegisterCallback -GimpPaintRegisterFunc -
- -
-gimp-paint -Gimp-paint -gimp_paint_init -gimp_paint_exit -
- -
-paint-funcs-types -TRANSPARENT_OPACITY -OPAQUE_OPACITY -InitialMode -CombinationMode -
- -
-paint-funcs -paint_funcs_setup -paint_funcs_free -color_pixels -color_pixels_mask -pattern_pixels_mask -blend_pixels -shade_pixels -extract_alpha_pixels -swap_pixels -scale_pixels -add_alpha_pixels -flatten_pixels -gray_to_rgb_pixels -apply_mask_to_alpha_channel -combine_mask_and_alpha_channel_stipple -combine_mask_and_alpha_channel_stroke -copy_gray_to_inten_a_pixels -copy_color -copy_color_pixels -copy_component_pixels -initial_channel_pixels -initial_indexed_pixels -initial_indexed_a_pixels -initial_inten_pixels -initial_inten_a_pixels -combine_indexed_and_indexed_pixels -combine_indexed_and_indexed_a_pixels -combine_indexed_a_and_indexed_a_pixels -combine_inten_a_and_indexed_pixels -combine_inten_a_and_indexed_a_pixels -combine_inten_and_inten_pixels -combine_inten_and_inten_a_pixels -combine_inten_a_and_inten_pixels -combine_inten_a_and_inten_a_pixels -combine_inten_a_and_channel_mask_pixels -combine_inten_a_and_channel_selection_pixels -paint_funcs_color_erase_helper -extract_from_inten_pixels -extract_from_indexed_pixels -color_region -color_region_mask -pattern_region -blend_region -shade_region -copy_region -copy_region_nocow -clear_region -add_alpha_region -flatten_region -extract_alpha_region -extract_from_region -convolve_region -multiply_alpha_region -separate_alpha_region -gaussian_blur_region -border_region -shapeburst_region -thin_region -fatten_region -smooth_region -erode_region -dilate_region -swap_region -apply_mask_to_region -combine_mask_and_region -copy_gray_to_region -copy_component -initial_region -combine_regions -combine_regions_replace -
- -
-paint-funcs-utils -HAS_ALPHA -INT_BLEND -INT_MULT -INT_MULT3 -
- -
-reduce-region -reduce_region -
- -
-scale-region -LANCZOS_MIN -LANCZOS_SPP -LANCZOS_WIDTH -LANCZOS_SAMPLES -LANCZOS_WIDTH2 -scale_region -create_lanczos_lookup -
- -
-subsample-region -subsample_region -subsample_indexed_region -
- -
-pdb-types -GimpPDBCompatMode -
- -
-internal_procs -internal_procs_init -register_brush_procs -register_brush_select_procs -register_brushes_procs -register_buffer_procs -register_channel_procs -register_color_procs -register_context_procs -register_convert_procs -register_display_procs -register_drawable_procs -register_drawable_transform_procs -register_dynamics_procs -register_edit_procs -register_fileops_procs -register_floating_sel_procs -register_font_select_procs -register_fonts_procs -register_gimp_procs -register_gimprc_procs -register_gradient_procs -register_gradient_select_procs -register_gradients_procs -register_grid_procs -register_guides_procs -register_help_procs -register_image_procs -register_image_select_procs -register_item_procs -register_item_transform_procs -register_layer_procs -register_message_procs -register_paint_tools_procs -register_palette_procs -register_palette_select_procs -register_palettes_procs -register_paths_procs -register_pattern_procs -register_pattern_select_procs -register_patterns_procs -register_plug_in_procs -register_procedural_db_procs -register_progress_procs -register_selection_procs -register_selection_tools_procs -register_text_tool_procs -register_text_layer_procs -register_transform_tools_procs -register_undo_procs -register_unit_procs -register_vectors_procs -
- -
-gimp-pdb-compat -gimp_pdb_compat_param_spec -gimp_pdb_compat_arg_type_to_gtype -gimp_pdb_compat_arg_type_from_gtype -gimp_pdb_compat_arg_type_to_string -gimp_pdb_compat_procs_register -
- -
-gimppdb-utils -GimpPDB-utils -gimp_pdb_get_brush -gimp_pdb_get_generated_brush -gimp_pdb_get_dynamics -gimp_pdb_get_pattern -gimp_pdb_get_gradient -gimp_pdb_get_palette -gimp_pdb_get_font -gimp_pdb_get_buffer -gimp_pdb_get_paint_info -gimp_pdb_item_is_attached -gimp_pdb_item_is_in_tree -gimp_pdb_item_is_in_same_tree -gimp_pdb_item_is_not_ancestor -gimp_pdb_item_is_floating -gimp_pdb_item_is_writable -gimp_pdb_item_is_group -gimp_pdb_item_is_not_group -gimp_pdb_layer_is_text_layer -gimp_pdb_image_is_base_type -gimp_pdb_image_is_not_base_type -gimp_pdb_get_vectors_stroke -
- -
-gimpprocedure -GimpMarshalFunc -GimpProcedure -GimpProcedure -gimp_procedure_new -gimp_procedure_set_strings -gimp_procedure_set_static_strings -gimp_procedure_take_strings -gimp_procedure_add_argument -gimp_procedure_add_return_value -gimp_procedure_get_arguments -gimp_procedure_get_return_values -gimp_procedure_create_override -gimp_procedure_execute -gimp_procedure_execute_async -gimp_procedure_name_compare - -GimpProcedureClass -GIMP_PROCEDURE -GIMP_IS_PROCEDURE -GIMP_TYPE_PROCEDURE -gimp_procedure_get_type -GIMP_PROCEDURE_CLASS -GIMP_IS_PROCEDURE_CLASS -GIMP_PROCEDURE_GET_CLASS -
- -
-gimptemporaryprocedure -GimpTemporaryProcedure -GimpTemporaryProcedure -gimp_temporary_procedure_new - -GimpTemporaryProcedureClass -GIMP_TEMPORARY_PROCEDURE -GIMP_IS_TEMPORARY_PROCEDURE -GIMP_TYPE_TEMPORARY_PROCEDURE -gimp_temporary_procedure_get_type -GIMP_TEMPORARY_PROCEDURE_CLASS -GIMP_IS_TEMPORARY_PROCEDURE_CLASS -GIMP_TEMPORARY_PROCEDURE_GET_CLASS -
- -
-gimppluginprocedure -GimpPlugInProcedure -GimpPlugInProcedure -gimp_plug_in_procedure_new -gimp_plug_in_procedure_find -gimp_plug_in_procedure_get_progname -gimp_plug_in_procedure_add_menu_path -gimp_plug_in_procedure_get_label -gimp_plug_in_procedure_set_icon -gimp_plug_in_procedure_get_stock_id -gimp_plug_in_procedure_get_pixbuf -gimp_plug_in_procedure_get_help_id -gimp_plug_in_procedure_get_sensitive -gimp_plug_in_procedure_set_image_types -gimp_plug_in_procedure_set_file_proc -gimp_plug_in_procedure_set_mime_type -gimp_plug_in_procedure_set_thumb_loader -gimp_plug_in_procedure_get_blurb -gimp_plug_in_procedure_get_help_domain -gimp_plug_in_procedure_set_help_domain -gimp_plug_in_procedure_get_locale_domain -gimp_plug_in_procedure_set_locale_domain -gimp_plug_in_procedure_handle_return_values - -GimpPlugInProcedureClass -GIMP_PLUG_IN_PROCEDURE -GIMP_IS_PLUG_IN_PROCEDURE -GIMP_TYPE_PLUG_IN_PROCEDURE -gimp_plug_in_procedure_get_type -GIMP_PLUG_IN_PROCEDURE_CLASS -GIMP_IS_PLUG_IN_PROCEDURE_CLASS -GIMP_PLUG_IN_PROCEDURE_GET_CLASS -
- -
-gimppdb -GimpPDB -GimpPDB -gimp_pdb_new -gimp_pdb_register_procedure -gimp_pdb_unregister_procedure -gimp_pdb_lookup_procedure -gimp_pdb_register_compat_proc_name -gimp_pdb_lookup_compat_proc_name -gimp_pdb_execute_procedure_by_name_args -gimp_pdb_execute_procedure_by_name -gimp_pdb_get_deprecated_procedures - -GimpPDBClass -GIMP_PDB -GIMP_IS_PDB -GIMP_TYPE_PDB -gimp_pdb_get_type -GIMP_PDB_CLASS -GIMP_IS_PDB_CLASS -GIMP_PDB_GET_CLASS -
- -
-gimppdb-query -GimpPDB-query -gimp_pdb_dump -gimp_pdb_query -gimp_pdb_proc_info -
- -
-gimppdbcontext -GimpPDBContext -GimpPDBContext -GimpPDBContextClass -gimp_pdb_context_new -gimp_pdb_context_get_paint_options -gimp_pdb_context_get_brush_options - -GIMP_IS_PDB_CONTEXT -GIMP_IS_PDB_CONTEXT_CLASS -GIMP_PDB_CONTEXT -GIMP_PDB_CONTEXT_CLASS -GIMP_PDB_CONTEXT_GET_CLASS -GIMP_TYPE_PDB_CONTEXT -gimp_pdb_context_get_type -
- -
-gimppdberror -GimpPdbErrorCode -GIMP_PDB_ERROR -gimp_pdb_error_quark -
- -
-gimpplugin -GimpPlugIn -GimpPlugIn -gimp_plug_in_new -gimp_plug_in_open -gimp_plug_in_close -gimp_plug_in_get_proc_frame -gimp_plug_in_proc_frame_push -gimp_plug_in_proc_frame_pop -gimp_plug_in_main_loop -gimp_plug_in_main_loop_quit -gimp_plug_in_get_undo_desc -gimp_plug_in_menu_register -gimp_plug_in_add_temp_proc -gimp_plug_in_remove_temp_proc -gimp_plug_in_set_error_handler -gimp_plug_in_get_error_handler -WRITE_BUFFER_SIZE - -GimpPlugInClass -GIMP_PLUG_IN -GIMP_IS_PLUG_IN -GIMP_TYPE_PLUG_IN -gimp_plug_in_get_type -GIMP_PLUG_IN_CLASS -GIMP_IS_PLUG_IN_CLASS -
- -
-gimpplugin-message -GimpPlugIn-message -gimp_plug_in_handle_message -
- -
-gimpplugin-progress -GimpPlugIn-progress -gimp_plug_in_progress_attach -gimp_plug_in_progress_detach -gimp_plug_in_progress_start -gimp_plug_in_progress_end -gimp_plug_in_progress_set_text -gimp_plug_in_progress_set_value -gimp_plug_in_progress_pulse -gimp_plug_in_progress_get_window_id -gimp_plug_in_progress_install -gimp_plug_in_progress_uninstall -gimp_plug_in_progress_cancel -
- -
-gimpplugindef -GimpPlugInDef -GimpPlugInDef -gimp_plug_in_def_new -gimp_plug_in_def_add_procedure -gimp_plug_in_def_remove_procedure -gimp_plug_in_def_set_locale_domain -gimp_plug_in_def_set_help_domain -gimp_plug_in_def_set_mtime -gimp_plug_in_def_set_needs_query -gimp_plug_in_def_set_has_init - -GimpPlugInDefClass -GIMP_PLUG_IN_DEF -GIMP_IS_PLUG_IN_DEF -GIMP_TYPE_PLUG_IN_DEF -gimp_plug_in_def_get_type -GIMP_PLUG_IN_DEF_CLASS -GIMP_IS_PLUG_IN_DEF_CLASS -
- -
-gimppluginerror -GimpPlugInError -GimpPlugInErrorCode -GIMP_PLUG_IN_ERROR -gimp_plug_in_error_quark -
- -
-gimppluginprocframe -GimpPlugInProcFrame -GimpPlugInProcFrame -gimp_plug_in_proc_frame_new -gimp_plug_in_proc_frame_init -gimp_plug_in_proc_frame_dispose -gimp_plug_in_proc_frame_ref -gimp_plug_in_proc_frame_unref -gimp_plug_in_proc_frame_get_return_values -
- -
-gimpplugin-cleanup -GimpPlugIn-cleanup -gimp_plug_in_cleanup_undo_group_start -gimp_plug_in_cleanup_undo_group_end -gimp_plug_in_cleanup_add_shadow -gimp_plug_in_cleanup_remove_shadow -gimp_plug_in_cleanup -
- -
-gimpplugin-context -GimpPlugIn-context -gimp_plug_in_context_push -gimp_plug_in_context_pop -
- -
-gimpplugindebug -GimpPlugInDebug -GimpPlugInDebug -GimpDebugWrapFlag -gimp_plug_in_debug_new -gimp_plug_in_debug_free -gimp_plug_in_debug_argv -
- -
-gimppluginshm -GimpPlugInShm -GimpPlugInShm -gimp_plug_in_shm_new -gimp_plug_in_shm_free -gimp_plug_in_shm_get_ID -gimp_plug_in_shm_get_addr -
- -
-gimppluginmanager -GimpPlugInManager -GimpPlugInManager -gimp_plug_in_manager_new -gimp_plug_in_manager_initialize -gimp_plug_in_manager_restore -gimp_plug_in_manager_exit -gimp_plug_in_manager_add_procedure -gimp_plug_in_manager_add_temp_proc -gimp_plug_in_manager_remove_temp_proc -gimp_plug_in_manager_add_open_plug_in -gimp_plug_in_manager_remove_open_plug_in -gimp_plug_in_manager_plug_in_push -gimp_plug_in_manager_plug_in_pop -gimp_plug_in_manager_history_changed - -GimpPlugInManagerClass -GIMP_PLUG_IN_MANAGER -GIMP_IS_PLUG_IN_MANAGER -GIMP_TYPE_PLUG_IN_MANAGER -gimp_plug_in_manager_get_type -GIMP_PLUG_IN_MANAGER_CLASS -GIMP_IS_PLUG_IN_MANAGER_CLASS -
- -
-gimppluginmanager-call -GimpPlugInManager-call -gimp_plug_in_manager_call_query -gimp_plug_in_manager_call_init -gimp_plug_in_manager_call_run -gimp_plug_in_manager_call_run_temp -
- -
-gimppluginmanager-history -GimpPlugInManager-history -gimp_plug_in_manager_history_size -gimp_plug_in_manager_history_length -gimp_plug_in_manager_history_nth -gimp_plug_in_manager_history_add -gimp_plug_in_manager_history_remove -gimp_plug_in_manager_history_clear -
- -
-gimppluginmanager-data -GimpPlugInManager-data -gimp_plug_in_manager_data_free -gimp_plug_in_manager_set_data -gimp_plug_in_manager_get_data -
- -
-gimppluginmanager-file -GimpPlugInManager-file -gimp_plug_in_manager_register_load_handler -gimp_plug_in_manager_register_save_handler -gimp_plug_in_manager_register_mime_type -gimp_plug_in_manager_register_thumb_loader -gimp_plug_in_manager_uri_has_exporter -
- -
-gimppluginmanager-help-domain -GimpPlugInManager-help-domain -gimp_plug_in_manager_help_domain_exit -gimp_plug_in_manager_add_help_domain -gimp_plug_in_manager_get_help_domain -gimp_plug_in_manager_get_help_domains -
- -
-gimppluginmanager-locale-domain -GimpPlugInManager-locale-domain -gimp_plug_in_manager_locale_domain_exit -gimp_plug_in_manager_add_locale_domain -gimp_plug_in_manager_get_locale_domain -gimp_plug_in_manager_get_locale_domains -
- -
-gimppluginmanager-menu-branch -GimpPlugInManager-menu-branch -gimp_plug_in_manager_menu_branch_exit -gimp_plug_in_manager_add_menu_branch -gimp_plug_in_manager_get_menu_branches -
- -
-gimppluginmanager-query -GimpPlugInManager-query -gimp_plug_in_manager_query -
- -
-plug-in-params -plug_in_params_to_args -plug_in_args_to_params -
- -
-plug-in-rc -plug_in_rc_parse -plug_in_rc_write -
- -
-plug-in-icc-profile -plug_in_icc_profile_apply_rgb -plug_in_icc_profile_info -plug_in_icc_profile_file_info -
- -
-plug-in-types -GimpPlugInMenuBranch -
- -
-plug-in-enums -GIMP_TYPE_PLUG_IN_IMAGE_TYPE -GimpPlugInImageType -GIMP_TYPE_PLUG_CALL_MODE -GimpPlugInCallMode - -gimp_plug_in_image_type_get_type -gimp_plug_in_call_mode_get_type -
- -
-text-enums -GIMP_TYPE_TEXT_BOX_MODE -GimpTextBoxMode -GIMP_TYPE_TEXT_OUTLINE -GimpTextOutline - -gimp_text_box_mode_get_type -gimp_text_outline_get_type -
- -
-gimpeditselectiontool -GimpEditSelectionTool -gimp_edit_selection_tool_start -gimp_edit_selection_tool_key_press -gimp_edit_selection_tool_translate - -GIMP_EDIT_SELECTION_TOOL -GIMP_IS_EDIT_SELECTION_TOOL -GIMP_TYPE_EDIT_SELECTION_TOOL -gimp_edit_selection_tool_get_type -GIMP_EDIT_SELECTION_TOOL_CLASS -GIMP_IS_EDIT_SELECTION_TOOL_CLASS -
- -
-gimppaintoptions-gui -GimpPaintOptions-gui -gimp_paint_options_gui -
- -
-gimptooloptions-gui -GimpToolOptions-gui -gimp_tool_options_gui -
- -
-tool_manager -tool_manager_init -tool_manager_exit -tool_manager_get_active -tool_manager_select_tool -tool_manager_push_tool -tool_manager_pop_tool -tool_manager_initialize_active -tool_manager_control_active -tool_manager_button_press_active -tool_manager_button_release_active -tool_manager_motion_active -tool_manager_focus_display_active -tool_manager_key_press_active -tool_manager_key_release_active -tool_manager_modifier_state_active -tool_manager_active_modifier_state_active -tool_manager_oper_update_active -tool_manager_cursor_update_active -tool_manager_get_popup_active -
- -
-tools-enums -GimpButtonPressType -GimpButtonReleaseType -GimpMotionMode -GimpRectSelectMode -GimpRectangleConstraint -GimpRectanglePrecision -GimpRectangleToolFixedRule -GimpToolAction -GimpTransformType -GimpTranslateMode -GimpVectorMode -SelectFunction - -GIMP_TYPE_BUTTON_PRESS_TYPE -GIMP_TYPE_BUTTON_RELEASE_TYPE -GIMP_TYPE_RECTANGLE_CONSTRAINT -GIMP_TYPE_RECTANGLE_PRECISION -GIMP_TYPE_RECTANGLE_TOOL_FIXED_RULE -GIMP_TYPE_RECT_SELECT_MODE -GIMP_TYPE_TOOL_ACTION -GIMP_TYPE_TRANSFORM_TYPE -GIMP_TYPE_VECTOR_MODE -gimp_button_press_type_get_type -gimp_button_release_type_get_type -gimp_rect_select_mode_get_type -gimp_rectangle_constraint_get_type -gimp_rectangle_precision_get_type -gimp_rectangle_tool_fixed_rule_get_type -gimp_tool_action_get_type -gimp_transform_type_get_type -gimp_vector_mode_get_type -
- -
-tools-types -GimpToolOptionsGUIFunc -GimpToolRegisterCallback -GimpToolRegisterFunc -
- -
-gimp-tools -Gimp-tools -gimp_tools_init -gimp_tools_exit -gimp_tools_save -gimp_tools_clear -gimp_tools_restore -gimp_tools_get_default_order -
- -
-gimpanchor -GimpAnchor -GimpAnchor -GIMP_ANCHOR -GIMP_VALUE_HOLDS_ANCHOR -gimp_anchor_new -gimp_anchor_copy -gimp_anchor_free - -GIMP_TYPE_ANCHOR -gimp_anchor_get_type -
- -
-vectors-types -GimpAnchorType -GimpAnchorFeatureType -GimpVectorExtendMode -
- -
-gimpclipboard -gimp_clipboard_init -gimp_clipboard_exit -gimp_clipboard_has_buffer -gimp_clipboard_has_svg -gimp_clipboard_has_curve -gimp_clipboard_get_buffer -gimp_clipboard_get_svg -gimp_clipboard_get_curve -gimp_clipboard_set_buffer -gimp_clipboard_set_svg -gimp_clipboard_set_text -gimp_clipboard_set_curve -
- -
-gimpcursor -gimp_cursor_new -gimp_cursor_set -
- -
-gimpdevicemanager -GimpDeviceManager -GimpDeviceManager -GimpDeviceManagerClass -gimp_device_manager_get_current_device -gimp_device_manager_new -gimp_device_manager_set_current_device - -GIMP_DEVICE_MANAGER -GIMP_DEVICE_MANAGER_CLASS -GIMP_DEVICE_MANAGER_GET_CLASS -GIMP_IS_DEVICE_MANAGER -GIMP_IS_DEVICE_MANAGER_CLASS -GIMP_TYPE_DEVICE_MANAGER -gimp_device_manager_get_type -
- -
-gimpdevices -gimp_devices_init -gimp_devices_exit -gimp_devices_restore -gimp_devices_save -gimp_devices_clear -gimp_devices_get_manager -gimp_devices_add_widget -gimp_devices_check_callback -gimp_devices_check_change -
- -
-gimpdnd -GIMP_TARGET_BRUSH -GIMP_TARGET_BUFFER -GIMP_TARGET_CHANNEL -GIMP_TARGET_COLOR -GIMP_TARGET_COMPONENT -GIMP_TARGET_DIALOG -GIMP_TARGET_FONT -GIMP_TARGET_GRADIENT -GIMP_TARGET_IMAGE -GIMP_TARGET_IMAGEFILE -GIMP_TARGET_LAYER -GIMP_TARGET_LAYER_MASK -GIMP_TARGET_NETSCAPE_URL -GIMP_TARGET_PALETTE -GIMP_TARGET_PATTERN -GIMP_TARGET_PIXBUF -GIMP_TARGET_SVG -GIMP_TARGET_SVG_XML -GIMP_TARGET_TEMPLATE -GIMP_TARGET_TEXT_PLAIN -GIMP_TARGET_TOOL_INFO -GIMP_TARGET_URI_LIST -GIMP_TARGET_VECTORS -GIMP_TARGET_XDS -gimp_dnd_init -GimpDndDropUriListFunc -GimpDndDragUriListFunc -gimp_dnd_uri_list_dest_add -gimp_dnd_uri_list_dest_remove -gimp_dnd_uri_list_source_add -gimp_dnd_uri_list_source_remove -gimp_dnd_xds_source_add -gimp_dnd_xds_source_remove -GimpDndDropColorFunc -GimpDndDragColorFunc -gimp_dnd_color_source_add -gimp_dnd_color_source_remove -gimp_dnd_color_dest_add -gimp_dnd_color_dest_remove -GimpDndDragStreamFunc -GimpDndDropComponentFunc -GimpDndDragComponentFunc -gimp_dnd_component_source_add -gimp_dnd_component_source_remove -gimp_dnd_component_dest_add -gimp_dnd_component_dest_remove -GimpDndDropPixbufFunc -GimpDndDragPixbufFunc -gimp_dnd_pixbuf_source_add -gimp_dnd_pixbuf_source_remove -gimp_dnd_pixbuf_dest_add -gimp_dnd_pixbuf_dest_remove -GimpDndDropStreamFunc -gimp_dnd_svg_dest_add -gimp_dnd_svg_dest_remove -gimp_dnd_svg_source_add -gimp_dnd_svg_source_remove -GimpDndDropViewableFunc -GimpDndDragViewableFunc -gimp_dnd_viewable_source_add -gimp_dnd_viewable_source_remove -gimp_dnd_viewable_dest_add -gimp_dnd_viewable_dest_remove -gimp_dnd_drag_source_set_by_type -gimp_dnd_drag_dest_set_by_type -gimp_dnd_get_drag_data -
- -
-gimpdnd-xds -gimp_dnd_xds_source_set -gimp_dnd_xds_save_image -
- -
-gimppixbuf -gimp_pixbuf_get_formats -gimp_pixbuf_targets_add -gimp_pixbuf_targets_remove -
- -
-gimprender -gimp_render_check_buf -gimp_render_empty_buf -gimp_render_white_buf -gimp_render_blend_dark_check -gimp_render_blend_light_check -gimp_render_blend_white -gimp_render_init -gimp_render_exit -gimp_render_dark_check_color -gimp_render_light_check_color -
- -
-gimpselectiondata -gimp_selection_data_set_uri_list -gimp_selection_data_get_uri_list -gimp_selection_data_set_color -gimp_selection_data_get_color -gimp_selection_data_set_stream -gimp_selection_data_get_stream -gimp_selection_data_set_curve -gimp_selection_data_get_curve -gimp_selection_data_set_image -gimp_selection_data_get_image -gimp_selection_data_set_component -gimp_selection_data_get_component -gimp_selection_data_set_item -gimp_selection_data_get_item -gimp_selection_data_set_object -gimp_selection_data_get_brush -gimp_selection_data_get_pattern -gimp_selection_data_get_gradient -gimp_selection_data_get_palette -gimp_selection_data_get_font -gimp_selection_data_get_buffer -gimp_selection_data_get_imagefile -gimp_selection_data_get_template -gimp_selection_data_get_tool_info -
- -
-gimphelp -gimp_help_show -gimp_help_user_manual_is_installed -gimp_help_user_manual_changed -
- -
-gimppropwidgets -gimp_prop_expanding_frame_new -gimp_prop_paint_mode_menu_new -gimp_prop_color_button_new -gimp_prop_scale_button_new -gimp_prop_spin_scale_new -gimp_prop_opacity_spin_scale_new -gimp_prop_view_new -gimp_prop_number_pair_entry_new -gimp_prop_language_combo_box_new -gimp_prop_language_entry_new -gimp_prop_icon_picker_new -gimp_prop_table_new -
- -
-gimpwidgets-constructors -gimp_paint_mode_menu_new -gimp_stock_button_new -
- -
-gimpwidgets-utils -gimp_menu_position -gimp_button_menu_position -gimp_enum_radio_box_add -gimp_enum_radio_frame_add -gimp_get_icon_size -gimp_preview_tab_style_to_icon -gimp_get_mod_string -gimp_suggest_modifiers -gimp_modifiers_to_channel_op -gimp_replace_virtual_modifiers -gimp_get_extend_selection_mask -gimp_get_modify_selection_mask -gimp_get_toggle_behavior_mask -gimp_get_constrain_behavior_mask -gimp_get_all_modifiers_mask -gimp_get_screen_resolution -gimp_rgb_get_gdk_color -gimp_rgb_set_gdk_color -gimp_window_set_hint -gimp_window_get_native_id -gimp_window_set_transient_for -gimp_toggle_button_set_visible -gimp_widget_set_accel_help -gimp_get_message_stock_id -gimp_pango_layout_set_scale -gimp_pango_layout_set_weight -gimp_highlight_widget -gimp_dock_with_window_new -gimp_tools_get_tool_options_gui -gimp_tools_set_tool_options_gui -gimp_widget_flush_expose -gimp_print_event -gimp_session_write_position -
- -
-gimpcairo -gimp_cairo_add_arc -gimp_cairo_add_segments -gimp_cairo_draw_drop_wilber -gimp_cairo_draw_toolbox_wilber -gimp_cairo_stipple_pattern_create -
- -
-gimpcairo-wilber -gimp_cairo_wilber -gimp_cairo_wilber_get_size -
- -
-widgets-enums -GimpActiveColor -GimpColorDialogState -GimpColorFrameMode -GimpColorPickMode -GimpColorPickState -GimpCursorModifier -GimpCursorType -GimpDeviceValues -GimpDialogsState -GimpDndType -GimpDropType -GimpHistogramScale -GimpTabStyle -GimpTagEntryMode -GimpToolCursorType -GimpViewBG -GimpViewBorderType - -GIMP_TYPE_ACTIVE_COLOR -GIMP_TYPE_COLOR_DIALOG_STATE -GIMP_TYPE_COLOR_FRAME_MODE -GIMP_TYPE_COLOR_PICK_MODE -GIMP_TYPE_COLOR_PICK_STATE -GIMP_TYPE_HISTOGRAM_SCALE -GIMP_TYPE_TAB_STYLE -GIMP_TYPE_TAG_ENTRY_MODE -gimp_active_color_get_type -gimp_color_dialog_state_get_type -gimp_color_frame_mode_get_type -gimp_color_pick_mode_get_type -gimp_color_pick_state_get_type -gimp_histogram_scale_get_type -gimp_tab_style_get_type -gimp_tag_entry_mode_get_type -
- -
-widgets-types -GimpDialogRestoreFunc -GimpActionGroupSetupFunc -GimpActionGroupUpdateFunc -GimpUIManagerSetupFunc -GimpMenuPositionFunc -GimpPanedBoxDroppedFunc -GimpSegment -
- -
-xcf-load -xcf_load_image -
- -
-xcf-private -PropType -XcfCompressionType -XcfOrientationType -XcfInfo -XcfStrokeType -XcfGroupItemFlagsType -
- -
-xcf-read -xcf_read_int32 -xcf_read_float -xcf_read_int8 -xcf_read_string -
- -
-xcf-save -xcf_save_choose_format -xcf_save_image -
- -
-xcf-seek -xcf_seek_pos -xcf_seek_end -
- -
-xcf-write -xcf_write_int32 -xcf_write_float -xcf_write_int8 -xcf_write_string -
- -
-xcf -xcf_init -xcf_exit -
- -
-actions-types -GimpActionSelectType -GimpSaveMode -
- -
-actions -global_action_factory -actions_init -actions_exit -action_data_get_gimp -action_data_get_context -action_data_get_image -action_data_get_display -action_data_get_shell -action_data_get_widget -action_data_sel_count -action_select_value -action_select_property -action_select_object -action_message -return_if_no_gimp -return_if_no_context -return_if_no_image -return_if_no_display -return_if_no_shell -return_if_no_widget -return_if_no_drawable -return_if_no_layer -return_if_no_channel -return_if_no_vectors -
- -
-brush-editor-actions -brush_editor_actions_setup -brush_editor_actions_update -
- -
-brushes-actions -brushes_actions_setup -brushes_actions_update -
- -
-buffers-actions -buffers_actions_setup -buffers_actions_update -
- -
-channels-actions -channels_actions_setup -channels_actions_update -
- -
-colormap-actions -colormap_actions_setup -colormap_actions_update -
- -
-config-actions -config_actions_setup -config_actions_update -
- -
-cursor-info-actions -cursor_info_actions_setup -cursor_info_actions_update -
- -
-debug-actions -debug_actions_setup -debug_actions_update -
- -
-dialogs-actions -n_dialogs_dockable_actions -dialogs_actions_setup -dialogs_actions_update -
- -
-dock-actions -dock_actions_setup -dock_actions_update -
- -
-dockable-actions -dockable_actions_setup -dockable_actions_update -
- -
-documents-actions -documents_actions_setup -documents_actions_update -
- -
-drawable-actions -drawable_actions_setup -drawable_actions_update -
- -
-dynamics-actions -dynamics_actions_setup -dynamics_actions_update -
- -
-dynamics-editor-actions -dynamics_editor_actions_setup -dynamics_editor_actions_update -
- -
-edit-actions -edit_actions_setup -edit_actions_update -
- -
-error-console-actions -error_console_actions_setup -error_console_actions_update -
- -
-file-actions -file_actions_setup -file_actions_update -
- -
-fonts-actions -fonts_actions_setup -fonts_actions_update -
- -
-gradient-editor-actions -gradient_editor_actions_setup -gradient_editor_actions_update -
- -
-gradients-actions -gradients_actions_setup -gradients_actions_update -
- -
-help-actions -help_actions_setup -help_actions_update -
- -
-image-actions -image_actions_setup -image_actions_update -
- -
-images-actions -images_actions_setup -images_actions_update -
- -
-layers-actions -layers_actions_setup -layers_actions_update -
- -
-palette-editor-actions -palette_editor_actions_setup -palette_editor_actions_update -
- -
-palettes-actions -palettes_actions_setup -palettes_actions_update -
- -
-patterns-actions -patterns_actions_setup -patterns_actions_update -
- -
-plug-in-actions -plug_in_actions_setup -plug_in_actions_update -
- -
-quick-mask-actions -quick_mask_actions_setup -quick_mask_actions_update -
- -
-sample-points-actions -sample_points_actions_setup -sample_points_actions_update -
- -
-select-actions -select_actions_setup -select_actions_update -
- -
-templates-actions -templates_actions_setup -templates_actions_update -
- -
-text-editor-actions -text_editor_actions_update -text_editor_actions_setup -
- -
-text-tool-actions -text_tool_actions_setup -text_tool_actions_update -
- -
-tool-options-actions -tool_options_actions_setup -tool_options_actions_update -
- -
-tool-presets-actions -tool_presets_actions_setup -tool_presets_actions_update -
- -
-tool-preset-editor-actions -tool_preset_editor_actions_setup -tool_preset_editor_actions_update -
- -
-tools-actions -tools_actions_setup -tools_actions_update -
- -
-vectors-actions -vectors_actions_setup -vectors_actions_update -
- -
-view-actions -view_actions_setup -view_actions_update -
- -
-window-actions -window_actions_setup -window_actions_update -
- -
-windows-actions -windows_actions_setup -windows_actions_update -windows_actions_dock_window_to_action_name -
- -
-buffers-commands -buffers_paste_as_new_cmd_callback -buffers_paste_cmd_callback -buffers_paste_into_cmd_callback -buffers_delete_cmd_callback -
- -
-channels-commands -channels_new_cmd_callback -channels_new_last_vals_cmd_callback -channels_raise_cmd_callback -channels_raise_to_top_cmd_callback -channels_lower_cmd_callback -channels_lower_to_bottom_cmd_callback -channels_duplicate_cmd_callback -channels_delete_cmd_callback -channels_to_selection_cmd_callback -channels_edit_attributes_cmd_callback -
- -
-config-commands -config_use_gegl_cmd_callback -
- -
-context-actions -context_actions_setup -context_actions_update -
- -
-context-commands -context_colors_default_cmd_callback -context_colors_swap_cmd_callback -context_foreground_red_cmd_callback -context_foreground_green_cmd_callback -context_foreground_blue_cmd_callback -context_foreground_hue_cmd_callback -context_foreground_saturation_cmd_callback -context_foreground_value_cmd_callback -context_background_red_cmd_callback -context_background_green_cmd_callback -context_background_blue_cmd_callback -context_background_hue_cmd_callback -context_background_saturation_cmd_callback -context_background_value_cmd_callback -context_colormap_background_cmd_callback -context_colormap_foreground_cmd_callback -context_swatch_background_cmd_callback -context_swatch_foreground_cmd_callback -context_opacity_cmd_callback -context_paint_mode_cmd_callback -context_tool_select_cmd_callback -context_brush_select_cmd_callback -context_pattern_select_cmd_callback -context_palette_select_cmd_callback -context_palette_background_cmd_callback -context_palette_foreground_cmd_callback -context_gradient_select_cmd_callback -context_font_select_cmd_callback -context_brush_angle_cmd_callback -context_brush_aspect_cmd_callback -context_brush_hardness_cmd_callback -context_brush_radius_cmd_callback -context_brush_shape_cmd_callback -context_brush_spacing_cmd_callback -context_brush_spikes_cmd_callback -
- -
-colormap-commands -colormap_edit_color_cmd_callback -colormap_add_color_cmd_callback -
- -
-cursor-info-commands -cursor_info_sample_merged_cmd_callback -
- -
-data-commands -data_new_cmd_callback -data_open_as_image_cmd_callback -data_duplicate_cmd_callback -data_copy_location_cmd_callback -data_delete_cmd_callback -data_edit_cmd_callback -data_refresh_cmd_callback -
- -
-data-editor-commands -data_editor_edit_active_cmd_callback -
- -
-debug-commands -ENABLE_DEBUG_MENU -debug_mem_profile_cmd_callback -debug_dump_menus_cmd_callback -debug_dump_managers_cmd_callback -debug_dump_keyboard_shortcuts_cmd_callback -debug_dump_attached_data_cmd_callback -debug_benchmark_projection_cmd_callback -debug_show_image_graph_cmd_callback -
- -
-dialogs-commands -dialogs_create_toplevel_cmd_callback -dialogs_create_dockable_cmd_callback -
- -
-dock-commands -dock_toggle_image_menu_cmd_callback -dock_toggle_auto_cmd_callback -
- -
-dockable-commands -dockable_add_tab_cmd_callback -dockable_close_tab_cmd_callback -dockable_detach_tab_cmd_callback -dockable_lock_tab_cmd_callback -dockable_toggle_view_cmd_callback -dockable_view_size_cmd_callback -dockable_tab_style_cmd_callback -dockable_show_button_bar_cmd_callback -
- -
-documents-commands -documents_open_cmd_callback -documents_raise_or_open_cmd_callback -documents_file_open_dialog_cmd_callback -documents_copy_location_cmd_callback -documents_remove_cmd_callback -documents_clear_cmd_callback -documents_remove_dangling_cmd_callback -documents_recreate_preview_cmd_callback -documents_reload_previews_cmd_callback -
- -
-drawable-commands -drawable_invert_cmd_callback -drawable_equalize_cmd_callback -drawable_levels_stretch_cmd_callback -drawable_flip_cmd_callback -drawable_rotate_cmd_callback -drawable_offset_cmd_callback -drawable_linked_cmd_callback -drawable_visible_cmd_callback -drawable_lock_content_cmd_callback -
- -
-edit-commands -edit_cut_cmd_callback -edit_copy_cmd_callback -edit_copy_visible_cmd_callback -edit_paste_cmd_callback -edit_paste_into_cmd_callback -edit_paste_as_new_cmd_callback -edit_paste_as_new_layer_cmd_callback -edit_named_cut_cmd_callback -edit_named_copy_cmd_callback -edit_named_copy_visible_cmd_callback -edit_named_paste_cmd_callback -edit_clear_cmd_callback -edit_fill_cmd_callback -edit_undo_cmd_callback -edit_redo_cmd_callback -edit_strong_redo_cmd_callback -edit_strong_undo_cmd_callback -edit_undo_clear_cmd_callback -
- -
-error-console-commands -error_console_clear_cmd_callback -
- -
-file-commands -file_open_cmd_callback -file_open_as_layers_cmd_callback -file_open_location_cmd_callback -file_open_recent_cmd_callback -file_save_cmd_callback -file_create_template_cmd_callback -file_revert_cmd_callback -file_close_all_cmd_callback -file_quit_cmd_callback -file_file_open_dialog -
- -
-fonts-commands -fonts_refresh_cmd_callback -
- -
-gradient-editor-commands -gradient_editor_left_color_cmd_callback -gradient_editor_left_color_type_cmd_callback -gradient_editor_load_left_cmd_callback -gradient_editor_save_left_cmd_callback -gradient_editor_right_color_cmd_callback -gradient_editor_right_color_type_cmd_callback -gradient_editor_load_right_cmd_callback -gradient_editor_save_right_cmd_callback -gradient_editor_blending_func_cmd_callback -gradient_editor_coloring_type_cmd_callback -gradient_editor_flip_cmd_callback -gradient_editor_replicate_cmd_callback -gradient_editor_split_midpoint_cmd_callback -gradient_editor_split_uniformly_cmd_callback -gradient_editor_delete_cmd_callback -gradient_editor_recenter_cmd_callback -gradient_editor_redistribute_cmd_callback -gradient_editor_blend_color_cmd_callback -gradient_editor_blend_opacity_cmd_callback -gradient_editor_zoom_cmd_callback -
- -
-gradients-commands -gradients_save_as_pov_ray_cmd_callback -
- -
-help-commands -help_help_cmd_callback -help_context_help_cmd_callback -
- -
-image-commands -image_new_cmd_callback -image_convert_cmd_callback -image_print_size_cmd_callback -image_resize_cmd_callback -image_resize_to_layers_cmd_callback -image_resize_to_selection_cmd_callback -image_scale_cmd_callback -image_flip_cmd_callback -image_rotate_cmd_callback -image_crop_cmd_callback -image_duplicate_cmd_callback -image_merge_layers_cmd_callback -image_flatten_image_cmd_callback -image_properties_cmd_callback -image_configure_grid_cmd_callback -
- -
-images-commands -images_raise_views_cmd_callback -images_new_view_cmd_callback -images_delete_image_cmd_callback -
- -
-layers-commands -layers_text_tool_cmd_callback -layers_edit_attributes_cmd_callback -layers_new_cmd_callback -layers_new_last_vals_cmd_callback -layers_new_from_visible_cmd_callback -layers_new_group_cmd_callback -layers_select_cmd_callback -layers_raise_cmd_callback -layers_raise_to_top_cmd_callback -layers_lower_cmd_callback -layers_lower_to_bottom_cmd_callback -layers_duplicate_cmd_callback -layers_anchor_cmd_callback -layers_merge_down_cmd_callback -layers_merge_group_cmd_callback -layers_delete_cmd_callback -layers_text_discard_cmd_callback -layers_text_along_vectors_cmd_callback -layers_text_to_vectors_cmd_callback -layers_resize_cmd_callback -layers_resize_to_image_cmd_callback -layers_scale_cmd_callback -layers_crop_cmd_callback -layers_mode_cmd_callback -layers_lock_alpha_cmd_callback -layers_mask_edit_cmd_callback -layers_mask_show_cmd_callback -layers_mask_disable_cmd_callback -layers_mask_add_cmd_callback -layers_mask_apply_cmd_callback -layers_mask_to_selection_cmd_callback -layers_alpha_add_cmd_callback -layers_alpha_remove_cmd_callback -layers_alpha_to_selection_cmd_callback -layers_opacity_cmd_callback -
- -
-palette-editor-commands -palette_editor_new_color_cmd_callback -palette_editor_edit_color_cmd_callback -palette_editor_delete_color_cmd_callback -palette_editor_zoom_cmd_callback -
- -
-palettes-commands -palettes_import_cmd_callback -palettes_merge_cmd_callback -
- -
-plug-in-commands -plug_in_run_cmd_callback -plug_in_repeat_cmd_callback -plug_in_history_cmd_callback -plug_in_reset_all_cmd_callback -
- -
-quick-mask-commands -quick_mask_toggle_cmd_callback -quick_mask_invert_cmd_callback -quick_mask_configure_cmd_callback -
- -
-sample-points-commands -sample_points_sample_merged_cmd_callback -
- -
-select-commands -select_invert_cmd_callback -select_all_cmd_callback -select_none_cmd_callback -select_float_cmd_callback -select_feather_cmd_callback -select_sharpen_cmd_callback -select_shrink_cmd_callback -select_border_cmd_callback -select_grow_cmd_callback -select_save_cmd_callback -select_stroke_cmd_callback -select_stroke_last_vals_cmd_callback -
- -
-templates-commands -templates_new_cmd_callback -templates_duplicate_cmd_callback -templates_edit_cmd_callback -templates_delete_cmd_callback -templates_create_image_cmd_callback -
- -
-text-editor-commands -text_editor_clear_cmd_callback -text_editor_load_cmd_callback -text_editor_direction_cmd_callback -
- -
-text-tool-commands -text_tool_cut_cmd_callback -text_tool_copy_cmd_callback -text_tool_paste_cmd_callback -text_tool_delete_cmd_callback -text_tool_load_cmd_callback -text_tool_clear_cmd_callback -text_tool_text_to_path_cmd_callback -text_tool_text_along_path_cmd_callback -text_tool_direction_cmd_callback -
- -
-tool-options-commands -tool_options_save_new_preset_cmd_callback -tool_options_save_preset_cmd_callback -tool_options_restore_preset_cmd_callback -tool_options_edit_preset_cmd_callback -tool_options_delete_preset_cmd_callback -tool_options_reset_cmd_callback -tool_options_reset_all_cmd_callback -
- -
-tools-commands -tools_select_cmd_callback -tools_color_average_radius_cmd_callback -tools_ink_blob_size_cmd_callback -tools_ink_blob_aspect_cmd_callback -tools_ink_blob_angle_cmd_callback -tools_paint_brush_size_cmd_callback -tools_paint_brush_angle_cmd_callback -tools_paint_brush_aspect_ratio_cmd_callback -tools_fg_select_brush_size_cmd_callback -tools_transform_preview_opacity_cmd_callback -tools_object_1_cmd_callback -tools_object_2_cmd_callback -tools_value_1_cmd_callback -tools_value_2_cmd_callback -tools_value_3_cmd_callback -tools_value_4_cmd_callback -
- -
-vectors-commands -vectors_new_cmd_callback -vectors_new_last_vals_cmd_callback -vectors_raise_cmd_callback -vectors_raise_to_top_cmd_callback -vectors_lower_cmd_callback -vectors_lower_to_bottom_cmd_callback -vectors_duplicate_cmd_callback -vectors_delete_cmd_callback -vectors_merge_visible_cmd_callback -vectors_to_selection_cmd_callback -vectors_selection_to_vectors_cmd_callback -vectors_stroke_cmd_callback -vectors_stroke_last_vals_cmd_callback -vectors_copy_cmd_callback -vectors_paste_cmd_callback -vectors_import_cmd_callback -vectors_export_cmd_callback -vectors_vectors_tool_cmd_callback -vectors_edit_attributes_cmd_callback -vectors_visible_cmd_callback -vectors_linked_cmd_callback -vectors_lock_content_cmd_callback -
- -
-view-commands -view_new_cmd_callback -view_zoom_explicit_cmd_callback -view_zoom_fit_in_cmd_callback -view_zoom_fill_cmd_callback -view_zoom_cmd_callback -view_zoom_other_cmd_callback -view_zoom_revert_cmd_callback -view_shrink_wrap_cmd_callback -view_dot_for_dot_cmd_callback -view_scroll_horizontal_cmd_callback -view_scroll_vertical_cmd_callback -view_navigation_window_cmd_callback -view_display_filters_cmd_callback -view_toggle_grid_cmd_callback -view_toggle_guides_cmd_callback -view_toggle_layer_boundary_cmd_callback -view_toggle_menubar_cmd_callback -view_toggle_rulers_cmd_callback -view_toggle_sample_points_cmd_callback -view_toggle_scrollbars_cmd_callback -view_toggle_selection_cmd_callback -view_toggle_statusbar_cmd_callback -view_snap_to_canvas_cmd_callback -view_snap_to_grid_cmd_callback -view_snap_to_guides_cmd_callback -view_snap_to_vectors_cmd_callback -view_padding_color_cmd_callback -view_fullscreen_cmd_callback -view_use_gegl_cmd_callback -
- -
-window-commands -window_close_cmd_callback -window_open_display_cmd_callback -window_move_to_screen_cmd_callback -
- -
-windows-commands -windows_hide_docks_cmd_callback -windows_open_recent_cmd_callback -windows_show_display_cmd_callback -windows_show_display_next_cmd_callback -windows_show_display_previous_cmd_callback -windows_show_dock_cmd_callback -windows_use_single_window_mode_cmd_callback -
- -
-menus-types -
- -
-file-menu -file_menu_setup -
- -
-image-menu -image_menu_setup -
- -
-plug-in-menus -plug_in_menus_setup -plug_in_menu_path_map -
- -
-tool-options-menu -tool_options_menu_setup -
- -
-dockable-menu -dockable_menu_setup -
- -
-window-menu -window_menu_setup -
- -
-windows-menu -windows_menu_setup -
- -
-menus -global_menu_factory -menus_init -menus_exit -menus_restore -menus_save -menus_clear -menus_remove -
- -
-gimp-app-test-utils -gimp_test_utils_create_image -gimp_test_utils_create_image_from_dalog -gimp_test_utils_get_ui_manager -gimp_test_utils_set_env_to_subpath -gimp_test_utils_set_gimp2_directory -gimp_test_utils_setup_menus_dir -gimp_test_utils_synthesize_key_event -
- -
-gimp-test-session-utils -gimp_test_session_load_and_write_session_files -
diff --git a/devel-docs/app/app.types b/devel-docs/app/app.types deleted file mode 100644 index 4f431bc4bf..0000000000 --- a/devel-docs/app/app.types +++ /dev/null @@ -1,442 +0,0 @@ -#include -#include "libgimpwidgets/gimpwidgets.h" - -gimp_action_editor_get_type -gimp_action_factory_get_type -gimp_action_get_type -gimp_action_group_get_type -gimp_action_view_get_type -gimp_airbrush_get_type -gimp_airbrush_options_get_type -gimp_airbrush_tool_get_type -gimp_align_options_get_type -gimp_align_tool_get_type -gimp_anchor_get_type -gimp_bezier_stroke_get_type -gimp_blend_options_get_type -gimp_blend_tool_get_type -gimp_blob_editor_get_type -gimp_brightness_contrast_config_get_type -gimp_brightness_contrast_tool_get_type -gimp_brush_clipboard_get_type -gimp_brush_core_get_type -gimp_brush_editor_get_type -gimp_brush_factory_view_get_type -gimp_brush_generated_get_type -gimp_brush_get_type -gimp_brush_pipe_get_type -gimp_brush_select_get_type -gimp_brush_tool_get_type -gimp_bucket_fill_options_get_type -gimp_bucket_fill_tool_get_type -gimp_buffer_get_type -gimp_buffer_view_get_type -gimp_by_color_select_tool_get_type -gimp_cage_config_get_type -gimp_cage_options_get_type -gimp_cage_tool_get_type -gimp_canvas_arc_get_type -gimp_canvas_boundary_get_type -gimp_canvas_corner_get_type -gimp_canvas_cursor_get_type -gimp_canvas_get_type -gimp_canvas_grid_get_type -gimp_canvas_group_get_type -gimp_canvas_guide_get_type -gimp_canvas_handle_get_type -gimp_canvas_item_get_type -gimp_canvas_layer_boundary_get_type -gimp_canvas_line_get_type -gimp_canvas_passe_partout_get_type -gimp_canvas_path_get_type -gimp_canvas_pen_get_type -gimp_canvas_polygon_get_type -gimp_canvas_progress_get_type -gimp_canvas_proxy_group_get_type -gimp_canvas_rectangle_get_type -gimp_canvas_rectangle_guides_get_type -gimp_canvas_sample_point_get_type -gimp_canvas_text_cursor_get_type -gimp_canvas_transform_guides_get_type -gimp_canvas_transform_preview_get_type -gimp_cell_renderer_dashes_get_type -gimp_cell_renderer_viewable_get_type -gimp_channel_get_type -gimp_channel_prop_undo_get_type -gimp_channel_tree_view_get_type -gimp_channel_undo_get_type -gimp_clone_get_type -gimp_clone_options_get_type -gimp_clone_tool_get_type -gimp_color_balance_config_get_type -gimp_color_balance_tool_get_type -gimp_color_bar_get_type -gimp_color_dialog_get_type -gimp_color_display_editor_get_type -gimp_color_editor_get_type -gimp_color_frame_get_type -gimp_color_options_get_type -gimp_color_panel_get_type -gimp_color_picker_options_get_type -gimp_color_picker_tool_get_type -gimp_color_selector_palette_get_type -gimp_color_tool_get_type -gimp_colorize_config_get_type -gimp_colorize_tool_get_type -gimp_colormap_editor_get_type -gimp_combo_tag_entry_get_type -gimp_component_editor_get_type -gimp_container_box_get_type -gimp_container_combo_box_get_type -gimp_container_editor_get_type -gimp_container_entry_get_type -gimp_container_get_type -gimp_container_grid_view_get_type -gimp_container_popup_get_type -gimp_container_tree_view_get_type -gimp_container_view_interface_get_type -gimp_context_get_type -gimp_controller_editor_get_type -gimp_controller_info_get_type -gimp_controller_keyboard_get_type -gimp_controller_list_get_type -gimp_controller_mouse_get_type -gimp_controller_wheel_get_type -gimp_convolve_get_type -gimp_convolve_options_get_type -gimp_convolve_tool_get_type -gimp_core_config_get_type -gimp_crop_options_get_type -gimp_crop_tool_get_type -gimp_cursor_view_get_type -gimp_curve_get_type -gimp_curve_view_get_type -gimp_curves_config_get_type -gimp_curves_tool_get_type -gimp_dash_editor_get_type -gimp_data_editor_get_type -gimp_data_factory_get_type -gimp_data_factory_view_get_type -gimp_data_get_type -gimp_dbus_service_get_type -gimp_desaturate_config_get_type -gimp_desaturate_tool_get_type -gimp_device_info_get_type -gimp_device_manager_get_type -gimp_device_status_get_type -gimp_dialog_factory_get_type -gimp_display_config_get_type -gimp_display_get_type -gimp_display_options_fullscreen_get_type -gimp_display_options_get_type -gimp_display_options_no_image_get_type -gimp_display_shell_get_type -gimp_dock_columns_get_type -gimp_dock_container_interface_get_type -gimp_dock_get_type -gimp_dock_window_get_type -gimp_dockable_get_type -gimp_dockbook_get_type -gimp_docked_interface_get_type -gimp_document_list_get_type -gimp_document_view_get_type -gimp_dodge_burn_get_type -gimp_dodge_burn_options_get_type -gimp_dodge_burn_tool_get_type -gimp_draw_tool_get_type -gimp_drawable_get_type -gimp_drawable_mod_undo_get_type -gimp_drawable_stack_get_type -gimp_drawable_tree_view_get_type -gimp_drawable_undo_get_type -gimp_dynamics_get_type -gimp_dynamics_output_get_type -gimp_edit_selection_tool_get_type -gimp_editor_get_type -gimp_ellipse_select_tool_get_type -gimp_enum_action_get_type -gimp_environ_table_get_type -gimp_eraser_get_type -gimp_eraser_options_get_type -gimp_eraser_tool_get_type -gimp_error_console_get_type -gimp_error_dialog_get_type -gimp_fg_bg_editor_get_type -gimp_fg_bg_view_get_type -gimp_file_dialog_get_type -gimp_file_proc_view_get_type -gimp_fill_editor_get_type -gimp_fill_options_get_type -gimp_filtered_container_get_type -gimp_flip_options_get_type -gimp_flip_tool_get_type -gimp_floating_sel_undo_get_type -gimp_font_get_type -gimp_font_list_get_type -gimp_font_select_get_type -gimp_font_view_get_type -gimp_free_select_tool_get_type -gimp_fuzzy_select_tool_get_type -gimp_gegl_tool_get_type -gimp_get_type -gimp_gradient_editor_get_type -gimp_gradient_get_type -gimp_gradient_select_get_type -gimp_grid_editor_get_type -gimp_grid_get_type -gimp_group_layer_get_type -gimp_group_layer_undo_get_type -gimp_gui_config_get_type -gimp_guide_get_type -gimp_guide_undo_get_type -gimp_handle_bar_get_type -gimp_heal_get_type -gimp_heal_tool_get_type -gimp_histogram_box_get_type -gimp_histogram_editor_get_type -gimp_histogram_options_get_type -gimp_histogram_view_get_type -gimp_hue_saturation_config_get_type -gimp_hue_saturation_tool_get_type -gimp_id_table_get_type -gimp_image_comment_editor_get_type -gimp_image_editor_get_type -gimp_image_get_type -gimp_image_map_config_get_type -gimp_image_map_get_type -gimp_image_map_options_get_type -gimp_image_map_tool_get_type -gimp_image_parasite_view_get_type -gimp_image_profile_view_get_type -gimp_image_prop_view_get_type -gimp_image_undo_get_type -gimp_image_view_get_type -gimp_image_window_get_type -gimp_imagefile_get_type -gimp_ink_get_type -gimp_ink_options_get_type -gimp_ink_tool_get_type -gimp_ink_undo_get_type -gimp_interpreter_db_get_type -gimp_item_get_type -gimp_item_prop_undo_get_type -gimp_item_stack_get_type -gimp_item_tree_get_type -gimp_item_tree_view_get_type -gimp_item_undo_get_type -gimp_language_combo_box_get_type -gimp_language_entry_get_type -gimp_language_store_get_type -gimp_layer_get_type -gimp_layer_mask_get_type -gimp_layer_mask_prop_undo_get_type -gimp_layer_mask_undo_get_type -gimp_layer_prop_undo_get_type -gimp_layer_tree_view_get_type -gimp_layer_undo_get_type -gimp_levels_config_get_type -gimp_levels_tool_get_type -gimp_list_get_type -gimp_magnify_options_get_type -gimp_magnify_tool_get_type -gimp_mask_undo_get_type -gimp_measure_options_get_type -gimp_measure_tool_get_type -gimp_menu_dock_get_type -gimp_menu_factory_get_type -gimp_message_box_get_type -gimp_message_dialog_get_type -gimp_move_options_get_type -gimp_move_tool_get_type -gimp_multi_window_strategy_get_type -gimp_navigation_editor_get_type -gimp_navigation_view_get_type -gimp_object_get_type -gimp_operation_color_balance_get_type -gimp_operation_colorize_get_type -gimp_operation_curves_get_type -gimp_operation_desaturate_get_type -gimp_operation_hue_saturation_get_type -gimp_operation_levels_get_type -gimp_operation_point_filter_get_type -gimp_operation_point_layer_mode_get_type -gimp_operation_posterize_get_type -gimp_operation_threshold_get_type -gimp_operation_addition_mode_get_type -gimp_operation_anti_erase_mode_get_type -gimp_operation_behind_mode_get_type -gimp_operation_burn_mode_get_type -gimp_operation_cage_coef_calc_get_type -gimp_operation_cage_transform_get_type -gimp_operation_color_erase_mode_get_type -gimp_operation_color_mode_get_type -gimp_operation_darken_only_mode_get_type -gimp_operation_difference_mode_get_type -gimp_operation_dissolve_mode_get_type -gimp_operation_divide_mode_get_type -gimp_operation_dodge_mode_get_type -gimp_operation_erase_mode_get_type -gimp_operation_grain_extract_mode_get_type -gimp_operation_grain_merge_mode_get_type -gimp_operation_hardlight_mode_get_type -gimp_operation_hue_mode_get_type -gimp_operation_lighten_only_mode_get_type -gimp_operation_multiply_mode_get_type -gimp_operation_overlay_mode_get_type -gimp_operation_replace_mode_get_type -gimp_operation_saturation_mode_get_type -gimp_operation_screen_mode_get_type -gimp_operation_softlight_mode_get_type -gimp_operation_subtract_mode_get_type -gimp_operation_value_mode_get_type -gimp_overlay_box_get_type -gimp_overlay_dialog_get_type -gimp_overlay_frame_get_type -gimp_paint_core_get_type -gimp_paint_info_get_type -gimp_paint_options_get_type -gimp_paint_tool_get_type -gimp_paintbrush_get_type -gimp_paintbrush_tool_get_type -gimp_palette_editor_get_type -gimp_palette_get_type -gimp_palette_select_get_type -gimp_palette_view_get_type -gimp_paned_box_get_type -gimp_parasite_list_get_type -gimp_pattern_clipboard_get_type -gimp_pattern_factory_view_get_type -gimp_pattern_get_type -gimp_pattern_select_get_type -gimp_pdb_dialog_get_type -gimp_pdb_get_type -gimp_pdb_progress_get_type -gimp_pencil_get_type -gimp_pencil_options_get_type -gimp_pencil_tool_get_type -gimp_perspective_clone_get_type -gimp_perspective_clone_options_get_type -gimp_perspective_clone_tool_get_type -gimp_perspective_tool_get_type -gimp_pickable_interface_get_type -gimp_plug_in_action_get_type -gimp_plug_in_def_get_type -gimp_plug_in_get_type -gimp_plug_in_manager_get_type -gimp_plug_in_procedure_get_type -gimp_plugin_config_get_type -gimp_posterize_config_get_type -gimp_posterize_tool_get_type -gimp_procedure_get_type -gimp_profile_chooser_dialog_get_type -gimp_progress_box_get_type -gimp_progress_dialog_get_type -gimp_progress_interface_get_type -gimp_projectable_interface_get_type -gimp_projection_get_type -gimp_radio_action_get_type -gimp_rc_get_type -gimp_rectangle_options_interface_get_type -gimp_rectangle_select_options_get_type -gimp_rectangle_select_tool_get_type -gimp_rectangle_tool_interface_get_type -gimp_region_select_options_get_type -gimp_region_select_tool_get_type -gimp_rotate_tool_get_type -gimp_sample_point_editor_get_type -gimp_sample_point_undo_get_type -gimp_scale_button_get_type -gimp_scale_combo_box_get_type -gimp_scale_tool_get_type -gimp_selection_editor_get_type -gimp_selection_get_type -gimp_selection_options_get_type -gimp_selection_tool_get_type -gimp_session_info_get_type -gimp_session_managed_interface_get_type -gimp_settings_box_get_type -gimp_settings_editor_get_type -gimp_shear_tool_get_type -gimp_single_window_strategy_get_type -gimp_size_box_get_type -gimp_smudge_get_type -gimp_smudge_options_get_type -gimp_smudge_tool_get_type -gimp_source_core_get_type -gimp_source_options_get_type -gimp_source_tool_get_type -gimp_spin_scale_get_type -gimp_statusbar_get_type -gimp_string_action_get_type -gimp_stroke_editor_get_type -gimp_stroke_get_type -gimp_stroke_options_get_type -gimp_sub_progress_get_type -gimp_tag_cache_get_type -gimp_tag_entry_get_type -gimp_tag_get_type -gimp_tag_popup_get_type -gimp_tagged_interface_get_type -gimp_template_editor_get_type -gimp_template_get_type -gimp_template_view_get_type -gimp_temporary_procedure_get_type -gimp_text_buffer_get_type -gimp_text_editor_get_type -gimp_text_get_type -gimp_text_layer_get_type -gimp_text_layout_get_type -gimp_text_options_get_type -gimp_text_proxy_get_type -gimp_text_style_editor_get_type -gimp_text_tool_get_type -gimp_text_undo_get_type -gimp_threshold_config_get_type -gimp_threshold_tool_get_type -gimp_thumb_box_get_type -gimp_toggle_action_get_type -gimp_tool_control_get_type -gimp_tool_dialog_get_type -gimp_tool_editor_get_type -gimp_tool_get_type -gimp_tool_info_get_type -gimp_tool_options_editor_get_type -gimp_tool_options_get_type -gimp_tool_palette_get_type -gimp_tool_preset_get_type -gimp_toolbox_get_type -gimp_transform_options_get_type -gimp_transform_tool_get_type -gimp_transform_tool_undo_get_type -gimp_tree_handler_get_type -gimp_ui_manager_get_type -gimp_undo_editor_get_type -gimp_undo_get_type -gimp_undo_stack_get_type -gimp_unit_combo_box_get_type -gimp_unit_store_get_type -gimp_vector_options_get_type -gimp_vector_tool_get_type -gimp_vectors_get_type -gimp_vectors_mod_undo_get_type -gimp_vectors_prop_undo_get_type -gimp_vectors_tree_view_get_type -gimp_vectors_undo_get_type -gimp_view_get_type -gimp_view_renderer_brush_get_type -gimp_view_renderer_buffer_get_type -gimp_view_renderer_drawable_get_type -gimp_view_renderer_get_type -gimp_view_renderer_gradient_get_type -gimp_view_renderer_image_get_type -gimp_view_renderer_imagefile_get_type -gimp_view_renderer_layer_get_type -gimp_view_renderer_palette_get_type -gimp_view_renderer_vectors_get_type -gimp_viewable_button_get_type -gimp_viewable_dialog_get_type -gimp_viewable_get_type -gimp_window_get_type -gimp_window_strategy_interface_get_type -gtk_hwrap_box_get_type -gtk_wrap_box_get_type diff --git a/devel-docs/app/meson.build b/devel-docs/app/meson.build deleted file mode 100644 index c250b6519d..0000000000 --- a/devel-docs/app/meson.build +++ /dev/null @@ -1,98 +0,0 @@ -module_name = 'app' - -app_libs = shared_library('app', - include_directories: [ rootInclude, rootAppInclude, configInclude, ], - - link_whole: [ - - libappconfig, - libappcore, - libappfile, - libappfiledata, - libappgegl, - libappinternalprocs, - libapplayermodes, - libapplayermodeslegacy, - libappoperations, - libapppaint, - libapppdb, - libappplugin, - libapptext, - libappvectors, - libappxcf, - - libappactions, - libappdialogs, - libappdisplay, - libappgui, - libappmenus, - libapppropgui, - libapptools, - libappwidgets, - ], - - link_with: [ - libgimpbase, - libgimpcolor, - libgimpconfig, - libgimpmath, - libgimpmodule, - libgimpthumb, - libgimpwidgets, - ], - dependencies: [ - gegl, gdk_pixbuf, gtk3, - ], -) - - -gnome.gtkdoc(module_name, - main_sgml: module_name + '-docs.sgml', - gobject_typesfile: files(module_name + '.types'), - src_dir: meson.source_root() / 'app', - - content_files: [], - ignore_headers: [ - 'gimp-intl.h', - 'gimpdbusservice-glue.h', - 'gimphelp-ids.h', - 'gimpimage-convert-data.h', - 'gimpimage-convert-fsdither.h', - 'gimprc-blurbs.h', - ], - - dependencies: [ - fontconfig, freetype2, gtk3, harfbuzz, pangocairo, - gegl, - declare_dependency( - include_directories: rootInclude, - link_with: [ - app_libs, - - libgimpbase, - libgimpcolor, - libgimpconfig, - libgimpmath, - libgimpmodule, - libgimpthumb, - libgimpwidgets, - ]) - ], - - scan_args: scan_args_common, - mkdb_args: mkdb_args_common, - c_args: [ - '-UGTK_DISABLE_SINGLE_INCLUDES', - '-fdiagnostics-color=always', - ], - - fixxref_args: [ - '--extra-dir=' + devel_docs_build_root / 'libgimpbase' / 'html', - '--extra-dir=' + devel_docs_build_root / 'libgimpcolor' / 'html', - '--extra-dir=' + devel_docs_build_root / 'libgimpconfig' / 'html', - '--extra-dir=' + devel_docs_build_root / 'libgimpmath' / 'html', - '--extra-dir=' + devel_docs_build_root / 'libgimpwidgets' / 'html', - ], - - install: true, -) diff --git a/devel-docs/libgimp/Makefile.am b/devel-docs/libgimp/Makefile.am deleted file mode 100644 index 0fa57798b9..0000000000 --- a/devel-docs/libgimp/Makefile.am +++ /dev/null @@ -1,85 +0,0 @@ -## Process this file with automake to produce Makefile.in - -# The name of the module. -DOC_MODULE = libgimp3 - -# The top-level SGML file. -DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml - -# The directory containing the source code. -DOC_SOURCE_DIR = $(top_srcdir)/libgimp - -# 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=../libgimpconfig/html \ - --extra-dir=../libgimpmath/html \ - --extra-dir=../libgimpwidgets/html - -# Used for dependencies -HFILE_GLOB = $(DOC_SOURCE_DIR)/*.h -CFILE_GLOB = $(DOC_SOURCE_DIR)/*.c - -# Header files to ignore when scanning -IGNORE_HFILES = \ - gimp-debug.h \ - gimp-private.h \ - gimp-shm.h \ - gimppdb-private.h \ - gimppdbprocedure.h \ - gimpgpparams.h \ - gimppixbuf.h \ - gimpplugin-private.h \ - gimpprocedure-private.h \ - gimpprocedureconfig-private.h \ - gimptilebackendplugin.h \ - gimpunit_pdb.h \ - gimpunitcache.h \ - libgimp-intl.h \ - stdplugins-intl.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) \ - @GEGL_CFLAGS@ \ - @GTK_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 \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - @GEGL_LIBS@ \ - @GTK_LIBS@ - - -include $(top_srcdir)/gtk-doc.make - -# This is a hack. The entire commit must be reverted once -# this file gets removed by gtk-doc.make -CLEANFILES += $(DOC_MODULE).actions diff --git a/devel-docs/libgimp/libgimp3-docs.sgml b/devel-docs/libgimp/libgimp3-docs.sgml deleted file mode 100644 index dade42bfed..0000000000 --- a/devel-docs/libgimp/libgimp3-docs.sgml +++ /dev/null @@ -1,182 +0,0 @@ - - - - - - - GIMP 3 Library Reference Manual - - for GIMP - - - - - GIMP Library - - - - GIMP's Procedural Database (PDB) offers an interface to core - functions and to functionality provided by plug-ins. The role - of libgimp is to provide C bindings for this interface. - - - - - Functions not Related to Specific Images - - - - - - - - - - - - - - - - - - - - - - - - Manipulating Images and their Properties - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Data Objects - - - - - - - - - - - - - - Controlling the Core's Selection Dialogs - - - - - - - - - - - - - - - - - GIMP User Interface Library - - - Object Hierarchy - - - - - - - - - - - - - - - - - - Index - - - - Index of new symbols in GIMP 2.2 - - - - Index of new symbols in GIMP 2.4 - - - - Index of new symbols in GIMP 2.6 - - - - Index of new symbols in GIMP 2.8 - - - - Index of new symbols in GIMP 2.10 - - - - Index of new symbols in GIMP 2.10.2 - - - - Index of new symbols in GIMP 2.10.4 - - - - Index of new symbols in GIMP 2.10.6 - - - - Index of new symbols in GIMP 2.10.14 - - - - Index of new symbols in GIMP 3.0 - - - - Index of deprecated symbols - - - - - diff --git a/devel-docs/libgimp/libgimp3-include.c b/devel-docs/libgimp/libgimp3-include.c deleted file mode 100644 index c9b0c594d0..0000000000 --- a/devel-docs/libgimp/libgimp3-include.c +++ /dev/null @@ -1,15 +0,0 @@ -/* - * gtk-doc can't build libgimp-scan.c without PLUG_IN_INFO being defined - * so we include this file as a workaround - */ - -#include -#include - -GimpPlugInInfo PLUG_IN_INFO = -{ - NULL, - NULL, - NULL, - NULL, -}; diff --git a/devel-docs/libgimp/libgimp3-overrides.txt b/devel-docs/libgimp/libgimp3-overrides.txt deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/devel-docs/libgimp/libgimp3-sections.txt b/devel-docs/libgimp/libgimp3-sections.txt deleted file mode 100644 index 72a51768f6..0000000000 --- a/devel-docs/libgimp/libgimp3-sections.txt +++ /dev/null @@ -1,1808 +0,0 @@ -
-gimp -Gimp -GIMP_MAIN -gimp_main -gimp_get_plug_in -gimp_get_pdb -gimp_quit -gimp_tile_width -gimp_tile_height -gimp_show_help_button -gimp_export_color_profile -gimp_export_comment -gimp_export_exif -gimp_export_xmp -gimp_export_iptc -gimp_export_thumbnail -gimp_check_size -gimp_check_type -gimp_default_display -gimp_wm_class -gimp_display_name -gimp_monitor_number -gimp_user_time -gimp_icon_theme_dir -gimp_get_progname -gimp_version -gimp_getpid -gimp_attach_parasite -gimp_detach_parasite -gimp_get_parasite -gimp_get_parasite_list -gimp_temp_file -gimp_get_data -gimp_get_data_size -gimp_set_data -GimpPixbufTransparency -
- -
-gimpenums -gimp_enums_init -gimp_enums_get_type_names -GimpBrushApplicationMode -GimpConvertDitherType -GimpHistogramChannel -GimpLayerColorSpace -GimpLayerCompositeMode -GimpLayerMode - - -GIMP_TYPE_BRUSH_APPLICATION_MODE -GIMP_TYPE_CONVERT_DITHER_TYPE -GIMP_TYPE_HISTOGRAM_CHANNEL -GIMP_TYPE_LAYER_COLOR_SPACE -GIMP_TYPE_LAYER_COMPOSITE_MODE -GIMP_TYPE_LAYER_MODE -gimp_brush_application_mode_get_type -gimp_convert_dither_type_get_type -gimp_histogram_channel_get_type -gimp_layer_color_space_get_type -gimp_layer_composite_mode_get_type -gimp_layer_mode_get_type -
- -
-gimpui -gimp_ui_init -gimp_ui_get_display_window -gimp_ui_get_progress_window -gimp_window_set_transient -gimp_window_set_transient_for_display -
- -
-gimpexport -GimpExportCapabilities -GimpExportReturn -gimp_export_image -gimp_export_dialog_new -gimp_export_dialog_get_content_area -
- -
-gimpbrush -gimp_brush_new -gimp_brush_duplicate -gimp_brush_rename -gimp_brush_delete -gimp_brush_get_info -gimp_brush_get_pixels -gimp_brush_get_spacing -gimp_brush_set_spacing -gimp_brush_get_shape -gimp_brush_set_shape -gimp_brush_get_spikes -gimp_brush_set_spikes -gimp_brush_get_angle -gimp_brush_set_angle -gimp_brush_get_radius -gimp_brush_set_radius -gimp_brush_get_aspect_ratio -gimp_brush_set_aspect_ratio -gimp_brush_get_hardness -gimp_brush_set_hardness -gimp_brush_is_generated -gimp_brush_is_editable -
- -
-gimpbrushes -gimp_brushes_refresh -gimp_brushes_get_list -
- -
-gimpbrushselect -GimpRunBrushCallback -gimp_brush_select_new -gimp_brush_select_destroy -gimp_brushes_popup -gimp_brushes_close_popup -gimp_brushes_set_popup -
- -
-gimpbuffer -gimp_buffers_get_list -gimp_buffer_rename -gimp_buffer_delete -gimp_buffer_get_width -gimp_buffer_get_height -gimp_buffer_get_bytes -gimp_buffer_get_image_type -
- -
-gimpchannel -GimpChannel -gimp_channel_get_by_id -gimp_channel_new -gimp_channel_new_from_component -gimp_channel_copy -gimp_channel_get_show_masked -gimp_channel_set_show_masked -gimp_channel_get_opacity -gimp_channel_set_opacity -gimp_channel_get_color -gimp_channel_set_color -gimp_channel_combine_masks - -GIMP_CHANNEL -GIMP_CHANNEL_CLASS -GIMP_CHANNEL_GET_CLASS -GIMP_IS_CHANNEL -GIMP_IS_CHANNEL_CLASS -GIMP_TYPE_CHANNEL -GimpChannel -GimpChannelClass -GimpChannelPrivate -gimp_channel_get_type -
- -
-gimpcontext -gimp_context_push -gimp_context_pop -gimp_context_set_defaults -gimp_context_get_foreground -gimp_context_set_foreground -gimp_context_get_background -gimp_context_set_background -gimp_context_set_default_colors -gimp_context_swap_colors -gimp_context_get_opacity -gimp_context_set_opacity -gimp_context_get_paint_mode -gimp_context_set_paint_mode -gimp_context_list_paint_methods -gimp_context_get_paint_method -gimp_context_set_paint_method -gimp_context_get_stroke_method -gimp_context_set_stroke_method -gimp_context_get_line_width -gimp_context_set_line_width -gimp_context_get_line_width_unit -gimp_context_set_line_width_unit -gimp_context_get_line_cap_style -gimp_context_set_line_cap_style -gimp_context_get_line_join_style -gimp_context_set_line_join_style -gimp_context_get_line_miter_limit -gimp_context_set_line_miter_limit -gimp_context_get_line_dash_offset -gimp_context_set_line_dash_offset -gimp_context_get_line_dash_pattern -gimp_context_set_line_dash_pattern -gimp_context_get_brush -gimp_context_set_brush -gimp_context_get_brush_size -gimp_context_set_brush_size -gimp_context_set_brush_default_size -gimp_context_get_brush_aspect_ratio -gimp_context_set_brush_aspect_ratio -gimp_context_get_brush_angle -gimp_context_set_brush_angle -gimp_context_get_brush_spacing -gimp_context_set_brush_spacing -gimp_context_set_brush_default_spacing -gimp_context_get_brush_hardness -gimp_context_set_brush_hardness -gimp_context_set_brush_default_hardness -gimp_context_get_brush_force -gimp_context_set_brush_force -gimp_context_get_dynamics -gimp_context_set_dynamics -gimp_context_get_mypaint_brush -gimp_context_set_mypaint_brush -gimp_context_get_pattern -gimp_context_set_pattern -gimp_context_get_gradient -gimp_context_set_gradient -gimp_context_set_gradient_fg_bg_hsv_ccw -gimp_context_set_gradient_fg_bg_hsv_cw -gimp_context_set_gradient_fg_bg_rgb -gimp_context_set_gradient_fg_transparent -gimp_context_get_gradient_blend_color_space -gimp_context_set_gradient_blend_color_space -gimp_context_get_gradient_repeat_mode -gimp_context_set_gradient_repeat_mode -gimp_context_get_gradient_reverse -gimp_context_set_gradient_reverse -gimp_context_get_palette -gimp_context_set_palette -gimp_context_get_font -gimp_context_set_font -gimp_context_get_antialias -gimp_context_set_antialias -gimp_context_get_feather -gimp_context_set_feather -gimp_context_get_feather_radius -gimp_context_set_feather_radius -gimp_context_get_sample_merged -gimp_context_set_sample_merged -gimp_context_get_sample_criterion -gimp_context_set_sample_criterion -gimp_context_get_sample_threshold -gimp_context_set_sample_threshold -gimp_context_get_sample_threshold_int -gimp_context_set_sample_threshold_int -gimp_context_get_sample_transparent -gimp_context_set_sample_transparent -gimp_context_get_diagonal_neighbors -gimp_context_set_diagonal_neighbors -gimp_context_get_distance_metric -gimp_context_set_distance_metric -gimp_context_get_interpolation -gimp_context_set_interpolation -gimp_context_get_transform_direction -gimp_context_set_transform_direction -gimp_context_get_transform_resize -gimp_context_set_transform_resize -gimp_context_get_ink_angle -gimp_context_set_ink_angle -gimp_context_get_ink_blob_angle -gimp_context_set_ink_blob_angle -gimp_context_get_ink_blob_aspect_ratio -gimp_context_set_ink_blob_aspect_ratio -gimp_context_get_ink_blob_type -gimp_context_set_ink_blob_type -gimp_context_get_ink_size -gimp_context_set_ink_size -gimp_context_get_ink_size_sensitivity -gimp_context_set_ink_size_sensitivity -gimp_context_get_ink_speed_sensitivity -gimp_context_set_ink_speed_sensitivity -gimp_context_get_ink_tilt_sensitivity -gimp_context_set_ink_tilt_sensitivity -
- -
-gimpdebug -gimp_debug_timer_start -gimp_debug_timer_end -
- -
-gimpdisplay -GimpDisplay -gimp_display_get_by_id -gimp_display_get_id -gimp_display_new -gimp_display_delete -gimp_display_is_valid -gimp_display_id_is_valid -gimp_display_get_window_handle -gimp_displays_flush -gimp_displays_reconnect - -GIMP_DISPLAY -GIMP_DISPLAY_CLASS -GIMP_DISPLAY_GET_CLASS -GIMP_IS_DISPLAY -GIMP_IS_DISPLAY_CLASS -GIMP_TYPE_DISPLAY -GimpDisplay -GimpDisplayClass -GimpDisplayPrivate -gimp_display_get_type -
- -
-gimpdrawable -GimpDrawable -gimp_drawable_get_by_id -gimp_drawable_get_buffer -gimp_drawable_get_shadow_buffer -gimp_drawable_get_format -gimp_drawable_get_thumbnail_format -gimp_drawable_get_thumbnail_data -gimp_drawable_get_thumbnail -gimp_drawable_get_pixel -gimp_drawable_set_pixel -gimp_drawable_get_sub_thumbnail_data -gimp_drawable_get_sub_thumbnail -gimp_drawable_merge_shadow -gimp_drawable_free_shadow -gimp_drawable_fill -gimp_drawable_update -gimp_drawable_mask_bounds -gimp_drawable_mask_intersect -gimp_drawable_has_alpha -gimp_drawable_type_with_alpha -gimp_drawable_type -gimp_drawable_is_rgb -gimp_drawable_is_gray -gimp_drawable_is_indexed -gimp_drawable_bpp -gimp_drawable_width -gimp_drawable_height -gimp_drawable_offsets -gimp_drawable_offset -gimp_drawable_foreground_extract - -GIMP_DRAWABLE -GIMP_DRAWABLE_CLASS -GIMP_DRAWABLE_GET_CLASS -GIMP_IS_DRAWABLE -GIMP_IS_DRAWABLE_CLASS -GIMP_TYPE_DRAWABLE -GimpDrawable -GimpDrawableClass -GimpDrawablePrivate -gimp_drawable_get_type -
- -
-gimpdrawablecolor -gimp_drawable_brightness_contrast -gimp_drawable_color_balance -gimp_drawable_colorize_hsl -gimp_drawable_curves_explicit -gimp_drawable_curves_spline -gimp_drawable_desaturate -gimp_drawable_equalize -gimp_drawable_histogram -gimp_drawable_hue_saturation -gimp_drawable_invert -gimp_drawable_levels -gimp_drawable_levels_stretch -gimp_drawable_posterize -gimp_drawable_threshold -
- -
-gimpdrawableedit -gimp_drawable_edit_clear -gimp_drawable_edit_fill -gimp_drawable_edit_bucket_fill -gimp_drawable_edit_gradient_fill -gimp_drawable_edit_stroke_selection -gimp_drawable_edit_stroke_item -
- -
-gimpdynamics -gimp_dynamics_get_list -gimp_dynamics_refresh -
- -
-gimpedit -gimp_edit_cut -gimp_edit_copy -gimp_edit_copy_visible -gimp_edit_paste -gimp_edit_paste_as_new_image -gimp_edit_named_cut -gimp_edit_named_copy -gimp_edit_named_copy_visible -gimp_edit_named_paste -gimp_edit_named_paste_as_new_image -
- -
-gimpfile -gimp_file_load -gimp_file_load_layer -gimp_file_load_layers -gimp_file_save -gimp_file_save_thumbnail -
- -
-gimpfloatingsel -gimp_floating_sel_remove -gimp_floating_sel_anchor -gimp_floating_sel_to_layer -gimp_floating_sel_attach -
- -
-gimpfonts -gimp_fonts_refresh -gimp_fonts_get_list -
- -
-gimpfontselect -GimpRunFontCallback -gimp_font_select_new -gimp_font_select_destroy -gimp_fonts_popup -gimp_fonts_close_popup -gimp_fonts_set_popup -
- -
-gimpgimprc -gimp_gimprc_query -gimp_gimprc_set -gimp_get_color_configuration -gimp_get_default_comment -gimp_get_default_unit -gimp_get_module_load_inhibit -gimp_get_monitor_resolution -
- -
-gimpgradient -gimp_gradient_new -gimp_gradient_duplicate -gimp_gradient_rename -gimp_gradient_delete -gimp_gradient_is_editable -gimp_gradient_get_uniform_samples -gimp_gradient_get_custom_samples -gimp_gradient_get_number_of_segments -gimp_gradient_segment_get_left_color -gimp_gradient_segment_set_left_color -gimp_gradient_segment_get_right_color -gimp_gradient_segment_set_right_color -gimp_gradient_segment_get_left_pos -gimp_gradient_segment_set_left_pos -gimp_gradient_segment_get_middle_pos -gimp_gradient_segment_set_middle_pos -gimp_gradient_segment_get_right_pos -gimp_gradient_segment_set_right_pos -gimp_gradient_segment_get_blending_function -gimp_gradient_segment_get_coloring_type -gimp_gradient_segment_range_set_blending_function -gimp_gradient_segment_range_set_coloring_type -gimp_gradient_segment_range_flip -gimp_gradient_segment_range_replicate -gimp_gradient_segment_range_split_midpoint -gimp_gradient_segment_range_split_uniform -gimp_gradient_segment_range_delete -gimp_gradient_segment_range_redistribute_handles -gimp_gradient_segment_range_blend_colors -gimp_gradient_segment_range_blend_opacity -gimp_gradient_segment_range_move -
- -
-gimpgradients -gimp_gradients_refresh -gimp_gradients_get_list -
- -
-gimpgradientselect -GimpRunGradientCallback -gimp_gradient_select_new -gimp_gradient_select_destroy -gimp_gradients_popup -gimp_gradients_close_popup -gimp_gradients_set_popup -
- -
-gimphelp -gimp_help -
- -
-gimpimage -GimpImage -gimp_get_images -gimp_list_images -gimp_image_get_by_id -gimp_image_get_id -gimp_image_new -gimp_image_new_with_precision -gimp_image_set_file -gimp_image_get_file -gimp_image_get_xcf_file -gimp_image_get_exported_file -gimp_image_get_imported_file -gimp_image_duplicate -gimp_image_delete -gimp_image_is_valid -gimp_image_id_is_valid -gimp_image_base_type -gimp_image_get_precision -gimp_image_get_default_new_layer_mode -gimp_image_width -gimp_image_height -gimp_image_get_layers -gimp_image_list_layers -gimp_image_get_channels -gimp_image_list_channels -gimp_image_get_active_drawable -gimp_image_get_floating_sel -gimp_image_floating_sel_attached_to -gimp_image_pick_color -gimp_image_pick_correlate_layer -gimp_image_get_item_position -gimp_image_reorder_item -gimp_image_raise_item -gimp_image_lower_item -gimp_image_raise_item_to_top -gimp_image_lower_item_to_bottom -gimp_image_insert_layer -gimp_image_remove_layer -gimp_image_freeze_layers -gimp_image_thaw_layers -gimp_image_insert_channel -gimp_image_remove_channel -gimp_image_freeze_channels -gimp_image_thaw_channels -gimp_image_flatten -gimp_image_merge_visible_layers -gimp_image_merge_down -gimp_image_merge_layer_group -gimp_image_clean_all -gimp_image_is_dirty -gimp_image_get_active_layer -gimp_image_set_active_layer -gimp_image_get_active_channel -gimp_image_set_active_channel -gimp_image_unset_active_channel -gimp_image_get_selection -gimp_image_get_component_active -gimp_image_set_component_active -gimp_image_get_component_visible -gimp_image_set_component_visible -gimp_image_get_name -gimp_image_get_resolution -gimp_image_set_resolution -gimp_image_get_unit -gimp_image_set_unit -gimp_image_set_tattoo_state -gimp_image_get_tattoo_state -gimp_image_get_layer_by_tattoo -gimp_image_get_channel_by_tattoo -gimp_image_get_vectors_by_tattoo -gimp_image_get_layer_by_name -gimp_image_get_channel_by_name -gimp_image_get_vectors_by_name -gimp_image_get_colormap -gimp_image_set_colormap -gimp_image_get_vectors -gimp_image_list_vectors -gimp_image_get_thumbnail_data -gimp_image_get_thumbnail -gimp_image_get_metadata -gimp_image_set_metadata -gimp_image_attach_parasite -gimp_image_detach_parasite -gimp_image_get_parasite -gimp_image_get_parasite_list -gimp_image_insert_vectors -gimp_image_remove_vectors -gimp_image_freeze_vectors -gimp_image_thaw_vectors -gimp_image_get_active_vectors -gimp_image_set_active_vectors - -GIMP_IMAGE -GIMP_IMAGE_CLASS -GIMP_IMAGE_GET_CLASS -GIMP_IS_IMAGE -GIMP_IS_IMAGE_CLASS -GIMP_TYPE_IMAGE -GimpImage -GimpImageClass -GimpImagePrivate -gimp_image_get_type -
- -
-gimpimagecolorprofile -gimp_image_get_color_profile -gimp_image_set_color_profile -gimp_image_set_color_profile_from_file -gimp_image_get_effective_color_profile -gimp_image_convert_color_profile -gimp_image_convert_color_profile_from_file -
- -
-gimpimageconvert -gimp_image_convert_rgb -gimp_image_convert_grayscale -gimp_image_convert_indexed -gimp_image_convert_set_dither_matrix -gimp_image_convert_precision -
- -
-gimpimagegrid -gimp_image_grid_get_spacing -gimp_image_grid_set_spacing -gimp_image_grid_get_offset -gimp_image_grid_set_offset -gimp_image_grid_get_foreground_color -gimp_image_grid_set_foreground_color -gimp_image_grid_get_background_color -gimp_image_grid_set_background_color -gimp_image_grid_get_style -gimp_image_grid_set_style -
- -
-gimpimageguides -gimp_image_add_hguide -gimp_image_add_vguide -gimp_image_delete_guide -gimp_image_find_next_guide -gimp_image_get_guide_orientation -gimp_image_get_guide_position -
- -
-gimpimagesamplepoints -gimp_image_add_sample_point -gimp_image_delete_sample_point -gimp_image_find_next_sample_point -gimp_image_get_sample_point_position -
- -
-gimpimageselect -gimp_image_select_color -gimp_image_select_contiguous_color -gimp_image_select_rectangle -gimp_image_select_round_rectangle -gimp_image_select_ellipse -gimp_image_select_polygon -gimp_image_select_item -
- -
-gimpimagetransform -gimp_image_resize -gimp_image_resize_to_layers -gimp_image_scale -gimp_image_crop -gimp_image_flip -gimp_image_rotate -
- -
-gimpimageundo -gimp_image_undo_group_start -gimp_image_undo_group_end -gimp_image_undo_is_enabled -gimp_image_undo_disable -gimp_image_undo_enable -gimp_image_undo_freeze -gimp_image_undo_thaw -
- -
-gimpmetadata -gimp_image_metadata_load_prepare -gimp_image_metadata_load_finish -gimp_image_metadata_save_prepare -gimp_image_metadata_save_finish -gimp_image_metadata_load_thumbnail -
- -
-gimpitem -GimpItem -gimp_item_get_by_id -gimp_item_get_id -gimp_item_is_valid -gimp_item_id_is_valid -gimp_item_get_image -gimp_item_delete -gimp_item_is_drawable -gimp_item_id_is_drawable -gimp_item_is_layer -gimp_item_id_is_layer -gimp_item_is_text_layer -gimp_item_id_is_text_layer -gimp_item_is_channel -gimp_item_id_is_channel -gimp_item_is_layer_mask -gimp_item_id_is_layer_mask -gimp_item_is_selection -gimp_item_id_is_selection -gimp_item_is_vectors -gimp_item_id_is_vectors -gimp_item_is_group -gimp_item_get_parent -gimp_item_get_children -gimp_item_list_children -gimp_item_get_expanded -gimp_item_set_expanded -gimp_item_get_name -gimp_item_set_name -gimp_item_get_visible -gimp_item_set_visible -gimp_item_get_lock_content -gimp_item_set_lock_content -gimp_item_get_lock_position -gimp_item_set_lock_position -gimp_item_get_color_tag -gimp_item_set_color_tag -gimp_item_get_tattoo -gimp_item_set_tattoo -gimp_item_attach_parasite -gimp_item_detach_parasite -gimp_item_get_parasite -gimp_item_get_parasite_list - -GIMP_IS_ITEM -GIMP_IS_ITEM_CLASS -GIMP_ITEM -GIMP_ITEM_CLASS -GIMP_ITEM_GET_CLASS -GIMP_TYPE_ITEM -GimpItem -GimpItemClass -GimpItemPrivate -gimp_item_get_type -
- -
-gimpitemtransform -gimp_item_transform_translate -gimp_item_transform_flip_simple -gimp_item_transform_flip -gimp_item_transform_perspective -gimp_item_transform_rotate_simple -gimp_item_transform_rotate -gimp_item_transform_scale -gimp_item_transform_shear -gimp_item_transform_2d -gimp_item_transform_matrix -
- -
-gimplayer -GimpLayer -gimp_layer_get_by_id -gimp_layer_new -gimp_layer_new_from_drawable -gimp_layer_new_from_visible -gimp_layer_new_from_pixbuf -gimp_layer_new_from_surface -gimp_layer_group_new -gimp_layer_copy -gimp_layer_scale -gimp_layer_resize -gimp_layer_resize_to_image_size -gimp_layer_add_alpha -gimp_layer_flatten -gimp_layer_set_offsets -gimp_layer_create_mask -gimp_layer_from_mask -gimp_layer_get_mask -gimp_layer_add_mask -gimp_layer_remove_mask -gimp_layer_is_floating_sel -gimp_layer_get_lock_alpha -gimp_layer_set_lock_alpha -gimp_layer_get_apply_mask -gimp_layer_set_apply_mask -gimp_layer_get_show_mask -gimp_layer_set_show_mask -gimp_layer_get_edit_mask -gimp_layer_set_edit_mask -gimp_layer_get_opacity -gimp_layer_set_opacity -gimp_layer_get_mode -gimp_layer_set_mode -gimp_layer_get_blend_space -gimp_layer_set_blend_space -gimp_layer_get_composite_space -gimp_layer_set_composite_space -gimp_layer_get_composite_mode -gimp_layer_set_composite_mode - -GIMP_IS_LAYER -GIMP_IS_LAYER_CLASS -GIMP_LAYER -GIMP_LAYER_CLASS -GIMP_LAYER_GET_CLASS -GIMP_TYPE_LAYER -GimpLayer -GimpLayerClass -GimpLayerPrivate -gimp_layer_get_type -
- -
-gimplayermask -GimpLayerMask -gimp_layer_mask_get_by_id - -GIMP_IS_LAYER_MASK -GIMP_IS_LAYER_MASK_CLASS -GIMP_LAYER_MASK -GIMP_LAYER_MASK_CLASS -GIMP_LAYER_MASK_GET_CLASS -GIMP_TYPE_LAYER_MASK -GimpLayerMask -GimpLayerMaskClass -GimpLayerMaskPrivate -gimp_layer_mask_get_type -
- -
-gimpmessage -gimp_message -gimp_message_get_handler -gimp_message_set_handler -
- -
-gimppalette -gimp_palette_new -gimp_palette_duplicate -gimp_palette_rename -gimp_palette_delete -gimp_palette_get_info -gimp_palette_get_colors -gimp_palette_get_columns -gimp_palette_set_columns -gimp_palette_add_entry -gimp_palette_delete_entry -gimp_palette_entry_get_color -gimp_palette_entry_set_color -gimp_palette_entry_get_name -gimp_palette_entry_set_name -gimp_palette_is_editable -
- -
-gimppalettes -gimp_palettes_refresh -gimp_palettes_get_list -
- -
-gimppaletteselect -GimpRunPaletteCallback -gimp_palette_select_new -gimp_palette_select_destroy -gimp_palettes_popup -gimp_palettes_close_popup -gimp_palettes_set_popup -
- -
-gimppattern -gimp_pattern_get_info -gimp_pattern_get_pixels -
- -
-gimppatterns -gimp_patterns_refresh -gimp_patterns_get_list -
- -
-gimppatternselect -GimpRunPatternCallback -gimp_pattern_select_new -gimp_pattern_select_destroy -gimp_patterns_popup -gimp_patterns_close_popup -gimp_patterns_set_popup -
- -
-gimpplugin -GimpPlugIn -GimpPlugIn -GimpPlugInClass -gimp_plug_in_set_translation_domain -gimp_plug_in_set_help_domain -gimp_plug_in_add_menu_branch -gimp_plug_in_add_temp_procedure -gimp_plug_in_remove_temp_procedure -gimp_plug_in_get_temp_procedures -gimp_plug_in_get_temp_procedure -gimp_plug_in_extension_enable -gimp_plug_in_extension_process -gimp_plug_in_set_pdb_error_handler -gimp_plug_in_get_pdb_error_handler - -GIMP_IS_PLUG_IN -GIMP_IS_PLUG_IN_CLASS -GIMP_PLUG_IN -GIMP_PLUG_IN_CLASS -GIMP_PLUG_IN_GET_CLASS -GIMP_TYPE_PLUG_IN -GimpPlugInPrivate -gimp_plug_in_get_type -
- -
-gimppdb -GimpPDB -gimp_pdb_procedure_exists -gimp_pdb_lookup_procedure -gimp_pdb_run_procedure -gimp_pdb_run_procedure_valist -gimp_pdb_run_procedure_array -gimp_pdb_run_procedure_argv -gimp_pdb_temp_procedure_name -gimp_pdb_dump_to_file -gimp_pdb_query_procedures -gimp_pdb_get_last_error -gimp_pdb_get_last_status -gimp_pdb_get_data -gimp_pdb_get_data_size -gimp_pdb_set_data - -GIMP_IS_PDB -GIMP_IS_PDB_CLASS -GIMP_PDB -GIMP_PDB_CLASS -GIMP_PDB_GET_CLASS -GIMP_TYPE_PDB -GimpPDB -GimpPDBClass -GimpPDBPrivate -gimp_pdb_get_type -
- -
-gimpprocedure -GimpProcedure -GimpRunFunc -GimpProcedure -GimpProcedureClass -gimp_procedure_new -gimp_procedure_get_plug_in -gimp_procedure_get_name -gimp_procedure_get_proc_type -gimp_procedure_set_image_types -gimp_procedure_get_image_types -gimp_procedure_set_menu_label -gimp_procedure_get_menu_label -gimp_procedure_add_menu_path -gimp_procedure_get_menu_paths -gimp_procedure_set_icon_name -gimp_procedure_set_icon_file -gimp_procedure_set_icon_pixbuf -gimp_procedure_get_icon_type -gimp_procedure_get_icon_name -gimp_procedure_get_icon_file -gimp_procedure_get_icon_pixbuf -gimp_procedure_set_documentation -gimp_procedure_get_blurb -gimp_procedure_get_help -gimp_procedure_get_help_id -gimp_procedure_set_attribution -gimp_procedure_get_authors -gimp_procedure_get_copyright -gimp_procedure_get_date -gimp_procedure_add_argument -gimp_procedure_add_aux_argument -gimp_procedure_add_return_value -gimp_procedure_find_argument -gimp_procedure_find_aux_argument -gimp_procedure_find_return_value -gimp_procedure_get_arguments -gimp_procedure_get_aux_arguments -gimp_procedure_get_return_values -gimp_procedure_new_arguments -gimp_procedure_new_return_values -gimp_procedure_run -gimp_procedure_extension_ready -gimp_procedure_create_config - -GIMP_IS_PROCEDURE -GIMP_IS_PROCEDURE_CLASS -GIMP_PROCEDURE -GIMP_PROCEDURE_CLASS -GIMP_PROCEDURE_GET_CLASS -GIMP_TYPE_PROCEDURE -GimpProcedurePrivate -gimp_procedure_get_type -
- -
-gimpprocedure-params -GIMP_PROC_ARG_BOOLEAN -GIMP_PROC_AUX_ARG_BOOLEAN -GIMP_PROC_VAL_BOOLEAN -GIMP_VALUES_GET_BOOLEAN -GIMP_VALUES_SET_BOOLEAN -GIMP_PROC_ARG_INT -GIMP_PROC_AUX_ARG_INT -GIMP_PROC_VAL_INT -GIMP_VALUES_GET_INT -GIMP_VALUES_SET_INT -GIMP_PROC_ARG_UINT -GIMP_PROC_AUX_ARG_UINT -GIMP_PROC_VAL_UINT -GIMP_VALUES_GET_UINT -GIMP_VALUES_SET_UINT -GIMP_PROC_ARG_UCHAR -GIMP_PROC_AUX_ARG_UCHAR -GIMP_PROC_VAL_UCHAR -GIMP_VALUES_GET_UCHAR -GIMP_VALUES_SET_UCHAR -GIMP_PROC_ARG_UNIT -GIMP_PROC_AUX_ARG_UNIT -GIMP_PROC_VAL_UNIT -GIMP_PROC_ARG_DOUBLE -GIMP_PROC_AUX_ARG_DOUBLE -GIMP_PROC_VAL_DOUBLE -GIMP_VALUES_GET_DOUBLE -GIMP_VALUES_SET_DOUBLE -GIMP_PROC_ARG_ENUM -GIMP_PROC_AUX_ARG_ENUM -GIMP_PROC_VAL_ENUM -GIMP_VALUES_GET_ENUM -GIMP_VALUES_SET_ENUM -GIMP_PROC_ARG_STRING -GIMP_PROC_AUX_ARG_STRING -GIMP_PROC_VAL_STRING -GIMP_VALUES_GET_STRING -GIMP_VALUES_DUP_STRING -GIMP_VALUES_SET_STRING -GIMP_VALUES_TAKE_STRING -GIMP_PROC_ARG_RGB -GIMP_PROC_AUX_ARG_RGB -GIMP_PROC_VAL_RGB -GIMP_VALUES_GET_RGB -GIMP_VALUES_SET_RGB -GIMP_PROC_ARG_PARASITE -GIMP_PROC_AUX_ARG_PARASITE -GIMP_PROC_VAL_PARASITE -GIMP_VALUES_GET_PARASITE -GIMP_VALUES_DUP_PARASITE -GIMP_VALUES_SET_PARASITE -GIMP_VALUES_TAKE_PARASITE -GIMP_PROC_ARG_PARAM -GIMP_PROC_AUX_ARG_PARAM -GIMP_PROC_VAL_PARAM -GIMP_VALUES_GET_PARAM -GIMP_VALUES_DUP_PARAM -GIMP_VALUES_SET_PARAM -GIMP_VALUES_TAKE_PARAM -GIMP_PROC_ARG_UINT8_ARRAY -GIMP_PROC_AUX_ARG_UINT8_ARRAY -GIMP_PROC_VAL_UINT8_ARRAY -GIMP_VALUES_GET_UINT8_ARRAY -GIMP_VALUES_DUP_UINT8_ARRAY -GIMP_VALUES_SET_UINT8_ARRAY -GIMP_VALUES_TAKE_UINT8_ARRAY -GIMP_PROC_ARG_INT32_ARRAY -GIMP_PROC_AUX_ARG_INT32_ARRAY -GIMP_PROC_VAL_INT32_ARRAY -GIMP_VALUES_GET_INT32_ARRAY -GIMP_VALUES_DUP_INT32_ARRAY -GIMP_VALUES_SET_INT32_ARRAY -GIMP_VALUES_TAKE_INT32_ARRAY -GIMP_PROC_ARG_FLOAT_ARRAY -GIMP_PROC_AUX_ARG_FLOAT_ARRAY -GIMP_PROC_VAL_FLOAT_ARRAY -GIMP_VALUES_GET_FLOAT_ARRAY -GIMP_VALUES_DUP_FLOAT_ARRAY -GIMP_VALUES_SET_FLOAT_ARRAY -GIMP_VALUES_TAKE_FLOAT_ARRAY -GIMP_PROC_ARG_STRING_ARRAY -GIMP_PROC_AUX_ARG_STRING_ARRAY -GIMP_PROC_VAL_STRING_ARRAY -GIMP_VALUES_GET_STRING_ARRAY -GIMP_VALUES_DUP_STRING_ARRAY -GIMP_VALUES_SET_STRING_ARRAY -GIMP_VALUES_TAKE_STRING_ARRAY -GIMP_PROC_ARG_RGB_ARRAY -GIMP_PROC_AUX_ARG_RGB_ARRAY -GIMP_PROC_VAL_RGB_ARRAY -GIMP_VALUES_GET_RGB_ARRAY -GIMP_VALUES_DUP_RGB_ARRAY -GIMP_VALUES_SET_RGB_ARRAY -GIMP_VALUES_TAKE_RGB_ARRAY -GIMP_PROC_ARG_OBJECT_ARRAY -GIMP_PROC_AUX_ARG_OBJECT_ARRAY -GIMP_PROC_VAL_OBJECT_ARRAY -GIMP_VALUES_GET_OBJECT_ARRAY -GIMP_VALUES_DUP_OBJECT_ARRAY -GIMP_VALUES_SET_OBJECT_ARRAY -GIMP_VALUES_TAKE_OBJECT_ARRAY -GIMP_PROC_ARG_DISPLAY -GIMP_PROC_AUX_ARG_DISPLAY -GIMP_PROC_VAL_DISPLAY -GIMP_VALUES_GET_DISPLAY -GIMP_VALUES_GET_DISPLAY_ID -GIMP_VALUES_SET_DISPLAY -GIMP_PROC_ARG_IMAGE -GIMP_PROC_AUX_ARG_IMAGE -GIMP_PROC_VAL_IMAGE -GIMP_VALUES_GET_IMAGE -GIMP_VALUES_GET_IMAGE_ID -GIMP_VALUES_SET_IMAGE -GIMP_PROC_ARG_ITEM -GIMP_PROC_AUX_ARG_ITEM -GIMP_PROC_VAL_ITEM -GIMP_VALUES_GET_ITEM -GIMP_VALUES_GET_ITEM_ID -GIMP_VALUES_SET_ITEM -GIMP_PROC_ARG_DRAWABLE -GIMP_PROC_AUX_ARG_DRAWABLE -GIMP_PROC_VAL_DRAWABLE -GIMP_VALUES_GET_DRAWABLE -GIMP_VALUES_GET_DRAWABLE_ID -GIMP_VALUES_SET_DRAWABLE -GIMP_PROC_ARG_LAYER -GIMP_PROC_AUX_ARG_LAYER -GIMP_PROC_VAL_LAYER -GIMP_VALUES_GET_LAYER -GIMP_VALUES_GET_LAYER_ID -GIMP_VALUES_SET_LAYER -GIMP_PROC_ARG_CHANNEL -GIMP_PROC_AUX_ARG_CHANNEL -GIMP_PROC_VAL_CHANNEL -GIMP_VALUES_GET_CHANNEL -GIMP_VALUES_GET_CHANNEL_ID -GIMP_VALUES_SET_CHANNEL -GIMP_PROC_ARG_LAYER_MASK -GIMP_PROC_AUX_ARG_LAYER_MASK -GIMP_PROC_VAL_LAYER_MASK -GIMP_VALUES_GET_LAYER_MASK -GIMP_VALUES_GET_LAYER_MASK_ID -GIMP_VALUES_SET_LAYER_MASK -GIMP_PROC_ARG_SELECTION -GIMP_PROC_AUX_ARG_SELECTION -GIMP_PROC_VAL_SELECTION -GIMP_VALUES_GET_SELECTION -GIMP_VALUES_GET_SELECTION_ID -GIMP_VALUES_SET_SELECTION -GIMP_PROC_ARG_VECTORS -GIMP_PROC_AUX_ARG_VECTORS -GIMP_PROC_VAL_VECTORS -GIMP_VALUES_GET_VECTORS -GIMP_VALUES_GET_VECTORS_ID -GIMP_VALUES_SET_VECTORS -GIMP_PROC_ARG_FILE -GIMP_PROC_AUX_ARG_FILE -GIMP_PROC_VAL_FILE -GIMP_VALUES_GET_FILE -GIMP_VALUES_DUP_FILE -GIMP_VALUES_SET_FILE -GIMP_VALUES_TAKE_FILE -
- -
-gimpimageprocedure -GimpImageProcedure -GimpRunImageFunc -gimp_image_procedure_new - -GIMP_IMAGE_PROCEDURE -GIMP_IMAGE_PROCEDURE_CLASS -GIMP_IMAGE_PROCEDURE_GET_CLASS -GIMP_IS_IMAGE_PROCEDURE -GIMP_IS_IMAGE_PROCEDURE_CLASS -GIMP_TYPE_IMAGE_PROCEDURE -GimpImageProcedure -GimpImageProcedureClass -GimpImageProcedurePrivate -gimp_image_procedure_get_type -
- -
-gimpfileprocedure -GimpFileProcedure -gimp_file_procedure_set_mime_types -gimp_file_procedure_get_mime_types -gimp_file_procedure_set_extensions -gimp_file_procedure_get_extensions -gimp_file_procedure_set_prefixes -gimp_file_procedure_get_prefixes -gimp_file_procedure_set_magics -gimp_file_procedure_get_magics -gimp_file_procedure_set_priority -gimp_file_procedure_get_priority -gimp_file_procedure_set_handles_remote -gimp_file_procedure_get_handles_remote - -GIMP_FILE_PROCEDURE -GIMP_FILE_PROCEDURE_CLASS -GIMP_FILE_PROCEDURE_GET_CLASS -GIMP_IS_FILE_PROCEDURE -GIMP_IS_FILE_PROCEDURE_CLASS -GIMP_TYPE_FILE_PROCEDURE -GimpFileProcedure -GimpFileProcedureClass -GimpFileProcedurePrivate -gimp_file_procedure_get_type -
- -
-gimploadprocedure -GimpLoadProcedure -GimpRunLoadFunc -gimp_load_procedure_new -gimp_load_procedure_set_handles_raw -gimp_load_procedure_get_handles_raw -gimp_load_procedure_set_thumbnail_loader -gimp_load_procedure_get_thumbnail_loader - -GIMP_IS_LOAD_PROCEDURE -GIMP_IS_LOAD_PROCEDURE_CLASS -GIMP_LOAD_PROCEDURE -GIMP_LOAD_PROCEDURE_CLASS -GIMP_LOAD_PROCEDURE_GET_CLASS -GIMP_TYPE_LOAD_PROCEDURE -GimpLoadProcedure -GimpLoadProcedureClass -GimpLoadProcedurePrivate -gimp_load_procedure_get_type -
- -
-gimpthumbnailprocedure -GimpThumbnailProcedure -GimpRunThumbnailFunc -gimp_thumbnail_procedure_new - -GIMP_IS_THUMBNAIL_PROCEDURE -GIMP_IS_THUMBNAIL_PROCEDURE_CLASS -GIMP_THUMBNAIL_PROCEDURE -GIMP_THUMBNAIL_PROCEDURE_CLASS -GIMP_THUMBNAIL_PROCEDURE_GET_CLASS -GIMP_TYPE_THUMBNAIL_PROCEDURE -GimpThumbnailProcedure -GimpThumbnailProcedureClass -GimpThumbnailProcedurePrivate -gimp_thumbnail_procedure_get_type -
- -
-gimpsaveprocedure -GimpSaveProcedure -GimpRunSaveFunc -gimp_save_procedure_new - -GIMP_IS_SAVE_PROCEDURE -GIMP_IS_SAVE_PROCEDURE_CLASS -GIMP_SAVE_PROCEDURE -GIMP_SAVE_PROCEDURE_CLASS -GIMP_SAVE_PROCEDURE_GET_CLASS -GIMP_TYPE_SAVE_PROCEDURE -GimpSaveProcedure -GimpSaveProcedureClass -GimpSaveProcedurePrivate -gimp_save_procedure_get_type -
- -
-gimpprocedureconfig -GimpProcedureConfig -gimp_procedure_config_get_procedure -gimp_procedure_config_set_values -gimp_procedure_config_get_values -gimp_procedure_config_begin_run -gimp_procedure_config_end_run -gimp_procedure_config_begin_export -gimp_procedure_config_end_export - -GIMP_IS_PROCEDURE_CONFIG -GIMP_IS_PROCEDURE_CONFIG_CLASS -GIMP_PROCEDURE_CONFIG -GIMP_PROCEDURE_CONFIG_CLASS -GIMP_PROCEDURE_CONFIG_GET_CLASS -GIMP_TYPE_PROCEDURE_CONFIG -GimpProcedureConfig -GimpProcedureConfigClass -GimpProcedureConfigPrivate -gimp_procedure_config_get_type -
- -
-gimpparamspecs -GIMP_VALUE_HOLDS_IMAGE -gimp_param_spec_image -GIMP_VALUE_HOLDS_ITEM -gimp_param_spec_item -GIMP_VALUE_HOLDS_DRAWABLE -gimp_param_spec_drawable -GIMP_VALUE_HOLDS_LAYER -gimp_param_spec_layer -GIMP_VALUE_HOLDS_CHANNEL -gimp_param_spec_channel -GIMP_VALUE_HOLDS_LAYER_MASK -gimp_param_spec_layer_mask -GIMP_VALUE_HOLDS_SELECTION -gimp_param_spec_selection -GIMP_VALUE_HOLDS_VECTORS -gimp_param_spec_vectors -GIMP_VALUE_HOLDS_DISPLAY -gimp_param_spec_display - -GIMP_IS_PARAM_SPEC_CHANNEL -GIMP_IS_PARAM_SPEC_DISPLAY -GIMP_IS_PARAM_SPEC_DRAWABLE -GIMP_IS_PARAM_SPEC_IMAGE -GIMP_IS_PARAM_SPEC_ITEM -GIMP_IS_PARAM_SPEC_LAYER -GIMP_IS_PARAM_SPEC_LAYER_MASK -GIMP_IS_PARAM_SPEC_SELECTION -GIMP_IS_PARAM_SPEC_VECTORS -GIMP_PARAM_SPEC_CHANNEL -GIMP_PARAM_SPEC_DISPLAY -GIMP_PARAM_SPEC_DRAWABLE -GIMP_PARAM_SPEC_IMAGE -GIMP_PARAM_SPEC_ITEM -GIMP_PARAM_SPEC_LAYER -GIMP_PARAM_SPEC_LAYER_MASK -GIMP_PARAM_SPEC_SELECTION -GIMP_PARAM_SPEC_VECTORS -GIMP_TYPE_PARAM_CHANNEL -GIMP_TYPE_PARAM_DISPLAY -GIMP_TYPE_PARAM_DRAWABLE -GIMP_TYPE_PARAM_IMAGE -GIMP_TYPE_PARAM_ITEM -GIMP_TYPE_PARAM_LAYER -GIMP_TYPE_PARAM_LAYER_MASK -GIMP_TYPE_PARAM_SELECTION -GIMP_TYPE_PARAM_VECTORS -GimpParamSpecChannel -GimpParamSpecDisplay -GimpParamSpecDrawable -GimpParamSpecImage -GimpParamSpecItem -GimpParamSpecLayer -GimpParamSpecLayerMask -GimpParamSpecSelection -GimpParamSpecVectors -gimp_param_channel_get_type -gimp_param_display_get_type -gimp_param_drawable_get_type -gimp_param_image_get_type -gimp_param_item_get_type -gimp_param_layer_get_type -gimp_param_layer_mask_get_type -gimp_param_selection_get_type -gimp_param_vectors_get_type -
- -
-gimpprogress -GimpProgressVtable -GimpProgressVtableEndFunc -GimpProgressVtableGetWindowFunc -GimpProgressVtablePulseFunc -GimpProgressVtableSetTextFunc -GimpProgressVtableSetValueFunc -GimpProgressVtableStartFunc -gimp_progress_init -gimp_progress_init_printf -gimp_progress_update -gimp_progress_pulse -gimp_progress_set_text -gimp_progress_set_text_printf -gimp_progress_end -gimp_progress_get_window_handle -gimp_progress_install_vtable -gimp_progress_uninstall -gimp_progress_cancel -
- -
-gimpselection -GimpSelection -gimp_selection_get_by_id -gimp_selection_bounds -gimp_selection_all -gimp_selection_none -gimp_selection_is_empty -gimp_selection_float -gimp_selection_save -gimp_selection_value -gimp_selection_grow -gimp_selection_shrink -gimp_selection_invert -gimp_selection_feather -gimp_selection_sharpen -gimp_selection_border -gimp_selection_flood -gimp_selection_translate - -GIMP_IS_SELECTION -GIMP_IS_SELECTION_CLASS -GIMP_SELECTION -GIMP_SELECTION_CLASS -GIMP_SELECTION_GET_CLASS -GIMP_TYPE_SELECTION -GimpSelection -GimpSelectionClass -GimpSelectionPrivate -gimp_selection_get_type -
- -
-gimptextlayer -gimp_text_layer_new -gimp_text_layer_get_text -gimp_text_layer_set_text -gimp_text_layer_get_markup -gimp_text_layer_get_font -gimp_text_layer_set_font -gimp_text_layer_get_font_size -gimp_text_layer_set_font_size -gimp_text_layer_get_antialias -gimp_text_layer_set_antialias -gimp_text_layer_get_kerning -gimp_text_layer_set_kerning -gimp_text_layer_get_language -gimp_text_layer_set_language -gimp_text_layer_get_base_direction -gimp_text_layer_set_base_direction -gimp_text_layer_get_justification -gimp_text_layer_set_justification -gimp_text_layer_get_color -gimp_text_layer_set_color -gimp_text_layer_get_indent -gimp_text_layer_set_indent -gimp_text_layer_get_line_spacing -gimp_text_layer_set_line_spacing -gimp_text_layer_get_letter_spacing -gimp_text_layer_set_letter_spacing -gimp_text_layer_get_hint_style -gimp_text_layer_set_hint_style -gimp_text_layer_resize -
- -
-gimptexttool -gimp_text_fontname -gimp_text_get_extents_fontname -
- -
-gimppainttools -gimp_airbrush -gimp_airbrush_default -gimp_clone -gimp_clone_default -gimp_convolve -gimp_convolve_default -gimp_dodgeburn -gimp_dodgeburn_default -gimp_eraser -gimp_eraser_default -gimp_heal -gimp_heal_default -gimp_paintbrush -gimp_paintbrush_default -gimp_pencil -gimp_smudge -gimp_smudge_default -
- -
-gimpvectors -GimpVectors -gimp_vectors_get_by_id -gimp_vectors_new -gimp_vectors_new_from_text_layer -gimp_vectors_copy -gimp_vectors_get_strokes -gimp_vectors_remove_stroke -gimp_vectors_export_to_file -gimp_vectors_export_to_string -gimp_vectors_import_from_file -gimp_vectors_import_from_string -gimp_vectors_stroke_new_from_points -gimp_vectors_stroke_close -gimp_vectors_stroke_get_length -gimp_vectors_stroke_get_points -gimp_vectors_stroke_get_point_at_dist -gimp_vectors_stroke_interpolate -gimp_vectors_stroke_scale -gimp_vectors_stroke_translate -gimp_vectors_stroke_flip -gimp_vectors_stroke_flip_free -gimp_vectors_stroke_rotate -gimp_vectors_bezier_stroke_conicto -gimp_vectors_bezier_stroke_cubicto -gimp_vectors_bezier_stroke_lineto -gimp_vectors_bezier_stroke_new_ellipse -gimp_vectors_bezier_stroke_new_moveto - -GIMP_IS_VECTORS -GIMP_IS_VECTORS_CLASS -GIMP_TYPE_VECTORS -GIMP_VECTORS -GIMP_VECTORS_CLASS -GIMP_VECTORS_GET_CLASS -GimpVectors -GimpVectorsClass -GimpVectorsPrivate -gimp_vectors_get_type -
- -
-gimpaspectpreview -GimpAspectPreview -GimpAspectPreview -gimp_aspect_preview_new_from_drawable - -GimpAspectPreviewClass -GimpAspectPreviewPrivate -GIMP_ASPECT_PREVIEW -GIMP_IS_ASPECT_PREVIEW -GIMP_TYPE_ASPECT_PREVIEW -gimp_aspect_preview_get_type -GIMP_ASPECT_PREVIEW_CLASS -GIMP_IS_ASPECT_PREVIEW_CLASS -GIMP_ASPECT_PREVIEW_GET_CLASS -
- -
-gimpdrawablepreview -GimpDrawablePreview -GimpDrawablePreview -gimp_drawable_preview_new_from_drawable -gimp_drawable_preview_get_drawable - -GimpDrawablePreviewClass -GimpDrawablePreviewPrivate -GIMP_DRAWABLE_PREVIEW -GIMP_IS_DRAWABLE_PREVIEW -GIMP_TYPE_DRAWABLE_PREVIEW -gimp_drawable_preview_get_type -GIMP_DRAWABLE_PREVIEW_CLASS -GIMP_IS_DRAWABLE_PREVIEW_CLASS -GIMP_DRAWABLE_PREVIEW_GET_CLASS -
- -
-gimpzoompreview -GimpZoomPreview -GimpZoomPreview -gimp_zoom_preview_new_from_drawable -gimp_zoom_preview_new_with_model_from_drawable -gimp_zoom_preview_get_source -gimp_zoom_preview_get_drawable -gimp_zoom_preview_get_factor -gimp_zoom_preview_get_model - -GimpZoomPreviewClass -GimpZoomPreviewPrivate -GIMP_ZOOM_PREVIEW -GIMP_IS_ZOOM_PREVIEW -GIMP_TYPE_ZOOM_PREVIEW -gimp_zoom_preview_get_type -GIMP_ZOOM_PREVIEW_CLASS -GIMP_IS_ZOOM_PREVIEW_CLASS -GIMP_ZOOM_PREVIEW_GET_CLASS -
- -
-gimpitemcombobox -GimpItemComboBox -GimpItemConstraintFunc -GimpDrawableComboBox -gimp_drawable_combo_box_new -GimpChannelComboBox -gimp_channel_combo_box_new -GimpLayerComboBox -gimp_layer_combo_box_new -GimpVectorsComboBox -gimp_vectors_combo_box_new - -GIMP_TYPE_LAYER_COMBO_BOX -GIMP_TYPE_CHANNEL_COMBO_BOX -gimp_layer_combo_box_get_type -GIMP_IS_LAYER_COMBO_BOX -GIMP_CHANNEL_COMBO_BOX -GIMP_DRAWABLE_COMBO_BOX -GIMP_LAYER_COMBO_BOX -gimp_drawable_combo_box_get_type -GIMP_IS_DRAWABLE_COMBO_BOX -GIMP_TYPE_DRAWABLE_COMBO_BOX -GIMP_IS_CHANNEL_COMBO_BOX -gimp_channel_combo_box_get_type -GIMP_IS_VECTORS_COMBO_BOX -GIMP_TYPE_VECTORS_COMBO_BOX -GIMP_VECTORS_COMBO_BOX -gimp_vectors_combo_box_get_type -
- -
-gimpimagecombobox -GimpImageComboBox -GimpImageComboBox -GimpImageConstraintFunc -gimp_image_combo_box_new - -GIMP_IMAGE_COMBO_BOX -GIMP_IS_IMAGE_COMBO_BOX -GIMP_TYPE_IMAGE_COMBO_BOX -gimp_image_combo_box_get_type -
- -
-gimpprocbrowserdialog -GimpProcBrowserDialog -GimpProcBrowserDialog -gimp_proc_browser_dialog_new -gimp_proc_browser_dialog_get_selected - -GimpProcBrowserDialogClass -GimpProcBrowserDialogPrivate -GIMP_PROC_BROWSER_DIALOG -GIMP_IS_PROC_BROWSER_DIALOG -GIMP_TYPE_PROC_BROWSER_DIALOG -gimp_proc_browser_dialog_get_type -GIMP_PROC_BROWSER_DIALOG_CLASS -GIMP_IS_PROC_BROWSER_DIALOG_CLASS -GIMP_PROC_BROWSER_DIALOG_GET_CLASS -
- -
-gimpproceduredialog -GimpProcedureDialog -gimp_procedure_dialog_new -gimp_procedure_dialog_run - -GIMP_IS_PROCEDURE_DIALOG -GIMP_IS_PROCEDURE_DIALOG_CLASS -GIMP_PROCEDURE_DIALOG -GIMP_PROCEDURE_DIALOG_CLASS -GIMP_PROCEDURE_DIALOG_GET_CLASS -GIMP_TYPE_PROCEDURE_DIALOG -GimpProcedureDialog -GimpProcedureDialogClass -GimpProcedureDialogPrivate -gimp_procedure_dialog_get_type -
- -
-gimpprocview -gimp_proc_view_new -
- -
-gimpprogressbar -GimpProgressBar -GimpProgressBar -gimp_progress_bar_new - -GimpProgressBarClass -GIMP_PROGRESS_BAR -GIMP_IS_PROGRESS_BAR -GIMP_TYPE_PROGRESS_BAR -gimp_progress_bar_get_type -GIMP_PROGRESS_BAR_CLASS -GIMP_IS_PROGRESS_BAR_CLASS -GIMP_PROGRESS_BAR_GET_CLASS -
- -
-gimpbrushselectbutton -GimpBrushSelectButton -GimpBrushSelectButton -gimp_brush_select_button_new -gimp_brush_select_button_get_brush -gimp_brush_select_button_set_brush - -GimpBrushSelectButtonClass -GimpBrushSelectButtonPrivate -GIMP_BRUSH_SELECT_BUTTON -GIMP_IS_BRUSH_SELECT_BUTTON -GIMP_TYPE_BRUSH_SELECT_BUTTON -gimp_brush_select_button_get_type -GIMP_BRUSH_SELECT_BUTTON_CLASS -GIMP_IS_BRUSH_SELECT_BUTTON_CLASS -GIMP_BRUSH_SELECT_BUTTON_GET_CLASS -
- -
-gimpgradientselectbutton -GimpGradientSelectButton -GimpGradientSelectButton -gimp_gradient_select_button_new -gimp_gradient_select_button_get_gradient -gimp_gradient_select_button_set_gradient - -GimpGradientSelectButtonClass -GimpGradientSelectButtonPrivate -GIMP_GRADIENT_SELECT_BUTTON -GIMP_IS_GRADIENT_SELECT_BUTTON -GIMP_TYPE_GRADIENT_SELECT_BUTTON -gimp_gradient_select_button_get_type -GIMP_GRADIENT_SELECT_BUTTON_CLASS -GIMP_IS_GRADIENT_SELECT_BUTTON_CLASS -GIMP_GRADIENT_SELECT_BUTTON_GET_CLASS -
- -
-gimpfontselectbutton -GimpFontSelectButton -GimpFontSelectButton -gimp_font_select_button_new -gimp_font_select_button_get_font -gimp_font_select_button_set_font - -GimpFontSelectButtonClass -GimpFontSelectButtonPrivate -GIMP_FONT_SELECT_BUTTON -GIMP_IS_FONT_SELECT_BUTTON -GIMP_TYPE_FONT_SELECT_BUTTON -gimp_font_select_button_get_type -GIMP_FONT_SELECT_BUTTON_CLASS -GIMP_IS_FONT_SELECT_BUTTON_CLASS -GIMP_FONT_SELECT_BUTTON_GET_CLASS -
- -
-gimppaletteselectbutton -GimpPaletteSelectButton -GimpPaletteSelectButton -gimp_palette_select_button_new -gimp_palette_select_button_get_palette -gimp_palette_select_button_set_palette - -GimpPaletteSelectButtonClass -GimpPaletteSelectButtonPrivate -GIMP_PALETTE_SELECT_BUTTON -GIMP_IS_PALETTE_SELECT_BUTTON -GIMP_TYPE_PALETTE_SELECT_BUTTON -gimp_palette_select_button_get_type -GIMP_PALETTE_SELECT_BUTTON_CLASS -GIMP_IS_PALETTE_SELECT_BUTTON_CLASS -GIMP_PALETTE_SELECT_BUTTON_GET_CLASS -
- -
-gimppatternselectbutton -GimpPatternSelectButton -GimpPatternSelectButton -gimp_pattern_select_button_new -gimp_pattern_select_button_get_pattern -gimp_pattern_select_button_set_pattern - -GimpPatternSelectButtonClass -GimpPatternSelectButtonPrivate -GIMP_PATTERN_SELECT_BUTTON -GIMP_IS_PATTERN_SELECT_BUTTON -GIMP_TYPE_PATTERN_SELECT_BUTTON -gimp_pattern_select_button_get_type -GIMP_PATTERN_SELECT_BUTTON_CLASS -GIMP_IS_PATTERN_SELECT_BUTTON_CLASS -GIMP_PATTERN_SELECT_BUTTON_GET_CLASS -
- -
-gimpselectbutton -GimpSelectButton -GimpSelectButton -gimp_select_button_close_popup - -GimpSelectButtonClass -GimpSelectButtonPrivate -GIMP_SELECT_BUTTON -GIMP_IS_SELECT_BUTTON -GIMP_TYPE_SELECT_BUTTON -gimp_select_button_get_type -GIMP_SELECT_BUTTON_CLASS -GIMP_IS_SELECT_BUTTON_CLASS -GIMP_SELECT_BUTTON_GET_CLASS -
diff --git a/devel-docs/libgimp/libgimp3.types b/devel-docs/libgimp/libgimp3.types deleted file mode 100644 index 33687f2231..0000000000 --- a/devel-docs/libgimp/libgimp3.types +++ /dev/null @@ -1,39 +0,0 @@ - -#include -#include -#include - -gimp_aspect_preview_get_type -gimp_brush_select_button_get_type -gimp_channel_combo_box_get_type -gimp_channel_get_type -gimp_display_get_type -gimp_drawable_combo_box_get_type -gimp_drawable_get_type -gimp_drawable_preview_get_type -gimp_file_procedure_get_type -gimp_font_select_button_get_type -gimp_gradient_select_button_get_type -gimp_image_combo_box_get_type -gimp_image_get_type -gimp_image_procedure_get_type -gimp_layer_combo_box_get_type -gimp_layer_get_type -gimp_layer_mask_get_type -gimp_load_procedure_get_type -gimp_palette_select_button_get_type -gimp_pattern_select_button_get_type -gimp_pdb_get_type -gimp_plug_in_get_type -gimp_proc_browser_dialog_get_type -gimp_procedure_get_type -gimp_procedure_config_get_type -gimp_procedure_dialog_get_type -gimp_progress_bar_get_type -gimp_save_procedure_get_type -gimp_select_button_get_type -gimp_selection_get_type -gimp_thumbnail_procedure_get_type -gimp_vectors_combo_box_get_type -gimp_vectors_get_type -gimp_zoom_preview_get_type diff --git a/devel-docs/libgimp/meson.build b/devel-docs/libgimp/meson.build deleted file mode 100644 index 1bc0c543df..0000000000 --- a/devel-docs/libgimp/meson.build +++ /dev/null @@ -1,54 +0,0 @@ -module_name = 'libgimp3' - - -gnome.gtkdoc(module_name, - main_sgml: module_name + '-docs.sgml', - gobject_typesfile: files(module_name + '.types'), - src_dir: meson.source_root() / 'libgimp', - - ignore_headers: [ - 'gimp-debug.h', - 'gimp-private.h', - 'gimp-shm.h', - 'gimppdb-private.h', - 'gimppdbprocedure.h', - 'gimpgpparams.h', - 'gimppixbuf.h', - 'gimpplugin-private.h', - 'gimpprocedure-private.h', - 'gimpprocedureconfig-private.h', - 'gimptilebackendplugin.h', - 'gimpunit_pdb.h', - 'gimpunitcache.h', - 'libgimp-intl.h', - 'stdplugins-intl.h', - ], - - dependencies: [ - fontconfig, freetype2, gtk3, harfbuzz, pangocairo, - declare_dependency( - include_directories: rootInclude, - link_with: [ - libgimp, - libgimpui, - libgimpbase, - libgimpcolor, - libgimpconfig, - libgimpmath, - libgimpui, - libgimpwidgets, - ] - ) - ], - - scan_args: scan_args_common, - mkdb_args: mkdb_args_common, - - fixxref_args: [ - '--extra-dir='+ devel_docs_build_root / 'libgimpbase' / 'html', - '--extra-dir='+ devel_docs_build_root / 'libgimpcolor' / 'html', - '--extra-dir='+ devel_docs_build_root / 'libgimpconfig' / 'html', - '--extra-dir='+ devel_docs_build_root / 'libgimpmath' / 'html', - '--extra-dir='+ devel_docs_build_root / 'libgimpwidgets' / 'html', - ], -) diff --git a/devel-docs/libgimpbase/.gitignore b/devel-docs/libgimpbase/.gitignore deleted file mode 100644 index f5bb01ed21..0000000000 --- a/devel-docs/libgimpbase/.gitignore +++ /dev/null @@ -1,21 +0,0 @@ -/.deps -/.libs -/Makefile -/Makefile.in -/deprecated -/libgimpbase3.actions -/libgimpbase3.args -/libgimpbase3-decl.txt -/libgimpbase3-decl-list.txt -/libgimpbase3.hierarchy -/libgimpbase3.interfaces -/libgimpbase3.prerequisites -/libgimpbase3.signals -/libgimpbase3-unused.txt -/libgimpbase3-undeclared.txt -/libgimpbase3-undocumented.txt -/html -/tmpl -/xml -/*.bak -/*.stamp diff --git a/devel-docs/libgimpbase/Makefile.am b/devel-docs/libgimpbase/Makefile.am deleted file mode 100644 index 0b1d66c8e9..0000000000 --- a/devel-docs/libgimpbase/Makefile.am +++ /dev/null @@ -1,65 +0,0 @@ -## Process this file with automake to produce Makefile.in - -# The name of the module. -DOC_MODULE = libgimpbase3 - -# The top-level SGML file. -DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml - -# The directory containing the source code. -DOC_SOURCE_DIR = $(top_srcdir)/libgimpbase - -# 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 = - -# Used for dependencies -HFILE_GLOB = $(DOC_SOURCE_DIR)/*.h -CFILE_GLOB = $(DOC_SOURCE_DIR)/*.c - -# Header files to ignore when scanning -IGNORE_HFILES = \ - gimpbase.h \ - gimpbase-private.h \ - gimpcompatenums.h \ - gimpprotocol.h \ - gimpreloc.h \ - gimpwire.h \ - gimpwin32-io.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) \ - @GEGL_CFLAGS@ - -GTKDOC_LIBS = \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - @GEGL_LIBS@ - - -include $(top_srcdir)/gtk-doc.make - -# This is a hack. The entire commit must be reverted once -# this file gets removed by gtk-doc.make -CLEANFILES += $(DOC_MODULE).actions diff --git a/devel-docs/libgimpbase/libgimpbase3-docs.sgml b/devel-docs/libgimpbase/libgimpbase3-docs.sgml deleted file mode 100644 index c1fdd1cbf7..0000000000 --- a/devel-docs/libgimpbase/libgimpbase3-docs.sgml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - GIMP 3 Base Library Reference Manual - - for GIMP - - - - - GIMP Base Library - - - - - - - - - - - - - - - - - - - - - Index - - - - Index of new symbols in GIMP 2.2 - - - - Index of new symbols in GIMP 2.4 - - - - Index of new symbols in GIMP 2.8 - - - - Index of new symbols in GIMP 2.10 - - - - Index of new symbols in GIMP 2.10.10 - - - - Index of new symbols in GIMP 3.0 - - - - Index of deprecated symbols - - - - - diff --git a/devel-docs/libgimpbase/libgimpbase3-overrides.txt b/devel-docs/libgimpbase/libgimpbase3-overrides.txt deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/devel-docs/libgimpbase/libgimpbase3-sections.txt b/devel-docs/libgimpbase/libgimpbase3-sections.txt deleted file mode 100644 index 4b5f5746e3..0000000000 --- a/devel-docs/libgimpbase/libgimpbase3-sections.txt +++ /dev/null @@ -1,552 +0,0 @@ -
-gimpbasetypes -GIMP_DEPRECATED -GIMP_DEPRECATED_FOR -GIMP_UNAVAILABLE -GimpEnumDesc -GimpFlagsDesc -gimp_type_set_translation_domain -gimp_type_get_translation_domain -gimp_type_set_translation_context -gimp_type_get_translation_context -gimp_enum_set_value_descriptions -gimp_enum_get_value_descriptions -gimp_flags_get_value_descriptions -gimp_flags_set_value_descriptions -
- -
-gimpbaseenums -GimpAddMaskType -GimpBrushGeneratedShape -GimpCapStyle -GimpChannelOps -GimpChannelType -GimpCheckSize -GimpCheckType -GimpCloneType -GimpColorTag -GimpComponentType -GimpConvertPaletteType -GimpConvolveType -GimpDesaturateMode -GimpDodgeBurnType -GimpFillType -GimpForegroundExtractMode -GimpGradientBlendColorSpace -GimpGradientSegmentColor -GimpGradientSegmentType -GimpGradientType -GimpGridStyle -GimpHueRange -GimpIconType -GimpImageBaseType -GimpImageType -GimpInkBlobType -GimpInterpolationType -GimpJoinStyle -GimpMaskApplyMode -GimpMergeType -GimpMessageHandlerType -GimpOffsetType -GimpOrientationType -GimpPDBErrorHandler -GimpPDBProcType -GimpPDBStatusType -GimpPaintApplicationMode -GimpPrecision -GimpProgressCommand -GimpRepeatMode -GimpRotationType -GimpRunMode -GimpSelectCriterion -GimpSizeType -GimpStackTraceMode -GimpStrokeMethod -GimpTextDirection -GimpTextHintStyle -GimpTextJustification -GimpTransferMode -GimpTransformDirection -GimpTransformResize -GimpVectorsStrokeType - -GIMP_TYPE_ADD_MASK_TYPE -GIMP_TYPE_BRUSH_GENERATED_SHAPE -GIMP_TYPE_CAP_STYLE -GIMP_TYPE_CHANNEL_OPS -GIMP_TYPE_CHANNEL_TYPE -GIMP_TYPE_CHECK_SIZE -GIMP_TYPE_CHECK_TYPE -GIMP_TYPE_CLONE_TYPE -GIMP_TYPE_COLOR_TAG -GIMP_TYPE_COMPONENT_TYPE -GIMP_TYPE_CONVERT_PALETTE_TYPE -GIMP_TYPE_CONVOLVE_TYPE -GIMP_TYPE_DESATURATE_MODE -GIMP_TYPE_DODGE_BURN_TYPE -GIMP_TYPE_FILL_TYPE -GIMP_TYPE_FOREGROUND_EXTRACT_MODE -GIMP_TYPE_GRADIENT_BLEND_COLOR_SPACE -GIMP_TYPE_GRADIENT_SEGMENT_COLOR -GIMP_TYPE_GRADIENT_SEGMENT_TYPE -GIMP_TYPE_GRADIENT_TYPE -GIMP_TYPE_GRID_STYLE -GIMP_TYPE_HUE_RANGE -GIMP_TYPE_ICON_TYPE -GIMP_TYPE_IMAGE_BASE_TYPE -GIMP_TYPE_IMAGE_TYPE -GIMP_TYPE_INK_BLOB_TYPE -GIMP_TYPE_INTERPOLATION_TYPE -GIMP_TYPE_JOIN_STYLE -GIMP_TYPE_MASK_APPLY_MODE -GIMP_TYPE_MERGE_TYPE -GIMP_TYPE_MESSAGE_HANDLER_TYPE -GIMP_TYPE_OFFSET_TYPE -GIMP_TYPE_ORIENTATION_TYPE -GIMP_TYPE_PAINT_APPLICATION_MODE -GIMP_TYPE_PDB_ERROR_HANDLER -GIMP_TYPE_PDB_PROC_TYPE -GIMP_TYPE_PDB_STATUS_TYPE -GIMP_TYPE_PRECISION -GIMP_TYPE_PROGRESS_COMMAND -GIMP_TYPE_REPEAT_MODE -GIMP_TYPE_ROTATION_TYPE -GIMP_TYPE_RUN_MODE -GIMP_TYPE_SELECT_CRITERION -GIMP_TYPE_SIZE_TYPE -GIMP_TYPE_STACK_TRACE_MODE -GIMP_TYPE_STROKE_METHOD -GIMP_TYPE_TEXT_DIRECTION -GIMP_TYPE_TEXT_HINT_STYLE -GIMP_TYPE_TEXT_JUSTIFICATION -GIMP_TYPE_TRANSFER_MODE -GIMP_TYPE_TRANSFORM_DIRECTION -GIMP_TYPE_TRANSFORM_RESIZE -GIMP_TYPE_VECTORS_STROKE_TYPE -gimp_add_mask_type_get_type -gimp_brush_generated_shape_get_type -gimp_cap_style_get_type -gimp_component_type_get_type -gimp_convert_palette_type_get_type -gimp_convolve_type_get_type -gimp_fill_type_get_type -gimp_gradient_blend_color_space_get_type -gimp_gradient_segment_color_get_type -gimp_gradient_segment_type_get_type -gimp_hue_range_get_type -gimp_ink_blob_type_get_type -gimp_join_style_get_type -gimp_mask_apply_mode_get_type -gimp_merge_type_get_type -gimp_offset_type_get_type -gimp_orientation_type_get_type -gimp_precision_get_type -gimp_rotation_type_get_type -gimp_select_criterion_get_type -gimp_channel_ops_get_type -gimp_channel_type_get_type -gimp_check_size_get_type -gimp_check_type_get_type -gimp_clone_type_get_type -gimp_color_tag_get_type -gimp_desaturate_mode_get_type -gimp_dodge_burn_type_get_type -gimp_foreground_extract_mode_get_type -gimp_gradient_type_get_type -gimp_grid_style_get_type -gimp_icon_type_get_type -gimp_image_base_type_get_type -gimp_image_type_get_type -gimp_interpolation_type_get_type -gimp_message_handler_type_get_type -gimp_paint_application_mode_get_type -gimp_pdb_error_handler_get_type -gimp_pdb_proc_type_get_type -gimp_pdb_status_type_get_type -gimp_progress_command_get_type -gimp_repeat_mode_get_type -gimp_run_mode_get_type -gimp_size_type_get_type -gimp_stack_trace_mode_get_type -gimp_stroke_method_get_type -gimp_text_direction_get_type -gimp_text_hint_style_get_type -gimp_text_justification_get_type -gimp_transfer_mode_get_type -gimp_transform_direction_get_type -gimp_transform_resize_get_type -gimp_vectors_stroke_type_get_type -
- -
-gimpchecks -GIMP_CHECK_SIZE -GIMP_CHECK_SIZE_SM -GIMP_CHECK_DARK -GIMP_CHECK_LIGHT -gimp_checks_get_shades -
- -
-gimpcpuaccel -GimpCpuAccelFlags -gimp_cpu_accel_get_support -gimp_cpu_accel_set_use -
- -
-gimpenv -gimp_env_init -gimp_directory -gimp_installation_directory -gimp_data_directory -gimp_locale_directory -gimp_sysconf_directory -gimp_plug_in_directory -gimp_cache_directory -gimp_temp_directory -gimp_directory_file -gimp_installation_directory_file -gimp_data_directory_file -gimp_locale_directory_file -gimp_sysconf_directory_file -gimp_plug_in_directory_file -gimp_path_parse -gimp_path_to_str -gimp_path_free -gimp_path_get_user_writable_dir -
- -
-gimplimits -GIMP_MIN_IMAGE_SIZE -GIMP_MAX_IMAGE_SIZE -GIMP_MIN_RESOLUTION -GIMP_MAX_RESOLUTION -GIMP_MAX_MEMSIZE -
- -
-gimpmemsize -gimp_memsize_serialize -gimp_memsize_deserialize -GIMP_TYPE_MEMSIZE -GIMP_TYPE_PARAM_MEMSIZE -GIMP_IS_PARAM_SPEC_MEMSIZE -gimp_param_spec_memsize -GIMP_VALUE_HOLDS_MEMSIZE - -gimp_memsize_get_type -gimp_param_memsize_get_type -
- -
-gimpmetadata -GimpMetadata -GimpMetadataLoadFlags -GimpMetadataSaveFlags -GimpMetadataColorspace -gimp_metadata_new -gimp_metadata_duplicate -gimp_metadata_deserialize -gimp_metadata_serialize -gimp_metadata_get_guid -gimp_metadata_add_xmp_history -gimp_metadata_load_from_file -gimp_metadata_save_to_file -gimp_metadata_set_from_exif -gimp_metadata_set_from_iptc -gimp_metadata_set_from_xmp -gimp_metadata_set_pixel_size -gimp_metadata_set_bits_per_sample -gimp_metadata_get_resolution -gimp_metadata_set_resolution -gimp_metadata_get_colorspace -gimp_metadata_set_colorspace -gimp_metadata_is_tag_supported - -GIMP_IS_METADATA -GIMP_IS_METADATA_CLASS -GIMP_METADATA -GIMP_METADATA_CLASS -GIMP_METADATA_GET_CLASS -GIMP_TYPE_METADATA -gimp_metadata_get_type -
- -
-gimprectangle -gimp_rectangle_intersect -gimp_rectangle_union -
- -
-gimpparamspecs -GIMP_PARAM_NO_VALIDATE -GIMP_PARAM_STATIC_STRINGS -GIMP_PARAM_READABLE -GIMP_PARAM_WRITABLE -GIMP_PARAM_READWRITE -GimpArray -gimp_array_new -gimp_array_copy -gimp_array_free -gimp_param_spec_array -gimp_param_spec_uint8_array -gimp_value_get_uint8_array -gimp_value_dup_uint8_array -gimp_value_set_uint8_array -gimp_value_set_static_uint8_array -gimp_value_take_uint8_array -gimp_param_spec_int32_array -gimp_value_get_int32_array -gimp_value_dup_int32_array -gimp_value_set_int32_array -gimp_value_set_static_int32_array -gimp_value_take_int32_array -gimp_param_spec_float_array -gimp_value_get_float_array -gimp_value_dup_float_array -gimp_value_set_float_array -gimp_value_set_static_float_array -gimp_value_take_float_array -GimpStringArray -gimp_string_array_new -gimp_string_array_copy -gimp_string_array_free -gimp_param_spec_string_array -gimp_value_get_string_array -gimp_value_dup_string_array -gimp_value_set_string_array -gimp_value_set_static_string_array -gimp_value_take_string_array -gimp_param_spec_rgb_array -gimp_value_get_rgb_array -gimp_value_dup_rgb_array -gimp_value_set_rgb_array -gimp_value_set_static_rgb_array -gimp_value_take_rgb_array -GimpObjectArray -gimp_object_array_new -gimp_object_array_copy -gimp_object_array_free -gimp_param_spec_object_array -gimp_value_get_object_array -gimp_value_dup_object_array -gimp_value_set_object_array -gimp_value_set_static_object_array -gimp_value_take_object_array - -GIMP_IS_PARAM_SPEC_ARRAY -GIMP_IS_PARAM_SPEC_FLOAT_ARRAY -GIMP_IS_PARAM_SPEC_INT32_ARRAY -GIMP_IS_PARAM_SPEC_OBJECT_ARRAY -GIMP_IS_PARAM_SPEC_UINT8_ARRAY -GIMP_IS_PARAM_SPEC_RGB_ARRAY -GIMP_IS_PARAM_SPEC_STRING -GIMP_IS_PARAM_SPEC_STRING_ARRAY -GIMP_PARAM_SPEC_ARRAY -GIMP_PARAM_SPEC_FLOAT_ARRAY -GIMP_PARAM_SPEC_INT32_ARRAY -GIMP_PARAM_SPEC_OBJECT_ARRAY -GIMP_PARAM_SPEC_UINT8_ARRAY -GIMP_PARAM_SPEC_RGB_ARRAY -GIMP_PARAM_SPEC_STRING -GIMP_PARAM_SPEC_STRING_ARRAY -GIMP_TYPE_ARRAY -GIMP_TYPE_FLOAT_ARRAY -GIMP_TYPE_INT32_ARRAY -GIMP_TYPE_OBJECT_ARRAY -GIMP_TYPE_UINT8_ARRAY -GIMP_TYPE_PARAM_ARRAY -GIMP_TYPE_PARAM_FLOAT_ARRAY -GIMP_TYPE_PARAM_INT32_ARRAY -GIMP_TYPE_PARAM_OBJECT_ARRAY -GIMP_TYPE_PARAM_UINT8_ARRAY -GIMP_TYPE_PARAM_RGB_ARRAY -GIMP_TYPE_PARAM_STRING -GIMP_TYPE_PARAM_STRING_ARRAY -GIMP_TYPE_RGB_ARRAY -GIMP_TYPE_STRING_ARRAY -GIMP_VALUE_HOLDS_ARRAY -GIMP_VALUE_HOLDS_FLOAT_ARRAY -GIMP_VALUE_HOLDS_INT32_ARRAY -GIMP_VALUE_HOLDS_OBJECT_ARRAY -GIMP_VALUE_HOLDS_UINT8_ARRAY -GIMP_VALUE_HOLDS_RGB_ARRAY -GIMP_VALUE_HOLDS_STRING_ARRAY -GimpParamSpecArray -GimpParamSpecFloatArray -GimpParamSpecInt32Array -GimpParamSpecObjectArray -GimpParamSpecUInt8Array -GimpParamSpecRGBArray -GimpParamSpecStringArray -gimp_array_get_type -gimp_float_array_get_type -gimp_int32_array_get_type -gimp_object_array_get_type -gimp_uint8_array_get_type -gimp_param_array_get_type -gimp_param_float_array_get_type -gimp_param_int32_array_get_type -gimp_param_object_array_get_type -gimp_param_uint8_array_get_type -gimp_param_rgb_array_get_type -gimp_param_string_array_get_type -gimp_param_string_get_type -gimp_rgb_array_get_type -gimp_string_array_get_type -
- -
-gimpparasite -GimpParasite -gimp_parasite_new -gimp_parasite_free -gimp_parasite_copy -gimp_parasite_compare -gimp_parasite_is_type -gimp_parasite_is_persistent -gimp_parasite_is_undoable -gimp_parasite_has_flag -gimp_parasite_get_flags -gimp_parasite_get_name -gimp_parasite_data -gimp_parasite_data_size -GIMP_PARASITE_PERSISTENT -GIMP_PARASITE_UNDOABLE -GIMP_PARASITE_ATTACH_PARENT -GIMP_PARASITE_PARENT_PERSISTENT -GIMP_PARASITE_PARENT_UNDOABLE -GIMP_PARASITE_ATTACH_GRANDPARENT -GIMP_PARASITE_GRANDPARENT_PERSISTENT -GIMP_PARASITE_GRANDPARENT_UNDOABLE -GIMP_TYPE_PARASITE -GIMP_TYPE_PARAM_PARASITE -GIMP_IS_PARAM_SPEC_PARASITE -gimp_param_spec_parasite -GIMP_VALUE_HOLDS_PARASITE - -GimpParamSpecParasite -gimp_parasite_get_type -gimp_param_parasite_get_type -
- -
-gimpparasiteio -GIMP_PIXPIPE_MAXDIM -GimpPixPipeParams -gimp_pixpipe_params_init -gimp_pixpipe_params_parse -gimp_pixpipe_params_build -gimp_pixpipe_params_free -
- -
-gimpsignal -GimpSignalHandlerFunc -gimp_signal_private -
- -
-gimpunit -GimpUnit -gimp_unit_get_number_of_units -gimp_unit_get_number_of_built_in_units -gimp_unit_new -gimp_unit_get_deletion_flag -gimp_unit_set_deletion_flag -gimp_unit_get_factor -gimp_unit_get_digits -gimp_unit_get_scaled_digits -gimp_unit_get_identifier -gimp_unit_get_symbol -gimp_unit_get_abbreviation -gimp_unit_get_singular -gimp_unit_get_plural -gimp_unit_format_string -gimp_pixels_to_units -gimp_units_to_pixels -gimp_units_to_points -gimp_unit_is_metric -GIMP_TYPE_PARAM_UNIT -gimp_param_spec_unit - -GIMP_IS_PARAM_SPEC_UNIT -GIMP_PARAM_SPEC_UNIT -GIMP_TYPE_UNIT -GIMP_VALUE_HOLDS_UNIT -GimpParamSpecUnit -gimp_unit_get_type -gimp_param_unit_get_type -
- -
-gimputils -gimp_any_to_utf8 -gimp_filename_to_utf8 -gimp_file_get_utf8_name -gimp_file_has_extension -gimp_file_show_in_file_manager -gimp_utf8_strtrim -gimp_escape_uline -gimp_strip_uline -gimp_is_canonical_identifier -gimp_canonicalize_identifier -gimp_enum_get_desc -gimp_enum_get_value -gimp_enum_value_get_desc -gimp_enum_value_get_help -gimp_enum_value_get_abbrev -gimp_flags_get_first_desc -gimp_flags_get_first_value -gimp_flags_value_get_desc -gimp_flags_value_get_help -gimp_flags_value_get_abbrev -gimp_stack_trace_available -gimp_stack_trace_print -gimp_stack_trace_query -
- -
-gimpvaluearray -GimpValueArray -gimp_value_array_new -gimp_value_array_new_from_types -gimp_value_array_new_from_types_valist -gimp_value_array_new_from_values -gimp_value_array_ref -gimp_value_array_unref -gimp_value_array_length -gimp_value_array_index -gimp_value_array_prepend -gimp_value_array_append -gimp_value_array_insert -gimp_value_array_remove -gimp_value_array_truncate -GimpParamSpecValueArray -gimp_param_spec_value_array - -GIMP_IS_PARAM_SPEC_VALUE_ARRAY -GIMP_PARAM_SPEC_VALUE_ARRAY -GIMP_TYPE_PARAM_VALUE_ARRAY -GIMP_TYPE_VALUE_ARRAY -gimp_param_value_array_get_type -gimp_value_array_get_type -
- -
-gimpversion -GIMP_MAJOR_VERSION -GIMP_MINOR_VERSION -GIMP_MICRO_VERSION -GIMP_VERSION -GIMP_API_VERSION -GIMP_CHECK_VERSION -GIMPVAR -gimp_major_version -gimp_minor_version -gimp_micro_version -
diff --git a/devel-docs/libgimpbase/libgimpbase3.types b/devel-docs/libgimpbase/libgimpbase3.types deleted file mode 100644 index ef0c934d30..0000000000 --- a/devel-docs/libgimpbase/libgimpbase3.types +++ /dev/null @@ -1,17 +0,0 @@ -gimp_array_get_type -gimp_float_array_get_type -gimp_int32_array_get_type -gimp_uint8_array_get_type -gimp_memsize_get_type -gimp_metadata_get_type -gimp_param_array_get_type -gimp_param_float_array_get_type -gimp_param_int32_array_get_type -gimp_param_uint8_array_get_type -gimp_param_rgb_array_get_type -gimp_param_string_array_get_type -gimp_parasite_get_type -gimp_rgb_array_get_type -gimp_string_array_get_type -gimp_unit_get_type -gimp_value_array_get_type diff --git a/devel-docs/libgimpbase/meson.build b/devel-docs/libgimpbase/meson.build deleted file mode 100644 index 1b1a7232ae..0000000000 --- a/devel-docs/libgimpbase/meson.build +++ /dev/null @@ -1,39 +0,0 @@ -module_name = 'libgimpbase3' - - -gnome.gtkdoc(module_name, - main_sgml: module_name + '-docs.sgml', - - gobject_typesfile: files(module_name + '.types'), - - src_dir: meson.source_root() / 'libgimpbase', - - content_files: [ - ], - ignore_headers: [ - 'gimpbase-private.h', - 'gimpbase.h', - 'gimpcompatenums.h', - 'gimpprotocol.h', - 'gimpreloc.h', - 'gimpwin32-io.h', - 'gimpwire.h', - ], - - dependencies: [ - fontconfig, freetype2, gtk3, harfbuzz, pangocairo, - declare_dependency(link_with: [ - libgimpbase, - ]), - ], - scanobjs_args: [ - ], - scan_args: scan_args_common, - mkdb_args: mkdb_args_common, - fixxref_args: [ - ], - html_assets: [ - ], - html_args: [ - ], -) diff --git a/devel-docs/libgimpcolor/.gitignore b/devel-docs/libgimpcolor/.gitignore deleted file mode 100644 index c068e03b55..0000000000 --- a/devel-docs/libgimpcolor/.gitignore +++ /dev/null @@ -1,20 +0,0 @@ -/Makefile -/Makefile.in -/deprecated -/libgimpcolor3.actions -/libgimpcolor3.args -/libgimpcolor3-decl.txt -/libgimpcolor3-decl-list.txt -/libgimpcolor3.hierarchy -/libgimpcolor3.interfaces -/libgimpcolor3.prerequisites -/libgimpcolor3.signals -/libgimpcolor3-unused.txt -/libgimpcolor3-undeclared.txt -/libgimpcolor3-undocumented.txt -/html -/tmpl -/xml -/.libs -/*.bak -/*.stamp diff --git a/devel-docs/libgimpcolor/Makefile.am b/devel-docs/libgimpcolor/Makefile.am deleted file mode 100644 index 0a9b3f24a3..0000000000 --- a/devel-docs/libgimpcolor/Makefile.am +++ /dev/null @@ -1,58 +0,0 @@ -## Process this file with automake to produce Makefile.in - -# The name of the module. -DOC_MODULE = libgimpcolor3 - -# The top-level SGML file. -DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml - -# The directory containing the source code. -DOC_SOURCE_DIR = $(top_srcdir)/libgimpcolor - -# 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 - -# Extra options to supply to gtkdoc-fixref -FIXXREF_OPTIONS = - -# Used for dependencies -HFILE_GLOB = $(DOC_SOURCE_DIR)/*.h -CFILE_GLOB = $(DOC_SOURCE_DIR)/*.c - -# Header files to ignore when scanning -IGNORE_HFILES = gimpcolor.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 \ - @GLIB_LIBS@ - - -include $(top_srcdir)/gtk-doc.make - -# This is a hack. The entire commit must be reverted once -# this file gets removed by gtk-doc.make -CLEANFILES += $(DOC_MODULE).actions diff --git a/devel-docs/libgimpcolor/libgimpcolor3-docs.sgml b/devel-docs/libgimpcolor/libgimpcolor3-docs.sgml deleted file mode 100644 index 9810c3c602..0000000000 --- a/devel-docs/libgimpcolor/libgimpcolor3-docs.sgml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - GIMP 3 Color Library Reference Manual - - for GIMP - - - - - GIMP Color Library - - - - - - - - - - - - - - - Index - - - - Index of new symbols in GIMP 2.2 - - - - Index of new symbols in GIMP 2.4 - - - - Index of new symbols in GIMP 2.6 - - - - Index of new symbols in GIMP 2.8 - - - - Index of new symbols in GIMP 2.10 - - - - Index of new symbols in GIMP 2.10.6 - - - - Index of new symbols in GIMP 2.10.6 - - - - Index of deprecated symbols - - - - - diff --git a/devel-docs/libgimpcolor/libgimpcolor3-overrides.txt b/devel-docs/libgimpcolor/libgimpcolor3-overrides.txt deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/devel-docs/libgimpcolor/libgimpcolor3-sections.txt b/devel-docs/libgimpcolor/libgimpcolor3-sections.txt deleted file mode 100644 index 7bd2a67597..0000000000 --- a/devel-docs/libgimpcolor/libgimpcolor3-sections.txt +++ /dev/null @@ -1,212 +0,0 @@ -
-gimpcmyk -GimpCMYK -gimp_cmyk_set -gimp_cmyk_set_uchar -gimp_cmyk_get_uchar -gimp_cmyka_set -gimp_cmyka_set_uchar -gimp_cmyka_get_uchar -GIMP_TYPE_CMYK - -gimp_cmyk_get_type -
- -
-gimphsv -GimpHSV -GimpHSL -gimp_hsv_set -gimp_hsv_clamp -gimp_hsva_set -gimp_hsl_set -gimp_hsl_set_alpha -GIMP_TYPE_HSV -GIMP_TYPE_HSL - -gimp_hsv_get_type -gimp_hsl_get_type -
- -
-gimppixbuf -gimp_pixbuf_get_format -gimp_pixbuf_create_buffer -gimp_pixbuf_get_icc_profile -
- -
-gimprgb -GimpRGB -GimpRGBCompositeMode -gimp_rgb_set -gimp_rgb_set_alpha -gimp_rgb_set_pixel -gimp_rgb_get_pixel -gimp_rgb_set_uchar -gimp_rgb_get_uchar -gimp_rgb_parse_name -gimp_rgb_parse_hex -gimp_rgb_parse_css -gimp_rgb_list_names -gimp_rgb_add -gimp_rgb_subtract -gimp_rgb_multiply -gimp_rgb_distance -gimp_rgb_max -gimp_rgb_min -gimp_rgb_clamp -gimp_rgb_gamma -gimp_rgb_luminance -gimp_rgb_luminance_uchar -gimp_rgb_composite -gimp_rgba_set -gimp_rgba_set_pixel -gimp_rgba_get_pixel -gimp_rgba_set_uchar -gimp_rgba_get_uchar -gimp_rgba_parse_css -gimp_rgba_add -gimp_rgba_subtract -gimp_rgba_multiply -gimp_rgba_distance -GIMP_RGB_LUMINANCE -GIMP_RGB_LUMINANCE_RED -GIMP_RGB_LUMINANCE_GREEN -GIMP_RGB_LUMINANCE_BLUE -GIMP_TYPE_RGB -GIMP_TYPE_PARAM_RGB -gimp_param_spec_rgb -gimp_param_spec_rgb_get_default -gimp_param_spec_rgb_has_alpha -GIMP_VALUE_HOLDS_RGB -gimp_value_get_rgb -gimp_value_set_rgb - -GimpParamSpecRGB -GIMP_IS_PARAM_SPEC_RGB -gimp_param_rgb_get_type -gimp_rgb_get_type -
- -
-gimpcolorspace -GimpColorSpace -gimp_rgb_to_hsv -gimp_rgb_to_hsl -gimp_rgb_to_cmyk -gimp_hsv_to_rgb -gimp_hsl_to_rgb -gimp_cmyk_to_rgb -
- -
-gimpcolormanaged -GimpColorManaged -GimpColorManagedInterface -gimp_color_managed_get_icc_profile -gimp_color_managed_get_color_profile -gimp_color_managed_profile_changed - -GIMP_COLOR_MANAGED -GIMP_IS_COLOR_MANAGED -GIMP_TYPE_COLOR_MANAGED -GIMP_COLOR_MANAGED_GET_IFACE -gimp_color_managed_get_type -gimp_color_managed_interface_get_type -
- -
-gimpcolorprofile -GimpColorProfile -gimp_color_profile_new_rgb_srgb -gimp_color_profile_new_rgb_srgb_linear -gimp_color_profile_new_rgb_adobe -gimp_color_profile_new_d65_gray_srgb_trc -gimp_color_profile_new_d65_gray_linear -gimp_color_profile_new_d50_gray_lab_trc -gimp_color_profile_new_srgb_trc_from_color_profile -gimp_color_profile_new_linear_from_color_profile -gimp_color_profile_new_from_file -gimp_color_profile_new_from_icc_profile -gimp_color_profile_new_from_lcms_profile -gimp_color_profile_save_to_file -gimp_color_profile_get_icc_profile -gimp_color_profile_get_lcms_profile -gimp_color_profile_get_description -gimp_color_profile_get_manufacturer -gimp_color_profile_get_model -gimp_color_profile_get_copyright -gimp_color_profile_get_label -gimp_color_profile_get_summary -gimp_color_profile_is_equal -gimp_color_profile_is_rgb -gimp_color_profile_is_gray -gimp_color_profile_is_cmyk -gimp_color_profile_is_linear -gimp_color_profile_get_space -gimp_color_profile_get_format -gimp_color_profile_get_lcms_format - -GIMP_COLOR_PROFILE -GIMP_COLOR_PROFILE_CLASS -GIMP_COLOR_PROFILE_GET_CLASS -GIMP_IS_COLOR_PROFILE -GIMP_IS_COLOR_PROFILE_CLASS -GIMP_TYPE_COLOR_PROFILE -GimpColorProfileClass -GimpColorProfilePrivate -gimp_color_profile_get_type -
- -
-gimpcolortransform -GimpColorTransformFlags -GimpColorTransform -gimp_color_transform_new -gimp_color_transform_new_proofing -gimp_color_transform_process_pixels -gimp_color_transform_process_buffer -gimp_color_transform_can_gegl_copy - -GIMP_COLOR_TRANSFORM -GIMP_COLOR_TRANSFORM_CLASS -GIMP_COLOR_TRANSFORM_GET_CLASS -GIMP_IS_COLOR_TRANSFORM -GIMP_IS_COLOR_TRANSFORM_CLASS -GIMP_TYPE_COLOR_TRANSFORM -GimpColorTransformClass -GimpColorTransformPrivate -gimp_color_transform_get_type -
- -
-gimpadaptivesupersample -GimpProgressFunc -GimpPutPixelFunc -GimpRenderFunc -gimp_adaptive_supersample_area -
- -
-gimpbilinear -gimp_bilinear -gimp_bilinear_8 -gimp_bilinear_16 -gimp_bilinear_32 -gimp_bilinear_rgb -gimp_bilinear_rgba -
- -
-gimpcairo -gimp_cairo_set_source_rgb -gimp_cairo_set_source_rgba -gimp_cairo_checkerboard_create -gimp_cairo_surface_get_format -gimp_cairo_surface_create_buffer -GIMP_CAIRO_RGB24_SET_PIXEL -GIMP_CAIRO_RGB24_GET_PIXEL -GIMP_CAIRO_ARGB32_SET_PIXEL -GIMP_CAIRO_ARGB32_GET_PIXEL -
diff --git a/devel-docs/libgimpcolor/libgimpcolor3.types b/devel-docs/libgimpcolor/libgimpcolor3.types deleted file mode 100644 index 8d46eca1a7..0000000000 --- a/devel-docs/libgimpcolor/libgimpcolor3.types +++ /dev/null @@ -1,3 +0,0 @@ -gimp_color_managed_get_type -gimp_color_profile_get_type -gimp_color_transform_get_type diff --git a/devel-docs/libgimpcolor/meson.build b/devel-docs/libgimpcolor/meson.build deleted file mode 100644 index 24a11660e9..0000000000 --- a/devel-docs/libgimpcolor/meson.build +++ /dev/null @@ -1,21 +0,0 @@ -module_name = 'libgimpcolor3' - - -gnome.gtkdoc(module_name, - main_sgml: module_name + '-docs.sgml', - gobject_typesfile: files(module_name + '.types'), - src_dir: meson.source_root() / 'libgimpcolor', - - ignore_headers: [ - ], - - dependencies: [ - fontconfig, freetype2, gtk3, harfbuzz, pangocairo, - declare_dependency(link_with: [ - libgimpbase, - libgimpcolor, - ]), - ], - scan_args: scan_args_common, - mkdb_args: mkdb_args_common, -) diff --git a/devel-docs/libgimpconfig/.gitignore b/devel-docs/libgimpconfig/.gitignore deleted file mode 100644 index 472b00de8a..0000000000 --- a/devel-docs/libgimpconfig/.gitignore +++ /dev/null @@ -1,20 +0,0 @@ -/Makefile -/Makefile.in -/deprecated -/libgimpconfig3.actions -/libgimpconfig3.args -/libgimpconfig3-decl.txt -/libgimpconfig3-decl-list.txt -/libgimpconfig3.hierarchy -/libgimpconfig3.interfaces -/libgimpconfig3.prerequisites -/libgimpconfig3.signals -/libgimpconfig3-unused.txt -/libgimpconfig3-undeclared.txt -/libgimpconfig3-undocumented.txt -/html -/tmpl -/xml -/.libs -/*.bak -/*.stamp diff --git a/devel-docs/libgimpconfig/Makefile.am b/devel-docs/libgimpconfig/Makefile.am deleted file mode 100644 index 3f88f4885e..0000000000 --- a/devel-docs/libgimpconfig/Makefile.am +++ /dev/null @@ -1,64 +0,0 @@ -## Process this file with automake to produce Makefile.in - -# The name of the module. -DOC_MODULE = libgimpconfig3 - -# The top-level SGML file. -DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml - -# The directory containing the source code. -DOC_SOURCE_DIR = $(top_srcdir)/libgimpconfig - -# 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 - -# This is a hack. The entire commit must be reverted once -# this file gets removed by gtk-doc.make -CLEANFILES += $(DOC_MODULE).actions diff --git a/devel-docs/libgimpconfig/libgimpconfig3-docs.sgml b/devel-docs/libgimpconfig/libgimpconfig3-docs.sgml deleted file mode 100644 index 7ece4e370d..0000000000 --- a/devel-docs/libgimpconfig/libgimpconfig3-docs.sgml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - GIMP 3 Config Library Reference Manual - - for GIMP - - - - - GIMP Config Library - - - Object Hierarchy - - - - - - - - - - - - - - - - - - Index - - - - Index of new symbols in GIMP 2.4 - - - - Index of new symbols in GIMP 2.6 - - - - Index of new symbols in GIMP 2.8 - - - - Index of new symbols in GIMP 2.10 - - - - Index of new symbols in GIMP 2.10.6 - - - - Index of new symbols in GIMP 3.0 - - - - Index of deprecated symbols - - - - - diff --git a/devel-docs/libgimpconfig/libgimpconfig3-overrides.txt b/devel-docs/libgimpconfig/libgimpconfig3-overrides.txt deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/devel-docs/libgimpconfig/libgimpconfig3-sections.txt b/devel-docs/libgimpconfig/libgimpconfig3-sections.txt deleted file mode 100644 index 2ff106e841..0000000000 --- a/devel-docs/libgimpconfig/libgimpconfig3-sections.txt +++ /dev/null @@ -1,206 +0,0 @@ -
-gimpconfig-iface -GimpConfig -GimpConfig -GimpConfigInterface -gimp_config_serialize -gimp_config_serialize_to_file -gimp_config_serialize_to_stream -gimp_config_serialize_to_fd -gimp_config_serialize_to_string -gimp_config_serialize_to_parasite -gimp_config_deserialize -gimp_config_deserialize_file -gimp_config_deserialize_stream -gimp_config_deserialize_string -gimp_config_deserialize_parasite -gimp_config_deserialize_return -gimp_config_duplicate -gimp_config_is_equal_to -gimp_config_reset -gimp_config_copy - -GIMP_CONFIG -GIMP_IS_CONFIG -GIMP_TYPE_CONFIG -GIMP_CONFIG_GET_IFACE -gimp_config_get_type -
- -
-gimpconfig-deserialize -gimp_config_deserialize_properties -gimp_config_deserialize_property -
- -
-gimpconfig-error -GimpConfigError -GimpConfigError -GIMP_CONFIG_ERROR -gimp_config_error_quark -
- -
-gimpconfig-params -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_param_spec_duplicate -
- -
-gimpconfig-path -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_config_build_system_path -GIMP_VALUE_HOLDS_CONFIG_PATH - -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 -
- -
-gimpconfig-register -gimp_config_type_register -
- -
-gimpconfig-serialize -gimp_config_serialize_properties -gimp_config_serialize_changed_properties -gimp_config_serialize_property -gimp_config_serialize_property_by_name -gimp_config_serialize_value -
- -
-gimpconfig-utils -gimp_config_diff -gimp_config_sync -gimp_config_reset_properties -gimp_config_reset_property -gimp_config_string_append_escaped -
- -
-gimpconfigwriter -GimpConfigWriter -GimpConfigWriter -gimp_config_writer_new_from_file -gimp_config_writer_new_from_stream -gimp_config_writer_new_from_fd -gimp_config_writer_new_from_string -gimp_config_writer_ref -gimp_config_writer_unref -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 - -GIMP_TYPE_CONFIG_WRITER -gimp_config_writer_get_type -
- -
-gimpscanner -GimpScanner -gimp_scanner_new_file -gimp_scanner_new_stream -gimp_scanner_new_string -gimp_scanner_ref -gimp_scanner_unref -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 - -GimpScanner -GIMP_TYPE_SCANNER -gimp_scanner_get_type -
- -
-gimpcolorconfig -GimpColorConfig -GimpColorManagementMode -GimpColorRenderingIntent -GimpColorConfig -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_out_of_gamut_color -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 - -GimpColorConfigClass -GimpColorConfigPrivate -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 -
diff --git a/devel-docs/libgimpconfig/libgimpconfig3.types b/devel-docs/libgimpconfig/libgimpconfig3.types deleted file mode 100644 index 63f8dfd248..0000000000 --- a/devel-docs/libgimpconfig/libgimpconfig3.types +++ /dev/null @@ -1,7 +0,0 @@ -#include -#include - -gimp_config_get_type -gimp_color_config_get_type -gimp_config_writer_get_type -gimp_scanner_get_type diff --git a/devel-docs/libgimpconfig/meson.build b/devel-docs/libgimpconfig/meson.build deleted file mode 100644 index 13316d1161..0000000000 --- a/devel-docs/libgimpconfig/meson.build +++ /dev/null @@ -1,30 +0,0 @@ -module_name = 'libgimpconfig3' - - -gnome.gtkdoc(module_name, - main_sgml: module_name + '-docs.sgml', - gobject_typesfile: files(module_name + '.types'), - src_dir: meson.source_root() / 'libgimpconfig', - - ignore_headers: [ - ], - - dependencies: [ - fontconfig, freetype2, gtk3, harfbuzz, pangocairo, - declare_dependency( - include_directories: rootInclude, - link_with: [ - libgimpbase, - libgimpcolor, - libgimpmath, - libgimpconfig, - ]), - ], - scan_args: scan_args_common, - mkdb_args: mkdb_args_common, - fixxref_args: [ - '--extra-dir='+ devel_docs_build_root / 'libgimpbase' / 'html', - '--extra-dir='+ devel_docs_build_root / 'libgimpcolor' / 'html', - '--extra-dir='+ devel_docs_build_root / 'libgimpmath' / 'html', - ], -) diff --git a/devel-docs/libgimpmath/.gitignore b/devel-docs/libgimpmath/.gitignore deleted file mode 100644 index af372db284..0000000000 --- a/devel-docs/libgimpmath/.gitignore +++ /dev/null @@ -1,19 +0,0 @@ -/Makefile -/Makefile.in -/deprecated -/libgimpmath3.args -/libgimpmath3-decl.txt -/libgimpmath3-decl-list.txt -/libgimpmath3.hierarchy -/libgimpmath3.interfaces -/libgimpmath3.prerequisites -/libgimpmath3.signals -/libgimpmath3-unused.txt -/libgimpmath3-undeclared.txt -/libgimpmath3-undocumented.txt -/html -/tmpl -/xml -/.libs -/*.bak -/*.stamp diff --git a/devel-docs/libgimpmath/Makefile.am b/devel-docs/libgimpmath/Makefile.am deleted file mode 100644 index 4aad302dbc..0000000000 --- a/devel-docs/libgimpmath/Makefile.am +++ /dev/null @@ -1,50 +0,0 @@ -## Process this file with automake to produce Makefile.in - -# The name of the module. -DOC_MODULE = libgimpmath3 - -# The top-level SGML file. -DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml - -# The directory containing the source code. -DOC_SOURCE_DIR = $(top_srcdir)/libgimpmath - -# Extra options to pass to gtkdoc-scangobj -SCANGOBJ_OPTIONS = - -# Extra options to supply to gtkdoc-scan -SCAN_OPTIONS = - -# 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 = - -# Used for dependencies -HFILE_GLOB = $(DOC_SOURCE_DIR)/*.h -CFILE_GLOB = $(DOC_SOURCE_DIR)/*.c - -# Header files to ignore when scanning -IGNORE_HFILES = - -# 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 = -GTKDOC_LIBS = - - -include $(top_srcdir)/gtk-doc.make - -# This is a hack. The entire commit must be reverted once -# this file gets removed by gtk-doc.make -CLEANFILES += $(DOC_MODULE).actions diff --git a/devel-docs/libgimpmath/libgimpmath3-docs.sgml b/devel-docs/libgimpmath/libgimpmath3-docs.sgml deleted file mode 100644 index b78dce9fe1..0000000000 --- a/devel-docs/libgimpmath/libgimpmath3-docs.sgml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - GIMP 3 Math Library Reference Manual - - for GIMP - - - - - GIMP Math Library - - - - - - - Index - - - - Index of new symbols in GIMP 2.4 - - - - Index of new symbols in GIMP 2.8 - - - - Index of new symbols in GIMP 2.10 - - - - Index of new symbols in GIMP 2.10.16 - - - - Index of deprecated symbols - - - - - diff --git a/devel-docs/libgimpmath/libgimpmath3-overrides.txt b/devel-docs/libgimpmath/libgimpmath3-overrides.txt deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/devel-docs/libgimpmath/libgimpmath3-sections.txt b/devel-docs/libgimpmath/libgimpmath3-sections.txt deleted file mode 100644 index 93f1fbf6fc..0000000000 --- a/devel-docs/libgimpmath/libgimpmath3-sections.txt +++ /dev/null @@ -1,119 +0,0 @@ -
-gimpmath -GimpMath -RINT -ROUND -SIGNED_ROUND -SQR -MAX255 -CLAMP0255 -SAFE_CLAMP -gimp_deg_to_rad -gimp_rad_to_deg -
- -
-gimpmatrix -GimpMatrix -GimpMatrix2 -GimpMatrix3 -GimpMatrix4 -gimp_matrix2_identity -gimp_matrix2_mult -gimp_matrix2_determinant -gimp_matrix2_invert -gimp_matrix2_transform_point -gimp_matrix3_identity -gimp_matrix3_mult -gimp_matrix3_translate -gimp_matrix3_scale -gimp_matrix3_rotate -gimp_matrix3_xshear -gimp_matrix3_yshear -gimp_matrix3_affine -gimp_matrix3_transform_point -gimp_matrix3_determinant -gimp_matrix3_invert -gimp_matrix3_is_identity -gimp_matrix3_is_diagonal -gimp_matrix3_is_affine -gimp_matrix3_is_simple -gimp_matrix3_equal -gimp_matrix4_identity -gimp_matrix4_mult -gimp_matrix4_to_deg -gimp_matrix4_transform_point -GIMP_TYPE_MATRIX2 -GIMP_TYPE_PARAM_MATRIX2 -GIMP_IS_PARAM_SPEC_MATRIX2 -gimp_param_spec_matrix2 -GIMP_VALUE_HOLDS_MATRIX2 -GIMP_TYPE_MATRIX3 -GIMP_TYPE_PARAM_MATRIX3 -GIMP_IS_PARAM_SPEC_MATRIX3 -gimp_param_spec_matrix3 -GIMP_VALUE_HOLDS_MATRIX3 - -gimp_matrix2_get_type -gimp_param_matrix2_get_type -gimp_matrix3_get_type -gimp_param_matrix3_get_type -
- -
-gimpvector -GimpVector -GimpVector2 -GimpVector3 -GimpVector4 -gimp_vector2_new -gimp_vector2_set -gimp_vector2_length -gimp_vector2_length_val -gimp_vector2_mul -gimp_vector2_mul_val -gimp_vector2_normal -gimp_vector2_normal_val -gimp_vector2_normalize -gimp_vector2_normalize_val -gimp_vector2_neg -gimp_vector2_neg_val -gimp_vector2_add -gimp_vector2_add_val -gimp_vector2_sub -gimp_vector2_sub_val -gimp_vector2_inner_product -gimp_vector2_inner_product_val -gimp_vector2_cross_product -gimp_vector2_cross_product_val -gimp_vector2_rotate -gimp_vector2_rotate_val -gimp_vector3_new -gimp_vector3_set -gimp_vector3_length -gimp_vector3_length_val -gimp_vector3_mul -gimp_vector3_mul_val -gimp_vector3_normalize -gimp_vector3_normalize_val -gimp_vector3_neg -gimp_vector3_neg_val -gimp_vector3_add -gimp_vector3_add_val -gimp_vector3_sub -gimp_vector3_sub_val -gimp_vector3_inner_product -gimp_vector3_inner_product_val -gimp_vector3_cross_product -gimp_vector3_cross_product_val -gimp_vector3_rotate -gimp_vector3_rotate_val -gimp_vector_2d_to_3d -gimp_vector_2d_to_3d_val -gimp_vector_3d_to_2d - -GIMP_TYPE_VECTOR2 -GIMP_TYPE_VECTOR3 -gimp_vector2_get_type -gimp_vector3_get_type -
diff --git a/devel-docs/libgimpmath/libgimpmath3.types b/devel-docs/libgimpmath/libgimpmath3.types deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/devel-docs/libgimpmath/meson.build b/devel-docs/libgimpmath/meson.build deleted file mode 100644 index bf838c084a..0000000000 --- a/devel-docs/libgimpmath/meson.build +++ /dev/null @@ -1,14 +0,0 @@ -module_name = 'libgimpmath3' - - -gnome.gtkdoc(module_name, - main_sgml: module_name + '-docs.sgml', - gobject_typesfile: files(module_name + '.types'), - src_dir: meson.source_root() / 'libgimpmath', - - dependencies: [ - fontconfig, freetype2, gtk3, harfbuzz, pangocairo, - ], - scan_args: scan_args_common, - mkdb_args: mkdb_args_common, -) diff --git a/devel-docs/libgimpmodule/.gitignore b/devel-docs/libgimpmodule/.gitignore deleted file mode 100644 index 8748561eb9..0000000000 --- a/devel-docs/libgimpmodule/.gitignore +++ /dev/null @@ -1,20 +0,0 @@ -/Makefile -/Makefile.in -/deprecated -/libgimpmodule3.actions -/libgimpmodule3.args -/libgimpmodule3.hierarchy -/libgimpmodule3.interfaces -/libgimpmodule3.prerequisites -/libgimpmodule3.signals -/libgimpmodule3-decl.txt -/libgimpmodule3-decl-list.txt -/libgimpmodule3-unused.txt -/libgimpmodule3-undeclared.txt -/libgimpmodule3-undocumented.txt -/html -/tmpl -/xml -/.libs -/*.bak -/*.stamp diff --git a/devel-docs/libgimpmodule/Makefile.am b/devel-docs/libgimpmodule/Makefile.am deleted file mode 100644 index 2c8f564750..0000000000 --- a/devel-docs/libgimpmodule/Makefile.am +++ /dev/null @@ -1,59 +0,0 @@ -## Process this file with automake to produce Makefile.in - -# The name of the module. -DOC_MODULE = libgimpmodule3 - -# The top-level SGML file. -DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml - -# The directory containing the source code. -DOC_SOURCE_DIR = $(top_srcdir)/libgimpmodule - -# 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 = - -# Used for dependencies -HFILE_GLOB = $(DOC_SOURCE_DIR)/*.h -CFILE_GLOB = $(DOC_SOURCE_DIR)/*.c - -# Header files to ignore when scanning -IGNORE_HFILES = - -# 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) \ - @GIO_CFLAGS@ \ - @GMODULE_NO_EXPORT_CFLAGS@ - -GTKDOC_LIBS = \ - $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ - @GIO_LIBS@ \ - @GMODULE_NO_EXPORT_LIBS@ - - -include $(top_srcdir)/gtk-doc.make - -# This is a hack. The entire commit must be reverted once -# this file gets removed by gtk-doc.make -CLEANFILES += $(DOC_MODULE).actions diff --git a/devel-docs/libgimpmodule/libgimpmodule3-docs.sgml b/devel-docs/libgimpmodule/libgimpmodule3-docs.sgml deleted file mode 100644 index be706b76d9..0000000000 --- a/devel-docs/libgimpmodule/libgimpmodule3-docs.sgml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - GIMP 3 Module Library Reference Manual - - for GIMP - - - - - GIMP Module Library - - - - - - Index - - - - Index of new symbols in GIMP 2.8 - - - - Index of new symbols in GIMP 3.0 - - - - Index of deprecated symbols - - - - - diff --git a/devel-docs/libgimpmodule/libgimpmodule3-overrides.txt b/devel-docs/libgimpmodule/libgimpmodule3-overrides.txt deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/devel-docs/libgimpmodule/libgimpmodule3-sections.txt b/devel-docs/libgimpmodule/libgimpmodule3-sections.txt deleted file mode 100644 index 747635679c..0000000000 --- a/devel-docs/libgimpmodule/libgimpmodule3-sections.txt +++ /dev/null @@ -1,57 +0,0 @@ -
-gimpmodule -GimpModuleInfo -GimpModuleState -GimpModuleQueryFunc -GimpModuleRegisterFunc -GIMP_MODULE_ERROR -GimpModuleError -GIMP_MODULE_ABI_VERSION -GimpModule -gimp_module_new -gimp_module_query_module -gimp_module_get_file -gimp_module_get_auto_load -gimp_module_set_auto_load -gimp_module_is_loaded -gimp_module_is_on_disk -gimp_module_get_info -gimp_module_get_last_error -gimp_module_get_state -gimp_module_error_quark - -GimpModule -GimpModuleClass -GimpModulePrivate -GIMP_MODULE -GIMP_IS_MODULE -GIMP_TYPE_MODULE -gimp_module_get_type -GIMP_MODULE_CLASS -GIMP_IS_MODULE_CLASS -GIMP_MODULE_GET_CLASS -
- -
-gimpmoduledb -GimpModuleDB -gimp_module_db_new -gimp_module_db_get_modules -gimp_module_db_get_verbose -gimp_module_db_set_verbose -gimp_module_db_set_load_inhibit -gimp_module_db_get_load_inhibit -gimp_module_db_load -gimp_module_db_refresh - -GimpModuleDB -GimpModuleDBClass -GimpModuleDBPrivate -GIMP_MODULE_DB -GIMP_IS_MODULE_DB -GIMP_TYPE_MODULE_DB -gimp_module_db_get_type -GIMP_MODULE_DB_CLASS -GIMP_IS_MODULE_DB_CLASS -GIMP_MODULE_DB_GET_CLASS -
diff --git a/devel-docs/libgimpmodule/libgimpmodule3.types b/devel-docs/libgimpmodule/libgimpmodule3.types deleted file mode 100644 index 389ec65740..0000000000 --- a/devel-docs/libgimpmodule/libgimpmodule3.types +++ /dev/null @@ -1,6 +0,0 @@ -#include -#include - -gimp_module_get_type -gimp_module_db_get_type - diff --git a/devel-docs/libgimpmodule/meson.build b/devel-docs/libgimpmodule/meson.build deleted file mode 100644 index 64ec711983..0000000000 --- a/devel-docs/libgimpmodule/meson.build +++ /dev/null @@ -1,23 +0,0 @@ -module_name = 'libgimpmodule3' - - -gnome.gtkdoc(module_name, - main_sgml: module_name + '-docs.sgml', - gobject_typesfile: files(module_name + '.types'), - src_dir: meson.source_root() / 'libgimpmodule', - - dependencies: [ - fontconfig, freetype2, gtk3, harfbuzz, pangocairo, - declare_dependency( - include_directories: rootInclude, - link_with: [ - libgimpmodule, - ], - ) - ], - - scan_args: scan_args_common + [ - '--deprecated-guards="GIMP_DISABLE_DEPRECATED"' - ], - mkdb_args: mkdb_args_common, -) diff --git a/devel-docs/libgimpthumb/.gitignore b/devel-docs/libgimpthumb/.gitignore deleted file mode 100644 index 669d8b67e9..0000000000 --- a/devel-docs/libgimpthumb/.gitignore +++ /dev/null @@ -1,20 +0,0 @@ -/Makefile -/Makefile.in -/deprecated -/libgimpthumb3.actions -/libgimpthumb3.args -/libgimpthumb3.hierarchy -/libgimpthumb3.interfaces -/libgimpthumb3.prerequisites -/libgimpthumb3.signals -/libgimpthumb3-decl.txt -/libgimpthumb3-decl-list.txt -/libgimpthumb3-unused.txt -/libgimpthumb3-undeclared.txt -/libgimpthumb3-undocumented.txt -/html -/tmpl -/xml -/.libs -/*.bak -/*.stamp diff --git a/devel-docs/libgimpthumb/Makefile.am b/devel-docs/libgimpthumb/Makefile.am deleted file mode 100644 index f647476e45..0000000000 --- a/devel-docs/libgimpthumb/Makefile.am +++ /dev/null @@ -1,59 +0,0 @@ -## Process this file with automake to produce Makefile.in - -# The name of the module. -DOC_MODULE = libgimpthumb3 - -# The top-level SGML file. -DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml - -# The directory containing the source code. -DOC_SOURCE_DIR = $(top_srcdir)/libgimpthumb - -# Extra options to pass to gtkdoc-scangobj -SCANGOBJ_OPTIONS = - -# Extra options to supply to gtkdoc-scan -SCAN_OPTIONS = - -# 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=../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 = libgimpthumb.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) \ - @GDK_PIXBUF_CFLAGS@ - -GTKDOC_LIBS = \ - $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la \ - @GDK_PIXBUF_LIBS@ - - -include $(top_srcdir)/gtk-doc.make - -# This is a hack. The entire commit must be reverted once -# this file gets removed by gtk-doc.make -CLEANFILES += $(DOC_MODULE).actions diff --git a/devel-docs/libgimpthumb/libgimpthumb3-docs.sgml b/devel-docs/libgimpthumb/libgimpthumb3-docs.sgml deleted file mode 100644 index 24929b7c67..0000000000 --- a/devel-docs/libgimpthumb/libgimpthumb3-docs.sgml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - GIMP 3 Thumbnail Library Reference Manual - - for GIMP - - - - - GIMP Thumbnail Library - - - - - - - - Index - - - - Index of new symbols in GIMP 2.2 - - - - Index of new symbols in GIMP 2.10 - - - - Index of deprecated symbols - - - - - diff --git a/devel-docs/libgimpthumb/libgimpthumb3-overrides.txt b/devel-docs/libgimpthumb/libgimpthumb3-overrides.txt deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/devel-docs/libgimpthumb/libgimpthumb3-sections.txt b/devel-docs/libgimpthumb/libgimpthumb3-sections.txt deleted file mode 100644 index 22019d9158..0000000000 --- a/devel-docs/libgimpthumb/libgimpthumb3-sections.txt +++ /dev/null @@ -1,67 +0,0 @@ -
-gimpthumbnail -GimpThumbnail -GimpThumbnail -gimp_thumbnail_new -gimp_thumbnail_set_uri -gimp_thumbnail_set_filename -gimp_thumbnail_set_from_thumb -gimp_thumbnail_peek_image -gimp_thumbnail_peek_thumb -gimp_thumbnail_check_thumb -gimp_thumbnail_load_thumb -gimp_thumbnail_save_thumb -gimp_thumbnail_save_thumb_local -gimp_thumbnail_save_failure -gimp_thumbnail_delete_failure -gimp_thumbnail_delete_others -gimp_thumbnail_has_failed - -GimpThumbnailClass -GimpThumbnailPrivate -GIMP_THUMBNAIL -GIMP_IS_THUMBNAIL -GIMP_TYPE_THUMBNAIL -gimp_thumbnail_get_type -GIMP_THUMBNAIL_CLASS -GIMP_IS_THUMBNAIL_CLASS -GIMP_THUMBNAIL_GET_CLASS -
- -
-gimpthumb-utils -gimp_thumb_init -gimp_thumb_get_thumb_base_dir -gimp_thumb_find_thumb -gimp_thumb_file_test -gimp_thumb_name_from_uri -gimp_thumb_ensure_thumb_dir -gimp_thumb_get_thumb_dir -gimp_thumbs_delete_for_uri -gimp_thumb_name_from_uri_local -gimp_thumb_ensure_thumb_dir_local -gimp_thumb_get_thumb_dir_local -gimp_thumbs_delete_for_uri_local -
- -
-gimpthumb-enums -GimpThumbFileType -GimpThumbSize -GimpThumbState - -GIMP_TYPE_THUMB_SIZE -gimp_thumb_file_type_get_type -GIMP_TYPE_THUMB_FILE_TYPE -gimp_thumb_size_get_type -GIMP_TYPE_THUMB_STATE -gimp_thumb_state_get_type -
- -
-gimpthumb-error -GimpThumbError -GIMP_THUMB_ERROR -gimp_thumb_error_quark -
- diff --git a/devel-docs/libgimpthumb/libgimpthumb3.types b/devel-docs/libgimpthumb/libgimpthumb3.types deleted file mode 100644 index 5db4ace123..0000000000 --- a/devel-docs/libgimpthumb/libgimpthumb3.types +++ /dev/null @@ -1,4 +0,0 @@ -#include -#include - -gimp_thumbnail_get_type diff --git a/devel-docs/libgimpthumb/meson.build b/devel-docs/libgimpthumb/meson.build deleted file mode 100644 index f38545da9a..0000000000 --- a/devel-docs/libgimpthumb/meson.build +++ /dev/null @@ -1,28 +0,0 @@ -module_name = 'libgimpthumb3' - - -gnome.gtkdoc(module_name, - main_sgml: module_name + '-docs.sgml', - gobject_typesfile: files(module_name + '.types'), - src_dir: meson.source_root() / 'libgimpthumb', - - ignore_headers: [ - 'libgimpthumb.h', - ], - - dependencies: [ - fontconfig, freetype2, gtk3, harfbuzz, pangocairo, - declare_dependency( - include_directories: rootInclude, - link_with: [ - libgimpmath, - libgimpthumb, - ]), - ], - - scan_args: scan_args_common, - mkdb_args: mkdb_args_common, - fixxref_args: [ - '--extra-dir='+ devel_docs_build_root / 'libgimpmath' / 'html', - ], -) diff --git a/devel-docs/libgimpwidgets/.gitignore b/devel-docs/libgimpwidgets/.gitignore deleted file mode 100644 index 489b5901c1..0000000000 --- a/devel-docs/libgimpwidgets/.gitignore +++ /dev/null @@ -1,19 +0,0 @@ -/Makefile -/Makefile.in -/deprecated -/libgimpwidgets3.actions -/libgimpwidgets3.args -/libgimpwidgets3.hierarchy -/libgimpwidgets3.interfaces -/libgimpwidgets3.prerequisites -/libgimpwidgets3.signals -/libgimpwidgets3-decl.txt -/libgimpwidgets3-decl-list.txt -/libgimpwidgets3-unused.txt -/libgimpwidgets3-undeclared.txt -/libgimpwidgets3-undocumented.txt -/html -/xml -/.libs -/*.bak -/*.stamp diff --git a/devel-docs/libgimpwidgets/Makefile.am b/devel-docs/libgimpwidgets/Makefile.am deleted file mode 100644 index 8da2dd3d0f..0000000000 --- a/devel-docs/libgimpwidgets/Makefile.am +++ /dev/null @@ -1,89 +0,0 @@ -## Process this file with automake to produce Makefile.in - -# The name of the module. -DOC_MODULE = libgimpwidgets3 - -# The top-level SGML file. -DOC_MAIN_SGML_FILE = $(DOC_MODULE)-docs.sgml - -# The directory containing the source code. -DOC_SOURCE_DIR = $(top_srcdir)/libgimpwidgets - -# Extra options to pass to gtkdoc-scangobj -# make sure babl is initialized, otherwise we segfault. -SCANGOBJ_OPTIONS = --type-init-func="do { void babl_init (void); babl_init (); } while (0)" - -# 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=../libgimpconfig/html \ - --extra-dir=../libgimpmath/html \ - --extra-dir=../libgimp/html - -# Used for dependencies -HFILE_GLOB = $(DOC_SOURCE_DIR)/*.h -CFILE_GLOB = $(DOC_SOURCE_DIR)/*.c - -# Header files to ignore when scanning -IGNORE_HFILES = \ - gimp-icon-pixbufs.h \ - gimp-color-picker-cursors.h \ - gimpcolorprofilestore-private.h \ - gimpeevl.h \ - gimpwidgets-private.h - -# Images to copy into HTML directory -HTML_IMAGES = \ - $(top_srcdir)/icons/Color/12/gimp-*.png \ - $(top_srcdir)/icons/Color/16/gimp-*.png \ - $(top_srcdir)/icons/Color/18/gimp-*.png \ - $(top_srcdir)/icons/Color/20/gimp-*.png \ - $(top_srcdir)/icons/Color/22/gimp-*.png \ - $(top_srcdir)/icons/Color/24/gimp-*.png \ - $(top_srcdir)/icons/Color/32/gimp-*.png \ - $(top_srcdir)/icons/Color/48/gimp-*.png \ - $(top_srcdir)/icons/Color/64/gimp-*.png \ - $(top_srcdir)/icons/Color/128/gimp-*.png \ - $(top_srcdir)/icons/Color/192/gimp-*.png \ - $(top_srcdir)/icons/Color/256/gimp-*.png \ - $(srcdir)/images/gimp-widget-*.png - -# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE) -content_files = visual-index.xml - -# 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) \ - @GEGL_CFLAGS@ \ - @GTK_CFLAGS@ \ - -DGIMP_ENABLE_CONTROLLER_UNDER_CONSTRUCTION \ - -UGIMP_DISABLE_DEPRECATED - -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 \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - @GEGL_LIBS@ \ - @GTK_LIBS@ - - -include $(top_srcdir)/gtk-doc.make - -# This is a hack. The entire commit must be reverted once -# this file gets removed by gtk-doc.make -CLEANFILES += $(DOC_MODULE).actions diff --git a/devel-docs/libgimpwidgets/libgimpwidgets3-docs.sgml b/devel-docs/libgimpwidgets/libgimpwidgets3-docs.sgml deleted file mode 100644 index 1f9ea46579..0000000000 --- a/devel-docs/libgimpwidgets/libgimpwidgets3-docs.sgml +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - - GIMP 3 Widgets Library Reference Manual - - for GIMP - - - - - GIMP Widgets - - - Object Hierarchy - - - - Widget Gallery - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Cell Renderers for GtkTreeView - - - - - - GIMP Display Filters - - - - - - GIMP Color Selectors - - - - - - - - GIMP Controllers - - Note that the controller API is work in progress. - - - - - - GIMP Widgets Utilities - - - - - - - - - - - - Index - - - - Index of new symbols in GIMP 2.0 - - - - Index of new symbols in GIMP 2.2 - - - - Index of new symbols in GIMP 2.4 - - - - Index of new symbols in GIMP 2.6 - - - - Index of new symbols in GIMP 2.8 - - - - Index of new symbols in GIMP 2.10 - - - - Index of new symbols in GIMP 2.10.4 - - - - Index of new symbols in GIMP 2.10.10 - - - - Index of new symbols in GIMP 3.0 - - - - Index of deprecated symbols - - - - - diff --git a/devel-docs/libgimpwidgets/libgimpwidgets3-overrides.txt b/devel-docs/libgimpwidgets/libgimpwidgets3-overrides.txt deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/devel-docs/libgimpwidgets/libgimpwidgets3-sections.txt b/devel-docs/libgimpwidgets/libgimpwidgets3-sections.txt deleted file mode 100644 index 66e1e061fa..0000000000 --- a/devel-docs/libgimpwidgets/libgimpwidgets3-sections.txt +++ /dev/null @@ -1,1557 +0,0 @@ -
-gimpbrowser -GimpBrowser -GimpBrowser -gimp_browser_new -gimp_browser_add_search_types -gimp_browser_get_left_vbox -gimp_browser_get_right_vbox -gimp_browser_set_search_summary -gimp_browser_set_widget -gimp_browser_show_message - -GimpBrowserClass -GimpBrowserPrivate -GIMP_BROWSER -GIMP_IS_BROWSER -GIMP_TYPE_BROWSER -gimp_browser_get_type -GIMP_BROWSER_CLASS -GIMP_IS_BROWSER_CLASS -GIMP_BROWSER_GET_CLASS -
- -
-gimpbusybox -GimpBusyBox -GimpBusyBox -gimp_busy_box_new -gimp_busy_box_set_message -gimp_busy_box_get_message - -GIMP_BUSY_BOX -GIMP_IS_BUSY_BOX -GIMP_TYPE_BUSY_BOX -gimp_busy_box_get_type -GimpBusyBoxClass -GimpBusyBoxPrivate -GIMP_BUSY_BOX_CLASS -GIMP_IS_BUSY_BOX_CLASS -GIMP_BUSY_BOX_GET_CLASS -
- -
-gimpbutton -GimpButton -GimpButton -gimp_button_new -gimp_button_extended_clicked - -GimpButtonPrivate -GIMP_BUTTON -GIMP_IS_BUTTON -GIMP_TYPE_BUTTON -gimp_button_get_type -GimpButtonClass -GIMP_BUTTON_CLASS -GIMP_IS_BUTTON_CLASS -GIMP_BUTTON_GET_CLASS -
- -
-gimpcairo-utils -GimpCairoUtils -gimp_cairo_set_focus_line_pattern -gimp_cairo_surface_create_from_pixbuf -
- -
-gimpcellrenderercolor -GimpCellRendererColor -GimpCellRendererColor -gimp_cell_renderer_color_new - -GimpCellRendererColorClass -GimpCellRendererColorPrivate -GIMP_CELL_RENDERER_COLOR -GIMP_IS_CELL_RENDERER_COLOR -GIMP_TYPE_CELL_RENDERER_COLOR -gimp_cell_renderer_color_get_type -GIMP_CELL_RENDERER_COLOR_CLASS -GIMP_IS_CELL_RENDERER_COLOR_CLASS -GIMP_CELL_RENDERER_COLOR_GET_CLASS -
- -
-gimpcellrenderertoggle -GimpCellRendererToggle -GimpCellRendererToggle -gimp_cell_renderer_toggle_new -gimp_cell_renderer_toggle_clicked - -GimpCellRendererToggleClass -GimpCellRendererTogglePrivate -GIMP_CELL_RENDERER_TOGGLE -GIMP_IS_CELL_RENDERER_TOGGLE -GIMP_TYPE_CELL_RENDERER_TOGGLE -gimp_cell_renderer_toggle_get_type -GIMP_CELL_RENDERER_TOGGLE_CLASS -GIMP_IS_CELL_RENDERER_TOGGLE_CLASS -GIMP_CELL_RENDERER_TOGGLE_GET_CLASS -
- -
-gimpchainbutton -GimpChainButton -GimpChainButton -GimpChainPosition -gimp_chain_button_new -gimp_chain_button_get_icon_size -gimp_chain_button_set_icon_size -gimp_chain_button_set_active -gimp_chain_button_get_active -gimp_chain_button_get_button - -GimpChainButtonPrivate -GIMP_CHAIN_BUTTON -GIMP_IS_CHAIN_BUTTON -GIMP_TYPE_CHAIN_BUTTON -gimp_chain_button_get_type -GimpChainButtonClass -GIMP_CHAIN_BUTTON_CLASS -GIMP_IS_CHAIN_BUTTON_CLASS -GIMP_CHAIN_BUTTON_GET_CLASS -GIMP_TYPE_CHAIN_POSITION -gimp_chain_position_get_type -
- -
-gimpcolorarea -GimpColorArea -GimpColorArea -GimpColorAreaType -gimp_color_area_new -gimp_color_area_set_color -gimp_color_area_get_color -gimp_color_area_has_alpha -gimp_color_area_set_type -gimp_color_area_set_draw_border -gimp_color_area_set_out_of_gamut -gimp_color_area_set_color_config - -GimpColorAreaPrivate -GIMP_COLOR_AREA -GIMP_IS_COLOR_AREA -GIMP_TYPE_COLOR_AREA -gimp_color_area_get_type -GimpColorAreaClass -GIMP_COLOR_AREA_CLASS -GIMP_IS_COLOR_AREA_CLASS -GIMP_COLOR_AREA_GET_CLASS -GIMP_TYPE_COLOR_AREA_TYPE -gimp_color_area_type_get_type -
- -
-gimpcolorbutton -GimpColorButton -GimpColorButton -gimp_color_button_new -gimp_color_button_set_title -gimp_color_button_get_title -gimp_color_button_set_color -gimp_color_button_get_color -gimp_color_button_set_update -gimp_color_button_get_update -gimp_color_button_has_alpha -gimp_color_button_set_type -gimp_color_button_set_color_config -gimp_color_button_get_ui_manager - -GimpColorButtonPrivate -GIMP_COLOR_BUTTON -GIMP_IS_COLOR_BUTTON -GIMP_TYPE_COLOR_BUTTON -gimp_color_button_get_type -GimpColorButtonClass -GIMP_COLOR_BUTTON_CLASS -GIMP_IS_COLOR_BUTTON_CLASS -GIMP_COLOR_BUTTON_GET_CLASS -
- -
-gimpcolorhexentry -GimpColorHexEntry -GimpColorHexEntry -gimp_color_hex_entry_new -gimp_color_hex_entry_set_color -gimp_color_hex_entry_get_color - -GimpColorHexEntryClass -GimpColorHexEntryPrivate -GIMP_COLOR_HEX_ENTRY -GIMP_IS_COLOR_HEX_ENTRY -GIMP_TYPE_COLOR_HEX_ENTRY -gimp_color_hex_entry_get_type -GIMP_COLOR_HEX_ENTRY_CLASS -GIMP_IS_COLOR_HEX_ENTRY_CLASS -GIMP_COLOR_HEX_ENTRY_GET_CLASS -
- -
-gimpcolorscale -GimpColorScale -GimpColorScale -gimp_color_scale_new -gimp_color_scale_set_channel -gimp_color_scale_set_color -gimp_color_scale_set_color_config - -GimpColorScaleClass -GimpColorScalePrivate -GIMP_COLOR_SCALE -GIMP_IS_COLOR_SCALE -GIMP_TYPE_COLOR_SCALE -gimp_color_scale_get_type -GIMP_COLOR_SCALE_CLASS -GIMP_IS_COLOR_SCALE_CLASS -GIMP_COLOR_SCALE_GET_CLASS -
- -
-gimpcolorscaleentry -GimpColorScaleEntry -GimpColorScaleEntry -gimp_color_scale_entry_new - -GimpColorScaleEntryClass -GIMP_COLOR_SCALE_ENTRY -GIMP_IS_COLOR_SCALE_ENTRY -GIMP_TYPE_COLOR_SCALE_ENTRY -gimp_color_scale_entry_get_type -GIMP_COLOR_SCALE_ENTRY_CLASS -GIMP_IS_COLOR_SCALE_ENTRY_CLASS -GIMP_COLOR_SCALE_ENTRY_GET_CLASS -
- -
-gimpcolorselection -GimpColorSelection -GimpColorSelection -gimp_color_selection_new -gimp_color_selection_set_show_alpha -gimp_color_selection_get_show_alpha -gimp_color_selection_set_color -gimp_color_selection_get_color -gimp_color_selection_set_old_color -gimp_color_selection_get_old_color -gimp_color_selection_reset -gimp_color_selection_color_changed -gimp_color_selection_set_config -gimp_color_selection_get_notebook -gimp_color_selection_get_right_vbox - -GimpColorSelectionPrivate -GIMP_COLOR_SELECTION -GIMP_IS_COLOR_SELECTION -GIMP_TYPE_COLOR_SELECTION -gimp_color_selection_get_type -GimpColorSelectionClass -GIMP_COLOR_SELECTION_CLASS -GIMP_IS_COLOR_SELECTION_CLASS -GIMP_COLOR_SELECTION_GET_CLASS -
- -
-gimpcolorprofilechooserdialog -GimpColorProfileChooserDialog -gimp_color_profile_chooser_dialog_new - -GIMP_COLOR_PROFILE_CHOOSER_DIALOG -GIMP_COLOR_PROFILE_CHOOSER_DIALOG_CLASS -GIMP_COLOR_PROFILE_CHOOSER_DIALOG_GET_CLASS -GIMP_IS_COLOR_PROFILE_CHOOSER_DIALOG -GIMP_IS_COLOR_PROFILE_CHOOSER_DIALOG_CLASS -GIMP_TYPE_COLOR_PROFILE_CHOOSER_DIALOG -GimpColorProfileChooserDialog -GimpColorProfileChooserDialogClass -GimpColorProfileChooserDialogPrivate -gimp_color_profile_chooser_dialog_get_type -
- -
-gimpcolorprofilecombobox -GimpColorProfileComboBox -GimpColorProfileComboBox -gimp_color_profile_combo_box_new -gimp_color_profile_combo_box_new_with_model -gimp_color_profile_combo_box_add_file -gimp_color_profile_combo_box_set_active_file -gimp_color_profile_combo_box_get_active_file - -GimpColorProfileComboBoxClass -GimpColorProfileComboBoxPrivate -GIMP_COLOR_PROFILE_COMBO_BOX -GIMP_IS_COLOR_PROFILE_COMBO_BOX -GIMP_TYPE_COLOR_PROFILE_COMBO_BOX -gimp_color_profile_combo_box_get_type -GIMP_COLOR_PROFILE_COMBO_BOX_CLASS -GIMP_IS_COLOR_PROFILE_COMBO_BOX_CLASS -GIMP_COLOR_PROFILE_COMBO_BOX_GET_CLASS -
- -
-gimpcolorprofilestore -GimpColorProfileStore -GimpColorProfileStore -gimp_color_profile_store_new -gimp_color_profile_store_add_file - -GimpColorProfileStoreClass -GimpColorProfileStorePrivate -GIMP_COLOR_PROFILE_STORE -GIMP_IS_COLOR_PROFILE_STORE -GIMP_TYPE_COLOR_PROFILE_STORE -gimp_color_profile_store_get_type -GIMP_COLOR_PROFILE_STORE_CLASS -GIMP_IS_COLOR_PROFILE_STORE_CLASS -GIMP_COLOR_PROFILE_STORE_GET_CLASS -
- -
-gimpcolorprofileview -GimpColorProfileView -gimp_color_profile_view_new -gimp_color_profile_view_set_profile -gimp_color_profile_view_set_error - -GIMP_COLOR_PROFILE_VIEW -GIMP_COLOR_PROFILE_VIEW_CLASS -GIMP_COLOR_PROFILE_VIEW_GET_CLASS -GIMP_IS_COLOR_PROFILE_VIEW -GIMP_IS_COLOR_PROFILE_VIEW_CLASS -GIMP_TYPE_COLOR_PROFILE_VIEW -GimpColorProfileView -GimpColorProfileViewClass -GimpColorProfileViewPrivate -gimp_color_profile_view_get_type -
- -
-gimpenumstore -GimpEnumStore -GimpEnumStore -gimp_enum_store_new -gimp_enum_store_new_with_range -gimp_enum_store_new_with_values -gimp_enum_store_new_with_values_valist -gimp_enum_store_set_icon_prefix - -GimpEnumStoreClass -GimpEnumStorePrivate -GIMP_ENUM_STORE -GIMP_IS_ENUM_STORE -GIMP_TYPE_ENUM_STORE -gimp_enum_store_get_type -GIMP_ENUM_STORE_CLASS -GIMP_IS_ENUM_STORE_CLASS -GIMP_ENUM_STORE_GET_CLASS -
- -
-gimpenumcombobox -GimpEnumComboBox -GimpEnumComboBox -gimp_enum_combo_box_new -gimp_enum_combo_box_new_with_model -gimp_enum_combo_box_set_icon_prefix - -GimpEnumComboBoxClass -GimpEnumComboBoxPrivate -GIMP_ENUM_COMBO_BOX -GIMP_IS_ENUM_COMBO_BOX -GIMP_TYPE_ENUM_COMBO_BOX -gimp_enum_combo_box_get_type -GIMP_ENUM_COMBO_BOX_CLASS -GIMP_IS_ENUM_COMBO_BOX_CLASS -GIMP_ENUM_COMBO_BOX_GET_CLASS -
- -
-gimpenumlabel -GimpEnumLabel -GimpEnumLabel -gimp_enum_label_new -gimp_enum_label_set_value - -GimpEnumLabelClass -GimpEnumLabelPrivate -GIMP_ENUM_LABEL -GIMP_IS_ENUM_LABEL -GIMP_TYPE_ENUM_LABEL -gimp_enum_label_get_type -GIMP_ENUM_LABEL_CLASS -GIMP_IS_ENUM_LABEL_CLASS -GIMP_ENUM_LABEL_GET_CLASS -
- -
-gimpfileentry -GimpFileEntry -GimpFileEntry -gimp_file_entry_new -gimp_file_entry_get_filename -gimp_file_entry_set_filename - -GimpFileEntryPrivate -GIMP_FILE_ENTRY -GIMP_IS_FILE_ENTRY -GIMP_TYPE_FILE_ENTRY -gimp_file_entry_get_type -GimpFileEntryClass -GIMP_FILE_ENTRY_CLASS -GIMP_IS_FILE_ENTRY_CLASS -GIMP_FILE_ENTRY_GET_CLASS -
- -
-gimpframe -GimpFrame -GimpFrame -gimp_frame_new - -GimpFrameClass -GimpFramePrivate -GIMP_FRAME -GIMP_IS_FRAME -GIMP_TYPE_FRAME -gimp_frame_get_type -GIMP_FRAME_CLASS -GIMP_IS_FRAME_CLASS -GIMP_FRAME_GET_CLASS -
- -
-gimphintbox -GimpHintBox -GimpHintBox -gimp_hint_box_new - -GimpHintBoxClass -GimpHintBoxPrivate -GIMP_HINT_BOX -GIMP_IS_HINT_BOX -GIMP_TYPE_HINT_BOX -gimp_hint_box_get_type -GIMP_HINT_BOX_CLASS -GIMP_IS_HINT_BOX_CLASS -GIMP_HINT_BOX_GET_CLASS -
- -
-gimppageselector -GimpPageSelector -GimpPageSelector -GimpPageSelectorTarget -gimp_page_selector_new -gimp_page_selector_set_n_pages -gimp_page_selector_get_n_pages -gimp_page_selector_set_target -gimp_page_selector_get_target -gimp_page_selector_set_page_thumbnail -gimp_page_selector_get_page_thumbnail -gimp_page_selector_set_page_label -gimp_page_selector_get_page_label -gimp_page_selector_select_all -gimp_page_selector_unselect_all -gimp_page_selector_select_page -gimp_page_selector_unselect_page -gimp_page_selector_page_is_selected -gimp_page_selector_get_selected_pages -gimp_page_selector_select_range -gimp_page_selector_get_selected_range - -GimpPageSelectorClass -GimpPageSelectorPrivate -GIMP_PAGE_SELECTOR -GIMP_IS_PAGE_SELECTOR -GIMP_TYPE_PAGE_SELECTOR -gimp_page_selector_get_type -GIMP_PAGE_SELECTOR_CLASS -GIMP_IS_PAGE_SELECTOR_CLASS -GIMP_PAGE_SELECTOR_GET_CLASS -GIMP_TYPE_PAGE_SELECTOR_TARGET -gimp_page_selector_target_get_type -
- -
-gimppatheditor -GimpPathEditor -GimpPathEditor -gimp_path_editor_new -gimp_path_editor_get_path -gimp_path_editor_set_path -gimp_path_editor_get_writable_path -gimp_path_editor_set_writable_path -gimp_path_editor_get_dir_writable -gimp_path_editor_set_dir_writable - -GimpPathEditorPrivate -GIMP_PATH_EDITOR -GIMP_IS_PATH_EDITOR -GIMP_TYPE_PATH_EDITOR -gimp_path_editor_get_type -GimpPathEditorClass -GIMP_PATH_EDITOR_CLASS -GIMP_IS_PATH_EDITOR_CLASS -GIMP_PATH_EDITOR_GET_CLASS -
- -
-gimpintstore -GimpIntStore -GimpIntStore -GimpIntStoreColumns -gimp_int_store_new -gimp_int_store_new_valist -gimp_int_store_lookup_by_value -gimp_int_store_lookup_by_user_data - -GimpIntStoreClass -GimpIntStorePrivate -GIMP_INT_STORE -GIMP_IS_INT_STORE -GIMP_TYPE_INT_STORE -gimp_int_store_get_type -GIMP_INT_STORE_CLASS -GIMP_IS_INT_STORE_CLASS -GIMP_INT_STORE_GET_CLASS -
- -
-gimpintcombobox -GimpIntComboBox -GimpIntComboBox -GimpIntComboBoxLayout -GimpIntSensitivityFunc -gimp_int_combo_box_new -gimp_int_combo_box_new_valist -gimp_int_combo_box_new_array -gimp_int_combo_box_prepend -gimp_int_combo_box_append -gimp_int_combo_box_set_active -gimp_int_combo_box_get_active -gimp_int_combo_box_set_active_by_user_data -gimp_int_combo_box_get_active_user_data -gimp_int_combo_box_set_label -gimp_int_combo_box_get_label -gimp_int_combo_box_set_layout -gimp_int_combo_box_get_layout -gimp_int_combo_box_connect -gimp_int_combo_box_set_sensitivity - -GimpIntComboBoxClass -GimpIntComboBoxPrivate -GIMP_INT_COMBO_BOX -GIMP_IS_INT_COMBO_BOX -GIMP_TYPE_INT_COMBO_BOX -gimp_int_combo_box_get_type -GIMP_INT_COMBO_BOX_CLASS -GIMP_IS_INT_COMBO_BOX_CLASS -GIMP_INT_COMBO_BOX_GET_CLASS -GIMP_TYPE_INT_COMBO_BOX_LAYOUT -gimp_int_combo_box_layout_get_type -
- -
-gimpspinbutton -GimpSpinButton -gimp_spin_button_new -gimp_spin_button_new_with_range - -GIMP_IS_SPIN_BUTTON -GIMP_SPIN_BUTTON -GIMP_IS_SPIN_BUTTON_CLASS -GIMP_SPIN_BUTTON_CLASS -GIMP_SPIN_BUTTON_GET_CLASS -GIMP_TYPE_SPIN_BUTTON -GimpSpinButton -GimpSpinButtonClass -GimpSpinButtonPrivate -gimp_spin_button_get_type -
- -
-gimpstringcombobox -GimpStringComboBox -GimpStringComboBox -gimp_string_combo_box_new -gimp_string_combo_box_set_active -gimp_string_combo_box_get_active - -GimpStringComboBoxClass -GimpStringComboBoxPrivate -GIMP_STRING_COMBO_BOX -GIMP_IS_STRING_COMBO_BOX -GIMP_TYPE_STRING_COMBO_BOX -gimp_string_combo_box_get_type -GIMP_STRING_COMBO_BOX_CLASS -GIMP_IS_STRING_COMBO_BOX_CLASS -GIMP_STRING_COMBO_BOX_GET_CLASS -
- -
-gimplabeled -GimpLabeled -GimpLabeled -gimp_labeled_get_label -gimp_labeled_set_text -gimp_labeled_get_text - -GimpLabeledClass -GimpLabeledPrivate -GIMP_LABELED -GIMP_IS_LABELED -GIMP_TYPE_LABELED -gimp_labeled_get_type -GIMP_LABELED_CLASS -GIMP_IS_LABELED_CLASS -GIMP_LABELED_GET_CLASS -
- -
-gimpmemsizeentry -GimpMemsizeEntry -GimpMemsizeEntry -gimp_memsize_entry_new -gimp_memsize_entry_set_value -gimp_memsize_entry_get_value -gimp_memsize_entry_get_spinbutton - -GimpMemsizeEntryClass -GimpMemsizeEntryPrivate -GIMP_MEMSIZE_ENTRY -GIMP_IS_MEMSIZE_ENTRY -GIMP_TYPE_MEMSIZE_ENTRY -gimp_memsize_entry_get_type -GIMP_MEMSIZE_ENTRY_CLASS -GIMP_IS_MEMSIZE_ENTRY_CLASS -GIMP_MEMSIZE_ENTRY_GET_CLASS -
- -
-gimpsizeentry -GimpSizeEntry -GimpSizeEntry -GimpSizeEntryField -GimpSizeEntryUpdatePolicy -gimp_size_entry_new -gimp_size_entry_add_field -gimp_size_entry_get_update_policy -gimp_size_entry_get_n_fields -gimp_size_entry_get_unit_combo -gimp_size_entry_attach_label -gimp_size_entry_set_resolution -gimp_size_entry_set_size -gimp_size_entry_set_value_boundaries -gimp_size_entry_get_value -gimp_size_entry_set_value -gimp_size_entry_set_refval_boundaries -gimp_size_entry_set_refval_digits -gimp_size_entry_get_refval -gimp_size_entry_set_refval -gimp_size_entry_get_unit -gimp_size_entry_set_unit -gimp_size_entry_show_unit_menu -gimp_size_entry_set_pixel_digits -gimp_size_entry_grab_focus -gimp_size_entry_set_activates_default -gimp_size_entry_get_help_widget - -GimpSizeEntryPrivate -GIMP_SIZE_ENTRY -GIMP_IS_SIZE_ENTRY -GIMP_TYPE_SIZE_ENTRY -gimp_size_entry_get_type -GimpSizeEntryClass -GIMP_SIZE_ENTRY_CLASS -GIMP_IS_SIZE_ENTRY_CLASS -GIMP_SIZE_ENTRY_GET_CLASS -GIMP_TYPE_SIZE_ENTRY_UPDATE_POLICY -gimp_size_entry_update_policy_get_type -
- -
-gimpnumberpairentry -GimpNumberPairEntry -GimpNumberPairEntry -GimpAspectType -gimp_number_pair_entry_new -gimp_number_pair_entry_set_default_values -gimp_number_pair_entry_get_default_values -gimp_number_pair_entry_set_values -gimp_number_pair_entry_get_values -gimp_number_pair_entry_get_aspect -gimp_number_pair_entry_set_aspect -gimp_number_pair_entry_get_ratio -gimp_number_pair_entry_set_ratio -gimp_number_pair_entry_get_user_override -gimp_number_pair_entry_set_user_override -gimp_number_pair_entry_get_default_text -gimp_number_pair_entry_set_default_text - -GimpNumberPairEntryPrivate -GIMP_NUMBER_PAIR_ENTRY -GIMP_IS_NUMBER_PAIR_ENTRY -GIMP_TYPE_NUMBER_PAIR_ENTRY -gimp_number_pair_entry_get_type -GimpNumberPairEntryClass -GIMP_NUMBER_PAIR_ENTRY_CLASS -GIMP_IS_NUMBER_PAIR_ENTRY_CLASS -GIMP_NUMBER_PAIR_ENTRY_GET_CLASS -GIMP_TYPE_ASPECT_TYPE -gimp_aspect_type_get_type -
- -
-gimpruler -GimpRuler -GimpRuler -gimp_ruler_new -gimp_ruler_set_unit -gimp_ruler_get_unit -gimp_ruler_set_position -gimp_ruler_get_position -gimp_ruler_set_range -gimp_ruler_get_range -gimp_ruler_add_track_widget -gimp_ruler_remove_track_widget - -GimpRulerClass -GimpRulerPrivate -GIMP_RULER -GIMP_IS_RULER -GIMP_TYPE_RULER -gimp_ruler_get_type -GIMP_RULER_CLASS -GIMP_IS_RULER_CLASS -GIMP_RULER_GET_CLASS -
- -
-gimpunitstore -GimpUnitStore -GimpUnitStore -gimp_unit_store_new -gimp_unit_store_set_has_pixels -gimp_unit_store_get_has_pixels -gimp_unit_store_set_has_percent -gimp_unit_store_get_has_percent -gimp_unit_store_set_pixel_value -gimp_unit_store_set_pixel_values -gimp_unit_store_set_resolution -gimp_unit_store_set_resolutions -gimp_unit_store_get_nth_value -gimp_unit_store_get_values - -GimpUnitStoreClass -GimpUnitStorePrivate -GIMP_UNIT_STORE -GIMP_IS_UNIT_STORE -GIMP_TYPE_UNIT_STORE -gimp_unit_store_get_type -GIMP_UNIT_STORE_CLASS -GIMP_IS_UNIT_STORE_CLASS -GIMP_UNIT_STORE_GET_CLASS -
- -
-gimpunitcombobox -GimpUnitComboBox -GimpUnitComboBox -gimp_unit_combo_box_new -gimp_unit_combo_box_new_with_model -gimp_unit_combo_box_get_active -gimp_unit_combo_box_set_active - -GimpUnitComboBoxPrivate -GIMP_UNIT_COMBO_BOX -GIMP_IS_UNIT_COMBO_BOX -GIMP_TYPE_UNIT_COMBO_BOX -gimp_unit_combo_box_get_type -GimpUnitComboBoxClass -GIMP_UNIT_COMBO_BOX_CLASS -GIMP_IS_UNIT_COMBO_BOX_CLASS -GIMP_UNIT_COMBO_BOX_GET_CLASS -
- -
-gimpoffsetarea -GimpOffsetArea -GimpOffsetArea -gimp_offset_area_new -gimp_offset_area_set_size -gimp_offset_area_set_offsets -gimp_offset_area_set_pixbuf - -GimpOffsetAreaPrivate -GIMP_OFFSET_AREA -GIMP_IS_OFFSET_AREA -GIMP_TYPE_OFFSET_AREA -gimp_offset_area_get_type -GimpOffsetAreaClass -GIMP_OFFSET_AREA_CLASS -GIMP_IS_OFFSET_AREA_CLASS -GIMP_OFFSET_AREA_GET_CLASS -
- -
-gimpdialog -GimpDialog -GimpDialog -gimp_dialog_new -gimp_dialog_new_valist -gimp_dialog_add_button -gimp_dialog_add_buttons -gimp_dialog_add_buttons_valist -gimp_dialog_run -gimp_dialogs_show_help_button -gimp_dialog_set_alternative_button_order -gimp_dialog_set_alternative_button_order_from_array - -GimpDialogPrivate -GIMP_TYPE_DIALOG -GIMP_DIALOG -GIMP_IS_DIALOG -gimp_dialog_get_type -GimpDialogClass -GIMP_DIALOG_CLASS -GIMP_IS_DIALOG_CLASS -GIMP_DIALOG_GET_CLASS -
- -
-gimphelpui -GimpHelpUI -GimpHelpFunc -GIMP_HELP_ID -gimp_standard_help_func -gimp_help_connect -gimp_help_set_help_data -gimp_help_set_help_data_with_markup -gimp_context_help - -gimp_help_id_quark -
- -
-gimpquerybox -GimpQueryBox -GimpQueryStringCallback -GimpQueryIntCallback -GimpQueryDoubleCallback -GimpQuerySizeCallback -GimpQueryBooleanCallback -gimp_query_string_box -gimp_query_int_box -gimp_query_double_box -gimp_query_size_box -gimp_query_boolean_box -GIMP_QUERY_BOX_VBOX -
- -
-gimpicons -GimpIcons -gimp_icons_init -gimp_icons_set_icon_theme - -GIMP_ICON_ATTACH -GIMP_ICON_DETACH -GIMP_ICON_INVERT -GIMP_ICON_RECORD -GIMP_ICON_RESET -GIMP_ICON_SHRED -GIMP_ICON_BUSINESS_CARD -GIMP_ICON_CHAR_PICKER -GIMP_ICON_CURSOR -GIMP_ICON_DISPLAY -GIMP_ICON_GEGL -GIMP_ICON_LINKED -GIMP_ICON_MARKER -GIMP_ICON_SMARTPHONE -GIMP_ICON_TRANSPARENCY -GIMP_ICON_VIDEO -GIMP_ICON_VISIBLE -GIMP_ICON_WEB -GIMP_ICON_BRUSH -GIMP_ICON_BUFFER -GIMP_ICON_COLORMAP -GIMP_ICON_DYNAMICS -GIMP_ICON_FILE_MANAGER -GIMP_ICON_FONT -GIMP_ICON_GRADIENT -GIMP_ICON_GRID -GIMP_ICON_INPUT_DEVICE -GIMP_ICON_MYPAINT_BRUSH -GIMP_ICON_PALETTE -GIMP_ICON_PATTERN -GIMP_ICON_PLUGIN -GIMP_ICON_SAMPLE_POINT -GIMP_ICON_SYMMETRY -GIMP_ICON_TEMPLATE -GIMP_ICON_TOOL_PRESET -GIMP_ICON_FRAME -GIMP_ICON_TEXTURE -GIMP_ICON_APPLICATION_EXIT -GIMP_ICON_ASPECT_PORTRAIT -GIMP_ICON_ASPECT_LANDSCAPE -GIMP_ICON_CAP_BUTT -GIMP_ICON_CAP_ROUND -GIMP_ICON_CAP_SQUARE -GIMP_ICON_CENTER -GIMP_ICON_CENTER_HORIZONTAL -GIMP_ICON_CENTER_VERTICAL -GIMP_ICON_CHAIN_HORIZONTAL -GIMP_ICON_CHAIN_HORIZONTAL_BROKEN -GIMP_ICON_CHAIN_VERTICAL -GIMP_ICON_CHAIN_VERTICAL_BROKEN -GIMP_ICON_CHANNEL -GIMP_ICON_CHANNEL_ALPHA -GIMP_ICON_CHANNEL_BLUE -GIMP_ICON_CHANNEL_GRAY -GIMP_ICON_CHANNEL_GREEN -GIMP_ICON_CHANNEL_INDEXED -GIMP_ICON_CHANNEL_RED -GIMP_ICON_CLOSE -GIMP_ICON_CLOSE_ALL -GIMP_ICON_COLOR_PICKER_BLACK -GIMP_ICON_COLOR_PICKER_GRAY -GIMP_ICON_COLOR_PICKER_WHITE -GIMP_ICON_COLOR_PICK_FROM_SCREEN -GIMP_ICON_COLOR_SELECTOR_CMYK -GIMP_ICON_COLOR_SELECTOR_TRIANGLE -GIMP_ICON_COLOR_SELECTOR_WATER -GIMP_ICON_COLOR_SPACE_LINEAR -GIMP_ICON_COLOR_SPACE_NON_LINEAR -GIMP_ICON_COLOR_SPACE_PERCEPTUAL -GIMP_ICON_COLORS_DEFAULT -GIMP_ICON_COLORS_SWAP -GIMP_ICON_CONTROLLER -GIMP_ICON_CONTROLLER_KEYBOARD -GIMP_ICON_CONTROLLER_LINUX_INPUT -GIMP_ICON_CONTROLLER_MIDI -GIMP_ICON_CONTROLLER_MOUSE -GIMP_ICON_CONTROLLER_WHEEL -GIMP_ICON_CONVERT_RGB -GIMP_ICON_CONVERT_GRAYSCALE -GIMP_ICON_CONVERT_INDEXED -GIMP_ICON_CONVERT_PRECISION -GIMP_ICON_CURVE_FREE -GIMP_ICON_CURVE_SMOOTH -GIMP_ICON_DIALOG_CHANNELS -GIMP_ICON_DIALOG_DASHBOARD -GIMP_ICON_DIALOG_DEVICE_STATUS -GIMP_ICON_DIALOG_ERROR -GIMP_ICON_DIALOG_IMAGES -GIMP_ICON_DIALOG_INFORMATION -GIMP_ICON_DIALOG_LAYERS -GIMP_ICON_DIALOG_NAVIGATION -GIMP_ICON_DIALOG_PATHS -GIMP_ICON_DIALOG_QUESTION -GIMP_ICON_DIALOG_RESHOW_FILTER -GIMP_ICON_DIALOG_TOOLS -GIMP_ICON_DIALOG_TOOL_OPTIONS -GIMP_ICON_DIALOG_UNDO_HISTORY -GIMP_ICON_DIALOG_WARNING -GIMP_ICON_DISPLAY_FILTER -GIMP_ICON_DISPLAY_FILTER_CLIP_WARNING -GIMP_ICON_DISPLAY_FILTER_COLORBLIND -GIMP_ICON_DISPLAY_FILTER_CONTRAST -GIMP_ICON_DISPLAY_FILTER_GAMMA -GIMP_ICON_DISPLAY_FILTER_LCMS -GIMP_ICON_DISPLAY_FILTER_PROOF -GIMP_ICON_DOCUMENT_NEW -GIMP_ICON_DOCUMENT_OPEN -GIMP_ICON_DOCUMENT_OPEN_RECENT -GIMP_ICON_DOCUMENT_PAGE_SETUP -GIMP_ICON_DOCUMENT_PRINT -GIMP_ICON_DOCUMENT_PRINT_RESOLUTION -GIMP_ICON_DOCUMENT_PROPERTIES -GIMP_ICON_DOCUMENT_REVERT -GIMP_ICON_DOCUMENT_SAVE -GIMP_ICON_DOCUMENT_SAVE_AS -GIMP_ICON_EDIT -GIMP_ICON_EDIT_CLEAR -GIMP_ICON_EDIT_COPY -GIMP_ICON_EDIT_CUT -GIMP_ICON_EDIT_DELETE -GIMP_ICON_EDIT_FIND -GIMP_ICON_EDIT_PASTE -GIMP_ICON_EDIT_PASTE_AS_NEW -GIMP_ICON_EDIT_PASTE_INTO -GIMP_ICON_EDIT_REDO -GIMP_ICON_EDIT_UNDO -GIMP_ICON_FILL_HORIZONTAL -GIMP_ICON_FILL_VERTICAL -GIMP_ICON_FOLDER_NEW -GIMP_ICON_FORMAT_INDENT_MORE -GIMP_ICON_FORMAT_INDENT_LESS -GIMP_ICON_FORMAT_JUSTIFY_CENTER -GIMP_ICON_FORMAT_JUSTIFY_FILL -GIMP_ICON_FORMAT_JUSTIFY_LEFT -GIMP_ICON_FORMAT_JUSTIFY_RIGHT -GIMP_ICON_FORMAT_TEXT_BOLD -GIMP_ICON_FORMAT_TEXT_ITALIC -GIMP_ICON_FORMAT_TEXT_DIRECTION_LTR -GIMP_ICON_FORMAT_TEXT_DIRECTION_RTL -GIMP_ICON_FORMAT_TEXT_DIRECTION_TTB_LTR -GIMP_ICON_FORMAT_TEXT_DIRECTION_TTB_LTR_UPRIGHT -GIMP_ICON_FORMAT_TEXT_DIRECTION_TTB_RTL -GIMP_ICON_FORMAT_TEXT_DIRECTION_TTB_RTL_UPRIGHT -GIMP_ICON_FORMAT_TEXT_SPACING_LETTER -GIMP_ICON_FORMAT_TEXT_SPACING_LINE -GIMP_ICON_FORMAT_TEXT_STRIKETHROUGH -GIMP_ICON_FORMAT_TEXT_UNDERLINE -GIMP_ICON_GRADIENT_LINEAR -GIMP_ICON_GRADIENT_BILINEAR -GIMP_ICON_GRADIENT_RADIAL -GIMP_ICON_GRADIENT_SQUARE -GIMP_ICON_GRADIENT_CONICAL_SYMMETRIC -GIMP_ICON_GRADIENT_CONICAL_ASYMMETRIC -GIMP_ICON_GRADIENT_SHAPEBURST_ANGULAR -GIMP_ICON_GRADIENT_SHAPEBURST_SPHERICAL -GIMP_ICON_GRADIENT_SHAPEBURST_DIMPLED -GIMP_ICON_GRADIENT_SPIRAL_CLOCKWISE -GIMP_ICON_GRADIENT_SPIRAL_ANTICLOCKWISE -GIMP_ICON_GRAVITY_EAST -GIMP_ICON_GRAVITY_NORTH -GIMP_ICON_GRAVITY_NORTH_EAST -GIMP_ICON_GRAVITY_NORTH_WEST -GIMP_ICON_GRAVITY_SOUTH -GIMP_ICON_GRAVITY_SOUTH_EAST -GIMP_ICON_GRAVITY_SOUTH_WEST -GIMP_ICON_GRAVITY_WEST -GIMP_ICON_GO_BOTTOM -GIMP_ICON_GO_DOWN -GIMP_ICON_GO_FIRST -GIMP_ICON_GO_HOME -GIMP_ICON_GO_LAST -GIMP_ICON_GO_TOP -GIMP_ICON_GO_UP -GIMP_ICON_GO_PREVIOUS -GIMP_ICON_GO_NEXT -GIMP_ICON_HELP -GIMP_ICON_HELP_ABOUT -GIMP_ICON_HELP_USER_MANUAL -GIMP_ICON_HISTOGRAM -GIMP_ICON_HISTOGRAM_LINEAR -GIMP_ICON_HISTOGRAM_LOGARITHMIC -GIMP_ICON_IMAGE -GIMP_ICON_IMAGE_OPEN -GIMP_ICON_IMAGE_RELOAD -GIMP_ICON_JOIN_MITER -GIMP_ICON_JOIN_ROUND -GIMP_ICON_JOIN_BEVEL -GIMP_ICON_LAYER -GIMP_ICON_LAYER_ANCHOR -GIMP_ICON_LAYER_FLOATING_SELECTION -GIMP_ICON_LAYER_MASK -GIMP_ICON_LAYER_MERGE_DOWN -GIMP_ICON_LAYER_TEXT_LAYER -GIMP_ICON_LAYER_TO_IMAGESIZE -GIMP_ICON_LIST -GIMP_ICON_LIST_ADD -GIMP_ICON_LIST_REMOVE -GIMP_ICON_MENU_LEFT -GIMP_ICON_MENU_RIGHT -GIMP_ICON_OBJECT_DUPLICATE -GIMP_ICON_OBJECT_FLIP_HORIZONTAL -GIMP_ICON_OBJECT_FLIP_VERTICAL -GIMP_ICON_OBJECT_RESIZE -GIMP_ICON_OBJECT_ROTATE_180 -GIMP_ICON_OBJECT_ROTATE_270 -GIMP_ICON_OBJECT_ROTATE_90 -GIMP_ICON_OBJECT_SCALE -GIMP_ICON_PATH -GIMP_ICON_PATH_STROKE -GIMP_ICON_PIVOT_CENTER -GIMP_ICON_PIVOT_EAST -GIMP_ICON_PIVOT_NORTH -GIMP_ICON_PIVOT_NORTH_EAST -GIMP_ICON_PIVOT_NORTH_WEST -GIMP_ICON_PIVOT_SOUTH -GIMP_ICON_PIVOT_SOUTH_EAST -GIMP_ICON_PIVOT_SOUTH_WEST -GIMP_ICON_PIVOT_WEST -GIMP_ICON_PREFERENCES_SYSTEM -GIMP_ICON_PROCESS_STOP -GIMP_ICON_QUICK_MASK_OFF -GIMP_ICON_QUICK_MASK_ON -GIMP_ICON_SELECTION -GIMP_ICON_SELECTION_ADD -GIMP_ICON_SELECTION_ALL -GIMP_ICON_SELECTION_BORDER -GIMP_ICON_SELECTION_GROW -GIMP_ICON_SELECTION_INTERSECT -GIMP_ICON_SELECTION_NONE -GIMP_ICON_SELECTION_REPLACE -GIMP_ICON_SELECTION_SHRINK -GIMP_ICON_SELECTION_STROKE -GIMP_ICON_SELECTION_SUBTRACT -GIMP_ICON_SELECTION_TO_CHANNEL -GIMP_ICON_SELECTION_TO_PATH -GIMP_ICON_SHAPE_CIRCLE -GIMP_ICON_SHAPE_DIAMOND -GIMP_ICON_SHAPE_SQUARE -GIMP_ICON_SYSTEM_RUN -GIMP_ICON_TOOL_AIRBRUSH -GIMP_ICON_TOOL_ALIGN -GIMP_ICON_TOOL_BLUR -GIMP_ICON_TOOL_BRIGHTNESS_CONTRAST -GIMP_ICON_TOOL_BUCKET_FILL -GIMP_ICON_TOOL_BY_COLOR_SELECT -GIMP_ICON_TOOL_CAGE -GIMP_ICON_TOOL_CLONE -GIMP_ICON_TOOL_COLOR_TEMPERATURE -GIMP_ICON_TOOL_COLORIZE -GIMP_ICON_TOOL_COLOR_BALANCE -GIMP_ICON_TOOL_COLOR_PICKER -GIMP_ICON_TOOL_CROP -GIMP_ICON_TOOL_CURVES -GIMP_ICON_TOOL_DESATURATE -GIMP_ICON_TOOL_DODGE -GIMP_ICON_TOOL_ELLIPSE_SELECT -GIMP_ICON_TOOL_ERASER -GIMP_ICON_TOOL_EXPOSURE -GIMP_ICON_TOOL_FLIP -GIMP_ICON_TOOL_FOREGROUND_SELECT -GIMP_ICON_TOOL_FREE_SELECT -GIMP_ICON_TOOL_FUZZY_SELECT -GIMP_ICON_TOOL_GRADIENT -GIMP_ICON_TOOL_HANDLE_TRANSFORM -GIMP_ICON_TOOL_HEAL -GIMP_ICON_TOOL_HUE_SATURATION -GIMP_ICON_TOOL_INK -GIMP_ICON_TOOL_ISCISSORS -GIMP_ICON_TOOL_LEVELS -GIMP_ICON_TOOL_MEASURE -GIMP_ICON_TOOL_MOVE -GIMP_ICON_TOOL_MYPAINT_BRUSH -GIMP_ICON_TOOL_N_POINT_DEFORMATION -GIMP_ICON_TOOL_OFFSET -GIMP_ICON_TOOL_PAINTBRUSH -GIMP_ICON_TOOL_PATH -GIMP_ICON_TOOL_PENCIL -GIMP_ICON_TOOL_PERSPECTIVE -GIMP_ICON_TOOL_PERSPECTIVE_CLONE -GIMP_ICON_TOOL_POSTERIZE -GIMP_ICON_TOOL_RECT_SELECT -GIMP_ICON_TOOL_ROTATE -GIMP_ICON_TOOL_SCALE -GIMP_ICON_TOOL_SEAMLESS_CLONE -GIMP_ICON_TOOL_SHADOWS_HIGHLIGHTS -GIMP_ICON_TOOL_SHEAR -GIMP_ICON_TOOL_SMUDGE -GIMP_ICON_TOOL_TEXT -GIMP_ICON_TOOL_THRESHOLD -GIMP_ICON_TOOL_TRANSFORM_3D -GIMP_ICON_TOOL_UNIFIED_TRANSFORM -GIMP_ICON_TOOL_WARP -GIMP_ICON_TOOL_ZOOM -GIMP_ICON_TRANSFORM_3D_CAMERA -GIMP_ICON_TRANSFORM_3D_MOVE -GIMP_ICON_TRANSFORM_3D_ROTATE -GIMP_ICON_VIEW_REFRESH -GIMP_ICON_VIEW_FULLSCREEN -GIMP_ICON_WILBER -GIMP_ICON_WILBER_EEK -GIMP_ICON_WINDOW_CLOSE -GIMP_ICON_WINDOW_MOVE_TO_SCREEN -GIMP_ICON_WINDOW_NEW -GIMP_ICON_ZOOM_IN -GIMP_ICON_ZOOM_ORIGINAL -GIMP_ICON_ZOOM_OUT -GIMP_ICON_ZOOM_FIT_BEST -GIMP_ICON_ZOOM_FOLLOW_WINDOW -
- -
-gimpenumwidgets -GimpEnumWidgets -gimp_enum_radio_box_new -gimp_enum_radio_box_new_with_range -gimp_enum_radio_frame_new -gimp_enum_radio_frame_new_with_range -gimp_enum_icon_box_new -gimp_enum_icon_box_new_with_range -gimp_enum_icon_box_set_child_padding -
- -
-gimpwidgets -GimpWidgets -GimpWidgetsError -gimp_int_radio_group_new -gimp_int_radio_group_set_active -gimp_spin_button_new -gimp_scale_entry_new -gimp_scale_entry_set_logarithmic -gimp_scale_entry_get_logarithmic -gimp_color_scale_entry_new -GIMP_RANDOM_SEED_SPINBUTTON -GIMP_RANDOM_SEED_SPINBUTTON_ADJ -GIMP_RANDOM_SEED_TOGGLE -gimp_random_seed_new -GIMP_COORDINATES_CHAINBUTTON -gimp_coordinates_new -gimp_toggle_button_update -gimp_radio_button_update -gimp_int_adjustment_update -gimp_uint_adjustment_update -gimp_float_adjustment_update -gimp_double_adjustment_update -GIMP_WIDGETS_ERROR -gimp_widgets_error_quark -
- -
-gimppropwidgets -GimpPropWidgets -gimp_prop_boolean_combo_box_new -gimp_prop_boolean_radio_frame_new -gimp_prop_check_button_new -gimp_prop_color_area_new -gimp_prop_coordinates_connect -gimp_prop_coordinates_new -gimp_prop_entry_new -gimp_prop_pointer_combo_box_new -gimp_prop_enum_check_button_new -gimp_prop_enum_combo_box_new -gimp_prop_enum_label_new -gimp_prop_enum_radio_box_new -gimp_prop_enum_radio_frame_new -gimp_prop_enum_icon_box_new -gimp_prop_expander_new -gimp_prop_file_chooser_button_new -gimp_prop_file_chooser_button_new_with_dialog -gimp_prop_hscale_new -gimp_prop_icon_image_new -gimp_prop_int_combo_box_new -gimp_prop_int_radio_frame_new -gimp_prop_int_radio_box_new -gimp_prop_label_new -gimp_prop_memsize_entry_new -gimp_prop_path_editor_new -gimp_prop_scale_entry_new -gimp_prop_size_entry_new -gimp_prop_spin_button_new -gimp_prop_string_combo_box_new -gimp_prop_switch_new -gimp_prop_text_buffer_new -gimp_prop_unit_combo_box_new -
- -
-gimpcolordisplay -GimpColorDisplay -GimpColorDisplay -gimp_color_display_clone -gimp_color_display_set_enabled -gimp_color_display_get_enabled -gimp_color_display_get_config -gimp_color_display_get_managed -gimp_color_display_convert_buffer -gimp_color_display_load_state -gimp_color_display_save_state -gimp_color_display_configure -gimp_color_display_configure_reset -gimp_color_display_changed - -GimpColorDisplayClass -GimpColorDisplayPrivate -GIMP_COLOR_DISPLAY -GIMP_IS_COLOR_DISPLAY -GIMP_TYPE_COLOR_DISPLAY -gimp_color_display_get_type -GIMP_COLOR_DISPLAY_CLASS -GIMP_IS_COLOR_DISPLAY_CLASS -GIMP_COLOR_DISPLAY_GET_CLASS -
- -
-gimpcolordisplaystack -GimpColorDisplayStack -GimpColorDisplayStack -gimp_color_display_stack_new -gimp_color_display_stack_clone -gimp_color_display_stack_changed -gimp_color_display_stack_get_filters -gimp_color_display_stack_add -gimp_color_display_stack_remove -gimp_color_display_stack_reorder_up -gimp_color_display_stack_reorder_down -gimp_color_display_stack_convert_buffer - -GimpColorDisplayStackClass -GimpColorDisplayStackPrivate -GIMP_COLOR_DISPLAY_STACK -GIMP_IS_COLOR_DISPLAY_STACK -GIMP_TYPE_COLOR_DISPLAY_STACK -gimp_color_display_stack_get_type -GIMP_COLOR_DISPLAY_STACK_CLASS -GIMP_IS_COLOR_DISPLAY_STACK_CLASS -GIMP_COLOR_DISPLAY_STACK_GET_CLASS -
- -
-gimpcolorselector -GimpColorSelector -GimpColorSelector -GIMP_COLOR_SELECTOR_SIZE -GIMP_COLOR_SELECTOR_BAR_SIZE -GimpColorSelectorChannel -GimpColorSelectorModel -gimp_color_selector_new -gimp_color_selector_set_toggles_visible -gimp_color_selector_get_toggles_visible -gimp_color_selector_set_toggles_sensitive -gimp_color_selector_get_toggles_sensitive -gimp_color_selector_set_show_alpha -gimp_color_selector_get_show_alpha -gimp_color_selector_set_color -gimp_color_selector_get_color -gimp_color_selector_set_channel -gimp_color_selector_get_channel -gimp_color_selector_set_model_visible -gimp_color_selector_get_model_visible -gimp_color_selector_emit_channel_changed -gimp_color_selector_emit_color_changed -gimp_color_selector_emit_model_visible_changed -gimp_color_selector_set_config - -GimpColorSelectorClass -GimpColorSelectorPrivate -GIMP_COLOR_SELECTOR -GIMP_IS_COLOR_SELECTOR -GIMP_TYPE_COLOR_SELECTOR -gimp_color_selector_get_type -GIMP_COLOR_SELECTOR_CLASS -GIMP_IS_COLOR_SELECTOR_CLASS -GIMP_COLOR_SELECTOR_GET_CLASS -GIMP_TYPE_COLOR_SELECTOR_CHANNEL -GIMP_TYPE_COLOR_SELECTOR_MODEL -gimp_color_selector_channel_get_type -gimp_color_selector_model_get_type -
- -
-gimpcolornotebook -GimpColorNotebook -GimpColorNotebook -gimp_color_notebook_set_has_page -gimp_color_notebook_get_current_selector -gimp_color_notebook_get_notebook -gimp_color_notebook_get_selectors - -GimpColorNotebookClass -GimpColorNotebookPrivate -GIMP_COLOR_NOTEBOOK -GIMP_IS_COLOR_NOTEBOOK -GIMP_TYPE_COLOR_NOTEBOOK -gimp_color_notebook_get_type -GIMP_COLOR_NOTEBOOK_CLASS -GIMP_IS_COLOR_NOTEBOOK_CLASS -GIMP_COLOR_NOTEBOOK_GET_CLASS -
- -
-gimpcolorscales -GimpColorScales -GimpColorScales -gimp_color_scales_set_show_rgb_u8 -gimp_color_scales_get_show_rgb_u8 - -GIMP_COLOR_SCALES -GIMP_IS_COLOR_SCALES -GIMP_TYPE_COLOR_SCALES -gimp_color_scales_get_type -
- -
-gimpcolorselect -GimpColorSelect -GimpColorSelect - -GIMP_COLOR_SELECT -GIMP_IS_COLOR_SELECT -GIMP_TYPE_COLOR_SELECT -gimp_color_select_get_type -
- -
-gimppickbutton -GimpPickButton -GimpPickButton -gimp_pick_button_new - -GimpPickButtonClass -GimpPickButtonPrivate -GIMP_PICK_BUTTON -GIMP_IS_PICK_BUTTON -GIMP_TYPE_PICK_BUTTON -gimp_pick_button_get_type -GIMP_PICK_BUTTON_CLASS -GIMP_IS_PICK_BUTTON_CLASS -GIMP_PICK_BUTTON_GET_CLASS -
- -
-gimppreviewarea -GimpPreviewArea -GimpPreviewArea -gimp_preview_area_new -gimp_preview_area_draw -gimp_preview_area_fill -gimp_preview_area_blend -gimp_preview_area_mask -gimp_preview_area_set_offsets -gimp_preview_area_set_colormap -gimp_preview_area_set_color_config -gimp_preview_area_get_size -gimp_preview_area_set_max_size -gimp_preview_area_menu_popup - -GimpPreviewAreaClass -GimpPreviewAreaPrivate -GIMP_PREVIEW_AREA -GIMP_IS_PREVIEW_AREA -GIMP_TYPE_PREVIEW_AREA -gimp_preview_area_get_type -GIMP_PREVIEW_AREA_CLASS -GIMP_IS_PREVIEW_AREA_CLASS -GIMP_PREVIEW_AREA_GET_CLASS -
- -
-gimppreview -GimpPreview -GimpPreview -gimp_preview_get_update -gimp_preview_set_update -gimp_preview_get_bounds -gimp_preview_set_bounds -gimp_preview_set_size -gimp_preview_get_size -gimp_preview_get_offsets -gimp_preview_set_offsets -gimp_preview_get_position -gimp_preview_transform -gimp_preview_untransform -gimp_preview_get_frame -gimp_preview_get_grid -gimp_preview_get_area -gimp_preview_draw -gimp_preview_draw_buffer -gimp_preview_invalidate -gimp_preview_get_default_cursor -gimp_preview_set_default_cursor -gimp_preview_get_controls - -GimpPreviewClass -GimpPreviewPrivate -GIMP_PREVIEW -GIMP_IS_PREVIEW -GIMP_TYPE_PREVIEW -gimp_preview_get_type -GIMP_PREVIEW_CLASS -GIMP_IS_PREVIEW_CLASS -GIMP_PREVIEW_GET_CLASS -
- -
-gimpscrolledpreview -GimpScrolledPreview -GimpScrolledPreview -gimp_scrolled_preview_set_position -gimp_scrolled_preview_set_policy -gimp_scrolled_preview_get_adjustments -gimp_scrolled_preview_freeze -gimp_scrolled_preview_thaw -gimp_scroll_adjustment_values - -GimpScrolledPreviewClass -GimpScrolledPreviewPrivate -GIMP_SCROLLED_PREVIEW -GIMP_IS_SCROLLED_PREVIEW -GIMP_TYPE_SCROLLED_PREVIEW -gimp_scrolled_preview_get_type -GIMP_SCROLLED_PREVIEW_CLASS -GIMP_IS_SCROLLED_PREVIEW_CLASS -GIMP_SCROLLED_PREVIEW_GET_CLASS -
- -
-gimpwidgetsutils -gimp_grid_attach_aligned -gimp_label_set_attributes -gimp_widget_get_monitor -gimp_get_monitor_at_pointer -gimp_widget_track_monitor -gimp_monitor_get_color_profile -gimp_widget_get_color_profile -gimp_widget_get_color_transform -
- -
-gimpzoommodel -GimpZoomModel -GimpZoomModel -GimpZoomType -gimp_zoom_model_new -gimp_zoom_model_set_range -gimp_zoom_model_zoom -gimp_zoom_model_get_factor -gimp_zoom_model_get_fraction -gimp_zoom_button_new -gimp_zoom_model_zoom_step - -GimpZoomModelClass -GimpZoomModelPrivate -GIMP_ZOOM_MODEL -GIMP_IS_ZOOM_MODEL -GIMP_TYPE_ZOOM_MODEL -gimp_zoom_model_get_type -GIMP_ZOOM_MODEL_CLASS -GIMP_IS_ZOOM_MODEL_CLASS -GIMP_ZOOM_MODEL_GET_CLASS -GIMP_TYPE_ZOOM_TYPE -gimp_zoom_type_get_type -
- -
-gimpcontroller -GimpController -GimpControllerEventType -GimpControllerEventAny -GimpControllerEventTrigger -GimpControllerEventValue -GimpControllerEvent -GimpController -GimpController -gimp_controller_new -gimp_controller_get_n_events -gimp_controller_get_event_name -gimp_controller_get_event_blurb -gimp_controller_event - -GimpControllerClass -GimpControllerPrivate -GIMP_CONTROLLER -GIMP_IS_CONTROLLER -GIMP_TYPE_CONTROLLER -gimp_controller_get_type -GIMP_CONTROLLER_CLASS -GIMP_IS_CONTROLLER_CLASS -GIMP_CONTROLLER_GET_CLASS -
diff --git a/devel-docs/libgimpwidgets/libgimpwidgets3.types b/devel-docs/libgimpwidgets/libgimpwidgets3.types deleted file mode 100644 index da5123b548..0000000000 --- a/devel-docs/libgimpwidgets/libgimpwidgets3.types +++ /dev/null @@ -1,52 +0,0 @@ -#include -#include -#include -#include - -gimp_browser_get_type -gimp_busy_box_get_type -gimp_button_get_type -gimp_cell_renderer_color_get_type -gimp_cell_renderer_toggle_get_type -gimp_chain_button_get_type -gimp_color_area_get_type -gimp_color_button_get_type -gimp_color_display_get_type -gimp_color_display_stack_get_type -gimp_color_hex_entry_get_type -gimp_color_notebook_get_type -gimp_color_profile_chooser_dialog_get_type -gimp_color_profile_store_get_type -gimp_color_profile_combo_box_get_type -gimp_color_profile_view_get_type -gimp_color_scale_get_type -gimp_color_scales_get_type -gimp_color_selector_get_type -gimp_color_select_get_type -gimp_color_selection_get_type -gimp_controller_get_type -gimp_dialog_get_type -gimp_enum_combo_box_get_type -gimp_enum_label_get_type -gimp_enum_store_get_type -gimp_file_entry_get_type -gimp_frame_get_type -gimp_hint_box_get_type -gimp_int_combo_box_get_type -gimp_int_store_get_type -gimp_memsize_entry_get_type -gimp_number_pair_entry_get_type -gimp_offset_area_get_type -gimp_page_selector_get_type -gimp_path_editor_get_type -gimp_pick_button_get_type -gimp_preview_area_get_type -gimp_preview_get_type -gimp_ruler_get_type -gimp_scrolled_preview_get_type -gimp_size_entry_get_type -gimp_spin_button_get_type -gimp_string_combo_box_get_type -gimp_unit_combo_box_get_type -gimp_unit_store_get_type -gimp_zoom_model_get_type diff --git a/devel-docs/libgimpwidgets/meson.build b/devel-docs/libgimpwidgets/meson.build deleted file mode 100644 index 213dccaabd..0000000000 --- a/devel-docs/libgimpwidgets/meson.build +++ /dev/null @@ -1,81 +0,0 @@ -module_name = 'libgimpwidgets3' - - -gnome.gtkdoc(module_name, - main_sgml: module_name + '-docs.sgml', - gobject_typesfile: files(module_name + '.types'), - src_dir: meson.source_root() / 'libgimpwidgets', - - content_files: [ - 'visual-index.xml' - ], - ignore_headers: [ - 'gimp-color-picker-cursors.h', - 'gimp-icon-pixbufs.h', - 'gimpcolorprofilestore-private.h', - 'gimpeevl.h', - 'gimpwidgets-private.h', - ], - - dependencies: [ - fontconfig, freetype2, gtk3, harfbuzz, pangocairo, - declare_dependency( - include_directories: rootInclude, - link_with: [ - libgimpbase, - libgimpcolor, - libgimpmath, - libgimpconfig, - libgimpwidgets, - ]), - ], - scanobjs_args: [ - '--type-init-func=do { void babl_init (void); babl_init (); } while (0)', - ], - c_args: [ - '-DGIMP_ENABLE_CONTROLLER_UNDER_CONSTRUCTION', - '-UGIMP_DISABLE_DEPRECATED', - ], - scan_args: scan_args_common, - mkdb_args: mkdb_args_common, - fixxref_args: [ - '--extra-dir='+ devel_docs_build_root / 'libgimp' / 'html', - '--extra-dir='+ devel_docs_build_root / 'libgimpbase' / 'html', - '--extra-dir='+ devel_docs_build_root / 'libgimpcolor' / 'html', - '--extra-dir='+ devel_docs_build_root / 'libgimpconfig' / 'html', - '--extra-dir='+ devel_docs_build_root / 'libgimpmath' / 'html', - ], - html_assets: [ - 'images' / 'gimp-widget-browser.png', - 'images' / 'gimp-widget-busy-box.png', - 'images' / 'gimp-widget-button.png', - 'images' / 'gimp-widget-chain-button.png', - 'images' / 'gimp-widget-color-area.png', - 'images' / 'gimp-widget-color-button.png', - 'images' / 'gimp-widget-color-hex-entry.png', - 'images' / 'gimp-widget-color-notebook.png', - 'images' / 'gimp-widget-color-profile-combo-box.png', - 'images' / 'gimp-widget-color-profile-view.png', - 'images' / 'gimp-widget-color-scale.png', - 'images' / 'gimp-widget-color-scales.png', - 'images' / 'gimp-widget-color-select.png', - 'images' / 'gimp-widget-color-selection.png', - 'images' / 'gimp-widget-dialog.png', - 'images' / 'gimp-widget-enum-combo-box.png', - 'images' / 'gimp-widget-enum-label.png', - 'images' / 'gimp-widget-file-entry.png', - 'images' / 'gimp-widget-frame.png', - 'images' / 'gimp-widget-hint-box.png', - 'images' / 'gimp-widget-int-combo-box.png', - 'images' / 'gimp-widget-memsize-entry.png', - 'images' / 'gimp-widget-number-pair-entry.png', - 'images' / 'gimp-widget-offset-area.png', - 'images' / 'gimp-widget-page-selector.png', - 'images' / 'gimp-widget-path-editor.png', - 'images' / 'gimp-widget-pick-button.png', - 'images' / 'gimp-widget-preview-area.png', - 'images' / 'gimp-widget-ruler.png', - 'images' / 'gimp-widget-string-combo-box.png', - 'images' / 'gimp-widget-unit-combo-box.png', - ], -) diff --git a/devel-docs/libgimpwidgets/tmpl/.gitignore b/devel-docs/libgimpwidgets/tmpl/.gitignore deleted file mode 100644 index f172f49485..0000000000 --- a/devel-docs/libgimpwidgets/tmpl/.gitignore +++ /dev/null @@ -1,58 +0,0 @@ -/libgimpwidgets-unused.sgml -/*.bak -/gimp3migration.sgml -/gimpbrowser.sgml -/gimpbutton.sgml -/gimpcairo-utils.sgml -/gimpcellrenderercolor.sgml -/gimpcellrenderertoggle.sgml -/gimpchainbutton.sgml -/gimpcolorarea.sgml -/gimpcolorbutton.sgml -/gimpcolordisplay.sgml -/gimpcolordisplaystack.sgml -/gimpcolorhexentry.sgml -/gimpcolornotebook.sgml -/gimpcolorprofilechooserdialog.sgml -/gimpcolorprofilecombobox.sgml -/gimpcolorprofilestore.sgml -/gimpcolorprofileview.sgml -/gimpcolorscale.sgml -/gimpcolorscales.sgml -/gimpcolorselect.sgml -/gimpcolorselection.sgml -/gimpcolorselector.sgml -/gimpcontroller.sgml -/gimpdialog.sgml -/gimpenumcombobox.sgml -/gimpenumlabel.sgml -/gimpenumstore.sgml -/gimpenumwidgets.sgml -/gimpfileentry.sgml -/gimpframe.sgml -/gimphelpui.sgml -/gimphintbox.sgml -/gimpintcombobox.sgml -/gimpintstore.sgml -/gimpmemsizeentry.sgml -/gimpnumberpairentry.sgml -/gimpoffsetarea.sgml -/gimpoldwidgets.sgml -/gimppageselector.sgml -/gimppatheditor.sgml -/gimppickbutton.sgml -/gimppixmap.sgml -/gimppreview.sgml -/gimppreviewarea.sgml -/gimppropwidgets.sgml -/gimpquerybox.sgml -/gimpruler.sgml -/gimpscrolledpreview.sgml -/gimpsizeentry.sgml -/gimpstringcombobox.sgml -/gimpunitcombobox.sgml -/gimpunitmenu.sgml -/gimpunitstore.sgml -/gimpwidgets.sgml -/gimpwidgetsutils.sgml -/gimpzoommodel.sgml diff --git a/devel-docs/libgimpwidgets/tmpl/gimpstock.sgml b/devel-docs/libgimpwidgets/tmpl/gimpstock.sgml deleted file mode 100644 index 53bf4d21a8..0000000000 --- a/devel-docs/libgimpwidgets/tmpl/gimpstock.sgml +++ /dev/null @@ -1,1553 +0,0 @@ - -GimpStock - - - - - - - - - - - - - - - - - - - - - - - - - -@void: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -RTL variant - - - - - - - - -RTL variant - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/devel-docs/libgimpwidgets/visual-index.xml b/devel-docs/libgimpwidgets/visual-index.xml deleted file mode 100644 index ceb945711d..0000000000 --- a/devel-docs/libgimpwidgets/visual-index.xml +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/devel-docs/meson.build b/devel-docs/meson.build index 48919e76c6..4f65f92edb 100644 --- a/devel-docs/meson.build +++ b/devel-docs/meson.build @@ -17,20 +17,8 @@ mkdb_args_common = [ ] -if get_option('gtk-doc') - if get_option('gtk-doc-app') - subdir('app') - endif - - subdir('libgimp') - subdir('libgimpbase') - subdir('libgimpcolor') - subdir('libgimpconfig') - subdir('libgimpmath') - subdir('libgimpmodule') - subdir('libgimpthumb') - subdir('libgimpwidgets') - subdir('tools') +if get_option('gi-docgen') + subdir('reference') endif if get_option('g-ir-doc') diff --git a/devel-docs/libgimp/.gitignore b/devel-docs/reference/.gitignore similarity index 100% rename from devel-docs/libgimp/.gitignore rename to devel-docs/reference/.gitignore diff --git a/devel-docs/reference/Makefile.am b/devel-docs/reference/Makefile.am new file mode 100644 index 0000000000..15a26c3e7a --- /dev/null +++ b/devel-docs/reference/Makefile.am @@ -0,0 +1,7 @@ +## Process this file with automake to produce Makefile.in + +if ENABLE_GI_DOCGEN + +SUBDIRS = gimp gimp-ui + +endif diff --git a/devel-docs/reference/gimp-ui/Makefile.am b/devel-docs/reference/gimp-ui/Makefile.am new file mode 100644 index 0000000000..fe3a058bcc --- /dev/null +++ b/devel-docs/reference/gimp-ui/Makefile.am @@ -0,0 +1,26 @@ +## Process this file with automake to produce Makefile.in + +GIMP_DOC_LOGO = $(abs_top_srcdir)/data/images/gimp-logo.ong + +gimp-ui-3.0.toml: gimp-ui-3.0.toml.in + $(AM_V_GEN) sed \ + -e 's/@GIMP_VERSION[@]/$(GIMP_VERSION)/' \ + -e 's/@GIMP_LOGO[@]/$(GIMP_DOC_LOGO)/' \ + $< $@ + +# Markdown content files +content_files = \ + widget-gallery.md \ + $(NULL) + +GimpUi-reference: $(top_builddir)/libgimp/GimpUi-@GIMP_API_VERSION@.gir $(top_builddir)/libgimp/Gimp-@GIMP_API_VERSION@.gir $(content_files) gimp-ui-3.0.toml + $(GI_DOCGEN) \ + generate \ + --quiet \ + --fatal-warnings \ + --config=gimp-ui-3.0.toml \ + --output-dir=$(abs_builddir)/Gimp-3.0 \ + --no-namespace-dir \ + --content-dir=$(abs_srcdir) \ + --add-include-path=$(top_abs_builddir)/gimp \ + $< diff --git a/devel-docs/reference/gimp-ui/gimp-ui-3.0.toml.in b/devel-docs/reference/gimp-ui/gimp-ui-3.0.toml.in new file mode 100644 index 0000000000..69a315bacd --- /dev/null +++ b/devel-docs/reference/gimp-ui/gimp-ui-3.0.toml.in @@ -0,0 +1,108 @@ +[library] +namespace = "GimpUi" +version = "@GIMP_VERSION@" +browse_url = "https://gitlab.gnome.org/GNOME/gimp/" +repository_url = "https://gitlab.gnome.org/GNOME/gimp.git" +website_url = "https://www.gimp.org" +authors = "GIMP contributors" +logo_url = "@GIMP_LOGO@" +license = "GPL-3.0-or-later" +description = "GIMP UI library" +dependencies = [ + 'Babl-0.1', + 'GLib-2.0', + 'GObject-2.0', + 'GdkPixbuf-2.0', + 'Gegl-0.4', + 'Gio-2.0', + 'Gtk-3.0', + 'cairo-1.0', +] +devhelp = true +search_index = true + + [dependencies."Babl-0.1"] + name = "Babl" + description = "Pixel encoding and color space conversion engine" + docs_url = "https://gegl.org/babl" + + [dependencies."GLib-2.0"] + name = "GLib" + description = "C Utility Library" + docs_url = "https://developer.gnome.org/glib/stable" + + [dependencies."GObject-2.0"] + name = "GObject" + description = "The base type system library" + docs_url = "https://developer.gnome.org/gobject/stable" + + [dependencies."GdkPixbuf-2.0"] + name = "GdkPixbuf" + description = "Image loading and scaling" + docs_url = "https://docs.gtk.org/gdk-pixbuf/" + + [dependencies."Gegl-0.4"] + name = "Gegl" + description = "Generic Graphics Library" + docs_url = "https://gegl.org/" + + [dependencies."Gio-2.0"] + name = "Gio" + description = "GObject interfaces and objects" + docs_url = "https://developer.gnome.org/gio/stable" + + [dependencies."Gtk-3.0"] + name = "GTK" + description = "The GTK toolkit" + docs_url = "https://developer.gnome.org/gtk3/stable" + + [dependencies."cairo-1.0"] + name = "Cairo" + description = "A 2D graphics library with support for multiple output devices" + docs_url = "https://www.cairographics.org/manual/" + +[theme] +name = "basic" +show_index_summary = true +show_class_hierarchy = true + +[source-location] +base_url = "https://gitlab.gnome.org/GNOME/gimp/-/blob/master/" + +[extra] +content_files = [ + 'widget-gallery.md', +] +content_images = [ + 'images/browser.png', + 'images/busy-box.png', + 'images/button.png', + 'images/chain-button.png', + 'images/color-area.png', + 'images/color-button.png', + 'images/color-hex-entry.png', + 'images/color-notebook.png', + 'images/color-profile-combo-box.png', + 'images/color-profile-view.png', + 'images/color-scale.png', + 'images/color-scales.png', + 'images/color-select.png', + 'images/color-selection.png', + 'images/dialog.png', + 'images/enum-combo-box.png', + 'images/enum-label.png', + 'images/file-entry.png', + 'images/frame.png', + 'images/hint-box.png', + 'images/int-combo-box.png', + 'images/memsize-entry.png', + 'images/number-pair-entry.png', + 'images/offset-area.png', + 'images/page-selector.png', + 'images/path-editor.png', + 'images/pick-button.png', + 'images/preview-area.png', + 'images/ruler.png', + 'images/string-combo-box.png', + 'images/unit-combo-box.png', +] diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-browser.png b/devel-docs/reference/gimp-ui/images/browser.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-browser.png rename to devel-docs/reference/gimp-ui/images/browser.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-busy-box.png b/devel-docs/reference/gimp-ui/images/busy-box.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-busy-box.png rename to devel-docs/reference/gimp-ui/images/busy-box.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-button.png b/devel-docs/reference/gimp-ui/images/button.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-button.png rename to devel-docs/reference/gimp-ui/images/button.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-chain-button.png b/devel-docs/reference/gimp-ui/images/chain-button.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-chain-button.png rename to devel-docs/reference/gimp-ui/images/chain-button.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-color-area.png b/devel-docs/reference/gimp-ui/images/color-area.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-color-area.png rename to devel-docs/reference/gimp-ui/images/color-area.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-color-button.png b/devel-docs/reference/gimp-ui/images/color-button.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-color-button.png rename to devel-docs/reference/gimp-ui/images/color-button.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-color-hex-entry.png b/devel-docs/reference/gimp-ui/images/color-hex-entry.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-color-hex-entry.png rename to devel-docs/reference/gimp-ui/images/color-hex-entry.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-color-notebook.png b/devel-docs/reference/gimp-ui/images/color-notebook.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-color-notebook.png rename to devel-docs/reference/gimp-ui/images/color-notebook.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-color-profile-combo-box.png b/devel-docs/reference/gimp-ui/images/color-profile-combo-box.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-color-profile-combo-box.png rename to devel-docs/reference/gimp-ui/images/color-profile-combo-box.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-color-profile-view.png b/devel-docs/reference/gimp-ui/images/color-profile-view.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-color-profile-view.png rename to devel-docs/reference/gimp-ui/images/color-profile-view.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-color-scale.png b/devel-docs/reference/gimp-ui/images/color-scale.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-color-scale.png rename to devel-docs/reference/gimp-ui/images/color-scale.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-color-scales.png b/devel-docs/reference/gimp-ui/images/color-scales.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-color-scales.png rename to devel-docs/reference/gimp-ui/images/color-scales.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-color-select.png b/devel-docs/reference/gimp-ui/images/color-select.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-color-select.png rename to devel-docs/reference/gimp-ui/images/color-select.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-color-selection.png b/devel-docs/reference/gimp-ui/images/color-selection.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-color-selection.png rename to devel-docs/reference/gimp-ui/images/color-selection.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-dialog.png b/devel-docs/reference/gimp-ui/images/dialog.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-dialog.png rename to devel-docs/reference/gimp-ui/images/dialog.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-enum-combo-box.png b/devel-docs/reference/gimp-ui/images/enum-combo-box.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-enum-combo-box.png rename to devel-docs/reference/gimp-ui/images/enum-combo-box.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-enum-label.png b/devel-docs/reference/gimp-ui/images/enum-label.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-enum-label.png rename to devel-docs/reference/gimp-ui/images/enum-label.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-file-entry.png b/devel-docs/reference/gimp-ui/images/file-entry.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-file-entry.png rename to devel-docs/reference/gimp-ui/images/file-entry.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-frame.png b/devel-docs/reference/gimp-ui/images/frame.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-frame.png rename to devel-docs/reference/gimp-ui/images/frame.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-hint-box.png b/devel-docs/reference/gimp-ui/images/hint-box.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-hint-box.png rename to devel-docs/reference/gimp-ui/images/hint-box.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-int-combo-box.png b/devel-docs/reference/gimp-ui/images/int-combo-box.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-int-combo-box.png rename to devel-docs/reference/gimp-ui/images/int-combo-box.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-memsize-entry.png b/devel-docs/reference/gimp-ui/images/memsize-entry.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-memsize-entry.png rename to devel-docs/reference/gimp-ui/images/memsize-entry.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-number-pair-entry.png b/devel-docs/reference/gimp-ui/images/number-pair-entry.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-number-pair-entry.png rename to devel-docs/reference/gimp-ui/images/number-pair-entry.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-offset-area.png b/devel-docs/reference/gimp-ui/images/offset-area.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-offset-area.png rename to devel-docs/reference/gimp-ui/images/offset-area.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-page-selector.png b/devel-docs/reference/gimp-ui/images/page-selector.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-page-selector.png rename to devel-docs/reference/gimp-ui/images/page-selector.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-path-editor.png b/devel-docs/reference/gimp-ui/images/path-editor.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-path-editor.png rename to devel-docs/reference/gimp-ui/images/path-editor.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-pick-button.png b/devel-docs/reference/gimp-ui/images/pick-button.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-pick-button.png rename to devel-docs/reference/gimp-ui/images/pick-button.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-preview-area.png b/devel-docs/reference/gimp-ui/images/preview-area.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-preview-area.png rename to devel-docs/reference/gimp-ui/images/preview-area.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-ruler.png b/devel-docs/reference/gimp-ui/images/ruler.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-ruler.png rename to devel-docs/reference/gimp-ui/images/ruler.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-string-combo-box.png b/devel-docs/reference/gimp-ui/images/string-combo-box.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-string-combo-box.png rename to devel-docs/reference/gimp-ui/images/string-combo-box.png diff --git a/devel-docs/libgimpwidgets/images/gimp-widget-unit-combo-box.png b/devel-docs/reference/gimp-ui/images/unit-combo-box.png similarity index 100% rename from devel-docs/libgimpwidgets/images/gimp-widget-unit-combo-box.png rename to devel-docs/reference/gimp-ui/images/unit-combo-box.png diff --git a/devel-docs/reference/gimp-ui/meson.build b/devel-docs/reference/gimp-ui/meson.build new file mode 100644 index 0000000000..da1e32f1ea --- /dev/null +++ b/devel-docs/reference/gimp-ui/meson.build @@ -0,0 +1,38 @@ +# Extra markdown files +gimp_ui_doc_content_files = [ + 'widget-gallery.md', +] + +gimp_ui_doc_toml = configure_file( + input: 'gimp-ui-3.0.toml.in', + output: '@BASENAME@', + configuration: { + 'GIMP_VERSION': gimp_version, + 'GIMP_LOGO': gimp_logo_dir / 'gimp-logo.png', + }, +) + +gimp_ui_docs = custom_target('gimp-ui-docs', + input: libgimpui_gir[0], + output: 'GimpUi-@0@'.format(gimp_api_version), + command: [ + gi_docgen, + 'generate', + '--quiet', + '--fatal-warnings', + '--config', gimp_ui_doc_toml, + '--output-dir=@OUTPUT@', + '--no-namespace-dir', + '--content-dir=@0@'.format(meson.current_source_dir()), + '--add-include-path=@0@'.format(meson.build_root() / 'libgimp'), + '@INPUT@', + ], + depends: libgimp_gir[0], + depend_files: [ + gimp_ui_doc_toml, + gimp_ui_doc_content_files, + ], + build_by_default: true, + install: true, + install_dir: get_option('datadir') / 'doc', +) diff --git a/devel-docs/reference/gimp-ui/widget-gallery.md b/devel-docs/reference/gimp-ui/widget-gallery.md new file mode 100644 index 0000000000..b436f2c07a --- /dev/null +++ b/devel-docs/reference/gimp-ui/widget-gallery.md @@ -0,0 +1,36 @@ +Title: Widget gallery + +Widget gallery +============== + +[![Browser](browser.png)](class.Browser.html) +[![Button](button.png)](class.Button.html) +[![BusyBox](busy-box.png)](class.BusyBox.html) +[![ChainButton](chain-button.png)](class.ChainButton.html) +[![ColorArea](color-area.png)](class.ColorArea.html) +[![ColorButton](color-button.png)](class.ColorButton.html) +[![ColorHexEntry](color-hex-entry.png)](class.ColorHexEntry.html) +[![ColorNotebook](color-notebook.png)](class.ColorNotebook.html) +[![ColorScale](color-scale.png)](class.ColorScale.html) +[![ColorScales](color-scales.png)](class.ColorScales.html) +[![ColorSelect](color-select.png)](class.ColorSelect.html) +[![ColorSelection](color-selection.png)](class.ColorSelection.html) +[![ColorProfileComboBox](color-profile-combo-box.png)](class.ColorProfileComboBox.html) +[![ColorProfileView](color-profile-view.png)](class.ColorProfileView.html) +[![Dialog](dialog.png)](class.Dialog.html) +[![EnumComboBox](enum-combo-box.png)](class.EnumComboBox.html) +[![EnumLabel](enum-label.png)](class.EnumLabel.html) +[![FileEntry](file-entry.png)](class.FileEntry.html) +[![Frame](frame.png)](class.Frame.html) +[![HintBox](hint-box.png)](class.HintBox.html) +[![IntComboBox](int-combo-box.png)](class.IntComboBox.html) +[![MemsizeEntry](memsize-entry.png)](class.MemsizeEntry.html) +[![NumberPairEntry](number-pair-entry.png)](class.NumberPairEntry.html) +[![OffsetArea](offset-area.png)](class.OffsetArea.html) +[![PageSelector](page-selector.png)](class.PageSelector.html) +[![PathEditor](path-editor.png)](class.PathEditor.html) +[![PickButton](pick-button.png)](class.PickButton.html) +[![PreviewArea](preview-area.png)](class.PreviewArea.html) +[![Ruler](ruler.png)](class.Ruler.html) +[![StringComboBox](string-combo-box.png)](class.StringComboBox.html) +[![UnitComboBox](unit-combo-box.png)](class.UnitComboBox.html) diff --git a/devel-docs/reference/gimp/Makefile.am b/devel-docs/reference/gimp/Makefile.am new file mode 100644 index 0000000000..c5bade5445 --- /dev/null +++ b/devel-docs/reference/gimp/Makefile.am @@ -0,0 +1,24 @@ +## Process this file with automake to produce Makefile.in + +GIMP_DOC_LOGO = $(abs_top_srcdir)/data/images/gimp-logo.ong + +gimp-3.0.toml: gimp-3.0.toml.in + $(AM_V_GEN) sed \ + -e 's/@GIMP_VERSION[@]/$(GIMP_VERSION)/' \ + -e 's/@GIMP_LOGO[@]/$(GIMP_DOC_LOGO)/' \ + $< $@ + +# Markdown content files +content_files = \ + $(NULL) + +Gimp-reference: $(top_builddir)/libgimp/Gimp-@GIMP_API_VERSION@.gir $(content_files) gimp-3.0.toml + $(GI_DOCGEN) \ + generate \ + --quiet \ + --fatal-warnings \ + --config=gimp-3.0.toml \ + --output-dir=$(abs_builddir)/Gimp-3.0 \ + --no-namespace-dir \ + --content-dir=$(abs_srcdir) \ + $< diff --git a/devel-docs/reference/gimp/gimp-3.0.toml.in b/devel-docs/reference/gimp/gimp-3.0.toml.in new file mode 100644 index 0000000000..f25364c830 --- /dev/null +++ b/devel-docs/reference/gimp/gimp-3.0.toml.in @@ -0,0 +1,74 @@ +[library] +namespace = "Gimp" +version = "@GIMP_VERSION@" +browse_url = "https://gitlab.gnome.org/GNOME/gimp/" +repository_url = "https://gitlab.gnome.org/GNOME/gimp.git" +website_url = "https://www.gimp.org" +authors = "GIMP contributors" +logo_url = "@GIMP_LOGO_PATH@" +license = "GPL-3.0-or-later" +description = "GIMP library" +dependencies = [ + 'Babl-0.1', + 'GLib-2.0', + 'GObject-2.0', + 'GdkPixbuf-2.0', + 'Gegl-0.4', + 'Gio-2.0', + 'Gtk-3.0', + 'cairo-1.0', +] +devhelp = true +search_index = true + + [dependencies."Babl-0.1"] + name = "Babl" + description = "Pixel encoding and color space conversion engine" + docs_url = "https://gegl.org/babl" + + [dependencies."GLib-2.0"] + name = "GLib" + description = "C Utility Library" + docs_url = "https://developer.gnome.org/glib/stable" + + [dependencies."GObject-2.0"] + name = "GObject" + description = "The base type system library" + docs_url = "https://developer.gnome.org/gobject/stable" + + [dependencies."GdkPixbuf-2.0"] + name = "GdkPixbuf" + description = "Image loading and scaling" + docs_url = "https://docs.gtk.org/gdk-pixbuf/" + + [dependencies."Gegl-0.4"] + name = "Gegl" + description = "Generic Graphics Library" + docs_url = "https://gegl.org/" + + [dependencies."Gio-2.0"] + name = "Gio" + description = "GObject interfaces and objects" + docs_url = "https://developer.gnome.org/gio/stable" + + [dependencies."Gtk-3.0"] + name = "GTK" + description = "The GTK toolkit" + docs_url = "https://developer.gnome.org/gtk3/stable" + + [dependencies."cairo-1.0"] + name = "Cairo" + description = "A 2D graphics library with support for multiple output devices" + docs_url = "https://www.cairographics.org/manual/" + +[theme] +name = "basic" +show_index_summary = true +show_class_hierarchy = true + +[source-location] +base_url = "https://gitlab.gnome.org/GNOME/gimp/-/blob/master/" + +[extra] +content_files = [ +] diff --git a/devel-docs/reference/gimp/meson.build b/devel-docs/reference/gimp/meson.build new file mode 100644 index 0000000000..aa0af4ac48 --- /dev/null +++ b/devel-docs/reference/gimp/meson.build @@ -0,0 +1,35 @@ +# Extra markdown files +gimp_doc_content_files = [ +] + +gimp_doc_toml = configure_file( + input: 'gimp-3.0.toml.in', + output: '@BASENAME@', + configuration: { + 'GIMP_VERSION': gimp_version, + 'GIMP_LOGO': gimp_logo_dir / 'gimp-logo.png', + }, +) + +gimp_docs = custom_target('gimp-docs', + input: libgimp_gir[0], + output: 'Gimp-@0@'.format(gimp_api_version), + command: [ + gi_docgen, + 'generate', + '--quiet', + '--fatal-warnings', + '--config', gimp_doc_toml, + '--output-dir=@OUTPUT@', + '--no-namespace-dir', + '--content-dir=@0@'.format(meson.current_source_dir()), + '@INPUT@', + ], + depend_files: [ + gimp_doc_toml, + gimp_doc_content_files, + ], + build_by_default: true, + install: true, + install_dir: get_option('datadir') / 'doc', +) diff --git a/devel-docs/reference/meson.build b/devel-docs/reference/meson.build new file mode 100644 index 0000000000..e885a51a21 --- /dev/null +++ b/devel-docs/reference/meson.build @@ -0,0 +1,4 @@ +gi_docgen = find_program('gi-docgen') + +subdir('gimp') +subdir('gimp-ui') diff --git a/devel-docs/tools/.gitignore b/devel-docs/tools/.gitignore deleted file mode 100644 index 52b5248d73..0000000000 --- a/devel-docs/tools/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -/Makefile -/Makefile.in -/.deps -/.libs -/doc-shooter -/*.png diff --git a/devel-docs/tools/Makefile.am b/devel-docs/tools/Makefile.am deleted file mode 100644 index 9668a44d04..0000000000 --- a/devel-docs/tools/Makefile.am +++ /dev/null @@ -1,55 +0,0 @@ -## Process this file with automake to produce Makefile.in - -if OS_WIN32 -mwindows = -mwindows -else -libm = -lm -endif - -libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la -libgimpconfig = $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la -libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la $(libm) -libgimpmodule = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la -libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la - - -AM_CPPFLAGS = \ - -DTOP_SRCDIR=\"$(top_srcdir)\" \ - -I$(top_srcdir) \ - $(GTK_CFLAGS) \ - $(GEGL_CFLAGS) - -AM_LDFLAGS = $(mwindows) - - -if ENABLE_GTK_DOC -noinst_PROGRAMS = $(DOC_SHOOTER) -endif - -doc_shooter_SOURCES = \ - shadow.c \ - shadow.h \ - shooter.c \ - units.c \ - units.h \ - widgets.c \ - widgets.h - -doc_shooter_LDADD = \ - $(libgimpwidgets) \ - $(libgimpconfig) \ - $(libgimpmodule) \ - $(libgimpmath) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) - - -EXTRA_PROGRAMS = doc-shooter - -EXTRA_DIST = README.shooter - - -clean-local: - rm -f *.png diff --git a/devel-docs/tools/README.shooter b/devel-docs/tools/README.shooter deleted file mode 100644 index 53a905cc2e..0000000000 --- a/devel-docs/tools/README.shooter +++ /dev/null @@ -1,13 +0,0 @@ -The doc-shooter is a small utility used to create screenshots of -widgets for the GIMP API reference manuals. This utility is X11 -specific, so it should only be built when GIMP is being compiled -for the X11 GDK backend. - -Taking the screenshots is not part of the docs build. -Instead, the images are created, and then copied by hand into -devel-docs/libgimpwidgets/images. Ideally, the images should be -taken once a release, and all images should be updated at the -same time. A simple theme should be used to take the screenshots. - -The GTK+ docs team came up with the idea for this utility as -well as some of the code to implement it. diff --git a/devel-docs/tools/meson.build b/devel-docs/tools/meson.build deleted file mode 100644 index a4b8211081..0000000000 --- a/devel-docs/tools/meson.build +++ /dev/null @@ -1,28 +0,0 @@ -if have_doc_shooter - -doc_shooter_sources = [ - 'shadow.c', - 'shooter.c', - 'units.c', - 'widgets.c', -] - -doc_shooter = executable('doc-shooter', - doc_shooter_sources, - include_directories: [ rootInclude, ], - dependencies: [ - gtk3, gdk_pixbuf, gegl, fontconfig, math, - ], - c_args: '-DTOP_SRCDIR="@0@"'.format(meson.source_root()), - link_with: [ - libgimpbase, - libgimpcolor, - libgimpconfig, - libgimpmath, - libgimpmodule, - libgimpwidgets, - ], - install: false, -) - -endif diff --git a/devel-docs/tools/shadow.c b/devel-docs/tools/shadow.c deleted file mode 100644 index 1ea95bd54d..0000000000 --- a/devel-docs/tools/shadow.c +++ /dev/null @@ -1,149 +0,0 @@ -#include "shadow.h" -#include - -#define BLUR_RADIUS 5 -#define SHADOW_OFFSET (BLUR_RADIUS * 4 / 5) -#define SHADOW_OPACITY 0.75 - -typedef struct { - int size; - double *data; -} ConvFilter; - -static double -gaussian (double x, double y, double r) -{ - return ((1 / (2 * M_PI * r)) * - exp ((- (x * x + y * y)) / (2 * r * r))); -} - -static ConvFilter * -create_blur_filter (int radius) -{ - ConvFilter *filter; - int x, y; - double sum; - - filter = g_new0 (ConvFilter, 1); - filter->size = radius * 2 + 1; - filter->data = g_new (double, filter->size * filter->size); - - sum = 0.0; - - for (y = 0 ; y < filter->size; y++) - { - for (x = 0 ; x < filter->size; x++) - { - sum += filter->data[y * filter->size + x] = gaussian (x - (filter->size >> 1), - y - (filter->size >> 1), - radius); - } - } - - for (y = 0; y < filter->size; y++) - { - for (x = 0; x < filter->size; x++) - { - filter->data[y * filter->size + x] /= sum; - } - } - - return filter; - -} - -static GdkPixbuf * -create_shadow (GdkPixbuf *src) -{ - int x, y, i, j; - int width, height; - GdkPixbuf *dest; - static ConvFilter *filter = NULL; - int src_rowstride, dest_rowstride; - int src_bpp, dest_bpp; - - guchar *src_pixels, *dest_pixels; - - if (!filter) - filter = create_blur_filter (BLUR_RADIUS); - - width = gdk_pixbuf_get_width (src) + BLUR_RADIUS * 2 + SHADOW_OFFSET; - height = gdk_pixbuf_get_height (src) + BLUR_RADIUS * 2 + SHADOW_OFFSET; - - dest = gdk_pixbuf_new (gdk_pixbuf_get_colorspace (src), - gdk_pixbuf_get_has_alpha (src), - gdk_pixbuf_get_bits_per_sample (src), - width, height); - gdk_pixbuf_fill (dest, 0); - src_pixels = gdk_pixbuf_get_pixels (src); - src_rowstride = gdk_pixbuf_get_rowstride (src); - src_bpp = gdk_pixbuf_get_has_alpha (src) ? 4 : 3; - - dest_pixels = gdk_pixbuf_get_pixels (dest); - dest_rowstride = gdk_pixbuf_get_rowstride (dest); - dest_bpp = gdk_pixbuf_get_has_alpha (dest) ? 4 : 3; - - for (y = 0; y < height; y++) - { - for (x = 0; x < width; x++) - { - int sumr = 0, sumg = 0, sumb = 0, suma = 0; - - for (i = 0; i < filter->size; i++) - { - for (j = 0; j < filter->size; j++) - { - int src_x, src_y; - - src_y = -(BLUR_RADIUS + SHADOW_OFFSET) + y - (filter->size >> 1) + i; - src_x = -(BLUR_RADIUS + SHADOW_OFFSET) + x - (filter->size >> 1) + j; - - if (src_y < 0 || src_y >= gdk_pixbuf_get_height (src) || - src_x < 0 || src_x >= gdk_pixbuf_get_width (src)) - continue; - - sumr += src_pixels [src_y * src_rowstride + - src_x * src_bpp + 0] * - filter->data [i * filter->size + j]; - sumg += src_pixels [src_y * src_rowstride + - src_x * src_bpp + 1] * - filter->data [i * filter->size + j]; - - sumb += src_pixels [src_y * src_rowstride + - src_x * src_bpp + 2] * - filter->data [i * filter->size + j]; - - if (src_bpp == 4) - suma += src_pixels [src_y * src_rowstride + - src_x * src_bpp + 3] * - filter->data [i * filter->size + j]; - - - } - } - - if (dest_bpp == 4) - dest_pixels [y * dest_rowstride + - x * dest_bpp + 3] = suma * SHADOW_OPACITY; - - } - } - - return dest; -} - -GdkPixbuf * -create_shadowed_pixbuf (GdkPixbuf *src) -{ - GdkPixbuf *dest; - - dest = create_shadow (src); - - gdk_pixbuf_composite (src, dest, - BLUR_RADIUS, BLUR_RADIUS, - gdk_pixbuf_get_width (src), - gdk_pixbuf_get_height (src), - BLUR_RADIUS, BLUR_RADIUS, 1.0, 1.0, - GDK_INTERP_NEAREST, 255); - return dest; -} diff --git a/devel-docs/tools/shadow.h b/devel-docs/tools/shadow.h deleted file mode 100644 index 2f569cc349..0000000000 --- a/devel-docs/tools/shadow.h +++ /dev/null @@ -1,8 +0,0 @@ -#ifndef __SHADOW_H__ -#define __SHADOW_H__ - -#include - -GdkPixbuf *create_shadowed_pixbuf (GdkPixbuf *src); - -#endif /* __SHADOW_H__ */ diff --git a/devel-docs/tools/shooter.c b/devel-docs/tools/shooter.c deleted file mode 100644 index 35453b839f..0000000000 --- a/devel-docs/tools/shooter.c +++ /dev/null @@ -1,179 +0,0 @@ - -#include "config.h" - -#include -#include - -#include "libgimpbase/gimpbase.h" -#include "libgimpconfig/gimpconfig.h" -#include "libgimpmodule/gimpmodule.h" -#include "libgimpwidgets/gimpwidgets.h" -#include "libgimpwidgets/gimpwidgets-private.h" - -#include "shadow.h" -#include "units.h" -#include "widgets.h" - - -static GdkPixbuf * -add_border_to_shot (GdkPixbuf *pixbuf) -{ - GdkPixbuf *retval; - - retval = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8, - gdk_pixbuf_get_width (pixbuf) + 2, - gdk_pixbuf_get_height (pixbuf) + 2); - - /* Fill with solid black */ - gdk_pixbuf_fill (retval, 0x000000FF); - - gdk_pixbuf_copy_area (pixbuf, - 0, 0, - gdk_pixbuf_get_width (pixbuf), - gdk_pixbuf_get_height (pixbuf), - retval, 1, 1); - - return retval; -} - -static GdkPixbuf * -take_window_shot (GtkWidget *widget) -{ - GtkAllocation allocation; - cairo_surface_t *surface; - cairo_t *cr; - GdkPixbuf *pixbuf; - - allocation.x = 0; - allocation.y = 0; - gtk_widget_get_preferred_width (widget, NULL, &allocation.width); - gtk_widget_get_preferred_height (widget, NULL, &allocation.height); - - gtk_widget_size_allocate (widget, &allocation); - gtk_widget_get_allocation (widget, &allocation); - - surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, - allocation.width, - allocation.height); - cr = cairo_create (surface); - gtk_widget_draw (widget, cr); - cairo_destroy (cr); - - pixbuf = gdk_pixbuf_get_from_surface (surface, 0, 0, - allocation.width, - allocation.height); - - cairo_surface_destroy (surface); - - if (GTK_IS_OFFSCREEN_WINDOW (widget)) - { - GdkPixbuf *tmp; - - tmp = add_border_to_shot (pixbuf); - - g_object_unref (pixbuf); - - pixbuf = create_shadowed_pixbuf (tmp); - - g_object_unref (tmp); - } - - return pixbuf; -} - -static gboolean -shooter_get_foreground (GimpRGB *color) -{ - color->r = color->g = color->b = 0.0; - color->a = 1.0; - - return TRUE; -} - -static gboolean -shooter_get_background (GimpRGB *color) -{ - color->r = color->g = color->b = 1.0; - color->a = 1.0; - - return TRUE; -} - -static void -shooter_standard_help (const gchar *help_id, - gpointer help_data) -{ -} - -static void -shooter_ensure_modules (void) -{ - static GimpModuleDB *module_db = NULL; - - if (! module_db) - { - gchar *config = gimp_config_build_plug_in_path ("modules"); - gchar *path = gimp_config_path_expand (config, TRUE, NULL); - - module_db = gimp_module_db_new (FALSE); - gimp_module_db_load (module_db, path); - - g_free (path); - g_free (config); - } -} - -int -main (int argc, - char **argv) -{ - GList *toplevels; - GList *node; - - g_set_application_name ("GIMP documentation shooter"); - - /* If there's no DISPLAY, we silently error out. - * We don't want to break headless builds. - */ - if (! gtk_init_check (&argc, &argv)) - return EXIT_SUCCESS; - - units_init (); - - gimp_widgets_init (shooter_standard_help, - shooter_get_foreground, - shooter_get_background, - shooter_ensure_modules, - NULL); - - toplevels = get_all_widgets (); - - for (node = toplevels; node; node = g_list_next (node)) - { - WidgetInfo *info = node->data; - GdkPixbuf *screenshot = NULL; - - gtk_widget_show (info->widget); - gtk_widget_queue_draw (info->widget); - - while (gtk_events_pending ()) - gtk_main_iteration (); - - screenshot = take_window_shot (info->widget); - - if (screenshot) - { - gchar *filename; - - filename = g_strdup_printf ("%s.png", info->name); - gdk_pixbuf_save (screenshot, filename, "png", NULL, NULL); - g_free(filename); - - g_object_unref (screenshot); - } - - gtk_widget_hide (info->widget); - } - - return EXIT_SUCCESS; -} diff --git a/devel-docs/tools/units.c b/devel-docs/tools/units.c deleted file mode 100644 index ed5db39215..0000000000 --- a/devel-docs/tools/units.c +++ /dev/null @@ -1,102 +0,0 @@ - -#include "config.h" - -#include - -#include "libgimpbase/gimpbase.h" -#include "libgimpbase/gimpbase-private.h" - -#include "units.h" - - -typedef struct -{ - gdouble factor; - gint digits; - const gchar *identifier; - const gchar *symbol; - const gchar *abbreviation; - const gchar *singular; - const gchar *plural; -} GimpUnitDef; - -static const GimpUnitDef unit_defs[] = -{ - { 0.0, 0, "pixels", "px", "px", "pixel", "pixels" }, - { 1.0, 2, "inches", "''", "in", "inch", "inches" }, - { 25.4, 1, "millimeters", "mm", "mm", "millimeter", "millimeters" } -}; - - -static gint -units_get_number_of_units (void) -{ - return G_N_ELEMENTS (unit_defs); -} - -static gint -units_get_number_of_built_in_units (void) -{ - return G_N_ELEMENTS (unit_defs); -} - -static gdouble -units_unit_get_factor (GimpUnit unit) -{ - return unit_defs[unit].factor; -} - -static gint -units_unit_get_digits (GimpUnit unit) -{ - return unit_defs[unit].digits; -} - -static const gchar * -units_unit_get_identifier (GimpUnit unit) -{ - return unit_defs[unit].identifier; -} - -static const gchar * -units_unit_get_symbol (GimpUnit unit) -{ - return unit_defs[unit].symbol; -} - -static const gchar * -units_unit_get_abbreviation (GimpUnit unit) -{ - return unit_defs[unit].abbreviation; -} - -static const gchar * -units_unit_get_singular (GimpUnit unit) -{ - return unit_defs[unit].singular; -} - -static const gchar * -units_unit_get_plural (GimpUnit unit) -{ - return unit_defs[unit].plural; -} - -void -units_init (void) -{ - GimpUnitVtable vtable; - - vtable.unit_get_number_of_units = units_get_number_of_units; - vtable.unit_get_number_of_built_in_units = units_get_number_of_built_in_units; - vtable.unit_new = NULL; - vtable.unit_get_factor = units_unit_get_factor; - vtable.unit_get_digits = units_unit_get_digits; - vtable.unit_get_identifier = units_unit_get_identifier; - vtable.unit_get_symbol = units_unit_get_symbol; - vtable.unit_get_abbreviation = units_unit_get_abbreviation; - vtable.unit_get_singular = units_unit_get_singular; - vtable.unit_get_plural = units_unit_get_plural; - - gimp_base_init (&vtable); -} diff --git a/devel-docs/tools/units.h b/devel-docs/tools/units.h deleted file mode 100644 index 8875e8acd2..0000000000 --- a/devel-docs/tools/units.h +++ /dev/null @@ -1,8 +0,0 @@ -#ifndef __UNITS_H__ -#define __UNITS_H__ - - -void units_init (void); - - -#endif /* __UNITS_H__ */ diff --git a/devel-docs/tools/widgets.c b/devel-docs/tools/widgets.c deleted file mode 100644 index 7cb9456753..0000000000 --- a/devel-docs/tools/widgets.c +++ /dev/null @@ -1,873 +0,0 @@ - -#include "config.h" - -#include - -#include -#include - -#undef GIMP_DISABLE_DEPRECATED - -#include "libgimpbase/gimpbase.h" -#include "libgimpconfig/gimpconfig.h" -#include "libgimpcolor/gimpcolor.h" -#include "libgimpwidgets/gimpwidgets.h" -#include "libgimpwidgets/gimpwidgets-private.h" - - -#include "widgets.h" - - -#define SMALL_WIDTH 240 -#define SMALL_HEIGHT 75 -#define MEDIUM_WIDTH 240 -#define MEDIUM_HEIGHT 165 -#define LARGE_WIDTH 240 -#define LARGE_HEIGHT 240 - - -static WidgetInfo * -new_widget_info (const char *name, - GtkWidget *widget, - gboolean show_all, - WidgetSize size) -{ - WidgetInfo *info; - - info = g_new0 (WidgetInfo, 1); - - info->name = g_strdup (name); - info->show_all = show_all; - info->size = size; - info->no_focus = TRUE; - - if (GTK_IS_WINDOW (widget)) - { - info->widget = widget; - - gtk_window_set_resizable (GTK_WINDOW (info->widget), FALSE); - } - else - { - info->widget = gtk_offscreen_window_new (); - - gtk_container_set_border_width (GTK_CONTAINER (info->widget), 12); - gtk_container_add (GTK_CONTAINER (info->widget), widget); - } - - if (info->show_all) - gtk_widget_show_all (widget); - else - gtk_widget_show (widget); - - g_signal_connect (info->widget, "focus", G_CALLBACK (gtk_true), NULL); - - switch (size) - { - case SMALL: - gtk_widget_set_size_request (info->widget, SMALL_WIDTH, SMALL_HEIGHT); - break; - case MEDIUM: - gtk_widget_set_size_request (info->widget, MEDIUM_WIDTH, MEDIUM_HEIGHT); - break; - case LARGE: - gtk_widget_set_size_request (info->widget, LARGE_WIDTH, LARGE_HEIGHT); - break; - default: - break; - } - - return info; -} - -static void -color_init (GimpRGB *rgb) -{ - gimp_rgb_parse_name (rgb, "goldenrod", -1); - gimp_rgb_set_alpha (rgb, 0.7); -} - -static GdkPixbuf * -load_image (const gchar *name) -{ - GdkPixbuf *pixbuf; - gchar *filename; - - filename = g_build_filename (TOP_SRCDIR, "data", "images", name, NULL); - - pixbuf = gdk_pixbuf_new_from_file (filename, NULL); - - g_free (filename); - - return pixbuf; -} - -static WidgetInfo * -create_browser (void) -{ - GtkWidget *vbox; - GtkWidget *browser; - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - browser = gimp_browser_new (); - gtk_widget_set_size_request (browser, 500, 200); - gimp_browser_add_search_types (GIMP_BROWSER (browser), - "by name", 1, - NULL); - gimp_browser_show_message (GIMP_BROWSER (browser), "Result goes here"); - gtk_box_pack_start (GTK_BOX (gimp_browser_get_left_vbox (GIMP_BROWSER (browser))), - gtk_label_new ("TreeView goes here"), TRUE, TRUE, 0); - gtk_box_pack_start (GTK_BOX (vbox), browser, TRUE, TRUE, 0); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("Browser"), FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-browser", vbox, TRUE, MEDIUM); -} - -static WidgetInfo * -create_busy_box (void) -{ - GtkWidget *widget; - - widget = gimp_busy_box_new ("Busy Box"); - gtk_widget_set_halign (widget, GTK_ALIGN_CENTER); - gtk_widget_set_valign (widget, GTK_ALIGN_CENTER); - - return new_widget_info ("gimp-widget-busy-box", widget, TRUE, SMALL); -} - -static WidgetInfo * -create_button (void) -{ - GtkWidget *widget; - - widget = gimp_button_new (); - gtk_widget_set_halign (widget, GTK_ALIGN_CENTER); - gtk_widget_set_valign (widget, GTK_ALIGN_CENTER); - - gtk_container_add (GTK_CONTAINER (widget), - gtk_label_new_with_mnemonic ("_Button")); - - return new_widget_info ("gimp-widget-button", widget, TRUE, SMALL); -} - -static WidgetInfo * -create_chain_button (void) -{ - GtkWidget *vbox; - GtkWidget *grid; - GtkWidget *label; - GtkWidget *chain; - GtkWidget *separator; - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - grid = gtk_grid_new (); - gtk_widget_set_halign (grid, GTK_ALIGN_CENTER); - gtk_widget_set_valign (grid, GTK_ALIGN_CENTER); - gtk_grid_set_row_spacing (GTK_GRID (grid), 6); - gtk_grid_set_column_spacing (GTK_GRID (grid), 6); - gtk_box_pack_start (GTK_BOX (vbox), grid, TRUE, TRUE, 0); - - chain = gimp_chain_button_new (GIMP_CHAIN_LEFT); - gimp_chain_button_set_active (GIMP_CHAIN_BUTTON (chain), TRUE); - gtk_grid_attach (GTK_GRID (grid), chain, 0, 0, 1, 2); - - label = gtk_label_new ("Linked\nItems"); - gtk_grid_attach (GTK_GRID (grid), label, 1, 0, 1, 1); - - label = gtk_label_new ("Linked\nItems"); - gtk_grid_attach (GTK_GRID (grid), label, 1, 1, 1, 1); - - separator = gtk_separator_new (GTK_ORIENTATION_VERTICAL); - gtk_grid_attach (GTK_GRID (grid), separator, 2, 0, 1, 2); - - label = gtk_label_new ("Unlinked\nItems"); - gtk_grid_attach (GTK_GRID (grid), label, 3, 0, 1, 1); - - label = gtk_label_new ("Unlinked\nItems"); - gtk_grid_attach (GTK_GRID (grid), label, 3, 1, 1, 1); - - chain = gimp_chain_button_new (GIMP_CHAIN_RIGHT); - gimp_chain_button_set_active (GIMP_CHAIN_BUTTON (chain), FALSE); - gtk_grid_attach (GTK_GRID (grid), chain, 4, 0, 1, 2); - - gtk_box_pack_end (GTK_BOX (vbox), gtk_label_new ("Chain Button"), - FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-chain-button", vbox, TRUE, MEDIUM); -} - -static WidgetInfo * -create_color_area (void) -{ - GtkWidget *vbox; - GtkWidget *area; - GimpRGB color; - - color_init (&color); - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - area = gimp_color_area_new (&color, GIMP_COLOR_AREA_SMALL_CHECKS, 0); - gtk_widget_set_halign (area, GTK_ALIGN_FILL); - gtk_widget_set_valign (area, GTK_ALIGN_CENTER); - gimp_color_area_set_draw_border (GIMP_COLOR_AREA (area), TRUE); - gtk_widget_set_size_request (area, -1, 25); - gtk_box_pack_start (GTK_BOX (vbox), area, TRUE, TRUE, 0); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("Color Area"), FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-color-area", vbox, TRUE, SMALL); -} - -static WidgetInfo * -create_color_button (void) -{ - GtkWidget *vbox; - GtkWidget *button; - GimpRGB color; - - color_init (&color); - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - button = gimp_color_button_new ("Color Button", - 80, 20, &color, - GIMP_COLOR_AREA_SMALL_CHECKS); - gtk_widget_set_halign (button, GTK_ALIGN_CENTER); - gtk_widget_set_valign (button, GTK_ALIGN_CENTER); - gtk_container_add (GTK_CONTAINER (vbox), button); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("Color Button"), FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-color-button", vbox, TRUE, SMALL); -} - -static WidgetInfo * -create_color_hex_entry (void) -{ - GtkWidget *vbox; - GtkWidget *entry; - GimpRGB color; - - color_init (&color); - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - entry = gimp_color_hex_entry_new (); - gtk_widget_set_halign (entry, GTK_ALIGN_CENTER); - gtk_widget_set_valign (entry, GTK_ALIGN_CENTER); - gimp_color_hex_entry_set_color (GIMP_COLOR_HEX_ENTRY (entry), &color); - gtk_box_pack_start (GTK_BOX (vbox), entry, TRUE, TRUE, 0); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("Color Hex Entry"), FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-color-hex-entry", vbox, TRUE, SMALL); -} - -static WidgetInfo * -create_color_notebook (void) -{ - GtkWidget *vbox; - GtkWidget *notebook; - GtkWidget *label; - GimpRGB rgb; - GimpHSV hsv; - - color_init (&rgb); - gimp_rgb_to_hsv (&rgb, &hsv); - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - notebook = gimp_color_selector_new (GIMP_TYPE_COLOR_NOTEBOOK, - &rgb, &hsv, - GIMP_COLOR_SELECTOR_HUE); - gtk_widget_set_halign (notebook, GTK_ALIGN_FILL); - gtk_widget_set_valign (notebook, GTK_ALIGN_CENTER); - gtk_box_pack_start (GTK_BOX (vbox), notebook, TRUE, TRUE, 0); - gtk_widget_show (notebook); - - label = gtk_label_new ("Color Scales"); - gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0); - gtk_widget_show (label); - - return new_widget_info ("gimp-widget-color-notebook", vbox, FALSE, SMALL); -} - -static WidgetInfo * -create_color_profile_combo_box (void) -{ - GtkWidget *vbox; - GtkWidget *combo; - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - combo = gimp_color_profile_combo_box_new (gtk_dialog_new (), NULL); - gtk_widget_set_halign (combo, GTK_ALIGN_CENTER); - gtk_widget_set_valign (combo, GTK_ALIGN_CENTER); - gimp_color_profile_combo_box_add_file (GIMP_COLOR_PROFILE_COMBO_BOX (combo), - NULL, "sRGB"); - gtk_combo_box_set_active (GTK_COMBO_BOX (combo), 0); - gtk_box_pack_start (GTK_BOX (vbox), combo, TRUE, TRUE, 0); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("Color Profile Combo Box"), - FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-color-profile-combo-box", vbox, TRUE, SMALL); -} - -static WidgetInfo * -create_color_profile_view (void) -{ - GtkWidget *vbox; - GtkWidget *view; - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - view = gimp_color_profile_view_new (); - gtk_widget_set_halign (view, GTK_ALIGN_FILL); - gtk_widget_set_valign (view, GTK_ALIGN_CENTER); - gimp_color_profile_view_set_profile (GIMP_COLOR_PROFILE_VIEW (view), - gimp_color_profile_new_rgb_srgb ()); - gtk_box_pack_start (GTK_BOX (vbox), view, TRUE, TRUE, 0); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("Color Profile View"), - FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-color-profile-view", vbox, TRUE, SMALL); -} - -static WidgetInfo * -create_color_scale (void) -{ - GtkWidget *vbox; - GtkWidget *scale; - GimpRGB rgb; - GimpHSV hsv; - - color_init (&rgb); - gimp_rgb_to_hsv (&rgb, &hsv); - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - scale = gimp_color_scale_new (GTK_ORIENTATION_HORIZONTAL, - GIMP_COLOR_SELECTOR_HUE); - gtk_widget_set_halign (scale, GTK_ALIGN_FILL); - gtk_widget_set_valign (scale, GTK_ALIGN_CENTER); - gimp_color_scale_set_color (GIMP_COLOR_SCALE (scale), &rgb, &hsv); - gtk_range_set_value (GTK_RANGE (scale), 40); - gtk_box_pack_start (GTK_BOX (vbox), scale, TRUE, TRUE, 0); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("Color Scale"), FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-color-scale", vbox, TRUE, SMALL); -} - -static WidgetInfo * -create_color_scales (void) -{ - GtkWidget *vbox; - GtkWidget *scales; - GtkWidget *label; - GimpRGB rgb; - GimpHSV hsv; - - color_init (&rgb); - gimp_rgb_to_hsv (&rgb, &hsv); - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - scales = gimp_color_selector_new (GIMP_TYPE_COLOR_SCALES, - &rgb, &hsv, - GIMP_COLOR_SELECTOR_HUE); - gtk_widget_set_halign (scales, GTK_ALIGN_FILL); - gtk_widget_set_valign (scales, GTK_ALIGN_CENTER); - gtk_box_pack_start (GTK_BOX (vbox), scales, TRUE, TRUE, 0); - gtk_widget_show (scales); - - label = gtk_label_new ("Color Scales"); - gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0); - gtk_widget_show (label); - - return new_widget_info ("gimp-widget-color-scales", vbox, FALSE, SMALL); -} - -static WidgetInfo * -create_color_select (void) -{ - GtkWidget *vbox; - GtkWidget *select; - GtkWidget *label; - GimpRGB rgb; - GimpHSV hsv; - - color_init (&rgb); - gimp_rgb_to_hsv (&rgb, &hsv); - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - select = gimp_color_selector_new (GIMP_TYPE_COLOR_SELECT, - &rgb, &hsv, - GIMP_COLOR_SELECTOR_HUE); - gtk_widget_set_halign (select, GTK_ALIGN_FILL); - gtk_widget_set_valign (select, GTK_ALIGN_CENTER); - gtk_box_pack_start (GTK_BOX (vbox), select, TRUE, TRUE, 0); - gtk_widget_show (select); - - label = gtk_label_new ("Color Select"); - gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0); - gtk_widget_show (label); - - return new_widget_info ("gimp-widget-color-select", vbox, FALSE, SMALL); -} - -static WidgetInfo * -create_color_selection (void) -{ - GtkWidget *vbox; - GtkWidget *selection; - GtkWidget *label; - GimpRGB color; - - color_init (&color); - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - selection = gimp_color_selection_new (); - gtk_widget_set_halign (selection, GTK_ALIGN_CENTER); - gtk_widget_set_valign (selection, GTK_ALIGN_CENTER); - gtk_widget_set_size_request (selection, 400, -1); - gimp_color_selection_set_show_alpha (GIMP_COLOR_SELECTION (selection), TRUE); - gimp_color_selection_set_color (GIMP_COLOR_SELECTION (selection), &color); - gtk_box_pack_start (GTK_BOX (vbox), selection, TRUE, TRUE, 0); - gtk_widget_show (selection); - - label = gtk_label_new ("Color Selection"); - gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0); - gtk_widget_show (label); - - return new_widget_info ("gimp-widget-color-selection", vbox, FALSE, ASIS); -} - -static WidgetInfo * -create_dialog (void) -{ - WidgetInfo *info; - GtkWidget *widget; - GtkWidget *content; - GtkWidget *label; - - widget = gimp_dialog_new ("Gimp Dialog", - "gimp-widget-dialog", - NULL, 0, NULL, NULL, - "_Cancel", GTK_RESPONSE_CANCEL, - "_OK", GTK_RESPONSE_OK, - - NULL); - - label = gtk_label_new ("Gimp Dialog"); - content = gtk_dialog_get_content_area (GTK_DIALOG (widget)); - gtk_container_add (GTK_CONTAINER (content), label); - gtk_widget_show (label); - info = new_widget_info ("gimp-widget-dialog", widget, TRUE, MEDIUM); - - return info; -} - -static WidgetInfo * -create_enum_combo_box (void) -{ - GtkWidget *vbox; - GtkWidget *combo; - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - combo = gimp_enum_combo_box_new (GIMP_TYPE_CHANNEL_TYPE); - gtk_widget_set_halign (combo, GTK_ALIGN_FILL); - gtk_widget_set_valign (combo, GTK_ALIGN_CENTER); - gimp_int_combo_box_set_active (GIMP_INT_COMBO_BOX (combo), GIMP_CHANNEL_BLUE); - gtk_box_pack_start (GTK_BOX (vbox), combo, TRUE, TRUE, 0); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("Enum Combo Box"), FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-enum-combo-box", vbox, TRUE, SMALL); -} - -static WidgetInfo * -create_enum_label (void) -{ - GtkWidget *vbox; - GtkWidget *label; - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - label = gimp_enum_label_new (GIMP_TYPE_IMAGE_BASE_TYPE, GIMP_RGB); - gtk_widget_set_halign (label, GTK_ALIGN_CENTER); - gtk_widget_set_valign (label, GTK_ALIGN_CENTER); - gtk_box_pack_start (GTK_BOX (vbox), label, TRUE, TRUE, 0); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("Enum Label"), FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-enum-label", vbox, TRUE, SMALL); -} - -static WidgetInfo * -create_file_entry (void) -{ - GtkWidget *vbox; - GtkWidget *entry; - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - entry = gimp_file_entry_new ("File Entry", - "wilber.png", - FALSE, TRUE); - gtk_widget_set_halign (entry, GTK_ALIGN_FILL); - gtk_widget_set_valign (entry, GTK_ALIGN_CENTER); - gtk_box_pack_start (GTK_BOX (vbox), entry, TRUE, TRUE, 0); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("File Entry"), FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-file-entry", vbox, TRUE, SMALL); -} - -static WidgetInfo * -create_frame (void) -{ - GtkWidget *frame; - GtkWidget *content; - - frame = gimp_frame_new ("Frame"); - content = gtk_label_new ("Frame Content\nThis Frame is HIG compliant"); - gtk_label_set_xalign (GTK_LABEL (content), 0.0); - gtk_label_set_yalign (GTK_LABEL (content), 0.0); - gtk_container_add (GTK_CONTAINER (frame), content); - - return new_widget_info ("gimp-widget-frame", frame, TRUE, MEDIUM); -} - -static WidgetInfo * -create_hint_box (void) -{ - GtkWidget *box = gimp_hint_box_new ("This is a user hint."); - - return new_widget_info ("gimp-widget-hint-box", box, TRUE, MEDIUM); -} - -static WidgetInfo * -create_number_pair_entry (void) -{ - GtkWidget *vbox; - GtkWidget *entry; - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - entry = gimp_number_pair_entry_new (":/", TRUE, 0.001, GIMP_MAX_IMAGE_SIZE); - gtk_widget_set_halign (entry, GTK_ALIGN_FILL); - gtk_widget_set_valign (entry, GTK_ALIGN_CENTER); - gimp_number_pair_entry_set_values (GIMP_NUMBER_PAIR_ENTRY (entry), 4, 3); - gtk_box_pack_start (GTK_BOX (vbox), entry, TRUE, TRUE, 0); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("Number Pair Entry"), FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-number-pair-entry", vbox, TRUE, SMALL); -} - -static WidgetInfo * -create_int_combo_box (void) -{ - GtkWidget *vbox; - GtkWidget *combo; - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - combo = gimp_int_combo_box_new ("Sobel", 1, - "Prewitt", 2, - "Gradient", 3, - "Roberts", 4, - "Differential", 5, - "Laplace", 6, - NULL); - gtk_widget_set_halign (combo, GTK_ALIGN_FILL); - gtk_widget_set_valign (combo, GTK_ALIGN_CENTER); - gimp_int_combo_box_set_active (GIMP_INT_COMBO_BOX (combo), 1); - gtk_box_pack_start (GTK_BOX (vbox), combo, TRUE, TRUE, 0); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("Int Combo Box"), FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-int-combo-box", vbox, TRUE, SMALL); -} - -static WidgetInfo * -create_memsize_entry (void) -{ - GtkWidget *vbox; - GtkWidget *entry; - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - entry = gimp_memsize_entry_new ((3 * 1024 + 512) * 1024, - 0, 1024 * 1024 * 1024); - gtk_widget_set_halign (entry, GTK_ALIGN_CENTER); - gtk_widget_set_valign (entry, GTK_ALIGN_CENTER); - gtk_box_pack_start (GTK_BOX (vbox), entry, TRUE, TRUE, 0); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("Memsize Entry"), FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-memsize-entry", vbox, TRUE, SMALL); -} - -static WidgetInfo * -create_offset_area (void) -{ - GtkWidget *vbox; - GtkWidget *frame; - GtkWidget *area; - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - frame = gtk_frame_new (NULL); - gtk_widget_set_halign (frame, GTK_ALIGN_CENTER); - gtk_widget_set_valign (frame, GTK_ALIGN_CENTER); - gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN); - gtk_box_pack_start (GTK_BOX (vbox), frame, TRUE, TRUE, 0); - - area = gimp_offset_area_new (100, 100); - gimp_offset_area_set_size (GIMP_OFFSET_AREA (area), 180, 160); - gimp_offset_area_set_offsets (GIMP_OFFSET_AREA (area), 30, 30); - gtk_container_add (GTK_CONTAINER (frame), area); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("Offset Area"), FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-offset-area", vbox, TRUE, LARGE); -} - -static WidgetInfo * -create_page_selector (void) -{ - GtkWidget *vbox; - GtkWidget *selector; - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - selector = gimp_page_selector_new (); - gtk_widget_set_size_request (selector, -1, 240); - gimp_page_selector_set_n_pages (GIMP_PAGE_SELECTOR (selector), 16); - gimp_page_selector_select_range (GIMP_PAGE_SELECTOR (selector), - "1,3,7-9,12-15"); - gtk_box_pack_start (GTK_BOX (vbox), selector, TRUE, TRUE, 0); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("Page Selector"), FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-page-selector", vbox, TRUE, ASIS); -} - -static WidgetInfo * -create_path_editor (void) -{ - GtkWidget *vbox; - GtkWidget *editor; - gchar *config = gimp_config_build_data_path ("patterns"); - gchar *path = gimp_config_path_expand (config, TRUE, NULL); - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - editor = gimp_path_editor_new ("Path Editor", path); - gtk_widget_set_halign (editor, GTK_ALIGN_CENTER); - gtk_widget_set_valign (editor, GTK_ALIGN_CENTER); - gtk_widget_set_size_request (editor, -1, 240); - gtk_box_pack_start (GTK_BOX (vbox), editor, TRUE, TRUE, 0); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("Path Editor"), FALSE, FALSE, 0); - - g_free (path); - g_free (config); - - return new_widget_info ("gimp-widget-path-editor", vbox, TRUE, ASIS); -} - -static WidgetInfo * -create_pick_button (void) -{ - GtkWidget *vbox; - GtkWidget *button; - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - button = gimp_pick_button_new (); - gtk_widget_set_halign (button, GTK_ALIGN_CENTER); - gtk_widget_set_valign (button, GTK_ALIGN_CENTER); - gtk_box_pack_start (GTK_BOX (vbox), button, TRUE, TRUE, 0); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("Pick Button"), FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-pick-button", vbox, TRUE, SMALL); -} - -static WidgetInfo * -create_preview_area (void) -{ - GtkWidget *vbox; - GtkWidget *area; - GdkPixbuf *pixbuf; - GtkAllocation allocation; - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - pixbuf = load_image ("wilber-wizard.png"); - - allocation.x = 0; - allocation.y = 0; - allocation.width = gdk_pixbuf_get_width (pixbuf); - allocation.height = gdk_pixbuf_get_height (pixbuf); - - area = gimp_preview_area_new (); - gtk_widget_set_halign (area, GTK_ALIGN_CENTER); - gtk_widget_set_valign (area, GTK_ALIGN_CENTER); - gtk_widget_set_size_request (area, allocation.width, allocation.height); - gtk_widget_size_allocate (area, &allocation); - gimp_preview_area_draw (GIMP_PREVIEW_AREA (area), 0, 0, - gdk_pixbuf_get_width (pixbuf), - gdk_pixbuf_get_height (pixbuf), - GIMP_RGBA_IMAGE, - gdk_pixbuf_get_pixels (pixbuf), - gdk_pixbuf_get_rowstride (pixbuf)); - gtk_box_pack_start (GTK_BOX (vbox), area, TRUE, TRUE, 0); - - g_object_unref (pixbuf); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("Preview Area"), FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-preview-area", vbox, TRUE, MEDIUM); -} - -static WidgetInfo * -create_ruler (void) -{ - GtkWidget *grid; - GtkWidget *ruler; - - grid = gtk_grid_new (); - gtk_widget_set_size_request (grid, 200, 200); - - ruler = gimp_ruler_new (GTK_ORIENTATION_HORIZONTAL); - gtk_widget_set_hexpand (ruler, TRUE); - gimp_ruler_set_range (GIMP_RULER (ruler), 0, 100, 100); - gimp_ruler_set_position (GIMP_RULER (ruler), 25); - gtk_grid_attach (GTK_GRID (grid), ruler, 1, 0, 1, 1); - - ruler = gimp_ruler_new (GTK_ORIENTATION_VERTICAL); - gtk_widget_set_vexpand (ruler, TRUE); - gimp_ruler_set_range (GIMP_RULER (ruler), 0, 100, 100); - gimp_ruler_set_position (GIMP_RULER (ruler), 75); - gtk_grid_attach (GTK_GRID (grid), ruler, 0, 1, 1, 1); - - gtk_grid_attach (GTK_GRID (grid), gtk_label_new ("Ruler"), 1, 1, 1, 1); - - return new_widget_info ("gimp-widget-ruler", grid, TRUE, MEDIUM); -} - -static WidgetInfo * -create_string_combo_box (void) -{ - GtkWidget *vbox; - GtkWidget *combo; - GtkListStore *store; - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - store = gtk_list_store_new (1, G_TYPE_STRING); - gtk_list_store_insert_with_values (store, NULL, 0, 0, "Foo", -1); - gtk_list_store_insert_with_values (store, NULL, 1, 0, "Bar", -1); - combo = gimp_string_combo_box_new (GTK_TREE_MODEL (store), 0, 0); - gtk_widget_set_halign (combo, GTK_ALIGN_FILL); - gtk_widget_set_valign (combo, GTK_ALIGN_CENTER); - g_object_unref (store); - gimp_string_combo_box_set_active (GIMP_STRING_COMBO_BOX (combo), "Foo"); - gtk_box_pack_start (GTK_BOX (vbox), combo, TRUE, TRUE, 0); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("String Combo Box"), FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-string-combo-box", vbox, TRUE, SMALL); -} - -static WidgetInfo * -create_unit_combo_box (void) -{ - GtkWidget *vbox; - GtkWidget *combo; - - vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12); - - combo = gimp_unit_combo_box_new (); - gtk_widget_set_halign (combo, GTK_ALIGN_FILL); - gtk_widget_set_valign (combo, GTK_ALIGN_CENTER); - gimp_unit_combo_box_set_active (GIMP_UNIT_COMBO_BOX (combo), GIMP_UNIT_INCH); - gtk_box_pack_start (GTK_BOX (vbox), combo, TRUE, TRUE, 0); - - gtk_box_pack_start (GTK_BOX (vbox), - gtk_label_new ("Unit Combo Box"), FALSE, FALSE, 0); - - return new_widget_info ("gimp-widget-unit-combo-box", vbox, TRUE, SMALL); -} - -GList * -get_all_widgets (void) -{ - GList *retval = NULL; - - retval = g_list_append (retval, create_browser ()); - retval = g_list_append (retval, create_busy_box ()); - retval = g_list_append (retval, create_button ()); - retval = g_list_append (retval, create_chain_button ()); - retval = g_list_append (retval, create_color_area ()); - retval = g_list_append (retval, create_color_button ()); - retval = g_list_append (retval, create_color_hex_entry ()); - /* put selection before notebook, selection ensures the modules */ - retval = g_list_append (retval, create_color_selection ()); - retval = g_list_append (retval, create_color_notebook ()); - retval = g_list_append (retval, create_color_profile_combo_box ()); - retval = g_list_append (retval, create_color_profile_view ()); - retval = g_list_append (retval, create_color_scale ()); - retval = g_list_append (retval, create_color_scales ()); - retval = g_list_append (retval, create_color_select ()); - retval = g_list_append (retval, create_dialog ()); - retval = g_list_append (retval, create_enum_combo_box ()); - retval = g_list_append (retval, create_enum_label ()); - retval = g_list_append (retval, create_file_entry ()); - retval = g_list_append (retval, create_frame ()); - retval = g_list_append (retval, create_hint_box ()); - retval = g_list_append (retval, create_int_combo_box ()); - retval = g_list_append (retval, create_memsize_entry ()); - retval = g_list_append (retval, create_number_pair_entry ()); - retval = g_list_append (retval, create_offset_area ()); - retval = g_list_append (retval, create_page_selector ()); - retval = g_list_append (retval, create_path_editor ()); - retval = g_list_append (retval, create_pick_button ()); - retval = g_list_append (retval, create_preview_area ()); - retval = g_list_append (retval, create_ruler ()); - retval = g_list_append (retval, create_string_combo_box ()); - retval = g_list_append (retval, create_unit_combo_box ()); - - return retval; -} diff --git a/devel-docs/tools/widgets.h b/devel-docs/tools/widgets.h deleted file mode 100644 index 1542320e02..0000000000 --- a/devel-docs/tools/widgets.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef __WIDGETS_H__ -#define __WIDGETS_H__ - - -typedef enum -{ - SMALL, - MEDIUM, - LARGE, - ASIS -} WidgetSize; - -typedef struct WidgetInfo -{ - GtkWidget *widget; - gchar *name; - gboolean no_focus; - gboolean show_all; - WidgetSize size; -} WidgetInfo; - -GList * get_all_widgets (void); - - -#endif /* __WIDGETS_H__ */ diff --git a/libgimp/gimppdb.c b/libgimp/gimppdb.c index a8c64251c7..2136b67c3f 100644 --- a/libgimp/gimppdb.c +++ b/libgimp/gimppdb.c @@ -36,14 +36,10 @@ /** - * SECTION: gimppdb - * @title: GimpPDB - * @short_description: Functions for querying and changing procedural - * database (PDB) entries. + * GimpPDB: * - * Functions for querying and changing procedural database (PDB) - * entries. - **/ + * Provides access to the Procedural DataBase (PDB). + */ struct _GimpPDBPrivate @@ -134,7 +130,7 @@ _gimp_pdb_get_plug_in (GimpPDB *pdb) /** * gimp_pdb_procedure_exists: - * @pdb: A #GimpPDB instance. + * @pdb: A PDB instance. * @procedure_name: A procedure name * * This function checks if a procedure exists in the procedural @@ -159,13 +155,12 @@ gimp_pdb_procedure_exists (GimpPDB *pdb, * @pdb: A #GimpPDB instance. * @procedure_name: A procedure name * - * This function returns the #GimpProcedure which is registered + * This function returns the [class@Procedure] which is registered * with @procedure_name if it exists, or returns %NULL otherwise. * - * The returned #GimpProcedure is owned by @pdb and must not be - * modified. + * The returned [class@Procedure] is owned by @pdb and must not be modified. * - * Return: (nullable) (transfer none): A #GimpProcedure, or %NULL. + * Return: (nullable) (transfer none): A [class@Procedure], or %NULL. * * Since: 3.0 **/ @@ -236,7 +231,7 @@ gimp_pdb_run_procedure (GimpPDB *pdb, * @args: the call arguments. * * Runs the procedure named @procedure_name with @args given in the - * order as passed to gimp_pdb_run_procedure(). + * order as passed to [method@PDB.run_procedure]. * * Returns: (transfer full): the return values for the procedure call. * diff --git a/libgimp/gimpplugin.c b/libgimp/gimpplugin.c index 86fd4975f4..f3ce17f1bc 100644 --- a/libgimp/gimpplugin.c +++ b/libgimp/gimpplugin.c @@ -38,70 +38,62 @@ /** - * SECTION: gimpplugin - * @title: GimpPlugIn - * @short_description: The base class for plug-ins to derive from + * GimpPlugIn: * - * The base class for plug-ins to derive from. #GimpPlugIn manages the - * plug-in's #GimpProcedure objects. The procedures a plug-in - * implements are registered with GIMP by returning a #GList of their - * names from either #GimpPlugInClass.query_procedures() or - * #GimpPlugInClass.init_procedures(). + * The base class for plug-ins to derive from. * - * Every GIMP plug-in has to implement a #GimpPlugIn subclass and make - * it known to the libgimp infrastructure and the main GIMP - * application by passing its #GType to GIMP_MAIN(). + * GimpPlugIn manages the plug-in's [class@Procedure] objects. The procedures a + * plug-in implements are registered with GIMP by returning a list of their + * names from either [vfunc@GimpPlugIn.query_procedures] or + * [vfunc@GimpPlugIn.init_procedures]. * - * GIMP_MAIN() passes the 'argc' and 'argv' of the platform's main() - * function, along with the #GType, to gimp_main(), which creates an - * instance of the plug-in's #GimpPlugIn subclass and calls its - * virtual functions, depending on how the plug-in was called by GIMP. + * Every GIMP plug-in has to be implemented as a subclass and make it known to + * the libgimp infrastructure and the main GIMP application by passing its + * `GType` to [func@MAIN]. * - * There are three different ways GIMP calls a plug-in, "query", - * "init" and "run". + * [func@MAIN] passes the 'argc' and 'argv' of the platform's main() function, + * along with the `GType`, to [func@main], which creates an instance of the + * plug-in's `GimpPlugIn` subclass and calls its virtual functions, depending + * on how the plug-in was called by GIMP. * - * The plug-in is called in "query" mode once after it was installed, - * or when the cached plug-in information in the config file - * "pluginrc" needs to be recreated. In "query" mode, - * #GimpPlugInClass.query_procedures() is called and returns a #GList - * of procedure names the plug-in implements. This is the "normal" - * place to register procedures, because the existence of most - * procedures doesn't depend on things that change between GIMP - * sessions. + * There are 3 different ways GIMP calls a plug-in: "query", "init" and "run". + * + * The plug-in is called in "query" mode once after it was installed, or when + * the cached plug-in information in the config file "pluginrc" needs to be + * recreated. In "query" mode, [vfunc@GimpPlugIn.query_procedures] is called + * and returns a list of procedure names the plug-in implements. This is the + * "normal" place to register procedures, because the existence of most + * procedures doesn't depend on things that change between GIMP sessions. * * The plug-in is called in "init" mode at each GIMP startup, and - * #GimpPlugInClass.init_procedures() is called and returns a #GList - * of procedure names this plug-in implements. This only happens if - * the plug-in actually implements - * #GimpPlugInClass.init_procedures(). A plug-in only needs to - * implement #GimpPlugInClass.init_procedures() if the existence of - * its procedures can change between GIMP sessions, for example if - * they depend on the presence of external tools, or hardware like - * scanners, or online services, or whatever variable circumstances. + * [vfunc@PlugIn.init_procedures] is called and returns a list of procedure + * names this plug-in implements. This only happens if the plug-in actually + * implements [vfunc@GimpPlugIn.init_procedures]. A plug-in only needs to + * implement init_procedures if the existence of its procedures can change + * between GIMP sessions, for example if they depend on the presence of + * external tools, or hardware like scanners, or online services, or whatever + * variable circumstances. * - * In order to register the plug-in's procedures with the main GIMP - * application in the plug-in's "query" and "init" modes, #GimpPlugIn - * calls #GimpPlugInClass.create_procedure() on all procedure names in - * the exact order of the #GList returned by - * #GimpPlugInClass.query_procedures() or - * #GimpPlugInClass.init_procedures() and then registers the returned - * #GimpProcedure using #GimpProcedureClass.register(). + * In order to register the plug-in's procedures with the main GIMP application + * in the plug-in's "query" and "init" modes, [class@PlugIn] calls + * [vfunc@PlugIn.create_procedure] on all procedure names in the exact order of + * the list returned by [vfunc@PlugIn.query_procedures] or + * [vfunc@PlugIn.init_procedures] and then registers the returned + * [class@Procedure]. * - * The plug-in is called in "run" mode whenever one of the procedures - * it implements is called by either the main GIMP application or any - * other plug-in. In "run" mode, one of the procedure names returned - * by #GimpPlugInClass.query_procedures() or - * #GimpPlugInClass.init_procedures() is passed to - * #GimpPlugInClass.create_procedure() which must return a - * #GimpProcedure for the passed name. The procedure is then executed - * by calling gimp_procedure_run(). + * The plug-in is called in "run" mode whenever one of the procedures it + * implements is called by either the main GIMP application or any other + * plug-in. In "run" mode, one of the procedure names returned by + * [vfunc@PlugIn.query_procedures] or [vfunc@PlugIn.init_procedures] is passed + * to [vfunc@PlugIn.create_procedure] which must return a [class@Procedure] for + * the passed name. The procedure is then executed by calling + * [method@Procedure.run]. * - * In any of the three modes, #GimpPlugInClass.quit() is called before - * the plug-in process exits, so the plug-in can perform whatever - * cleanup necessary. + * In any of the three modes, [vfunc@PlugIn.quit] is called before the plug-in + * process exits, so the plug-in can perform whatever cleanup necessary. * * Since: 3.0 - **/ + */ #define WRITE_BUFFER_SIZE 1024 @@ -230,6 +222,11 @@ gimp_plug_in_class_init (GimpPlugInClass *klass) object_class->set_property = gimp_plug_in_set_property; object_class->get_property = gimp_plug_in_get_property; + /** + * GimpPlugIn:read-channel: + * + * The [struct@GLib.IOChannel] to read from GIMP + */ props[PROP_READ_CHANNEL] = g_param_spec_boxed ("read-channel", "Read channel", @@ -238,6 +235,11 @@ gimp_plug_in_class_init (GimpPlugInClass *klass) GIMP_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY); + /** + * GimpPlugIn:write-channel: + * + * The [struct@GLib.IOChannel] to write to GIMP + */ props[PROP_WRITE_CHANNEL] = g_param_spec_boxed ("write-channel", "Write channel", @@ -378,7 +380,7 @@ gimp_plug_in_get_property (GObject *object, * gimp_plug_in_set_translation_domain: * @plug_in: A #GimpPlugIn. * @domain_name: The name of the textdomain (must be unique). - * @domain_path: (nullable): A #GFile pointing to the compiled message catalog + * @domain_path: (nullable): A file pointing to the compiled message catalog * (may be %NULL). * * Sets a textdomain for localisation for the @plug_in. @@ -392,7 +394,7 @@ gimp_plug_in_get_property (GObject *object, * location. * * This function can only be called in the - * #GimpPlugInClass.query_procedures() function of a plug-in. + * [vfunc@PlugIn.query_procedures] function of a plug-in. * * Since: 3.0 **/ @@ -420,13 +422,13 @@ gimp_plug_in_set_translation_domain (GimpPlugIn *plug_in, * Set a help domain and path for the @plug_in. * * This function registers user documentation for the calling plug-in - * with the GIMP help system. The domain_uri parameter points to the + * with the GIMP help system. The @domain_uri parameter points to the * root directory where the plug-in help is installed. For each * supported language there should be a file called 'gimp-help.xml' * that maps the help IDs to the actual help files. * * This function can only be called in the - * #GimpPlugInClass.query_procedures() function of a plug-in. + * [vfunc@PlugIn.query_procedures] function of a plug-in. * * Since: 3.0 **/ @@ -492,19 +494,19 @@ gimp_plug_in_add_menu_branch (GimpPlugIn *plug_in, * * This function adds a temporary procedure to @plug_in. It is usually * called from a %GIMP_PDB_PROC_TYPE_EXTENSION procedure's - * #GimpProcedureClass.run(). + * [vfunc@Procedure.run]. * * A temporary procedure is a procedure which is only available while * one of your plug-in's "real" procedures is running. * - * The procedure's type must be + * The procedure's type _must_ be * %GIMP_PDB_PROC_TYPE_TEMPORARY or the function will fail. * * NOTE: Normally, plug-in communication is triggered by the plug-in * and the GIMP core only responds to the plug-in's requests. You must * explicitly enable receiving of temporary procedure run requests - * using either gimp_plug_in_extension_enable() or - * gimp_plug_in_extension_process(). See this functions' documentation + * using either [method@PlugIn.extension_enable] or + * [method@PlugIn.extension_process]. See their respective documentation * for details. * * Since: 3.0 @@ -528,7 +530,7 @@ gimp_plug_in_add_temp_procedure (GimpPlugIn *plug_in, /** * gimp_plug_in_remove_temp_procedure: * @plug_in: A #GimpPlugIn - * @procedure_name: The name of a #GimpProcedure added to @plug_in. + * @procedure_name: The name of a [class@Procedure] added to @plug_in. * * This function removes a temporary procedure from @plug_in by the * procedure's @procedure_name. @@ -559,10 +561,10 @@ gimp_plug_in_remove_temp_procedure (GimpPlugIn *plug_in, /** * gimp_plug_in_get_temp_procedures: - * @plug_in: A #GimpPlugIn + * @plug_in: A plug-in * * This function retrieves the list of temporary procedure of @plug_in as - * added with gimp_plug_in_add_temp_procedure(). + * added with [method@PlugIn.add_temp_procedure]. * * Returns: (transfer none) (element-type GimpProcedure): The list of * procedures. @@ -580,7 +582,7 @@ gimp_plug_in_get_temp_procedures (GimpPlugIn *plug_in) /** * gimp_plug_in_get_temp_procedure: * @plug_in: A #GimpPlugIn - * @procedure_name: The name of a #GimpProcedure added to @plug_in. + * @procedure_name: The name of a [class@Procedure] added to @plug_in. * * This function retrieves a temporary procedure from @plug_in by the * procedure's @procedure_name. @@ -611,7 +613,7 @@ gimp_plug_in_get_temp_procedure (GimpPlugIn *plug_in, /** * gimp_plug_in_extension_enable: - * @plug_in: A #GimpPlugIn + * @plug_in: A plug-in * * Enables asynchronous processing of messages from the main GIMP * application. @@ -622,18 +624,18 @@ gimp_plug_in_get_temp_procedure (GimpPlugIn *plug_in, * plug-in are just answers to requests the plug-in made. * * If the plug-in however registered temporary procedures using - * gimp_plug_in_add_temp_procedure(), it needs to be able to receive + * [method@PlugIn.add_temp_procedure], it needs to be able to receive * requests to execute them. Usually this will be done by running - * gimp_plug_in_extension_process() in an endless loop. + * [method@PlugIn.extension_process] in an endless loop. * - * If the plug-in cannot use gimp_plug_in_extension_process(), i.e. if - * it has a GUI and is hanging around in a #GMainLoop, it must call - * gimp_plug_in_extension_enable(). + * If the plug-in cannot use [method@PlugIn.extension_process], i.e. if + * it has a GUI and is hanging around in a [class@GLib.MainLoop], it must call + * [method@PlugIn.extension_enable]. * * Note that the plug-in does not need to be a - * #GIMP_PDB_PROC_TYPE_EXTENSION to register temporary procedures. + * [const@PDBProcType.EXTENSION] to register temporary procedures. * - * See also: gimp_plug_in_add_temp_procedure(). + * See also: [method@PlugIn.add_temp_procedure]. * * Since: 3.0 **/ @@ -653,7 +655,7 @@ gimp_plug_in_extension_enable (GimpPlugIn *plug_in) /** * gimp_plug_in_extension_process: - * @plug_in: A #GimpPlugIn. + * @plug_in: A plug-in. * @timeout: The timeout (in ms) to use for the select() call. * * Processes one message sent by GIMP and returns. @@ -662,10 +664,10 @@ gimp_plug_in_extension_enable (GimpPlugIn *plug_in) * gimp_procedure_extension_ready() to process requests for running * temporary procedures. * - * See gimp_plug_in_extension_enable() for an asynchronous way of + * See [method@PlugIn.extension_enable] for an asynchronous way of * doing the same if running an endless loop is not an option. * - * See also: gimp_plug_in_add_temp_procedure(). + * See also: [method@PlugIn.add_temp_procedure]. * * Since: 3.0 **/ @@ -736,7 +738,7 @@ gimp_plug_in_extension_process (GimpPlugIn *plug_in, /** * gimp_plug_in_set_pdb_error_handler: - * @plug_in: A #GimpPlugIn + * @plug_in: A plug-in * @handler: Who is responsible for handling procedure call errors. * * Sets an error handler for procedure calls. @@ -763,7 +765,7 @@ gimp_plug_in_set_pdb_error_handler (GimpPlugIn *plug_in, /** * gimp_plug_in_get_pdb_error_handler: - * @plug_in: A #GimpPlugIn + * @plug_in: A plug-in * * Retrieves the active error handler for procedure calls. * diff --git a/libgimp/gimpplugin.h b/libgimp/gimpplugin.h index 9cc9c521a0..14f20a8849 100644 --- a/libgimp/gimpplugin.h +++ b/libgimp/gimpplugin.h @@ -53,41 +53,10 @@ struct _GimpPlugIn /** * GimpPlugInClass: - * @query_procedures: This method can be overridden by all plug-ins to - * return a newly allocated #GList of allocated strings naming the - * procedures registered by this plug-in. See documentation of - * #GimpPlugInClass.init_procedures() for differences. - * @init_procedures: This method can be overridden by all plug-ins to - * return a newly allocated #GList of allocated strings naming - * procedures registered by this plug-in. - * It is different from #GimpPlugInClass.query_procedures() in that - * init happens at every startup, whereas query happens only once in - * the life of a plug-in (right after installation or update). Hence - * #GimpPlugInClass.init_procedures() typically returns procedures - * dependent to runtime conditions (such as the presence of a - * third-party tool), whereas #GimpPlugInClass.query_procedures() - * would usually return procedures that are always available - * unconditionally. - * Most of the time, you only want to override - * #GimpPlugInClass.query_procedures() and leave - * #GimpPlugInClass.init_procedures() untouched. - * @create_procedure: This method must be overridden by all plug-ins - * and return a newly allocated #GimpProcedure named @name. It will - * be called for every @name as returned by - * #GimpPlugInClass.query_procedures() and - * #GimpPlugInClass.init_procedures() so care must be taken to - * handle them all. - * Upon procedure registration, #GimpPlugInClass.create_procedure() - * will be called in the order of the lists returned by - * #GimpPlugInClass.query_procedures() and - * #GimpPlugInClass.init_procedures() - * @quit: This method can be overridden by a plug-in which needs to - * perform some actions upon quitting. * * A class which every plug-in should subclass, while overriding - * #GimpPlugInClass.query_procedures() and/or - * #GimpPlugInClass.init_procedures(), as well as - * #GimpPlugInClass.create_procedure(). + * [vfunc@PlugIn.query_procedures] and/or [vfunc@PlugIn.init_procedures], as + * well as [vfunc@PlugIn.create_procedure]. * * Since: 3.0 **/ @@ -99,17 +68,33 @@ struct _GimpPlugInClass * GimpPlugInClass::query_procedures: * @plug_in: a #GimpPlugIn. * - * Returns: (element-type gchar*) (transfer full): - * the names of the procedures registered by @plug_in. - **/ + * This method can be overridden by all plug-ins to return a newly allocated + * list of allocated strings naming the procedures registered by this + * plug-in. See documentation of [vfunc@PlugIn.init_procedures] for + * differences. + * + * Returns: (element-type gchar*) (transfer full): the names of the procedures registered by @plug_in. + */ GList * (* query_procedures) (GimpPlugIn *plug_in); /** * GimpPlugInClass::init_procedures: * @plug_in: a #GimpPlugIn. * - * Returns: (element-type gchar*) (transfer full): - * the names of the procedures registered by @plug_in. + * This method can be overridden by all plug-ins to return a newly allocated + * list of allocated strings naming procedures registered by this plug-in. + * It is different from [vfunc@PlugIn.query_procedures] in that init happens + * at every startup, whereas query happens only once in the life of a plug-in + * (right after installation or update). Hence [vfunc@PlugIn.init_procedures] + * typically returns procedures dependent to runtime conditions (such as the + * presence of a third-party tool), whereas [vfunc@PlugIn.query_procedures] + * would usually return procedures that are always available unconditionally. + * + * Most of the time, you only want to override + * [vfunc@PlugIn.query_procedures] and leave [vfunc@PlugIn.init_procedures] + * untouched. + * + * Returns: (element-type gchar*) (transfer full): the names of the procedures registered by @plug_in. **/ GList * (* init_procedures) (GimpPlugIn *plug_in); @@ -118,16 +103,28 @@ struct _GimpPlugInClass * @plug_in: a #GimpPlugIn. * @procedure_name: procedure name. * - * Returns: (transfer full): - * the procedure to be registered or executed by @plug_in. - **/ + * This method must be overridden by all plug-ins and return a newly + * allocated #GimpProcedure named @name. + * + * This method will be called for every @name as returned by + * [vfunc@PlugIn.query_procedures] and [vfunc@PlugIn.init_procedures] so care + * must be taken to handle them all. Upon procedure registration, + * [vfunc@PlugIn.create_procedure] will be called in the order of the lists + * returned by [vfunc@PlugIn.query_procedures] and + * [vfunc@PlugIn.init_procedures] + * + * Returns: (transfer full): the procedure to be registered or executed by @plug_in. + */ GimpProcedure * (* create_procedure) (GimpPlugIn *plug_in, const gchar *procedure_name); /** * GimpPlugInClass::quit: * @plug_in: a #GimpPlugIn. - **/ + * + * This method can be overridden by a plug-in which needs to perform some + * actions upon quitting. + */ void (* quit) (GimpPlugIn *plug_in); /* Padding for future expansion */ diff --git a/libgimp/gimpprocedure.c b/libgimp/gimpprocedure.c index af6aacc70d..6219a1a7d6 100644 --- a/libgimp/gimpprocedure.c +++ b/libgimp/gimpprocedure.c @@ -554,13 +554,13 @@ gimp_procedure_real_create_config (GimpProcedure *procedure, * Using %GIMP_PDB_PROC_TYPE_EXTENSION means that the plug-in will add * temporary procedures. Therefore, the GIMP core will wait until the * %GIMP_PDB_PROC_TYPE_EXTENSION procedure has called - * gimp_procedure_extension_ready(), which means that the procedure + * [method@Procedure.extension_ready], which means that the procedure * has done its initialization, installed its temporary procedures and * is ready to run. * - * Not calling gimp_procedure_extension_ready() from a + * *Not calling [method@Procedure.extension_ready] from a * %GIMP_PDB_PROC_TYPE_EXTENSION procedure will cause the GIMP core to - * lock up. + * lock up.* * * Additionally, a %GIMP_PDB_PROC_TYPE_EXTENSION procedure with no * arguments added is an "automatic" extension that will be @@ -568,9 +568,9 @@ gimp_procedure_real_create_config (GimpProcedure *procedure, * * %GIMP_PDB_PROC_TYPE_TEMPORARY must be used for temporary procedures * that are created during a plug-ins lifetime. They must be added to - * the #GimpPlugIn using gimp_plug_in_add_temp_procedure(). + * the #GimpPlugIn using [method@PlugIn.add_temp_procedure]. * - * @run_func is called via gimp_procedure_run(). + * @run_func is called via [method@Procedure.run]. * * For %GIMP_PDB_PROC_TYPE_PLUGIN and %GIMP_PDB_PROC_TYPE_EXTENSION * procedures the call of @run_func is basically the lifetime of the @@ -612,7 +612,7 @@ gimp_procedure_new (GimpPlugIn *plug_in, * gimp_procedure_get_plug_in: * @procedure: A #GimpProcedure. * - * Returns: (transfer none): The #GimpPlugIn given in gimp_procedure_new(). + * Returns: (transfer none): The #GimpPlugIn given in [ctor@Procedure.new]. * * Since: 3.0 **/ @@ -628,7 +628,7 @@ gimp_procedure_get_plug_in (GimpProcedure *procedure) * gimp_procedure_get_name: * @procedure: A #GimpProcedure. * - * Returns: The procedure's name given in gimp_procedure_new(). + * Returns: The procedure's name given in [ctor@Procedure.new]. * * Since: 3.0 **/ @@ -644,7 +644,7 @@ gimp_procedure_get_name (GimpProcedure *procedure) * gimp_procedure_get_proc_type: * @procedure: A #GimpProcedure. * - * Returns: The procedure's type given in gimp_procedure_new(). + * Returns: The procedure's type given in [ctor@Procedure.new]. * * Since: 3.0 **/ @@ -719,7 +719,7 @@ gimp_procedure_get_image_types (GimpProcedure *procedure) * suitable error message. * * Similarly third-party plug-ins should verify they are allowed to call - * a procedure with gimp_procedure_get_sensitivity_mask() when running + * a procedure with [method@Procedure.get_sensitivity_mask] when running * with dynamic contents. * * Note that by default, a procedure works on an image with a single @@ -756,7 +756,7 @@ gimp_procedure_set_sensitivity_mask (GimpProcedure *procedure, * @procedure: A #GimpProcedure. * * Returns: The procedure's sensitivity mask given in - * gimp_procedure_set_sensitivity_mask(). + * [method@Procedure.set_sensitivity_mask]. * * Since: 3.0 **/ @@ -825,13 +825,7 @@ gimp_procedure_get_menu_label (GimpProcedure *procedure) * label can add a menu path. * * Menu paths are untranslated paths to menus and submenus with the - * syntax: - * - * <Prefix>/Path/To/Submenu - * - * for instance: - * - * <Image>/Layer/Transform + * syntax `/Path/To/Submenu`, for example `/Layer/Transform` * * See also: gimp_plug_in_add_menu_branch(). * @@ -938,7 +932,7 @@ gimp_procedure_set_icon_file (GimpProcedure *procedure, * * Gets the type of data set as @procedure's icon. Depending on the * result, you can call the relevant specific function, such as - * gimp_procedure_get_icon_name(). + * [method@Procedure.get_icon_name]. * * Returns: the #GimpIconType of @procedure's icon. * @@ -1068,7 +1062,7 @@ gimp_procedure_set_documentation (GimpProcedure *procedure, * @procedure: A #GimpProcedure. * * Returns: The procedure's blurb given in - * gimp_procedure_set_documentation(). + * [method@Procedure.set_documentation]. * * Since: 3.0 **/ @@ -1085,7 +1079,7 @@ gimp_procedure_get_blurb (GimpProcedure *procedure) * @procedure: A #GimpProcedure. * * Returns: The procedure's help text given in - * gimp_procedure_set_documentation(). + * [method@Procedure.set_documentation]. * * Since: 3.0 **/ @@ -1102,7 +1096,7 @@ gimp_procedure_get_help (GimpProcedure *procedure) * @procedure: A #GimpProcedure. * * Returns: The procedure's help ID given in - * gimp_procedure_set_documentation(). + * [method@Procedure.set_documentation]. * * Since: 3.0 **/ @@ -1152,8 +1146,7 @@ gimp_procedure_set_attribution (GimpProcedure *procedure, * gimp_procedure_get_authors: * @procedure: A #GimpProcedure. * - * Returns: The procedure's authors given in - * gimp_procedure_set_attribution(). + * Returns: The procedure's authors given in [method@Procedure.set_attribution]. * * Since: 3.0 **/ @@ -1170,7 +1163,7 @@ gimp_procedure_get_authors (GimpProcedure *procedure) * @procedure: A #GimpProcedure. * * Returns: The procedure's copyright given in - * gimp_procedure_set_attribution(). + * [method@Procedure.set_attribution]. * * Since: 3.0 **/ @@ -1186,8 +1179,7 @@ gimp_procedure_get_copyright (GimpProcedure *procedure) * gimp_procedure_get_date: * @procedure: A #GimpProcedure. * - * Returns: The procedure's date given in - * gimp_procedure_set_attribution(). + * Returns: The procedure's date given in [method@Procedure.set_attribution]. * * Since: 3.0 **/ @@ -1206,11 +1198,11 @@ gimp_procedure_get_date (GimpProcedure *procedure) * * Add a new argument to @procedure according to @pspec specifications. * The arguments will be ordered according to the call order to - * gimp_procedure_add_argument() and - * gimp_procedure_add_argument_from_property(). + * [method@Procedure.add_argument] and + * [method@Procedure.add_argument_from_property]. * * If @pspec is floating, ownership will be taken over by @procedure, - * allowing to pass directly g*_param_spec_*() calls as arguments. + * allowing to pass directly `g*_param_spec_*()` calls as arguments. * * Returns: (transfer none): the same @pspec or %NULL in case of error. * @@ -1264,7 +1256,7 @@ gimp_procedure_add_argument (GimpProcedure *procedure, * Add a new argument to @procedure according to the specifications of * the property @prop_name registered on @config. * - * See gimp_procedure_add_argument() for details. + * See [method@Procedure.add_argument] for details. * * Returns: (transfer none): the added #GParamSpec. * @@ -1385,8 +1377,8 @@ gimp_procedure_add_aux_argument_from_property (GimpProcedure *procedure, * specifications. * * The returned values will be ordered according to the call order to - * gimp_procedure_add_return_value() and - * gimp_procedure_add_return_value_from_property(). + * [method@Procedure.add_return_value] and + * [method@Procedure.add_return_value_from_property]. * * Returns: (transfer none): the same @pspec. * @@ -1430,8 +1422,8 @@ gimp_procedure_add_return_value (GimpProcedure *procedure, * the property @prop_name registered on @config. * * The returned values will be ordered according to the call order to - * gimp_procedure_add_return_value() and - * gimp_procedure_add_return_value_from_property(). + * [method@Procedure.add_return_value] and + * [method@Procedure.add_return_value_from_property]. * * Returns: (transfer none): the added #GParamSpec. * @@ -1548,7 +1540,7 @@ gimp_procedure_find_return_value (GimpProcedure *procedure, * * Returns: (transfer none) (array length=n_arguments): An array * of @GParamSpec in the order added with - * gimp_procedure_add_argument(). + * [method@Procedure.add_argument]. * * Since: 3.0 **/ @@ -1594,7 +1586,7 @@ gimp_procedure_get_aux_arguments (GimpProcedure *procedure, * * Returns: (transfer none) (array length=n_return_values): An array * of @GParamSpec in the order added with - * gimp_procedure_add_return_value(). + * [method@Procedure.add_return_value]. * * Since: 3.0 **/ @@ -1702,7 +1694,7 @@ gimp_procedure_get_argument_sync (GimpProcedure *procedure, * @procedure: the #GimpProcedure. * * Format the expected argument values of procedures, in the order as - * added with gimp_procedure_add_argument(). + * added with [method@Procedure.add_argument]. * * Returns: (transfer full): the expected #GimpValueArray which could be given as * arguments to run @procedure, with all values set to @@ -1736,7 +1728,7 @@ gimp_procedure_new_arguments (GimpProcedure *procedure) /** * gimp_procedure_new_return_values: - * @procedure: the #GimpProcedure. + * @procedure: the procedure. * @status: the success status of the procedure run. * @error: (in) (nullable) (transfer full): * an optional #GError. This parameter should be set if @@ -1744,10 +1736,10 @@ gimp_procedure_new_arguments (GimpProcedure *procedure) * #GIMP_PDB_CALLING_ERROR. * * Format the expected return values from procedures, using the return - * values set with gimp_procedure_add_return_value(). + * values set with [method@Procedure.add_return_value]. * - * Returns: (transfer full): the expected #GimpValueArray as could be returned by a - * #GimpRunFunc. + * Returns: (transfer full): the expected #GimpValueArray as could be returned + * by a [callback@RunFunc]. * * Since: 3.0 **/ @@ -1818,7 +1810,7 @@ gimp_procedure_new_return_values (GimpProcedure *procedure, * @procedure: a @GimpProcedure. * @args: the @procedure's arguments. * - * Runs the procedure, calling the run_func given in gimp_procedure_new(). + * Runs the procedure, calling the run_func given in [ctor@Procedure.new]. * * Returns: (transfer full): The @procedure's return values. * @@ -1930,15 +1922,14 @@ gimp_procedure_run (GimpProcedure *procedure, * Notify the main GIMP application that the extension has been * properly initialized and is ready to run. * - * This function must be called from every - * procedure's #GimpRunFunc that was created as - * #GIMP_PDB_PROC_TYPE_EXTENSION. + * This function _must_ be called from every procedure's [callback@RunFunc] + * that was created as #GIMP_PDB_PROC_TYPE_EXTENSION. * * Subsequently, extensions can process temporary procedure run - * requests using either gimp_plug_in_extension_enable() or - * gimp_plug_in_extension_process(). + * requests using either [method@PlugIn.extension_enable] or + * [method@PlugIn.extension_process]. * - * See also: gimp_procedure_new(). + * See also: [ctor@Procedure.new]. * * Since: 3.0 **/ diff --git a/meson_options.txt b/meson_options.txt index f603708756..94f620a399 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -51,8 +51,7 @@ option('xcursor', type: 'feature', value: 'auto', description: 'Xcurso option('xpm', type: 'feature', value: 'auto', description: 'XPM support') option('headless-tests', type: 'feature', value: 'auto', description: 'Use xvfb-run/dbus-run-session for UI-dependent automatic tests') -option('gtk-doc', type: 'boolean', value: true, description: 'Build developer documentation') -option('gtk-doc-app', type: 'boolean', value: false, description: 'Build developer documentation for app') +option('gi-docgen', type: 'boolean', value: true, description: 'Build developer documentation (uses gi-docgen)') option('g-ir-doc', type: 'boolean', value: false, description: 'Build developer documentation for introspected API') option('linux-input', type: 'feature', value: 'auto', description: 'Linux input event controller module')