Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
GIMP
Commits
fd36a398
Commit
fd36a398
authored
Jul 22, 2004
by
Sven Neumann
Browse files
fixed gtk-doc comments and updated API docs
parent
c79f1a43
Changes
4
Hide whitespace changes
Inline
Side-by-side
devel-docs/ChangeLog
View file @
fd36a398
2004-07-22 Sven Neumann <sven@gimp.org>
* libgimpcolor/libgimpcolor-sections.txt: added gimp_rgb_parse_name().
* libgimpcolor/tmpl/gimprgb.sgml: regenerated.
2004-07-21 Michael Natterer <mitch@gimp.org>
* app/app-docs.sgml
...
...
devel-docs/libgimpcolor/libgimpcolor-sections.txt
View file @
fd36a398
...
...
@@ -51,6 +51,7 @@ gimp_rgb_set
gimp_rgb_set_alpha
gimp_rgb_set_uchar
gimp_rgb_get_uchar
gimp_rgb_parse_name
gimp_rgb_add
gimp_rgb_subtract
gimp_rgb_multiply
...
...
devel-docs/libgimpcolor/tmpl/gimprgb.sgml
View file @
fd36a398
...
...
@@ -75,6 +75,17 @@ GimpRGB
@blue:
<!-- ##### FUNCTION gimp_rgb_parse_name ##### -->
<para>
</para>
@rgb:
@name:
@len:
@Returns:
<!-- ##### FUNCTION gimp_rgb_add ##### -->
<para>
...
...
libgimpcolor/gimprgb.c
View file @
fd36a398
...
...
@@ -40,9 +40,9 @@ static gboolean gimp_rgb_parse (GimpRGB *rgb,
/**
* gimp_rgb_set:
* @rgb: a #GimpRGB struct
* @
r:
red
* @
g:
green
* @
b:
blue
* @red
:
* @green
:
* @blue
:
*
* Sets the red, green and blue components of @rgb and leaves the
* alpha component unchanged. The color values should be between 0.0
...
...
@@ -65,7 +65,7 @@ gimp_rgb_set (GimpRGB *rgb,
/**
* gimp_rgb_set_alpha:
* @rgb: a #GimpRGB struct
* @
a:
alpha
* @alpha
:
*
* Sets the alpha component of @rgb and leaves the RGB components unchanged.
**/
...
...
@@ -81,9 +81,9 @@ gimp_rgb_set_alpha (GimpRGB *rgb,
/**
* gimp_rgb_set_uchar:
* @rgb: a #GimpRGB struct
* @
r:
red
* @
g:
green
* @
b:
blue
* @red
:
* @green
:
* @blue
:
*
* Sets the red, green and blue components of @rgb from 8bit values
* (0 to 255) and leaves the alpha component unchanged.
...
...
@@ -121,9 +121,8 @@ gimp_rgb_get_uchar (const GimpRGB *rgb,
* @len: the length of @name, in bytes. or -1 if @name is nul-terminated
*
* Attempts to parse a color name. This function accepts RGB hex
* values or <link
* linkend="http://www.w3.org/TR/SVG/types.html#ColorKeywords">SVG 1.0
* color keywords</link>. The format of an RGB value in hexadecimal
* values or <ulink url="http://www.w3.org/TR/SVG/types.html">SVG 1.0
* color keywords</ulink>. The format of an RGB value in hexadecimal
* notation is a '#' immediately followed by either three or six
* hexadecimal characters.
*
...
...
@@ -323,10 +322,10 @@ gimp_rgb_composite (GimpRGB *color1,
/**
* gimp_rgba_set:
* @rgba: a #GimpRGB struct
* @
r:
red
* @
g:
green
* @
b:
blue
* @
a:
alpha
* @red
:
* @green
:
* @blue
:
* @alpha
:
*
* Sets the red, green, blue and alpha components of @rgb. The values
* should be between 0.0 and 1.0 but there is no check to enforce this
...
...
@@ -348,12 +347,12 @@ gimp_rgba_set (GimpRGB *rgba,
}
/**
* gimp_rgb_set_uchar:
* @rgb: a #GimpRGB struct
* @
r:
red
* @
g:
green
* @
b:
blue
* @
a:
alpha
* gimp_rgb
a
_set_uchar:
* @rgb
a
: a #GimpRGB struct
* @red
:
* @green
:
* @blue
:
* @alpha
:
*
* Sets the red, green, blue and alpha components of @rgb from 8bit
* values (0 to 255).
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment