Fiddled with the build system for the devel-docs.
Looks better now, eventually even "make dist" works... --Sven
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
Fri Feb 4 13:56:10 CET 2000 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* Makefile.am
|
||||||
|
* configure.in: Building the devel-docs should now work correctly.
|
||||||
|
You may specify the installation directory for the HTML docs by
|
||||||
|
using the --with-html-dir=PATH configuration flag.
|
||||||
|
|
||||||
2000-02-04 Robert Brady <robert@susu.org.uk>
|
2000-02-04 Robert Brady <robert@susu.org.uk>
|
||||||
|
|
||||||
* configure.in: Added en_GB to ALL_LINGUAS
|
* configure.in: Added en_GB to ALL_LINGUAS
|
||||||
|
@ -14,7 +14,7 @@ SUBDIRS = \
|
|||||||
tips \
|
tips \
|
||||||
help \
|
help \
|
||||||
$(GIMPDOCS) \
|
$(GIMPDOCS) \
|
||||||
$(GIMPDEVELDOCS)
|
devel-docs
|
||||||
|
|
||||||
bin_SCRIPTS = gimptool @GIMPINSTALL@
|
bin_SCRIPTS = gimptool @GIMPINSTALL@
|
||||||
|
|
||||||
|
14
configure.in
14
configure.in
@ -20,7 +20,7 @@ PACKAGE=gimp
|
|||||||
|
|
||||||
AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
|
AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
|
||||||
|
|
||||||
dnl Specify a header configuration file
|
|
||||||
AM_CONFIG_HEADER(config.h)
|
AM_CONFIG_HEADER(config.h)
|
||||||
|
|
||||||
dnl Initialize libtool
|
dnl Initialize libtool
|
||||||
@ -466,6 +466,13 @@ fi
|
|||||||
|
|
||||||
AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes)
|
AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes)
|
||||||
|
|
||||||
|
AC_ARG_WITH(html-dir, [ --with-html-dir=PATH path to installed docs ])
|
||||||
|
if test "x$with_html_dir" = "x" ; then
|
||||||
|
HTML_DIR='${gimpdatadir}/devel-docs/html'
|
||||||
|
else
|
||||||
|
HTML_DIR=$with_html_dir
|
||||||
|
fi
|
||||||
|
|
||||||
dnl This is for the mail plug-in
|
dnl This is for the mail plug-in
|
||||||
sendmail_path=":"
|
sendmail_path=":"
|
||||||
AC_ARG_ENABLE(sendmail_path, [ --with-sendmail=DIR set sendmail command location],
|
AC_ARG_ENABLE(sendmail_path, [ --with-sendmail=DIR set sendmail command location],
|
||||||
@ -626,10 +633,9 @@ if test "$INSTALL" = "$ac_install_sh"; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
GIMPDOCS=
|
GIMPDOCS=
|
||||||
GIMPDEVELDOCS=
|
|
||||||
if test -n "$DISTMAKE"; then
|
if test -n "$DISTMAKE"; then
|
||||||
WEBBROWSER=webbrowser TIFF=tiff JPEG=jpeg PNG=png AA=aa MPEG=mpeg
|
WEBBROWSER=webbrowser TIFF=tiff JPEG=jpeg PNG=png AA=aa MPEG=mpeg
|
||||||
XJT=xjt XPM=xpm GIMPDOCS=docs GIMPDEVELDOCS=devel-docs
|
XJT=xjt XPM=xpm GIMPDOCS=docs
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AM_CONDITIONAL(STATICLIBS, test x$enable_static = xyes)
|
AM_CONDITIONAL(STATICLIBS, test x$enable_static = xyes)
|
||||||
@ -685,11 +691,11 @@ AC_SUBST(GIMP_MP_FLAGS)
|
|||||||
AC_SUBST(GIMP_MP_LIBS)
|
AC_SUBST(GIMP_MP_LIBS)
|
||||||
AC_SUBST(GIMP_PERL)
|
AC_SUBST(GIMP_PERL)
|
||||||
AC_SUBST(GIMPDOCS)
|
AC_SUBST(GIMPDOCS)
|
||||||
AC_SUBST(GIMPDEVELDOCS)
|
|
||||||
AC_SUBST(GIMPINSTALL)
|
AC_SUBST(GIMPINSTALL)
|
||||||
AC_SUBST(HELPBROWSER)
|
AC_SUBST(HELPBROWSER)
|
||||||
AC_SUBST(GTKXMHTML_CFLAGS)
|
AC_SUBST(GTKXMHTML_CFLAGS)
|
||||||
AC_SUBST(GTKXMHTML_LIBS)
|
AC_SUBST(GTKXMHTML_LIBS)
|
||||||
|
AC_SUBST(HTML_DIR)
|
||||||
|
|
||||||
dnl easy way to skip the plug-in build
|
dnl easy way to skip the plug-in build
|
||||||
GIMP_PLUGINS=plug-ins
|
GIMP_PLUGINS=plug-ins
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
Fre Feb 4 13:59:25 CET 2000 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* libgimp/.cvsignore
|
||||||
|
* libgimp/Makefile.am: fiddled with the installation
|
||||||
|
* libgimp/libgimp-decl-list.txt: removed
|
||||||
|
* libgimp/libgimp-decl.txt: rebuild
|
||||||
|
|
||||||
|
Fri Feb 4 01:27:41 CET 2000 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* libgimp/tmpl/gimpcolorbutton.sgml: documented GimpColorButton
|
||||||
|
to give you an example.
|
||||||
|
|
||||||
Fri Feb 4 00:40:47 CET 2000 Sven Neumann <sven@gimp.org>
|
Fri Feb 4 00:40:47 CET 2000 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
Set up the framework for the libgimp documenation.
|
Set up the framework for the libgimp documenation.
|
||||||
@ -6,7 +18,3 @@ Fri Feb 4 00:40:47 CET 2000 Sven Neumann <sven@gimp.org>
|
|||||||
want to resort the chapters, add short explanantions and of
|
want to resort the chapters, add short explanantions and of
|
||||||
course, most importantly, add comment blocks into the source.
|
course, most importantly, add comment blocks into the source.
|
||||||
|
|
||||||
Fri Feb 4 01:27:41 CET 2000 Sven Neumann <sven@gimp.org>
|
|
||||||
|
|
||||||
* libgimp/tmpl/gimpcolorbutton.sgml: documented GimpColorButton
|
|
||||||
to give you an example.
|
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
Makefile
|
Makefile
|
||||||
Makefile.in
|
Makefile.in
|
||||||
|
libgimp.html
|
||||||
|
libgimp-decl-list.txt
|
||||||
html
|
html
|
||||||
sgml
|
sgml
|
||||||
|
@ -12,8 +12,6 @@ DOC_SOURCE_DIR=$(top_srcdir)/libgimp
|
|||||||
CFLAGS=`gimptool --cflags`
|
CFLAGS=`gimptool --cflags`
|
||||||
LDFLAGS=`gimptool --libs`
|
LDFLAGS=`gimptool --libs`
|
||||||
|
|
||||||
HTML_DIR=$(gimpdatadir)/devel-docs/html
|
|
||||||
|
|
||||||
TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)
|
TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)
|
||||||
|
|
||||||
tmpl_sources = \
|
tmpl_sources = \
|
||||||
@ -53,7 +51,10 @@ tmpl_sources = \
|
|||||||
|
|
||||||
libgimp_docdir = $(HTML_DIR)
|
libgimp_docdir = $(HTML_DIR)
|
||||||
|
|
||||||
EXTRA_DIST = \
|
libgimp_doc_DATA = libgimp.html
|
||||||
|
|
||||||
|
EXTRA_DIST =
|
||||||
|
$(libgimp_doc_DATA) \
|
||||||
libgimp.hierarchy \
|
libgimp.hierarchy \
|
||||||
libgimp.signals \
|
libgimp.signals \
|
||||||
libgimp.types \
|
libgimp.types \
|
||||||
@ -62,11 +63,14 @@ EXTRA_DIST = \
|
|||||||
libgimp-sections.txt
|
libgimp-sections.txt
|
||||||
|
|
||||||
if ENABLE_GTK_DOC
|
if ENABLE_GTK_DOC
|
||||||
|
libgimp.html: html/book1.html
|
||||||
|
-cd $(srcdir) && cp html/book1.html libgimp.html
|
||||||
|
else
|
||||||
|
libgimp.html:
|
||||||
|
endif
|
||||||
|
|
||||||
html/book1.html: sgml/libgimp-doc.bottom
|
html/book1.html: sgml/libgimp-doc.bottom
|
||||||
$(MAKE) html
|
$(MAKE) html
|
||||||
else
|
|
||||||
html/book1.html:
|
|
||||||
endif
|
|
||||||
|
|
||||||
sgml/libgimp-doc.bottom: $(tmpl_sources)
|
sgml/libgimp-doc.bottom: $(tmpl_sources)
|
||||||
$(MAKE) sgml
|
$(MAKE) sgml
|
||||||
@ -90,7 +94,7 @@ html:
|
|||||||
-cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
|
-cd $(srcdir)/html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
|
||||||
|
|
||||||
clean-local:
|
clean-local:
|
||||||
rm -f *~ *.bak *.signals *-unused.txt
|
rm -f *~ *.bak *-unused.txt
|
||||||
|
|
||||||
maintainer-clean-local: clean
|
maintainer-clean-local: clean
|
||||||
cd $(srcdir) && rm -rf sgml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
|
cd $(srcdir) && rm -rf sgml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
|
||||||
@ -122,37 +126,4 @@ dist-hook:
|
|||||||
|
|
||||||
.PHONY : html sgml templates scan
|
.PHONY : html sgml templates scan
|
||||||
|
|
||||||
|
# devel-docs/libgimp/Makefile.am ends here
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,825 +0,0 @@
|
|||||||
<SECTION>
|
|
||||||
<FILE>gimpunitmenu</FILE>
|
|
||||||
GIMP_UNIT_MENU
|
|
||||||
<TITLE>GimpUnitMenu</TITLE>
|
|
||||||
gimp_unit_menu_new
|
|
||||||
gimp_unit_menu_set_unit
|
|
||||||
gimp_unit_menu_get_unit
|
|
||||||
<SUBSECTION Standard>
|
|
||||||
GIMP_TYPE_UNIT_MENU
|
|
||||||
GIMP_IS_UNIT_MENU
|
|
||||||
gimp_unit_menu_get_type
|
|
||||||
GIMP_UNIT_MENU_CLASS
|
|
||||||
GIMP_IS_UNIT_MENU_CLASS
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpsizeentry</FILE>
|
|
||||||
GIMP_SIZE_ENTRY
|
|
||||||
GimpSizeEntryUP
|
|
||||||
GimpSizeEntryField
|
|
||||||
<TITLE>GimpSizeEntry</TITLE>
|
|
||||||
gimp_size_entry_new
|
|
||||||
gimp_size_entry_add_field
|
|
||||||
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_grab_focus
|
|
||||||
<SUBSECTION Standard>
|
|
||||||
GIMP_TYPE_SIZE_ENTRY
|
|
||||||
GIMP_IS_SIZE_ENTRY
|
|
||||||
gimp_size_entry_get_type
|
|
||||||
GIMP_SIZE_ENTRY_CLASS
|
|
||||||
GIMP_IS_SIZE_ENTRY_CLASS
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpchainbutton</FILE>
|
|
||||||
GIMP_CHAIN_BUTTON
|
|
||||||
GimpChainPosition
|
|
||||||
<TITLE>GimpChainButton</TITLE>
|
|
||||||
gimp_chain_button_new
|
|
||||||
gimp_chain_button_set_active
|
|
||||||
gimp_chain_button_get_active
|
|
||||||
<SUBSECTION Standard>
|
|
||||||
GIMP_TYPE_CHAIN_BUTTON
|
|
||||||
GIMP_IS_CHAIN_BUTTON
|
|
||||||
gimp_chain_button_get_type
|
|
||||||
GIMP_CHAIN_BUTTON_CLASS
|
|
||||||
GIMP_IS_CHAIN_BUTTON_CLASS
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpfileselection</FILE>
|
|
||||||
GIMP_FILE_SELECTION
|
|
||||||
<TITLE>GimpFileSelection</TITLE>
|
|
||||||
gimp_file_selection_new
|
|
||||||
gimp_file_selection_get_filename
|
|
||||||
gimp_file_selection_set_filename
|
|
||||||
<SUBSECTION Standard>
|
|
||||||
GIMP_TYPE_FILE_SELECTION
|
|
||||||
GIMP_IS_FILE_SELECTION
|
|
||||||
gimp_file_selection_get_type
|
|
||||||
GIMP_FILE_SELECTION_CLASS
|
|
||||||
GIMP_IS_FILE_SELECTION_CLASS
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimppatheditor</FILE>
|
|
||||||
GIMP_PATH_EDITOR
|
|
||||||
<TITLE>GimpPathEditor</TITLE>
|
|
||||||
gimp_path_editor_new
|
|
||||||
gimp_path_editor_get_path
|
|
||||||
<SUBSECTION Standard>
|
|
||||||
GIMP_TYPE_PATH_EDITOR
|
|
||||||
GIMP_IS_PATH_EDITOR
|
|
||||||
gimp_path_editor_get_type
|
|
||||||
GIMP_PATH_EDITOR_CLASS
|
|
||||||
GIMP_IS_PATH_EDITOR_CLASS
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpcolorbutton</FILE>
|
|
||||||
GIMP_COLOR_BUTTON
|
|
||||||
<TITLE>GimpColorButton</TITLE>
|
|
||||||
gimp_color_button_new
|
|
||||||
gimp_color_button_update
|
|
||||||
<SUBSECTION Standard>
|
|
||||||
GIMP_TYPE_COLOR_BUTTON
|
|
||||||
GIMP_IS_COLOR_BUTTON
|
|
||||||
gimp_color_button_get_type
|
|
||||||
GIMP_COLOR_BUTTON_CLASS
|
|
||||||
GIMP_IS_COLOR_BUTTON_CLASS
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimp</FILE>
|
|
||||||
GIMPVAR
|
|
||||||
GPlugInInfo
|
|
||||||
GTile
|
|
||||||
GDrawable
|
|
||||||
GPixelRgn
|
|
||||||
GParamDef
|
|
||||||
GParamColor
|
|
||||||
GParamRegion
|
|
||||||
GParam
|
|
||||||
GRunProc
|
|
||||||
GParamData
|
|
||||||
MAIN
|
|
||||||
gimp_main
|
|
||||||
gimp_set_data
|
|
||||||
gimp_get_data
|
|
||||||
gimp_get_data_size
|
|
||||||
gimp_progress_init
|
|
||||||
gimp_progress_update
|
|
||||||
gimp_default_display
|
|
||||||
gimp_message
|
|
||||||
gimp_query_database
|
|
||||||
gimp_query_procedure
|
|
||||||
gimp_query_images
|
|
||||||
gimp_install_procedure
|
|
||||||
gimp_install_temp_proc
|
|
||||||
gimp_uninstall_temp_proc
|
|
||||||
gimp_register_magic_load_handler
|
|
||||||
gimp_register_load_handler
|
|
||||||
gimp_register_save_handler
|
|
||||||
gimp_run_procedure
|
|
||||||
gimp_run_procedure2
|
|
||||||
gimp_destroy_params
|
|
||||||
gimp_destroy_paramdefs
|
|
||||||
gimp_gamma
|
|
||||||
gimp_install_cmap
|
|
||||||
gimp_use_xshm
|
|
||||||
gimp_color_cube
|
|
||||||
gimp_request_wakeups
|
|
||||||
gimp_image_new
|
|
||||||
gimp_image_duplicate
|
|
||||||
gimp_image_delete
|
|
||||||
gimp_image_width
|
|
||||||
gimp_image_height
|
|
||||||
gimp_image_base_type
|
|
||||||
gimp_image_floating_selection
|
|
||||||
gimp_image_add_channel
|
|
||||||
gimp_image_add_layer
|
|
||||||
gimp_image_add_layer_mask
|
|
||||||
gimp_image_clean_all
|
|
||||||
gimp_image_undo_disable
|
|
||||||
gimp_image_undo_enable
|
|
||||||
gimp_image_undo_freeze
|
|
||||||
gimp_image_undo_thaw
|
|
||||||
gimp_undo_push_group_start
|
|
||||||
gimp_undo_push_group_end
|
|
||||||
gimp_image_flatten
|
|
||||||
gimp_image_lower_channel
|
|
||||||
gimp_image_lower_layer
|
|
||||||
gimp_image_merge_visible_layers
|
|
||||||
gimp_image_pick_correlate_layer
|
|
||||||
gimp_image_raise_channel
|
|
||||||
gimp_image_raise_layer
|
|
||||||
gimp_image_remove_channel
|
|
||||||
gimp_image_remove_layer
|
|
||||||
gimp_image_remove_layer_mask
|
|
||||||
gimp_image_resize
|
|
||||||
gimp_image_get_active_channel
|
|
||||||
gimp_image_get_active_layer
|
|
||||||
gimp_image_get_channels
|
|
||||||
gimp_image_get_cmap
|
|
||||||
gimp_image_get_component_active
|
|
||||||
gimp_image_get_component_visible
|
|
||||||
gimp_image_get_filename
|
|
||||||
gimp_image_get_layers
|
|
||||||
gimp_image_get_selection
|
|
||||||
gimp_image_set_active_channel
|
|
||||||
gimp_image_set_active_layer
|
|
||||||
gimp_image_set_cmap
|
|
||||||
gimp_image_set_component_active
|
|
||||||
gimp_image_set_component_visible
|
|
||||||
gimp_image_set_filename
|
|
||||||
gimp_image_parasite_find
|
|
||||||
gimp_image_parasite_attach
|
|
||||||
gimp_image_attach_new_parasite
|
|
||||||
gimp_image_parasite_detach
|
|
||||||
gimp_image_set_resolution
|
|
||||||
gimp_image_get_resolution
|
|
||||||
gimp_image_set_unit
|
|
||||||
gimp_image_get_unit
|
|
||||||
gimp_image_get_layer_by_tattoo
|
|
||||||
gimp_image_get_channel_by_tattoo
|
|
||||||
gimp_image_get_thumbnail_data
|
|
||||||
gimp_image_convert_rgb
|
|
||||||
gimp_image_convert_grayscale
|
|
||||||
gimp_image_convert_indexed
|
|
||||||
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
|
|
||||||
gimp_display_new
|
|
||||||
gimp_display_delete
|
|
||||||
gimp_displays_flush
|
|
||||||
gimp_layer_new
|
|
||||||
gimp_layer_copy
|
|
||||||
gimp_layer_delete
|
|
||||||
gimp_layer_width
|
|
||||||
gimp_layer_height
|
|
||||||
gimp_layer_bpp
|
|
||||||
gimp_layer_type
|
|
||||||
gimp_layer_add_alpha
|
|
||||||
gimp_layer_create_mask
|
|
||||||
gimp_layer_resize
|
|
||||||
gimp_layer_scale
|
|
||||||
gimp_layer_translate
|
|
||||||
gimp_layer_is_floating_selection
|
|
||||||
gimp_layer_get_image_id
|
|
||||||
gimp_layer_get_mask_id
|
|
||||||
gimp_layer_get_apply_mask
|
|
||||||
gimp_layer_get_edit_mask
|
|
||||||
gimp_layer_get_mode
|
|
||||||
gimp_layer_get_name
|
|
||||||
gimp_layer_get_opacity
|
|
||||||
gimp_layer_get_preserve_transparency
|
|
||||||
gimp_layer_get_show_mask
|
|
||||||
gimp_layer_get_visible
|
|
||||||
gimp_layer_set_apply_mask
|
|
||||||
gimp_layer_set_edit_mask
|
|
||||||
gimp_layer_set_mode
|
|
||||||
gimp_layer_set_name
|
|
||||||
gimp_layer_set_offsets
|
|
||||||
gimp_layer_set_opacity
|
|
||||||
gimp_layer_set_preserve_transparency
|
|
||||||
gimp_layer_set_show_mask
|
|
||||||
gimp_layer_set_visible
|
|
||||||
gimp_layer_get_tattoo
|
|
||||||
gimp_channel_new
|
|
||||||
gimp_channel_copy
|
|
||||||
gimp_channel_delete
|
|
||||||
gimp_channel_width
|
|
||||||
gimp_channel_height
|
|
||||||
gimp_channel_get_image_id
|
|
||||||
gimp_channel_get_layer_id
|
|
||||||
gimp_channel_get_color
|
|
||||||
gimp_channel_get_name
|
|
||||||
gimp_channel_get_opacity
|
|
||||||
gimp_channel_get_show_masked
|
|
||||||
gimp_channel_get_visible
|
|
||||||
gimp_channel_set_color
|
|
||||||
gimp_channel_set_name
|
|
||||||
gimp_channel_set_opacity
|
|
||||||
gimp_channel_set_show_masked
|
|
||||||
gimp_channel_set_visible
|
|
||||||
gimp_channel_get_tattoo
|
|
||||||
gimp_drawable_get
|
|
||||||
gimp_drawable_detach
|
|
||||||
gimp_drawable_flush
|
|
||||||
gimp_drawable_delete
|
|
||||||
gimp_drawable_update
|
|
||||||
gimp_drawable_merge_shadow
|
|
||||||
gimp_drawable_image_id
|
|
||||||
gimp_drawable_name
|
|
||||||
gimp_drawable_width
|
|
||||||
gimp_drawable_height
|
|
||||||
gimp_drawable_bpp
|
|
||||||
gimp_drawable_type
|
|
||||||
gimp_drawable_visible
|
|
||||||
gimp_drawable_is_channel
|
|
||||||
gimp_drawable_is_rgb
|
|
||||||
gimp_drawable_is_gray
|
|
||||||
gimp_drawable_has_alpha
|
|
||||||
gimp_drawable_is_indexed
|
|
||||||
gimp_drawable_is_layer
|
|
||||||
gimp_drawable_is_layer_mask
|
|
||||||
gimp_drawable_mask_bounds
|
|
||||||
gimp_drawable_offsets
|
|
||||||
gimp_drawable_fill
|
|
||||||
gimp_drawable_set_name
|
|
||||||
gimp_drawable_set_visible
|
|
||||||
gimp_drawable_get_tile
|
|
||||||
gimp_drawable_get_tile2
|
|
||||||
gimp_drawable_parasite_find
|
|
||||||
gimp_drawable_parasite_attach
|
|
||||||
gimp_drawable_attach_new_parasite
|
|
||||||
gimp_drawable_parasite_detach
|
|
||||||
gimp_drawable_get_thumbnail_data
|
|
||||||
gimp_selection_bounds
|
|
||||||
gimp_selection_float
|
|
||||||
gimp_selection_is_empty
|
|
||||||
gimp_selection_none
|
|
||||||
gimp_tile_ref
|
|
||||||
gimp_tile_ref_zero
|
|
||||||
gimp_tile_unref
|
|
||||||
gimp_tile_flush
|
|
||||||
gimp_tile_cache_size
|
|
||||||
gimp_tile_cache_ntiles
|
|
||||||
gimp_tile_width
|
|
||||||
gimp_tile_height
|
|
||||||
gimp_pixel_rgn_init
|
|
||||||
gimp_pixel_rgn_resize
|
|
||||||
gimp_pixel_rgn_get_pixel
|
|
||||||
gimp_pixel_rgn_get_row
|
|
||||||
gimp_pixel_rgn_get_col
|
|
||||||
gimp_pixel_rgn_get_rect
|
|
||||||
gimp_pixel_rgn_set_pixel
|
|
||||||
gimp_pixel_rgn_set_row
|
|
||||||
gimp_pixel_rgn_set_col
|
|
||||||
gimp_pixel_rgn_set_rect
|
|
||||||
gimp_pixel_rgns_register
|
|
||||||
gimp_pixel_rgns_register2
|
|
||||||
gimp_pixel_rgns_process
|
|
||||||
gimp_palette_get_background
|
|
||||||
gimp_palette_get_foreground
|
|
||||||
gimp_palette_set_background
|
|
||||||
gimp_palette_set_foreground
|
|
||||||
gimp_gradients_get_list
|
|
||||||
gimp_gradients_get_active
|
|
||||||
gimp_gradients_set_active
|
|
||||||
gimp_gradients_sample_uniform
|
|
||||||
gimp_gradients_sample_custom
|
|
||||||
gimp_parasite_find
|
|
||||||
gimp_parasite_attach
|
|
||||||
gimp_attach_new_parasite
|
|
||||||
gimp_parasite_detach
|
|
||||||
gimp_plugin_help_func
|
|
||||||
gimp_help
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpenums</FILE>
|
|
||||||
GimpAddMaskType
|
|
||||||
GimpBlendMode
|
|
||||||
GimpBrushApplicationMode
|
|
||||||
GimpBucketFillMode
|
|
||||||
GimpChannelLutType
|
|
||||||
GimpChannelOffsetType
|
|
||||||
GimpChannelOps
|
|
||||||
GimpChannelType
|
|
||||||
GimpCloneType
|
|
||||||
GimpConvertDitherType
|
|
||||||
GimpConvertPaletteType
|
|
||||||
GimpConvolutionType
|
|
||||||
GimpConvolveType
|
|
||||||
GimpDodgeBurnMode
|
|
||||||
GimpDodgeBurnType
|
|
||||||
GimpFillType
|
|
||||||
GimpImageBaseType
|
|
||||||
GimpImageType
|
|
||||||
GimpGradientPaintMode
|
|
||||||
GimpGradientType
|
|
||||||
GimpHueRange
|
|
||||||
GimpInterpolationType
|
|
||||||
GimpLayerModeEffects
|
|
||||||
GimpMaskApplyMode
|
|
||||||
GimpMergeType
|
|
||||||
GimpMessageHandlerType
|
|
||||||
GimpOrientationType
|
|
||||||
GimpPDBArgType
|
|
||||||
GimpPDBProcType
|
|
||||||
GimpPDBStatusType
|
|
||||||
GimpPaintApplicationMode
|
|
||||||
GimpRepeatMode
|
|
||||||
GimpRunModeType
|
|
||||||
GimpSizeType
|
|
||||||
GimpTransferMode
|
|
||||||
GFillType
|
|
||||||
GImageType
|
|
||||||
GDrawableType
|
|
||||||
GLayerMode
|
|
||||||
GRunModeType
|
|
||||||
GOrientation
|
|
||||||
GParamType
|
|
||||||
GProcedureType
|
|
||||||
GStatusType
|
|
||||||
PARAM_INT32
|
|
||||||
PARAM_INT16
|
|
||||||
PARAM_INT8
|
|
||||||
PARAM_FLOAT
|
|
||||||
PARAM_STRING
|
|
||||||
PARAM_INT32ARRAY
|
|
||||||
PARAM_INT16ARRAY
|
|
||||||
PARAM_INT8ARRAY
|
|
||||||
PARAM_FLOATARRAY
|
|
||||||
PARAM_STRINGARRAY
|
|
||||||
PARAM_COLOR
|
|
||||||
PARAM_REGION
|
|
||||||
PARAM_DISPLAY
|
|
||||||
PARAM_IMAGE
|
|
||||||
PARAM_LAYER
|
|
||||||
PARAM_CHANNEL
|
|
||||||
PARAM_DRAWABLE
|
|
||||||
PARAM_SELECTION
|
|
||||||
PARAM_BOUNDARY
|
|
||||||
PARAM_PATH
|
|
||||||
PARAM_PARASITE
|
|
||||||
PARAM_STATUS
|
|
||||||
PARAM_END
|
|
||||||
STATUS_EXECUTION_ERROR
|
|
||||||
STATUS_CALLING_ERROR
|
|
||||||
STATUS_PASS_THROUGH
|
|
||||||
STATUS_SUCCESS
|
|
||||||
STATUS_CANCEL
|
|
||||||
PROC_INTERNAL
|
|
||||||
PROC_PLUG_IN
|
|
||||||
PROC_EXTENSION
|
|
||||||
PROC_TEMPORARY
|
|
||||||
ORIENTATION_HORIZONTAL
|
|
||||||
ORIENTATION_VERTICAL
|
|
||||||
ORIENTATION_UNKNOWN
|
|
||||||
FG_IMAGE_FILL
|
|
||||||
BG_IMAGE_FILL
|
|
||||||
WHITE_IMAGE_FILL
|
|
||||||
TRANS_IMAGE_FILL
|
|
||||||
NO_IMAGE_FILL
|
|
||||||
RGB
|
|
||||||
GRAY
|
|
||||||
INDEXED
|
|
||||||
RGB_IMAGE
|
|
||||||
RGBA_IMAGE
|
|
||||||
GRAY_IMAGE
|
|
||||||
GRAYA_IMAGE
|
|
||||||
INDEXED_IMAGE
|
|
||||||
INDEXEDA_IMAGE
|
|
||||||
NORMAL_MODE
|
|
||||||
DISSOLVE_MODE
|
|
||||||
BEHIND_MODE
|
|
||||||
MULTIPLY_MODE
|
|
||||||
SCREEN_MODE
|
|
||||||
OVERLAY_MODE
|
|
||||||
DIFFERENCE_MODE
|
|
||||||
ADDITION_MODE
|
|
||||||
SUBTRACT_MODE
|
|
||||||
DARKEN_ONLY_MODE
|
|
||||||
LIGHTEN_ONLY_MODE
|
|
||||||
HUE_MODE
|
|
||||||
SATURATION_MODE
|
|
||||||
COLOR_MODE
|
|
||||||
VALUE_MODE
|
|
||||||
DIVIDE_MODE
|
|
||||||
RUN_INTERACTIVE
|
|
||||||
RUN_NONINTERACTIVE
|
|
||||||
RUN_WITH_LAST_VALS
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpmenu</FILE>
|
|
||||||
GimpConstraintFunc
|
|
||||||
GimpMenuCallback
|
|
||||||
GRunBrushCallback
|
|
||||||
GRunPatternCallback
|
|
||||||
GRunGradientCallback
|
|
||||||
gimp_image_menu_new
|
|
||||||
gimp_layer_menu_new
|
|
||||||
gimp_channel_menu_new
|
|
||||||
gimp_drawable_menu_new
|
|
||||||
gimp_interactive_selection_brush
|
|
||||||
gimp_brush_select_widget
|
|
||||||
gimp_brush_select_widget_close_popup
|
|
||||||
gimp_brush_select_widget_set_popup
|
|
||||||
gimp_brushes_get_brush_data
|
|
||||||
gimp_brush_set_popup
|
|
||||||
gimp_brush_close_popup
|
|
||||||
gimp_interactive_selection_pattern
|
|
||||||
gimp_pattern_select_widget
|
|
||||||
gimp_pattern_select_widget_close_popup
|
|
||||||
gimp_pattern_select_widget_set_popup
|
|
||||||
gimp_pattern_get_pattern_data
|
|
||||||
gimp_pattern_set_popup
|
|
||||||
gimp_pattern_close_popup
|
|
||||||
gimp_interactive_selection_gradient
|
|
||||||
gimp_gradient_select_widget
|
|
||||||
gimp_gradient_select_widget_close_popup
|
|
||||||
gimp_gradient_select_widget_set_popup
|
|
||||||
gimp_gradient_get_gradient_data
|
|
||||||
gimp_gradient_set_popup
|
|
||||||
gimp_gradient_close_popup
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpprotocol</FILE>
|
|
||||||
GP_VERSION
|
|
||||||
GPConfig
|
|
||||||
GPTileReq
|
|
||||||
GPTileAck
|
|
||||||
GPTileData
|
|
||||||
GPParam
|
|
||||||
GPParamDef
|
|
||||||
GPProcRun
|
|
||||||
GPProcReturn
|
|
||||||
GPProcInstall
|
|
||||||
GPProcUninstall
|
|
||||||
gp_init
|
|
||||||
gp_quit_write
|
|
||||||
gp_config_write
|
|
||||||
gp_tile_req_write
|
|
||||||
gp_tile_ack_write
|
|
||||||
gp_tile_data_write
|
|
||||||
gp_proc_run_write
|
|
||||||
gp_proc_return_write
|
|
||||||
gp_temp_proc_run_write
|
|
||||||
gp_temp_proc_return_write
|
|
||||||
gp_proc_install_write
|
|
||||||
gp_proc_uninstall_write
|
|
||||||
gp_extension_ack_write
|
|
||||||
gp_request_wakeups_write
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpui</FILE>
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpwire</FILE>
|
|
||||||
WireMessage
|
|
||||||
WireReadFunc
|
|
||||||
WireWriteFunc
|
|
||||||
WireDestroyFunc
|
|
||||||
WireIOFunc
|
|
||||||
WireFlushFunc
|
|
||||||
wire_register
|
|
||||||
wire_set_reader
|
|
||||||
wire_set_writer
|
|
||||||
wire_set_flusher
|
|
||||||
wire_read
|
|
||||||
wire_write
|
|
||||||
wire_flush
|
|
||||||
wire_error
|
|
||||||
wire_clear_error
|
|
||||||
wire_read_msg
|
|
||||||
wire_write_msg
|
|
||||||
wire_destroy
|
|
||||||
wire_read_int32
|
|
||||||
wire_read_int16
|
|
||||||
wire_read_int8
|
|
||||||
wire_read_double
|
|
||||||
wire_read_string
|
|
||||||
wire_write_int32
|
|
||||||
wire_write_int16
|
|
||||||
wire_write_int8
|
|
||||||
wire_write_double
|
|
||||||
wire_write_string
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpmatrix</FILE>
|
|
||||||
GimpMatrix[3][3]
|
|
||||||
gimp_matrix_transform_point
|
|
||||||
gimp_matrix_mult
|
|
||||||
gimp_matrix_identity
|
|
||||||
gimp_matrix_translate
|
|
||||||
gimp_matrix_scale
|
|
||||||
gimp_matrix_rotate
|
|
||||||
gimp_matrix_xshear
|
|
||||||
gimp_matrix_yshear
|
|
||||||
gimp_matrix_determinant
|
|
||||||
gimp_matrix_invert
|
|
||||||
gimp_matrix_duplicate
|
|
||||||
gimp_matrix_is_diagonal
|
|
||||||
gimp_matrix_is_identity
|
|
||||||
gimp_matrix_is_simple
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>parasite</FILE>
|
|
||||||
PARASITE_PERSISTENT
|
|
||||||
PARASITE_UNDOABLE
|
|
||||||
PARASITE_ATTACH_PARENT
|
|
||||||
PARASITE_PARENT_PERSISTENT
|
|
||||||
PARASITE_PARENT_UNDOABLE
|
|
||||||
PARASITE_ATTACH_GRANDPARENT
|
|
||||||
PARASITE_GRANDPARENT_PERSISTENT
|
|
||||||
PARASITE_GRANDPARENT_UNDOABLE
|
|
||||||
parasite_new
|
|
||||||
parasite_free
|
|
||||||
parasite_copy
|
|
||||||
parasite_compare
|
|
||||||
parasite_is_type
|
|
||||||
parasite_is_persistent
|
|
||||||
parasite_is_undoable
|
|
||||||
parasite_has_flag
|
|
||||||
parasite_flags
|
|
||||||
parasite_name
|
|
||||||
parasite_data
|
|
||||||
parasite_data_size
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>parasiteF</FILE>
|
|
||||||
Parasite
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>parasiteP</FILE>
|
|
||||||
Parasite
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gserialize</FILE>
|
|
||||||
GSerialType
|
|
||||||
GSerialItem
|
|
||||||
GSerialDescription
|
|
||||||
g_new_serial_item
|
|
||||||
g_serial_item
|
|
||||||
g_serial_array
|
|
||||||
g_serial_vlen_array
|
|
||||||
g_new_serial_description
|
|
||||||
g_free_serial_description
|
|
||||||
g_serialize
|
|
||||||
g_deserialize
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>color_selector</FILE>
|
|
||||||
GimpColorSelector_Callback
|
|
||||||
GimpColorSelector_NewFunc
|
|
||||||
GimpColorSelector_FreeFunc
|
|
||||||
GimpColorSelector_SetColorFunc
|
|
||||||
GimpColorSelectorMethods
|
|
||||||
GimpColorSelectorID
|
|
||||||
gimp_color_selector_register
|
|
||||||
gimp_color_selector_unregister
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpmodule</FILE>
|
|
||||||
GimpModuleStatus
|
|
||||||
GimpModuleInfo
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpunit</FILE>
|
|
||||||
GUnit
|
|
||||||
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_identifier
|
|
||||||
gimp_unit_get_symbol
|
|
||||||
gimp_unit_get_abbreviation
|
|
||||||
gimp_unit_get_singular
|
|
||||||
gimp_unit_get_plural
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpmath</FILE>
|
|
||||||
G_PI
|
|
||||||
G_PI_2
|
|
||||||
G_PI_4
|
|
||||||
G_SQRT2
|
|
||||||
G_MAXRAND
|
|
||||||
RINT
|
|
||||||
ROUND
|
|
||||||
SQR
|
|
||||||
MAX255
|
|
||||||
CLAMP0255
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpenv</FILE>
|
|
||||||
gimp_directory
|
|
||||||
gimp_personal_rc_file
|
|
||||||
gimp_data_directory
|
|
||||||
gimp_gtkrc
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>color_display</FILE>
|
|
||||||
GimpColorDisplayInit
|
|
||||||
GimpColorDisplayNew
|
|
||||||
GimpColorDisplayClone
|
|
||||||
GimpColorDisplayConvert
|
|
||||||
GimpColorDisplayDestroy
|
|
||||||
GimpColorDisplayFinalize
|
|
||||||
GimpColorDisplayLoadState
|
|
||||||
GimpColorDisplaySaveState
|
|
||||||
GimpColorDisplayConfigure
|
|
||||||
GimpColorDisplayConfigureCancel
|
|
||||||
GimpColorDisplayMethods
|
|
||||||
gimp_color_display_register
|
|
||||||
gimp_color_display_unregister
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimplimits</FILE>
|
|
||||||
GIMP_MIN_IMAGE_SIZE
|
|
||||||
GIMP_MAX_IMAGE_SIZE
|
|
||||||
GIMP_MIN_RESOLUTION
|
|
||||||
GIMP_MAX_RESOLUTION
|
|
||||||
GIMP_CHECK_SIZE
|
|
||||||
GIMP_CHECK_SIZE_SM
|
|
||||||
GIMP_CHECK_DARK
|
|
||||||
GIMP_CHECK_LIGHT
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>parasiteio</FILE>
|
|
||||||
PIXPIPE_MAXDIM
|
|
||||||
PixPipeParams
|
|
||||||
pixpipeparams_init
|
|
||||||
pixpipeparams_parse
|
|
||||||
pixpipeparams_build
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpexport</FILE>
|
|
||||||
CAN_HANDLE_RGB
|
|
||||||
CAN_HANDLE_GRAY
|
|
||||||
CAN_HANDLE_INDEXED
|
|
||||||
CAN_HANDLE_ALPHA
|
|
||||||
CAN_HANDLE_LAYERS
|
|
||||||
CAN_HANDLE_LAYERS_AS_ANIMATION
|
|
||||||
NEEDS_ALPHA
|
|
||||||
GimpExportReturnType
|
|
||||||
gimp_export_image
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpfeatures</FILE>
|
|
||||||
GIMP_MAJOR_VERSION
|
|
||||||
GIMP_MINOR_VERSION
|
|
||||||
GIMP_MICRO_VERSION
|
|
||||||
GIMP_VERSION
|
|
||||||
GIMP_CHECK_VERSION
|
|
||||||
GIMP_HAVE_PROCEDURAL_DB_GET_DATA_SIZE
|
|
||||||
GIMP_HAVE_PARASITES
|
|
||||||
GIMP_HAVE_RESOLUTION_INFO
|
|
||||||
GIMP_HAVE_DESTROY_PARAMDEFS
|
|
||||||
GIMP_HAVE_FEATURES_1_1_5
|
|
||||||
GIMP_HAVE_DEFAULT_DISPLAY
|
|
||||||
GIMP_HAVE_PIXEL_RGNS_REGISTER2
|
|
||||||
GIMP_HAVE_NEW_ENUMS
|
|
||||||
GIMP_HAVE_EXPORT
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpcompat</FILE>
|
|
||||||
gimp_attach_parasite
|
|
||||||
gimp_detach_parasite
|
|
||||||
gimp_find_parasite
|
|
||||||
gimp_image_attach_parasite
|
|
||||||
gimp_image_detach_parasite
|
|
||||||
gimp_image_find_parasite
|
|
||||||
gimp_drawable_attach_parasite
|
|
||||||
gimp_drawable_detach_parasite
|
|
||||||
gimp_drawable_find_parasite
|
|
||||||
gimp_drawable_channel
|
|
||||||
gimp_drawable_gray
|
|
||||||
gimp_drawable_color
|
|
||||||
gimp_drawable_indexed
|
|
||||||
gimp_drawable_layer
|
|
||||||
gimp_drawable_layer_mask
|
|
||||||
gimp_image_disable_undo
|
|
||||||
gimp_image_enable_undo
|
|
||||||
gimp_image_freeze_undo
|
|
||||||
gimp_image_thaw_undo
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpcolorspace</FILE>
|
|
||||||
gimp_rgb_to_hsv
|
|
||||||
gimp_hsv_to_rgb
|
|
||||||
gimp_rgb_to_hls
|
|
||||||
gimp_rgb_to_l
|
|
||||||
gimp_hls_to_rgb
|
|
||||||
gimp_rgb_to_hsv_double
|
|
||||||
gimp_hsv_to_rgb_double
|
|
||||||
gimp_rgb_to_hsv4
|
|
||||||
gimp_hsv_to_rgb4
|
|
||||||
INTENSITY_RED
|
|
||||||
INTENSITY_GREEN
|
|
||||||
INTENSITY_BLUE
|
|
||||||
INTENSITY
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpdialog</FILE>
|
|
||||||
gimp_dialog_new
|
|
||||||
gimp_dialog_newv
|
|
||||||
gimp_dialog_set_icon
|
|
||||||
gimp_dialog_create_action_area
|
|
||||||
gimp_dialog_create_action_areav
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimphelpui</FILE>
|
|
||||||
GimpHelpFunc
|
|
||||||
gimp_help_init
|
|
||||||
gimp_help_free
|
|
||||||
gimp_help_enable_tooltips
|
|
||||||
gimp_help_disable_tooltips
|
|
||||||
gimp_standard_help_func
|
|
||||||
gimp_help_connect_help_accel
|
|
||||||
gimp_help_set_help_data
|
|
||||||
gimp_context_help
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>gimpwidgets</FILE>
|
|
||||||
gimp_option_menu_new
|
|
||||||
gimp_option_menu_new2
|
|
||||||
gimp_radio_group_new
|
|
||||||
gimp_radio_group_new2
|
|
||||||
gimp_spin_button_new
|
|
||||||
gimp_scale_entry_new
|
|
||||||
gimp_random_seed_new
|
|
||||||
gimp_coordinates_new
|
|
||||||
gimp_toggle_button_update
|
|
||||||
gimp_menu_item_update
|
|
||||||
gimp_radio_button_update
|
|
||||||
gimp_int_adjustment_update
|
|
||||||
gimp_float_adjustment_update
|
|
||||||
gimp_double_adjustment_update
|
|
||||||
gimp_unit_menu_update
|
|
||||||
gimp_table_attach_aligned
|
|
||||||
</SECTION>
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user