diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index bede9cd4e..a2310c273 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,7 @@ +2003-04-07 Matthias Clasen + + * gobject/tmpl/enumerations_flags.sgml: Additions. + 2003-04-01 Matthias Clasen * glib/tmpl/error_reporting.sgml: diff --git a/docs/reference/gobject/tmpl/enumerations_flags.sgml b/docs/reference/gobject/tmpl/enumerations_flags.sgml index e650b1a30..02d787171 100644 --- a/docs/reference/gobject/tmpl/enumerations_flags.sgml +++ b/docs/reference/gobject/tmpl/enumerations_flags.sgml @@ -118,7 +118,8 @@ Returns the static type name from a given #GFlagsClass structure. - +A structure which contains a single enum value, its name, and it's +nickname. @value: @@ -136,62 +137,67 @@ Returns the static type name from a given #GFlagsClass structure. - +Returns the #GEnumValue for a value. -@enum_class: -@value: -@Returns: +@enum_class: a #GEnumClass +@value: the value to look up +@Returns: the #GEnumValue for @value, or %NULL if @value is not +a member of the enumeration - +Looks up a #GEnumValue by name. -@enum_class: -@name: -@Returns: +@enum_class: a #GEnumClass +@name: the name to look up +@Returns: the #GEnumValue with name @name, or %NULL if the enumeration doesn' +t have a member with that name - +Looks up a #GEnumValue by nickname. -@enum_class: -@nick: -@Returns: +@enum_class: a #GEnumClass +@nick: the nickname to look up +@Returns: the #GEnumValue with nickname @nick, or %NULL if the enumeration doesn' +t have a member with that nickname - +Returns the first #GFlagsValue which is set in @value. -@flags_class: -@value: -@Returns: +@flags_class: a #GFlagsClass +@value: the value +@Returns: the first #GFlagsValue which is set in @value, or %NULL if none is set - +Looks up a #GFlagsValue by name. -@flags_class: -@name: -@Returns: +@flags_class: a #GFlagsClass +@name: the name to look up +@Returns: the #GFlagsValue with name @name, or %NULL if there is no flag with +that name - +Looks up a #GFlagsValue by nickname. -@flags_class: -@nick: -@Returns: +@flags_class: a #GFlagsClass +@nick: the nickname to look up +@Returns: the #GFlagsValue with nickname @nick, or %NULL if there is no flag +with that nickname