libgimp/tmpl/gimpaspectpreview.sgml libgimp/tmpl/gimpbrush.sgml

2004-11-08  Michael Natterer  <mitch@gimp.org>

	* libgimp/tmpl/gimpaspectpreview.sgml
	* libgimp/tmpl/gimpbrush.sgml
	* libgimp/tmpl/gimpbrushmenu.sgml
	* libgimp/tmpl/gimpbrushselect.sgml
	* libgimp/tmpl/gimpcontext.sgml
	* libgimp/tmpl/gimpdrawable.sgml
	* libgimp/tmpl/gimpdrawablecombobox.sgml
	* libgimp/tmpl/gimpdrawablepreview.sgml
	* libgimp/tmpl/gimpdrawabletransform.sgml
	* libgimp/tmpl/gimpfontmenu.sgml
	* libgimp/tmpl/gimpfontselect.sgml
	* libgimp/tmpl/gimpgradient.sgml
	* libgimp/tmpl/gimpgradientmenu.sgml
	* libgimp/tmpl/gimpgradientselect.sgml
	* libgimp/tmpl/gimpimage.sgml
	* libgimp/tmpl/gimpimagecombobox.sgml
	* libgimp/tmpl/gimplayer.sgml
	* libgimp/tmpl/gimppalette.sgml
	* libgimp/tmpl/gimppalettemenu.sgml
	* libgimp/tmpl/gimppalettes.sgml
	* libgimp/tmpl/gimppaletteselect.sgml
	* libgimp/tmpl/gimppaths.sgml
	* libgimp/tmpl/gimppattern.sgml
	* libgimp/tmpl/gimppatternmenu.sgml
	* libgimp/tmpl/gimppatternselect.sgml
	* libgimp/tmpl/gimppixbuf.sgml
	* libgimp/tmpl/gimppixelfetcher.sgml
	* libgimp/tmpl/gimpprogress.sgml
	* libgimp/tmpl/gimpprogressbar.sgml
	* libgimp/tmpl/gimpregioniterator.sgml
	* libgimpbase/tmpl/gimpbaseenums.sgml
	* libgimpbase/tmpl/gimpbasetypes.sgml
	* libgimpbase/tmpl/gimpchecks.sgml
	* libgimpbase/tmpl/gimpdatafiles.sgml
	* libgimpbase/tmpl/gimpmemsize.sgml
	* libgimpcolor/tmpl/gimpadaptivesupersample.sgml
	* libgimpcolor/tmpl/gimpcmyk.sgml
	* libgimpcolor/tmpl/gimphsv.sgml
	* libgimpcolor/tmpl/gimprgb.sgml
	* libgimpwidgets/tmpl/gimpcolorbutton.sgml
	* libgimpwidgets/tmpl/gimpcolorhexentry.sgml
	* libgimpwidgets/tmpl/gimpcolorselection.sgml
	* libgimpwidgets/tmpl/gimpframe.sgml
	* libgimpwidgets/tmpl/gimpintcombobox.sgml
	* libgimpwidgets/tmpl/gimpintstore.sgml
	* libgimpwidgets/tmpl/gimppatheditor.sgml
	* libgimpwidgets/tmpl/gimppreview.sgml
	* libgimpwidgets/tmpl/gimppreviewarea.sgml
	* libgimpwidgets/tmpl/gimpscrolledpreview.sgml: applied a heavily
	fixed and enhanced version of a patch from Cai Qian (bug #156271).
	Made long_desc = short_desc where we lacked a long_desc but had
	a short_desc. Removed unused parameters. Misc cleanups.

	* libgimp/libgimp-docs.sgml: added some <chapter>s. The list of
	libgimp modules was too long.

	* libgimpwidgets/libgimpwidgets-docs.sgml
	* libgimpwidgets/libgimpwidgets-sections.txt
	* libgimpwidgets/libgimpwidgets.types
	* libgimpwidgets/tmpl/gimpcontroller.sgml: added GimpController.
This commit is contained in:
Michael Natterer
2004-11-08 14:37:30 +00:00
committed by Michael Natterer
parent d90d7c5cb1
commit 77d3e5a2f0
55 changed files with 375 additions and 183 deletions

View File

@ -62,6 +62,11 @@
<xi:include href="xml/gimpcolorselect.xml" />
</part>
<part id="libgimpwidgets-controller">
<title>GIMP Controllers</title>
<xi:include href="xml/gimpcontroller.xml" />
</part>
<part id="libgimpwidgets-utils">
<title>GIMP Widgets Utilities</title>
<xi:include href="xml/gimphelpui.xml" />

View File

@ -852,3 +852,29 @@ GimpOptionMenuSensitivityCallback
gimp_option_menu_set_sensitive
gimp_menu_item_update
</SECTION>
<SECTION>
<FILE>gimpcontroller</FILE>
<TITLE>GimpController</TITLE>
GimpControllerEventType
GimpControllerEventAny
GimpControllerEventTrigger
GimpControllerEventValue
GimpControllerEvent
<TITLE>GimpController</TITLE>
GimpController
gimp_controller_new
gimp_controller_get_n_events
gimp_controller_get_event_name
gimp_controller_get_event_blurb
gimp_controller_event
<SUBSECTION Standard>
GimpControllerClass
GIMP_CONTROLLER
GIMP_IS_CONTROLLER
GIMP_TYPE_CONTROLLER
gimp_controller_get_type
GIMP_CONTROLLER_CLASS
GIMP_IS_CONTROLLER_CLASS
GIMP_CONTROLLER_GET_CLASS
</SECTION>

View File

@ -16,6 +16,7 @@ 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_file_entry_get_type
gimp_frame_get_type

View File

@ -2,7 +2,7 @@
GimpColorButton
<!-- ##### SECTION Short_Description ##### -->
Widget for selecting a color.
Widget for selecting a color from a simple button.
<!-- ##### SECTION Long_Description ##### -->
<para>

View File

@ -2,11 +2,11 @@
GimpColorHexEntry
<!-- ##### SECTION Short_Description ##### -->
Widget for entering a color's hex triplet.
<!-- ##### SECTION Long_Description ##### -->
<para>
Widget for entering a color's hex triplet.
</para>
<!-- ##### SECTION See_Also ##### -->

View File

@ -2,7 +2,7 @@
GimpColorSelection
<!-- ##### SECTION Short_Description ##### -->
Widget for doing a color selection.
<!-- ##### SECTION Long_Description ##### -->
<para>

View File

@ -0,0 +1,126 @@
<!-- ##### SECTION Title ##### -->
GimpController
<!-- ##### SECTION Short_Description ##### -->
Pluggable GIMP input controller modules.
<!-- ##### SECTION Long_Description ##### -->
<para>
An abstract interface for implementing arbitrary input controllers.
</para>
<!-- ##### SECTION See_Also ##### -->
<para>
</para>
<!-- ##### ENUM GimpControllerEventType ##### -->
<para>
</para>
@GIMP_CONTROLLER_EVENT_TRIGGER:
@GIMP_CONTROLLER_EVENT_VALUE:
<!-- ##### STRUCT GimpControllerEventAny ##### -->
<para>
</para>
@type:
@source:
@event_id:
<!-- ##### STRUCT GimpControllerEventTrigger ##### -->
<para>
</para>
@type:
@source:
@event_id:
<!-- ##### STRUCT GimpControllerEventValue ##### -->
<para>
</para>
@type:
@source:
@event_id:
@value:
<!-- ##### UNION GimpControllerEvent ##### -->
<para>
</para>
<!-- ##### STRUCT GimpController ##### -->
<para>
</para>
<!-- ##### SIGNAL GimpController::event ##### -->
<para>
</para>
@gimpcontroller: the object which received the signal.
@arg1:
@Returns:
<!-- ##### ARG GimpController:name ##### -->
<para>
</para>
<!-- ##### FUNCTION gimp_controller_new ##### -->
<para>
</para>
@controller_type:
@Returns:
<!-- ##### FUNCTION gimp_controller_get_n_events ##### -->
<para>
</para>
@controller:
@Returns:
<!-- ##### FUNCTION gimp_controller_get_event_name ##### -->
<para>
</para>
@controller:
@event_id:
@Returns:
<!-- ##### FUNCTION gimp_controller_get_event_blurb ##### -->
<para>
</para>
@controller:
@event_id:
@Returns:
<!-- ##### FUNCTION gimp_controller_event ##### -->
<para>
</para>
@controller:
@event:
@Returns:

View File

@ -2,11 +2,11 @@
GimpFrame
<!-- ##### SECTION Short_Description ##### -->
A widget providing a HIG-compliant subclass of #GtkFrame.
<!-- ##### SECTION Long_Description ##### -->
<para>
A widget providing a HIG-compliant subclass of #GtkFrame.
</para>
<!-- ##### SECTION See_Also ##### -->

View File

@ -2,11 +2,11 @@
GimpIntComboBox
<!-- ##### SECTION Short_Description ##### -->
A widget providing a popup menu of integer values (e.g. enums).
<!-- ##### SECTION Long_Description ##### -->
<para>
A widget providing a popup menu of integer values (e.g. enums).
</para>
<!-- ##### SECTION See_Also ##### -->

View File

@ -2,11 +2,11 @@
GimpIntStore
<!-- ##### SECTION Short_Description ##### -->
A model for integer based name-value pairs (e.g. enums)
<!-- ##### SECTION Long_Description ##### -->
<para>
A model for integer based name-value pairs (e.g. enums)
</para>
<!-- ##### SECTION See_Also ##### -->

View File

@ -49,8 +49,7 @@ the search path, the "path_changed" signal will be emitted.
</para>
@gimppatheditor: the object which received the signal.
<!-- # Unused Parameters # -->
@arg1:
<!-- ##### FUNCTION gimp_path_editor_new ##### -->
<para>
@ -69,8 +68,6 @@ the search path, the "path_changed" signal will be emitted.
@editor:
@Returns:
<!-- # Unused Parameters # -->
@gpe:
<!-- ##### FUNCTION gimp_path_editor_set_path ##### -->
@ -80,8 +77,6 @@ the search path, the "path_changed" signal will be emitted.
@editor:
@path:
<!-- # Unused Parameters # -->
@gpe:
<!-- ##### FUNCTION gimp_path_editor_get_writable_path ##### -->

View File

@ -2,11 +2,11 @@
GimpPreview
<!-- ##### SECTION Short_Description ##### -->
A widget providing a #GimpPreviewArea plus framework to update the preview.
<!-- ##### SECTION Long_Description ##### -->
<para>
A widget providing a #GimpPreviewArea plus framework to update the preview.
</para>
<!-- ##### SECTION See_Also ##### -->

View File

@ -2,11 +2,11 @@
GimpPreviewArea
<!-- ##### SECTION Short_Description ##### -->
A general purpose preview widget which caches its pixel data.
<!-- ##### SECTION Long_Description ##### -->
<para>
A general purpose preview widget which caches its pixel data.
</para>
<!-- ##### SECTION See_Also ##### -->
@ -51,8 +51,6 @@ GimpPreviewArea
@type:
@buf:
@rowstride:
<!-- # Unused Parameters # -->
@image_type:
<!-- ##### FUNCTION gimp_preview_area_fill ##### -->

View File

@ -2,11 +2,11 @@
GimpScrolledPreview
<!-- ##### SECTION Short_Description ##### -->
A widget providing a #GimpPreview enhanced by scrolling capabilities.
<!-- ##### SECTION Long_Description ##### -->
<para>
A widget providing a #GimpPreview enhanced by scrolling capabilities.
</para>
<!-- ##### SECTION See_Also ##### -->