added devel-docs/app.
2003-08-09 Sven Neumann <neo@bender> * configure.in: added devel-docs/app. * app/core/gimpitem.c * app/widgets/gimpdialogfactory.c: more documentation fixes. 2003-08-09 Sven Neumann <sven@gimp.org> * Makefile.am * app: added a first version of docs for the application. The templates are not yet in CVS and it's not built by default (and probably never will be).
This commit is contained in:
parent
9aaf432daa
commit
6ef4d95fdb
@ -1,3 +1,10 @@
|
||||
2003-08-09 Sven Neumann <neo@bender>
|
||||
|
||||
* configure.in: added devel-docs/app.
|
||||
|
||||
* app/core/gimpitem.c
|
||||
* app/widgets/gimpdialogfactory.c: more documentation fixes.
|
||||
|
||||
2003-08-09 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/app_procs.c
|
||||
|
@ -576,6 +576,7 @@ gimp_item_scale_by_factors (GimpItem *item,
|
||||
* @item: The item to be transformed by width & height scale factors
|
||||
* @new_width: The width that item will acquire
|
||||
* @new_height: The height that the item will acquire
|
||||
* @interpolation:
|
||||
* @local_origin: sets fixed point of the scaling transform. See below.
|
||||
*
|
||||
* Sets item dimensions to new_width and
|
||||
|
@ -561,7 +561,7 @@ gimp_dialog_factory_dialog_new_internal (GimpDialogFactory *factory,
|
||||
* @factory: a #GimpDialogFactory
|
||||
* @identifier: the identifier of the dialog as registered with
|
||||
* gimp_dialog_factory_register_entry()
|
||||
* preview_size:
|
||||
* @preview_size:
|
||||
*
|
||||
* Creates a new toplevel dialog or a #GimpDockable, depending on whether
|
||||
* %factory is a toplevel of dockable factory.
|
||||
@ -621,7 +621,7 @@ gimp_dialog_factory_dialog_raise (GimpDialogFactory *factory,
|
||||
* @dock : a #GimpDock crated by this %factory.
|
||||
* @identifier: the identifier of the dialog as registered with
|
||||
* gimp_dialog_factory_register_entry()
|
||||
* preview_size:
|
||||
* @preview_size:
|
||||
*
|
||||
* Creates a new #GimpDockable in the context of the #GimpDock it will be
|
||||
* added to.
|
||||
|
@ -1245,6 +1245,8 @@ plug-ins/twain/Makefile
|
||||
plug-ins/winsnap/Makefile
|
||||
modules/Makefile
|
||||
devel-docs/Makefile
|
||||
devel-docs/app/Makefile
|
||||
devel-docs/app/version.xml
|
||||
devel-docs/libgimp/Makefile
|
||||
devel-docs/libgimp/version.xml
|
||||
devel-docs/libgimpbase/Makefile
|
||||
|
@ -1,3 +1,10 @@
|
||||
2003-08-09 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* Makefile.am
|
||||
* app: added a first version of docs for the application. The
|
||||
templates are not yet in CVS and it's not built by default (and
|
||||
probably never will be).
|
||||
|
||||
2003-07-28 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* libgimpbase/Makefile.am: exclude libgimbase/gimpwin32-io.h.
|
||||
|
@ -12,6 +12,7 @@ EXTRA_DIST = \
|
||||
ChangeLog \
|
||||
README \
|
||||
README.gtkdoc \
|
||||
app \
|
||||
debug-plug-ins.txt \
|
||||
gbr.txt \
|
||||
gih.txt \
|
||||
|
15
devel-docs/app/.cvsignore
Normal file
15
devel-docs/app/.cvsignore
Normal file
@ -0,0 +1,15 @@
|
||||
Makefile
|
||||
Makefile.in
|
||||
deprecated
|
||||
app.args
|
||||
app.hierarchy
|
||||
app.signals
|
||||
app-decl.txt
|
||||
app-decl-list.txt
|
||||
app-unused.txt
|
||||
app-undocumented.txt
|
||||
html
|
||||
tmpl
|
||||
xml
|
||||
version.xml
|
||||
*.stamp
|
229
devel-docs/app/Makefile.am
Normal file
229
devel-docs/app/Makefile.am
Normal file
@ -0,0 +1,229 @@
|
||||
## 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 =
|
||||
|
||||
# Used for dependencies
|
||||
HFILE_GLOB = $(DOC_SOURCE_DIR)/*.h
|
||||
CFILE_GLOB = $(DOC_SOURCE_DIR)/*.c
|
||||
|
||||
# Header files to ignore when scanning
|
||||
IGNORE_HFILES = \
|
||||
gimp-composite-dispatch.h \
|
||||
gimp-composite-regression.h \
|
||||
gimp-composite-mmx.h \
|
||||
gimp-composite-sse.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 = \
|
||||
-g \
|
||||
-I$(top_srcdir) \
|
||||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
GTKDOC_LIBS = \
|
||||
$(top_builddir)/app/app_procs.o \
|
||||
$(top_builddir)/app/batch.o \
|
||||
$(top_builddir)/app/errors.o \
|
||||
$(top_builddir)/app/libgimp_glue.o \
|
||||
$(top_builddir)/app/config/libappconfig.a \
|
||||
$(top_builddir)/app/gui/libappgui.a \
|
||||
$(top_builddir)/app/display/libappdisplay.a \
|
||||
$(top_builddir)/app/tools/libapptools.a \
|
||||
$(top_builddir)/app/widgets/libappwidgets.a \
|
||||
$(top_builddir)/app/core/libappcore.a \
|
||||
$(top_builddir)/app/pdb/libapppdb.a \
|
||||
$(top_builddir)/app/paint/libapppaint.a \
|
||||
$(top_builddir)/app/xcf/libappxcf.a \
|
||||
$(top_builddir)/app/text/libapptext.a \
|
||||
$(top_builddir)/app/vectors/libappvectors.a \
|
||||
$(top_builddir)/app/file/libappfile.a \
|
||||
$(top_builddir)/app/plug-in/libappplug-in.a \
|
||||
$(top_builddir)/app/paint-funcs/libapppaint-funcs.a \
|
||||
$(top_builddir)/app/base/libappbase.a \
|
||||
$(top_builddir)/app/composite/libappcomposite.a \
|
||||
$(top_builddir)/libgimpcolor/libgimpcolor-$(LT_RELEASE).la \
|
||||
$(top_builddir)/libgimpmath/libgimpmath-$(LT_RELEASE).la \
|
||||
$(top_builddir)/libgimpbase/libgimpbase-$(LT_RELEASE).la \
|
||||
$(top_builddir)/libgimpmodule/libgimpmodule-$(LT_RELEASE).la \
|
||||
$(top_builddir)/libgimpwidgets/libgimpwidgets-$(LT_RELEASE).la \
|
||||
$(GTK_LIBS) \
|
||||
$(LIBART_LIBS) \
|
||||
$(PANGOFT2_LIBS) \
|
||||
$(FONTCONFIG_LIBS) \
|
||||
$(FREETYPE_LIBS) \
|
||||
$(GIMP_THREAD_LIBS) \
|
||||
$(GIMP_MP_LIBS) \
|
||||
$(INTLLIBS) \
|
||||
$(REGEXREPL)
|
||||
|
||||
GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC)
|
||||
GTKDOC_LD = $(LIBTOOL) --mode=link $(CC)
|
||||
|
||||
|
||||
####################################
|
||||
# Everything below here is generic #
|
||||
####################################
|
||||
|
||||
# We set GPATH here; this gives us semantics for GNU make
|
||||
# which are more like other make's VPATH, when it comes to
|
||||
# whether a source that is a target of one rule is then
|
||||
# searched for in VPATH/GPATH.
|
||||
#
|
||||
GPATH = $(srcdir)
|
||||
|
||||
TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(content_files) \
|
||||
$(extra_files) \
|
||||
$(HTML_IMAGES) \
|
||||
$(DOC_MAIN_SGML_FILE) \
|
||||
$(DOC_MODULE).types \
|
||||
$(DOC_MODULE)-sections.txt
|
||||
|
||||
DOC_STAMPS=scan-build.stamp tmpl-build.stamp xml-build.stamp html-build.stamp \
|
||||
$(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp
|
||||
|
||||
SCANOBJ_FILES = \
|
||||
$(DOC_MODULE).args \
|
||||
$(DOC_MODULE).hierarchy \
|
||||
$(DOC_MODULE).signals
|
||||
|
||||
if ENABLE_GTK_DOC
|
||||
all-local: html-build.stamp
|
||||
|
||||
#### scan ####
|
||||
|
||||
scan-build.stamp: $(HFILE_GLOB)
|
||||
@echo '*** Scanning header files ***'
|
||||
if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null ; then \
|
||||
CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \
|
||||
else \
|
||||
cd $(srcdir) ; \
|
||||
for i in $(SCANOBJ_FILES) ; do \
|
||||
test -f $$i || touch $$i ; \
|
||||
done \
|
||||
fi
|
||||
cd $(srcdir) && \
|
||||
gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES)
|
||||
touch scan-build.stamp
|
||||
|
||||
$(DOC_MODULE)-decl.txt $(SCANOBJ_FILES): scan-build.stamp
|
||||
@true
|
||||
|
||||
#### templates ####
|
||||
|
||||
tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt
|
||||
@echo '*** Rebuilding template files ***'
|
||||
cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE)
|
||||
touch tmpl-build.stamp
|
||||
|
||||
tmpl.stamp: tmpl-build.stamp
|
||||
@true
|
||||
|
||||
#### xml ####
|
||||
|
||||
xml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml
|
||||
@echo '*** Building XML ***'
|
||||
cd $(srcdir) && \
|
||||
gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) $(MKDB_OPTIONS)
|
||||
touch xml-build.stamp
|
||||
|
||||
sgml.stamp: xml-build.stamp
|
||||
@true
|
||||
|
||||
#### html ####
|
||||
|
||||
html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
|
||||
@echo '*** Building HTML ***'
|
||||
rm -rf $(srcdir)/html
|
||||
mkdir $(srcdir)/html
|
||||
cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
|
||||
test "x$(HTML_IMAGES)" = "x" || ( cd $(srcdir) && cp $(HTML_IMAGES) html )
|
||||
@echo '-- Fixing Crossreferences'
|
||||
cd $(srcdir) && gtkdoc-fixxref --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
|
||||
touch html-build.stamp
|
||||
else
|
||||
all-local:
|
||||
endif
|
||||
|
||||
##############
|
||||
|
||||
clean-local:
|
||||
rm -f *~ *.bak $(SCANOBJ_FILES) *-unused.txt $(DOC_STAMPS)
|
||||
|
||||
maintainer-clean-local: clean
|
||||
cd $(srcdir) && rm -rf xml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
|
||||
|
||||
install-data-local:
|
||||
$(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
|
||||
(installfiles=`echo $(srcdir)/html/*`; \
|
||||
if test "$$installfiles" = '$(srcdir)/html/*'; \
|
||||
then echo '-- Nothing to install' ; \
|
||||
else \
|
||||
for i in $$installfiles; do \
|
||||
echo '-- Installing '$$i ; \
|
||||
$(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
|
||||
done; \
|
||||
echo '-- Installing $(srcdir)/html/index.sgml' ; \
|
||||
$(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR); \
|
||||
fi)
|
||||
|
||||
uninstall-local:
|
||||
(installfiles=`echo $(srcdir)/html/*`; \
|
||||
for i in $$installfiles; do \
|
||||
rm -f $(DESTDIR)$(TARGET_DIR)/`basename $$i`; \
|
||||
done; \
|
||||
rm -f $(DESTDIR)$(TARGET_DIR)/index.sgml)
|
||||
|
||||
|
||||
#
|
||||
# Require gtk-doc when making dist
|
||||
#
|
||||
if ENABLE_GTK_DOC
|
||||
dist-check-gtkdoc:
|
||||
else
|
||||
dist-check-gtkdoc:
|
||||
@echo "*** gtk-doc must be installed and enabled in order to make dist"
|
||||
@false
|
||||
endif
|
||||
|
||||
dist-hook: dist-check-gtkdoc dist-hook-local
|
||||
mkdir $(distdir)/tmpl
|
||||
mkdir $(distdir)/xml
|
||||
mkdir $(distdir)/html
|
||||
-cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl
|
||||
-cp $(srcdir)/xml/*.xml $(distdir)/xml
|
||||
-cp $(srcdir)/html/* $(distdir)/html
|
||||
|
||||
.PHONY : dist-hook-local
|
553
devel-docs/app/app-docs.sgml
Normal file
553
devel-docs/app/app-docs.sgml
Normal file
@ -0,0 +1,553 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
|
||||
<!ENTITY version SYSTEM "version.xml">
|
||||
]>
|
||||
|
||||
<book id="index" xmlns:xi="http://www.w3.org/2001/XInclude">
|
||||
<bookinfo>
|
||||
<title>GIMP Application Reference Manual</title>
|
||||
<releaseinfo>for GIMP &version;</releaseinfo>
|
||||
</bookinfo>
|
||||
|
||||
<chapter>
|
||||
<title>Object Hierarchy</title>
|
||||
<xi:include href="xml/tree_index.sgml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
<title>Paint Functions</title>
|
||||
<xi:include href="xml/paint-funcs.xml"/>
|
||||
<xi:include href="xml/paint-funcs-generic.xml"/>
|
||||
<xi:include href="xml/paint-funcs-types.xml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
<title>Compositing</title>
|
||||
<xi:include href="xml/gimp-composite.xml"/>
|
||||
<xi:include href="xml/gimp-composite-generic.xml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
<title>Base</title>
|
||||
<xi:include href="xml/base-enums.xml"/>
|
||||
<xi:include href="xml/base-types.xml"/>
|
||||
<xi:include href="xml/base.xml"/>
|
||||
<xi:include href="xml/boundary.xml"/>
|
||||
<xi:include href="xml/brush-scale.xml"/>
|
||||
<xi:include href="xml/color-balance.xml"/>
|
||||
<xi:include href="xml/colorize.xml"/>
|
||||
<xi:include href="xml/cpu-accel.xml"/>
|
||||
<xi:include href="xml/curves.xml"/>
|
||||
<xi:include href="xml/gimphistogram.xml"/>
|
||||
<xi:include href="xml/gimplut.xml"/>
|
||||
<xi:include href="xml/hue-saturation.xml"/>
|
||||
<xi:include href="xml/levels.xml"/>
|
||||
<xi:include href="xml/lut-funcs.xml"/>
|
||||
<xi:include href="xml/pixel-processor.xml"/>
|
||||
<xi:include href="xml/pixel-region.xml"/>
|
||||
<xi:include href="xml/pixel-surround.xml"/>
|
||||
<xi:include href="xml/temp-buf.xml"/>
|
||||
<xi:include href="xml/threshold.xml"/>
|
||||
<xi:include href="xml/tile-cache.xml"/>
|
||||
<xi:include href="xml/tile-manager-crop.xml"/>
|
||||
<xi:include href="xml/tile-manager-private.xml"/>
|
||||
<xi:include href="xml/tile-manager.xml"/>
|
||||
<xi:include href="xml/tile-private.xml"/>
|
||||
<xi:include href="xml/tile-swap.xml"/>
|
||||
<xi:include href="xml/tile.xml"/>
|
||||
<xi:include href="xml/cpercep.xml"/>
|
||||
<xi:include href="xml/airbrush_blob.xml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
<title>Config</title>
|
||||
<xi:include href="xml/config-types.xml"/>
|
||||
<xi:include href="xml/gimpconfig.xml"/>
|
||||
<xi:include href="xml/gimpconfig-serialize.xml"/>
|
||||
<xi:include href="xml/gimpconfig-deserialize.xml"/>
|
||||
<xi:include href="xml/gimpconfig-error.xml"/>
|
||||
<xi:include href="xml/gimpconfig-path.xml"/>
|
||||
<xi:include href="xml/gimpconfig-types.xml"/>
|
||||
<xi:include href="xml/gimpconfig-utils.xml"/>
|
||||
<xi:include href="xml/gimpconfigwriter.xml"/>
|
||||
<xi:include href="xml/gimpscanner.xml"/>
|
||||
<xi:include href="xml/gimpbaseconfig.xml"/>
|
||||
<xi:include href="xml/gimpconfig-params.xml"/>
|
||||
<xi:include href="xml/gimpcoreconfig.xml"/>
|
||||
<xi:include href="xml/gimpdisplayconfig.xml"/>
|
||||
<xi:include href="xml/gimpguiconfig.xml"/>
|
||||
<xi:include href="xml/gimppluginconfig.xml"/>
|
||||
<xi:include href="xml/gimprc.xml"/>
|
||||
<xi:include href="xml/gimprc-blurbs.xml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
<title>Core</title>
|
||||
<xi:include href="xml/gimp.xml"/>
|
||||
<xi:include href="xml/gimpbrush.xml"/>
|
||||
<xi:include href="xml/gimpbrushgenerated.xml"/>
|
||||
<xi:include href="xml/gimpbrushpipe.xml"/>
|
||||
<xi:include href="xml/gimpbuffer.xml"/>
|
||||
<xi:include href="xml/gimpchannel.xml"/>
|
||||
<xi:include href="xml/gimpcontainer.xml"/>
|
||||
<xi:include href="xml/gimpcontext.xml"/>
|
||||
<xi:include href="xml/gimpdata.xml"/>
|
||||
<xi:include href="xml/gimpdatafactory.xml"/>
|
||||
<xi:include href="xml/gimpdatalist.xml"/>
|
||||
<xi:include href="xml/gimpdocumentlist.xml"/>
|
||||
<xi:include href="xml/gimpdrawable.xml"/>
|
||||
<xi:include href="xml/gimpenvirontable.xml"/>
|
||||
<xi:include href="xml/gimpgradient.xml"/>
|
||||
<xi:include href="xml/gimpgrid.xml"/>
|
||||
<xi:include href="xml/gimpimage.xml"/>
|
||||
<xi:include href="xml/gimpimagefile.xml"/>
|
||||
<xi:include href="xml/gimpimagemap.xml"/>
|
||||
<xi:include href="xml/gimpitem.xml"/>
|
||||
<xi:include href="xml/gimpitemundo.xml"/>
|
||||
<xi:include href="xml/gimplayer.xml"/>
|
||||
<xi:include href="xml/gimplayermask.xml"/>
|
||||
<xi:include href="xml/gimplist.xml"/>
|
||||
<xi:include href="xml/gimpobject.xml"/>
|
||||
<xi:include href="xml/gimppaintinfo.xml"/>
|
||||
<xi:include href="xml/gimppalette.xml"/>
|
||||
<xi:include href="xml/gimpparasitelist.xml"/>
|
||||
<xi:include href="xml/gimppattern.xml"/>
|
||||
<xi:include href="xml/gimptemplate.xml"/>
|
||||
<xi:include href="xml/gimpundo.xml"/>
|
||||
<xi:include href="xml/gimpundostack.xml"/>
|
||||
<xi:include href="xml/gimpviewable.xml"/>
|
||||
<xi:include href="xml/gimpdisplay.xml"/>
|
||||
<xi:include href="xml/gimpdisplayshell.xml"/>
|
||||
<xi:include href="xml/gimpnavigationview.xml"/>
|
||||
<xi:include href="xml/core-enums.xml"/>
|
||||
<xi:include href="xml/core-types.xml"/>
|
||||
<xi:include href="xml/gimp-documents.xml"/>
|
||||
<xi:include href="xml/gimp-gradients.xml"/>
|
||||
<xi:include href="xml/gimp-parasites.xml"/>
|
||||
<xi:include href="xml/gimp-templates.xml"/>
|
||||
<xi:include href="xml/gimp-utils.xml"/>
|
||||
<xi:include href="xml/gimpbrush-header.xml"/>
|
||||
<xi:include href="xml/gimpdrawable-blend.xml"/>
|
||||
<xi:include href="xml/gimpdrawable-bucket-fill.xml"/>
|
||||
<xi:include href="xml/gimpdrawable-desaturate.xml"/>
|
||||
<xi:include href="xml/gimpdrawable-equalize.xml"/>
|
||||
<xi:include href="xml/gimpdrawable-histogram.xml"/>
|
||||
<xi:include href="xml/gimpdrawable-invert.xml"/>
|
||||
<xi:include href="xml/gimpdrawable-offset.xml"/>
|
||||
<xi:include href="xml/gimpdrawable-preview.xml"/>
|
||||
<xi:include href="xml/gimpdrawable-transform-utils.xml"/>
|
||||
<xi:include href="xml/gimpdrawable-transform.xml"/>
|
||||
<xi:include href="xml/gimpedit.xml"/>
|
||||
<xi:include href="xml/gimpimage-colorhash.xml"/>
|
||||
<xi:include href="xml/gimpimage-colormap.xml"/>
|
||||
<xi:include href="xml/gimpimage-contiguous-region.xml"/>
|
||||
<xi:include href="xml/gimpimage-convert-data.xml"/>
|
||||
<xi:include href="xml/gimpimage-convert.xml"/>
|
||||
<xi:include href="xml/gimpimage-crop.xml"/>
|
||||
<xi:include href="xml/gimpimage-duplicate.xml"/>
|
||||
<xi:include href="xml/gimpimage-flip.xml"/>
|
||||
<xi:include href="xml/gimpimage-grid.xml"/>
|
||||
<xi:include href="xml/gimpimage-guides.xml"/>
|
||||
<xi:include href="xml/gimpimage-mask-select.xml"/>
|
||||
<xi:include href="xml/gimpimage-mask.xml"/>
|
||||
<xi:include href="xml/gimpimage-merge.xml"/>
|
||||
<xi:include href="xml/gimpimage-new.xml"/>
|
||||
<xi:include href="xml/gimpimage-pick-color.xml"/>
|
||||
<xi:include href="xml/gimpimage-preview.xml"/>
|
||||
<xi:include href="xml/gimpimage-projection.xml"/>
|
||||
<xi:include href="xml/gimpimage-qmask.xml"/>
|
||||
<xi:include href="xml/gimpimage-resize.xml"/>
|
||||
<xi:include href="xml/gimpimage-rotate.xml"/>
|
||||
<xi:include href="xml/gimpimage-scale.xml"/>
|
||||
<xi:include href="xml/gimpimage-snap.xml"/>
|
||||
<xi:include href="xml/gimpimage-undo-push.xml"/>
|
||||
<xi:include href="xml/gimpimage-undo.xml"/>
|
||||
<xi:include href="xml/gimpitem-linked.xml"/>
|
||||
<xi:include href="xml/gimplayer-floating-sel.xml"/>
|
||||
<xi:include href="xml/gimpmodules.xml"/>
|
||||
<xi:include href="xml/gimppalette-import.xml"/>
|
||||
<xi:include href="xml/gimppattern-header.xml"/>
|
||||
<xi:include href="xml/gimppreviewcache.xml"/>
|
||||
<xi:include href="xml/gimpscanconvert.xml"/>
|
||||
<xi:include href="xml/gimptoolinfo.xml"/>
|
||||
<xi:include href="xml/gimptooloptions.xml"/>
|
||||
<xi:include href="xml/gimpunits.xml"/>
|
||||
<xi:include href="xml/gimpmarshal.xml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
<title>File</title>
|
||||
<xi:include href="xml/file-open.xml"/>
|
||||
<xi:include href="xml/file-save.xml"/>
|
||||
<xi:include href="xml/file-utils.xml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
<title>Vectors</title>
|
||||
<xi:include href="xml/gimpanchor.xml"/>
|
||||
<xi:include href="xml/gimpbezierstroke.xml"/>
|
||||
<xi:include href="xml/gimpstroke.xml"/>
|
||||
<xi:include href="xml/gimpvectors.xml"/>
|
||||
<xi:include href="xml/gimpvectors-compat.xml"/>
|
||||
<xi:include href="xml/gimpvectors-preview.xml"/>
|
||||
<xi:include href="xml/vectors-types.xml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
<title>XCF</title>
|
||||
<xi:include href="xml/xcf.xml"/>
|
||||
<xi:include href="xml/xcf-load.xml"/>
|
||||
<xi:include href="xml/xcf-private.xml"/>
|
||||
<xi:include href="xml/xcf-read.xml"/>
|
||||
<xi:include href="xml/xcf-save.xml"/>
|
||||
<xi:include href="xml/xcf-seek.xml"/>
|
||||
<xi:include href="xml/xcf-write.xml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
<title>Procedural Database</title>
|
||||
<xi:include href="xml/internal_procs.xml"/>
|
||||
<xi:include href="xml/pdb-types.xml"/>
|
||||
<xi:include href="xml/pdb_glue.xml"/>
|
||||
<xi:include href="xml/procedural_db.xml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
<title>Plug-Ins</title>
|
||||
<xi:include href="xml/plug-in-debug.xml"/>
|
||||
<xi:include href="xml/plug-in-def.xml"/>
|
||||
<xi:include href="xml/plug-in-message.xml"/>
|
||||
<xi:include href="xml/plug-in-params.xml"/>
|
||||
<xi:include href="xml/plug-in-proc.xml"/>
|
||||
<xi:include href="xml/plug-in-progress.xml"/>
|
||||
<xi:include href="xml/plug-in-rc.xml"/>
|
||||
<xi:include href="xml/plug-in-run.xml"/>
|
||||
<xi:include href="xml/plug-in-shm.xml"/>
|
||||
<xi:include href="xml/plug-in-types.xml"/>
|
||||
<xi:include href="xml/plug-in.xml"/>
|
||||
<xi:include href="xml/plug-ins.xml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
<title>Paint</title>
|
||||
<xi:include href="xml/paint-enums.xml"/>
|
||||
<xi:include href="xml/paint-types.xml"/>
|
||||
<xi:include href="xml/paint.xml"/>
|
||||
<xi:include href="xml/gimpairbrush.xml"/>
|
||||
<xi:include href="xml/gimpairbrushoptions.xml"/>
|
||||
<xi:include href="xml/gimpclone.xml"/>
|
||||
<xi:include href="xml/gimpcloneoptions.xml"/>
|
||||
<xi:include href="xml/gimpconvolve.xml"/>
|
||||
<xi:include href="xml/gimpconvolveoptions.xml"/>
|
||||
<xi:include href="xml/gimpdodgeburn.xml"/>
|
||||
<xi:include href="xml/gimpdodgeburnoptions.xml"/>
|
||||
<xi:include href="xml/gimperaser.xml"/>
|
||||
<xi:include href="xml/gimperaseroptions.xml"/>
|
||||
<xi:include href="xml/gimppaintbrush.xml"/>
|
||||
<xi:include href="xml/gimppaintcore.xml"/>
|
||||
<xi:include href="xml/gimppaintcore-kernels.xml"/>
|
||||
<xi:include href="xml/gimppaintcore-stroke.xml"/>
|
||||
<xi:include href="xml/gimppaintcore-undo.xml"/>
|
||||
<xi:include href="xml/gimppaintoptions.xml"/>
|
||||
<xi:include href="xml/gimppencil.xml"/>
|
||||
<xi:include href="xml/gimppenciloptions.xml"/>
|
||||
<xi:include href="xml/gimpsmudge.xml"/>
|
||||
<xi:include href="xml/gimpsmudgeoptions.xml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
<title>Text</title>
|
||||
<xi:include href="xml/text-enums.xml"/>
|
||||
<xi:include href="xml/text-types.xml"/>
|
||||
<xi:include href="xml/gimpfont.xml"/>
|
||||
<xi:include href="xml/gimpfontlist.xml"/>
|
||||
<xi:include href="xml/gimptext.xml"/>
|
||||
<xi:include href="xml/gimptext-bitmap.xml"/>
|
||||
<xi:include href="xml/gimptext-compat.xml"/>
|
||||
<xi:include href="xml/gimptext-parasite.xml"/>
|
||||
<xi:include href="xml/gimptext-vectors.xml"/>
|
||||
<xi:include href="xml/gimptext-xlfd.xml"/>
|
||||
<xi:include href="xml/gimptextlayer.xml"/>
|
||||
<xi:include href="xml/gimptextlayout.xml"/>
|
||||
<xi:include href="xml/gimptextlayout-render.xml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
<title>Application Glue</title>
|
||||
<xi:include href="xml/app_procs.xml"/>
|
||||
<xi:include href="xml/appenv.xml"/>
|
||||
<xi:include href="xml/batch.xml"/>
|
||||
<xi:include href="xml/errors.xml"/>
|
||||
<xi:include href="xml/gimp-intl.xml"/>
|
||||
<xi:include href="xml/libgimp_glue.xml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
<title>Display</title>
|
||||
<xi:include href="xml/display-enums.xml"/>
|
||||
<xi:include href="xml/display-types.xml"/>
|
||||
<xi:include href="xml/gimpdisplay-area.xml"/>
|
||||
<xi:include href="xml/gimpdisplay-foreach.xml"/>
|
||||
<xi:include href="xml/gimpdisplay-handlers.xml"/>
|
||||
<xi:include href="xml/gimpdisplayshell-appearance.xml"/>
|
||||
<xi:include href="xml/gimpdisplayshell-callbacks.xml"/>
|
||||
<xi:include href="xml/gimpdisplayshell-cursor.xml"/>
|
||||
<xi:include href="xml/gimpdisplayshell-dnd.xml"/>
|
||||
<xi:include href="xml/gimpdisplayshell-filter-dialog.xml"/>
|
||||
<xi:include href="xml/gimpdisplayshell-filter.xml"/>
|
||||
<xi:include href="xml/gimpdisplayshell-handlers.xml"/>
|
||||
<xi:include href="xml/gimpdisplayshell-layer-select.xml"/>
|
||||
<xi:include href="xml/gimpdisplayshell-render.xml"/>
|
||||
<xi:include href="xml/gimpdisplayshell-scale.xml"/>
|
||||
<xi:include href="xml/gimpdisplayshell-scroll.xml"/>
|
||||
<xi:include href="xml/gimpdisplayshell-selection.xml"/>
|
||||
<xi:include href="xml/gimpdisplayshell-title.xml"/>
|
||||
<xi:include href="xml/gimpdisplayshell-transform.xml"/>
|
||||
<xi:include href="xml/gimpprogress.xml"/>
|
||||
<xi:include href="xml/gimpstatusbar.xml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
<title>Tools</title>
|
||||
<xi:include href="xml/gimpairbrushtool.xml"/>
|
||||
<xi:include href="xml/gimpblendoptions.xml"/>
|
||||
<xi:include href="xml/gimpblendtool.xml"/>
|
||||
<xi:include href="xml/gimpbrightnesscontrasttool.xml"/>
|
||||
<xi:include href="xml/gimpbucketfilloptions.xml"/>
|
||||
<xi:include href="xml/gimpbucketfilltool.xml"/>
|
||||
<xi:include href="xml/gimpbycolorselecttool.xml"/>
|
||||
<xi:include href="xml/gimpclonetool.xml"/>
|
||||
<xi:include href="xml/gimpcolorbalancetool.xml"/>
|
||||
<xi:include href="xml/gimpcolorizetool.xml"/>
|
||||
<xi:include href="xml/gimpcoloroptions.xml"/>
|
||||
<xi:include href="xml/gimpcolorpickeroptions.xml"/>
|
||||
<xi:include href="xml/gimpcolorpickertool.xml"/>
|
||||
<xi:include href="xml/gimpcolortool.xml"/>
|
||||
<xi:include href="xml/gimpconvolvetool.xml"/>
|
||||
<xi:include href="xml/gimpcropoptions.xml"/>
|
||||
<xi:include href="xml/gimpcroptool.xml"/>
|
||||
<xi:include href="xml/gimpcurvestool.xml"/>
|
||||
<xi:include href="xml/gimpdodgeburntool.xml"/>
|
||||
<xi:include href="xml/gimpdrawtool.xml"/>
|
||||
<xi:include href="xml/gimpellipseselecttool.xml"/>
|
||||
<xi:include href="xml/gimperasertool.xml"/>
|
||||
<xi:include href="xml/gimpflipoptions.xml"/>
|
||||
<xi:include href="xml/gimpfliptool.xml"/>
|
||||
<xi:include href="xml/gimpfreeselecttool.xml"/>
|
||||
<xi:include href="xml/gimpfuzzyselecttool.xml"/>
|
||||
<xi:include href="xml/gimphistogramtool.xml"/>
|
||||
<xi:include href="xml/gimphuesaturationtool.xml"/>
|
||||
<xi:include href="xml/gimpimagemaptool.xml"/>
|
||||
<xi:include href="xml/gimpinkoptions.xml"/>
|
||||
<xi:include href="xml/gimpinktool.xml"/>
|
||||
<xi:include href="xml/gimpiscissorstool.xml"/>
|
||||
<xi:include href="xml/gimplevelstool.xml"/>
|
||||
<xi:include href="xml/gimpmagnifyoptions.xml"/>
|
||||
<xi:include href="xml/gimpmagnifytool.xml"/>
|
||||
<xi:include href="xml/gimpmeasureoptions.xml"/>
|
||||
<xi:include href="xml/gimpmeasuretool.xml"/>
|
||||
<xi:include href="xml/gimpmoveoptions.xml"/>
|
||||
<xi:include href="xml/gimpmovetool.xml"/>
|
||||
<xi:include href="xml/gimppaintbrushtool.xml"/>
|
||||
<xi:include href="xml/gimppainttool.xml"/>
|
||||
<xi:include href="xml/gimppenciltool.xml"/>
|
||||
<xi:include href="xml/gimpperspectivetool.xml"/>
|
||||
<xi:include href="xml/gimpposterizetool.xml"/>
|
||||
<xi:include href="xml/gimprectselecttool.xml"/>
|
||||
<xi:include href="xml/gimprotatetool.xml"/>
|
||||
<xi:include href="xml/gimpscaletool.xml"/>
|
||||
<xi:include href="xml/gimpselectionoptions.xml"/>
|
||||
<xi:include href="xml/gimpselectiontool.xml"/>
|
||||
<xi:include href="xml/gimpsheartool.xml"/>
|
||||
<xi:include href="xml/gimpsmudgetool.xml"/>
|
||||
<xi:include href="xml/gimptextoptions.xml"/>
|
||||
<xi:include href="xml/gimptexttool.xml"/>
|
||||
<xi:include href="xml/gimpthresholdtool.xml"/>
|
||||
<xi:include href="xml/gimptool.xml"/>
|
||||
<xi:include href="xml/gimptoolcontrol.xml"/>
|
||||
<xi:include href="xml/gimptransformoptions.xml"/>
|
||||
<xi:include href="xml/gimptransformtool.xml"/>
|
||||
<xi:include href="xml/gimpvectoroptions.xml"/>
|
||||
<xi:include href="xml/gimpvectortool.xml"/>
|
||||
<xi:include href="xml/gimpeditselectiontool.xml"/>
|
||||
<xi:include href="xml/gimpinktool-blob.xml"/>
|
||||
<xi:include href="xml/gimppaintoptions-gui.xml"/>
|
||||
<xi:include href="xml/gimptooloptions-gui.xml"/>
|
||||
<xi:include href="xml/gimptransformtool-undo.xml"/>
|
||||
<xi:include href="xml/tool_manager.xml"/>
|
||||
<xi:include href="xml/tools-enums.xml"/>
|
||||
<xi:include href="xml/tools-types.xml"/>
|
||||
<xi:include href="xml/tools.xml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
<title>Widgets</title>
|
||||
<xi:include href="xml/widgets-enums.xml"/>
|
||||
<xi:include href="xml/widgets-types.xml"/>
|
||||
<xi:include href="xml/gimpbrusheditor.xml"/>
|
||||
<xi:include href="xml/gimpbrushfactoryview.xml"/>
|
||||
<xi:include href="xml/gimpbufferview.xml"/>
|
||||
<xi:include href="xml/gimpcellrenderertoggle.xml"/>
|
||||
<xi:include href="xml/gimpcellrendererviewable.xml"/>
|
||||
<xi:include href="xml/gimpchanneltreeview.xml"/>
|
||||
<xi:include href="xml/gimpcoloreditor.xml"/>
|
||||
<xi:include href="xml/gimpcolormapeditor.xml"/>
|
||||
<xi:include href="xml/gimpcolorpanel.xml"/>
|
||||
<xi:include href="xml/gimpcomponenteditor.xml"/>
|
||||
<xi:include href="xml/gimpcontainereditor.xml"/>
|
||||
<xi:include href="xml/gimpcontainergridview.xml"/>
|
||||
<xi:include href="xml/gimpcontainermenu.xml"/>
|
||||
<xi:include href="xml/gimpcontainermenuimpl.xml"/>
|
||||
<xi:include href="xml/gimpcontainerpopup.xml"/>
|
||||
<xi:include href="xml/gimpcontainertreeview-dnd.xml"/>
|
||||
<xi:include href="xml/gimpcontainertreeview.xml"/>
|
||||
<xi:include href="xml/gimpcontainerview-utils.xml"/>
|
||||
<xi:include href="xml/gimpcontainerview.xml"/>
|
||||
<xi:include href="xml/gimpcursor.xml"/>
|
||||
<xi:include href="xml/gimpdataeditor.xml"/>
|
||||
<xi:include href="xml/gimpdatafactoryview.xml"/>
|
||||
<xi:include href="xml/gimpdeviceinfo.xml"/>
|
||||
<xi:include href="xml/gimpdevices.xml"/>
|
||||
<xi:include href="xml/gimpdevicestatus.xml"/>
|
||||
<xi:include href="xml/gimpdialogfactory.xml"/>
|
||||
<xi:include href="xml/gimpdnd.xml"/>
|
||||
<xi:include href="xml/gimpdock.xml"/>
|
||||
<xi:include href="xml/gimpdockable.xml"/>
|
||||
<xi:include href="xml/gimpdockbook.xml"/>
|
||||
<xi:include href="xml/gimpdocumentview.xml"/>
|
||||
<xi:include href="xml/gimpdrawabletreeview.xml"/>
|
||||
<xi:include href="xml/gimpeditor.xml"/>
|
||||
<xi:include href="xml/gimpenummenu.xml"/>
|
||||
<xi:include href="xml/gimperrorconsole.xml"/>
|
||||
<xi:include href="xml/gimpfontselection-dialog.xml"/>
|
||||
<xi:include href="xml/gimpfontselection.xml"/>
|
||||
<xi:include href="xml/gimpgradienteditor.xml"/>
|
||||
<xi:include href="xml/gimphelp.xml"/>
|
||||
<xi:include href="xml/gimphistogrambox.xml"/>
|
||||
<xi:include href="xml/gimphistogramview.xml"/>
|
||||
<xi:include href="xml/gimpimagedock.xml"/>
|
||||
<xi:include href="xml/gimpimageeditor.xml"/>
|
||||
<xi:include href="xml/gimpimageview.xml"/>
|
||||
<xi:include href="xml/gimpitemfactory.xml"/>
|
||||
<xi:include href="xml/gimpitemtreeview.xml"/>
|
||||
<xi:include href="xml/gimplayertreeview.xml"/>
|
||||
<xi:include href="xml/gimpmenufactory.xml"/>
|
||||
<xi:include href="xml/gimpmenuitem.xml"/>
|
||||
<xi:include href="xml/gimpnavigationpreview.xml"/>
|
||||
<xi:include href="xml/gimppaletteeditor.xml"/>
|
||||
<xi:include href="xml/gimppreview-popup.xml"/>
|
||||
<xi:include href="xml/gimppreview.xml"/>
|
||||
<xi:include href="xml/gimppreviewrenderer-utils.xml"/>
|
||||
<xi:include href="xml/gimppreviewrenderer.xml"/>
|
||||
<xi:include href="xml/gimppreviewrendererbrush.xml"/>
|
||||
<xi:include href="xml/gimppreviewrendererdrawable.xml"/>
|
||||
<xi:include href="xml/gimppreviewrenderergradient.xml"/>
|
||||
<xi:include href="xml/gimppreviewrendererimage.xml"/>
|
||||
<xi:include href="xml/gimppreviewrenderertextlayer.xml"/>
|
||||
<xi:include href="xml/gimppropwidgets.xml"/>
|
||||
<xi:include href="xml/gimpselectioneditor.xml"/>
|
||||
<xi:include href="xml/gimptemplateeditor.xml"/>
|
||||
<xi:include href="xml/gimptemplateview.xml"/>
|
||||
<xi:include href="xml/gimptexteditor.xml"/>
|
||||
<xi:include href="xml/gimptoolbox-color-area.xml"/>
|
||||
<xi:include href="xml/gimptoolbox-dnd.xml"/>
|
||||
<xi:include href="xml/gimptoolbox-indicator-area.xml"/>
|
||||
<xi:include href="xml/gimptoolbox.xml"/>
|
||||
<xi:include href="xml/gimpundoeditor.xml"/>
|
||||
<xi:include href="xml/gimpvectorstreeview.xml"/>
|
||||
<xi:include href="xml/gimpviewablebutton.xml"/>
|
||||
<xi:include href="xml/gimpviewabledialog.xml"/>
|
||||
<xi:include href="xml/gimpwidgets-constructors.xml"/>
|
||||
<xi:include href="xml/gimpwidgets-utils.xml"/>
|
||||
<xi:include href="xml/gtkhwrapbox.xml"/>
|
||||
<xi:include href="xml/gtkvwrapbox.xml"/>
|
||||
<xi:include href="xml/gtkwrapbox.xml"/>
|
||||
</chapter>
|
||||
|
||||
<chapter>
|
||||
<title>GUI</title>
|
||||
<xi:include href="xml/about-dialog.xml"/>
|
||||
<xi:include href="xml/brush-select.xml"/>
|
||||
<xi:include href="xml/brushes-menu.xml"/>
|
||||
<xi:include href="xml/buffers-commands.xml"/>
|
||||
<xi:include href="xml/buffers-menu.xml"/>
|
||||
<xi:include href="xml/channels-commands.xml"/>
|
||||
<xi:include href="xml/channels-menu.xml"/>
|
||||
<xi:include href="xml/color-history.xml"/>
|
||||
<xi:include href="xml/color-notebook.xml"/>
|
||||
<xi:include href="xml/colormap-editor-commands.xml"/>
|
||||
<xi:include href="xml/colormap-editor-menu.xml"/>
|
||||
<xi:include href="xml/convert-dialog.xml"/>
|
||||
<xi:include href="xml/data-commands.xml"/>
|
||||
<xi:include href="xml/debug-commands.xml"/>
|
||||
<xi:include href="xml/dialogs-commands.xml"/>
|
||||
<xi:include href="xml/dialogs-constructors.xml"/>
|
||||
<xi:include href="xml/dialogs-menu.xml"/>
|
||||
<xi:include href="xml/dialogs.xml"/>
|
||||
<xi:include href="xml/documents-commands.xml"/>
|
||||
<xi:include href="xml/documents-menu.xml"/>
|
||||
<xi:include href="xml/drawable-commands.xml"/>
|
||||
<xi:include href="xml/edit-commands.xml"/>
|
||||
<xi:include href="xml/error-console-commands.xml"/>
|
||||
<xi:include href="xml/error-console-menu.xml"/>
|
||||
<xi:include href="xml/file-commands.xml"/>
|
||||
<xi:include href="xml/file-dialog-utils.xml"/>
|
||||
<xi:include href="xml/file-new-dialog.xml"/>
|
||||
<xi:include href="xml/file-open-dialog.xml"/>
|
||||
<xi:include href="xml/file-open-menu.xml"/>
|
||||
<xi:include href="xml/file-save-dialog.xml"/>
|
||||
<xi:include href="xml/file-save-menu.xml"/>
|
||||
<xi:include href="xml/font-select.xml"/>
|
||||
<xi:include href="xml/gradient-editor-commands.xml"/>
|
||||
<xi:include href="xml/gradient-editor-menu.xml"/>
|
||||
<xi:include href="xml/gradient-select.xml"/>
|
||||
<xi:include href="xml/gradients-commands.xml"/>
|
||||
<xi:include href="xml/gradients-menu.xml"/>
|
||||
<xi:include href="xml/grid-dialog.xml"/>
|
||||
<xi:include href="xml/gui-types.xml"/>
|
||||
<xi:include href="xml/gui.xml"/>
|
||||
<xi:include href="xml/help-commands.xml"/>
|
||||
<xi:include href="xml/image-commands.xml"/>
|
||||
<xi:include href="xml/image-menu.xml"/>
|
||||
<xi:include href="xml/images-commands.xml"/>
|
||||
<xi:include href="xml/images-menu.xml"/>
|
||||
<xi:include href="xml/info-dialog.xml"/>
|
||||
<xi:include href="xml/info-window.xml"/>
|
||||
<xi:include href="xml/layers-commands.xml"/>
|
||||
<xi:include href="xml/layers-menu.xml"/>
|
||||
<xi:include href="xml/menus.xml"/>
|
||||
<xi:include href="xml/module-browser.xml"/>
|
||||
<xi:include href="xml/offset-dialog.xml"/>
|
||||
<xi:include href="xml/palette-editor-commands.xml"/>
|
||||
<xi:include href="xml/palette-editor-menu.xml"/>
|
||||
<xi:include href="xml/palette-import-dialog.xml"/>
|
||||
<xi:include href="xml/palette-select.xml"/>
|
||||
<xi:include href="xml/palettes-commands.xml"/>
|
||||
<xi:include href="xml/palettes-menu.xml"/>
|
||||
<xi:include href="xml/pattern-select.xml"/>
|
||||
<xi:include href="xml/patterns-menu.xml"/>
|
||||
<xi:include href="xml/plug-in-commands.xml"/>
|
||||
<xi:include href="xml/plug-in-menus.xml"/>
|
||||
<xi:include href="xml/preferences-dialog.xml"/>
|
||||
<xi:include href="xml/qmask-commands.xml"/>
|
||||
<xi:include href="xml/qmask-menu.xml"/>
|
||||
<xi:include href="xml/resize-dialog.xml"/>
|
||||
<xi:include href="xml/resolution-calibrate-dialog.xml"/>
|
||||
<xi:include href="xml/select-commands.xml"/>
|
||||
<xi:include href="xml/session.xml"/>
|
||||
<xi:include href="xml/splash.xml"/>
|
||||
<xi:include href="xml/templates-commands.xml"/>
|
||||
<xi:include href="xml/templates-menu.xml"/>
|
||||
<xi:include href="xml/tips-dialog.xml"/>
|
||||
<xi:include href="xml/tips-parser.xml"/>
|
||||
<xi:include href="xml/tool-options-dialog.xml"/>
|
||||
<xi:include href="xml/toolbox-menu.xml"/>
|
||||
<xi:include href="xml/tools-commands.xml"/>
|
||||
<xi:include href="xml/user-install-dialog.xml"/>
|
||||
<xi:include href="xml/vectors-commands.xml"/>
|
||||
<xi:include href="xml/vectors-menu.xml"/>
|
||||
<xi:include href="xml/view-commands.xml"/>
|
||||
</chapter>
|
||||
|
||||
</book>
|
6864
devel-docs/app/app-sections.txt
Normal file
6864
devel-docs/app/app-sections.txt
Normal file
File diff suppressed because it is too large
Load Diff
131
devel-docs/app/app.interfaces
Normal file
131
devel-docs/app/app.interfaces
Normal file
@ -0,0 +1,131 @@
|
||||
GimpRc GimpConfigInterface
|
||||
GimpViewable GimpConfigInterface
|
||||
GimpData GimpConfigInterface
|
||||
GimpBrush GimpConfigInterface
|
||||
GimpBrushGenerated GimpConfigInterface
|
||||
GimpBrushPipe GimpConfigInterface
|
||||
GimpGradient GimpConfigInterface
|
||||
GimpPalette GimpConfigInterface
|
||||
GimpPattern GimpConfigInterface
|
||||
GimpToolInfo GimpConfigInterface
|
||||
GimpBuffer GimpConfigInterface
|
||||
GimpItem GimpConfigInterface
|
||||
GimpDrawable GimpConfigInterface
|
||||
GimpChannel GimpConfigInterface
|
||||
GimpLayerMask GimpConfigInterface
|
||||
GimpLayer GimpConfigInterface
|
||||
GimpTextLayer GimpConfigInterface
|
||||
GimpVectors GimpConfigInterface
|
||||
GimpImage GimpConfigInterface
|
||||
GimpImagefile GimpConfigInterface
|
||||
GimpUndo GimpConfigInterface
|
||||
GimpItemUndo GimpConfigInterface
|
||||
GimpUndoStack GimpConfigInterface
|
||||
GimpTemplate GimpConfigInterface
|
||||
GimpFont GimpConfigInterface
|
||||
GimpContainer GimpConfigInterface
|
||||
GimpList GimpConfigInterface
|
||||
GimpDataList GimpConfigInterface
|
||||
GimpDocumentList GimpConfigInterface
|
||||
GimpFontList GimpConfigInterface
|
||||
GimpContext GimpConfigInterface
|
||||
GimpToolOptions GimpConfigInterface
|
||||
GimpPaintOptions GimpConfigInterface
|
||||
GimpAirbrushOptions GimpConfigInterface
|
||||
GimpCloneOptions GimpConfigInterface
|
||||
GimpConvolveOptions GimpConfigInterface
|
||||
GimpDodgeBurnOptions GimpConfigInterface
|
||||
GimpEraserOptions GimpConfigInterface
|
||||
GimpPencilOptions GimpConfigInterface
|
||||
GimpSmudgeOptions GimpConfigInterface
|
||||
GimpBlendOptions GimpConfigInterface
|
||||
GimpBucketFillOptions GimpConfigInterface
|
||||
GimpInkOptions GimpConfigInterface
|
||||
GimpColorOptions GimpConfigInterface
|
||||
GimpColorPickerOptions GimpConfigInterface
|
||||
GimpCropOptions GimpConfigInterface
|
||||
GimpTransformOptions GimpConfigInterface
|
||||
GimpFlipOptions GimpConfigInterface
|
||||
GimpMagnifyOptions GimpConfigInterface
|
||||
GimpMeasureOptions GimpConfigInterface
|
||||
GimpMoveOptions GimpConfigInterface
|
||||
GimpSelectionOptions GimpConfigInterface
|
||||
GimpVectorOptions GimpConfigInterface
|
||||
GimpTextOptions GimpConfigInterface
|
||||
GimpDeviceInfo GimpConfigInterface
|
||||
GimpGrid GimpConfigInterface
|
||||
GimpParasiteList GimpConfigInterface
|
||||
GtkWidget AtkImplementorIface
|
||||
GtkContainer AtkImplementorIface
|
||||
GtkBin AtkImplementorIface
|
||||
GtkWindow AtkImplementorIface
|
||||
GimpDisplayShell AtkImplementorIface
|
||||
GimpContainerPopup AtkImplementorIface
|
||||
GimpDock AtkImplementorIface
|
||||
GimpImageDock AtkImplementorIface
|
||||
GimpToolbox AtkImplementorIface
|
||||
GtkDialog AtkImplementorIface
|
||||
GimpDialog AtkImplementorIface
|
||||
GimpTextEditor AtkImplementorIface
|
||||
GimpViewableDialog AtkImplementorIface
|
||||
GtkButton AtkImplementorIface
|
||||
GimpButton AtkImplementorIface
|
||||
GimpColorButton AtkImplementorIface
|
||||
GimpColorPanel AtkImplementorIface
|
||||
GimpViewableButton AtkImplementorIface
|
||||
GimpDockable AtkImplementorIface
|
||||
GtkItem AtkImplementorIface
|
||||
GtkMenuItem AtkImplementorIface
|
||||
GimpMenuItem AtkImplementorIface
|
||||
GtkBox AtkImplementorIface
|
||||
GtkVBox AtkImplementorIface
|
||||
GimpEditor AtkImplementorIface
|
||||
GimpNavigationView AtkImplementorIface
|
||||
GimpDataEditor AtkImplementorIface
|
||||
GimpBrushEditor AtkImplementorIface
|
||||
GimpGradientEditor AtkImplementorIface
|
||||
GimpPaletteEditor AtkImplementorIface
|
||||
GimpContainerView AtkImplementorIface
|
||||
GimpContainerTreeView AtkImplementorIface
|
||||
GimpItemTreeView AtkImplementorIface
|
||||
GimpDrawableTreeView AtkImplementorIface
|
||||
GimpChannelTreeView AtkImplementorIface
|
||||
GimpLayerTreeView AtkImplementorIface
|
||||
GimpVectorsTreeView AtkImplementorIface
|
||||
GimpContainerGridView AtkImplementorIface
|
||||
GimpColorEditor AtkImplementorIface
|
||||
GimpImageEditor AtkImplementorIface
|
||||
GimpColormapEditor AtkImplementorIface
|
||||
GimpComponentEditor AtkImplementorIface
|
||||
GimpSelectionEditor AtkImplementorIface
|
||||
GimpUndoEditor AtkImplementorIface
|
||||
GimpDeviceStatus AtkImplementorIface
|
||||
GimpErrorConsole AtkImplementorIface
|
||||
GimpTemplateEditor AtkImplementorIface
|
||||
GimpContainerEditor AtkImplementorIface
|
||||
GimpDataFactoryView AtkImplementorIface
|
||||
GimpBrushFactoryView AtkImplementorIface
|
||||
GimpBufferView AtkImplementorIface
|
||||
GimpDocumentView AtkImplementorIface
|
||||
GimpImageView AtkImplementorIface
|
||||
GimpTemplateView AtkImplementorIface
|
||||
GimpHistogramBox AtkImplementorIface
|
||||
GtkHBox AtkImplementorIface
|
||||
GtkStatusbar AtkImplementorIface
|
||||
GimpStatusbar AtkImplementorIface
|
||||
GimpFontSelection AtkImplementorIface
|
||||
GtkMenuShell AtkImplementorIface
|
||||
GtkMenu AtkImplementorIface
|
||||
GimpContainerMenu AtkImplementorIface
|
||||
GimpContainerMenuImpl AtkImplementorIface
|
||||
GimpEnumMenu AtkImplementorIface
|
||||
GtkNotebook AtkImplementorIface
|
||||
GimpDockbook AtkImplementorIface
|
||||
GtkWrapBox AtkImplementorIface
|
||||
GtkHWrapBox AtkImplementorIface
|
||||
GtkVWrapBox AtkImplementorIface
|
||||
GtkDrawingArea AtkImplementorIface
|
||||
GimpHistogramView AtkImplementorIface
|
||||
GimpPreview AtkImplementorIface
|
||||
GimpNavigationPreview AtkImplementorIface
|
||||
GimpText GimpConfigInterface
|
1
devel-docs/app/app.prerequisites
Normal file
1
devel-docs/app/app.prerequisites
Normal file
@ -0,0 +1 @@
|
||||
GimpConfigInterface GObject
|
198
devel-docs/app/app.types
Normal file
198
devel-docs/app/app.types
Normal file
@ -0,0 +1,198 @@
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include "libgimpwidgets/gimpwidgets.h"
|
||||
|
||||
gimp_base_config_get_type
|
||||
gimp_core_config_get_type
|
||||
gimp_display_config_get_type
|
||||
gimp_gui_config_get_type
|
||||
gimp_plugin_config_get_type
|
||||
gimp_rc_get_type
|
||||
gimp_get_type
|
||||
gimp_brush_get_type
|
||||
gimp_brush_generated_get_type
|
||||
gimp_brush_pipe_get_type
|
||||
gimp_buffer_get_type
|
||||
gimp_channel_get_type
|
||||
gimp_container_get_type
|
||||
gimp_context_get_type
|
||||
gimp_data_get_type
|
||||
gimp_data_factory_get_type
|
||||
gimp_data_list_get_type
|
||||
gimp_document_list_get_type
|
||||
gimp_drawable_get_type
|
||||
gimp_environ_table_get_type
|
||||
gimp_gradient_get_type
|
||||
gimp_grid_get_type
|
||||
gimp_image_get_type
|
||||
gimp_imagefile_get_type
|
||||
gimp_image_map_get_type
|
||||
gimp_item_get_type
|
||||
gimp_item_undo_get_type
|
||||
gimp_layer_get_type
|
||||
gimp_layer_mask_get_type
|
||||
gimp_list_get_type
|
||||
gimp_object_get_type
|
||||
gimp_paint_info_get_type
|
||||
gimp_palette_get_type
|
||||
gimp_parasite_list_get_type
|
||||
gimp_pattern_get_type
|
||||
gimp_template_get_type
|
||||
gimp_tool_info_get_type
|
||||
gimp_tool_options_get_type
|
||||
gimp_undo_get_type
|
||||
gimp_undo_stack_get_type
|
||||
gimp_viewable_get_type
|
||||
gimp_display_get_type
|
||||
gimp_display_shell_get_type
|
||||
gimp_navigation_view_get_type
|
||||
gimp_statusbar_get_type
|
||||
gimp_airbrush_get_type
|
||||
gimp_airbrush_options_get_type
|
||||
gimp_clone_get_type
|
||||
gimp_clone_options_get_type
|
||||
gimp_convolve_get_type
|
||||
gimp_convolve_options_get_type
|
||||
gimp_dodge_burn_get_type
|
||||
gimp_dodge_burn_options_get_type
|
||||
gimp_eraser_get_type
|
||||
gimp_eraser_options_get_type
|
||||
gimp_paintbrush_get_type
|
||||
gimp_paint_core_get_type
|
||||
gimp_paint_options_get_type
|
||||
gimp_pencil_get_type
|
||||
gimp_pencil_options_get_type
|
||||
gimp_smudge_get_type
|
||||
gimp_smudge_options_get_type
|
||||
gimp_font_get_type
|
||||
gimp_font_list_get_type
|
||||
gimp_text_get_type
|
||||
gimp_text_layer_get_type
|
||||
gimp_text_layout_get_type
|
||||
gimp_airbrush_tool_get_type
|
||||
gimp_blend_options_get_type
|
||||
gimp_blend_tool_get_type
|
||||
gimp_brightness_contrast_tool_get_type
|
||||
gimp_bucket_fill_options_get_type
|
||||
gimp_bucket_fill_tool_get_type
|
||||
gimp_by_color_select_tool_get_type
|
||||
gimp_clone_tool_get_type
|
||||
gimp_color_balance_tool_get_type
|
||||
gimp_colorize_tool_get_type
|
||||
gimp_color_options_get_type
|
||||
gimp_color_picker_options_get_type
|
||||
gimp_color_picker_tool_get_type
|
||||
gimp_color_tool_get_type
|
||||
gimp_convolve_tool_get_type
|
||||
gimp_crop_options_get_type
|
||||
gimp_crop_tool_get_type
|
||||
gimp_curves_tool_get_type
|
||||
gimp_dodgeburn_tool_get_type
|
||||
gimp_draw_tool_get_type
|
||||
gimp_ellipse_select_tool_get_type
|
||||
gimp_eraser_tool_get_type
|
||||
gimp_flip_options_get_type
|
||||
gimp_flip_tool_get_type
|
||||
gimp_free_select_tool_get_type
|
||||
gimp_fuzzy_select_tool_get_type
|
||||
gimp_histogram_tool_get_type
|
||||
gimp_hue_saturation_tool_get_type
|
||||
gimp_image_map_tool_get_type
|
||||
gimp_ink_options_get_type
|
||||
gimp_ink_tool_get_type
|
||||
gimp_iscissors_tool_get_type
|
||||
gimp_levels_tool_get_type
|
||||
gimp_magnify_options_get_type
|
||||
gimp_magnify_tool_get_type
|
||||
gimp_measure_options_get_type
|
||||
gimp_measure_tool_get_type
|
||||
gimp_move_options_get_type
|
||||
gimp_move_tool_get_type
|
||||
gimp_paintbrush_tool_get_type
|
||||
gimp_paint_tool_get_type
|
||||
gimp_pencil_tool_get_type
|
||||
gimp_perspective_tool_get_type
|
||||
gimp_posterize_tool_get_type
|
||||
gimp_rect_select_tool_get_type
|
||||
gimp_rotate_tool_get_type
|
||||
gimp_scale_tool_get_type
|
||||
gimp_selection_options_get_type
|
||||
gimp_selection_tool_get_type
|
||||
gimp_shear_tool_get_type
|
||||
gimp_smudge_tool_get_type
|
||||
gimp_text_options_get_type
|
||||
gimp_text_tool_get_type
|
||||
gimp_threshold_tool_get_type
|
||||
gimp_tool_get_type
|
||||
gimp_tool_control_get_type
|
||||
gimp_transform_options_get_type
|
||||
gimp_transform_tool_get_type
|
||||
gimp_vector_options_get_type
|
||||
gimp_vector_tool_get_type
|
||||
gimp_bezier_stroke_get_type
|
||||
gimp_stroke_get_type
|
||||
gimp_vectors_get_type
|
||||
gimp_brush_editor_get_type
|
||||
gimp_brush_factory_view_get_type
|
||||
gimp_buffer_view_get_type
|
||||
gimp_cell_renderer_toggle_get_type
|
||||
gimp_cell_renderer_viewable_get_type
|
||||
gimp_channel_tree_view_get_type
|
||||
gimp_color_editor_get_type
|
||||
gimp_colormap_editor_get_type
|
||||
gimp_color_panel_get_type
|
||||
gimp_component_editor_get_type
|
||||
gimp_container_editor_get_type
|
||||
gimp_container_grid_view_get_type
|
||||
gimp_container_menu_get_type
|
||||
gimp_container_menu_impl_get_type
|
||||
gimp_container_popup_get_type
|
||||
gimp_container_tree_view_get_type
|
||||
gimp_container_view_get_type
|
||||
gimp_data_editor_get_type
|
||||
gimp_data_factory_view_get_type
|
||||
gimp_device_info_get_type
|
||||
gimp_device_status_get_type
|
||||
gimp_dialog_factory_get_type
|
||||
gimp_dock_get_type
|
||||
gimp_dockable_get_type
|
||||
gimp_dockbook_get_type
|
||||
gimp_document_view_get_type
|
||||
gimp_drawable_tree_view_get_type
|
||||
gimp_editor_get_type
|
||||
gimp_enum_menu_get_type
|
||||
gimp_error_console_get_type
|
||||
gimp_font_selection_get_type
|
||||
gimp_gradient_editor_get_type
|
||||
gimp_histogram_box_get_type
|
||||
gimp_histogram_view_get_type
|
||||
gimp_image_dock_get_type
|
||||
gimp_image_editor_get_type
|
||||
gimp_image_view_get_type
|
||||
gimp_item_factory_get_type
|
||||
gimp_item_tree_view_get_type
|
||||
gimp_layer_tree_view_get_type
|
||||
gimp_menu_factory_get_type
|
||||
gimp_menu_item_get_type
|
||||
gimp_navigation_preview_get_type
|
||||
gimp_palette_editor_get_type
|
||||
gimp_preview_get_type
|
||||
gimp_preview_renderer_get_type
|
||||
gimp_preview_renderer_brush_get_type
|
||||
gimp_preview_renderer_drawable_get_type
|
||||
gimp_preview_renderer_gradient_get_type
|
||||
gimp_preview_renderer_image_get_type
|
||||
gimp_preview_renderer_text_layer_get_type
|
||||
gimp_selection_editor_get_type
|
||||
gimp_template_editor_get_type
|
||||
gimp_template_view_get_type
|
||||
gimp_text_editor_get_type
|
||||
gimp_toolbox_get_type
|
||||
gimp_undo_editor_get_type
|
||||
gimp_vectors_tree_view_get_type
|
||||
gimp_viewable_button_get_type
|
||||
gimp_viewable_dialog_get_type
|
||||
gtk_hwrap_box_get_type
|
||||
gtk_vwrap_box_get_type
|
||||
gtk_wrap_box_get_type
|
1
devel-docs/app/version.xml.in
Normal file
1
devel-docs/app/version.xml.in
Normal file
@ -0,0 +1 @@
|
||||
@GIMP_VERSION@
|
Loading…
Reference in New Issue
Block a user