Struct
GtkRcProperty
Description [src]
struct GtkRcProperty {
GQuark type_name;
GQuark property_name;
gchar* origin;
GValue value;
}
Deprecated.
Structure members
type_name
Quark-ified type identifier.
property_name
Quark-ified property identifier like “GtkScrollbar::spacing”.
origin
Field similar to one found in
GtkSettingsValue
.value
Field similar to one found in
GtkSettingsValue
.
Functions
gtk_rc_property_parse_border
A GtkRcPropertyParser
for use with gtk_settings_install_property_parser()
or gtk_widget_class_install_style_property_parser()
which parses
borders in the form
"{ left, right, top, bottom }"
for integers
left, right, top and bottom.
gtk_rc_property_parse_color
A GtkRcPropertyParser
for use with gtk_settings_install_property_parser()
or gtk_widget_class_install_style_property_parser()
which parses a
color given either by its name or in the form
{ red, green, blue }
where red, green and
blue are integers between 0 and 65535 or floating-point numbers
between 0 and 1.
gtk_rc_property_parse_enum
A GtkRcPropertyParser
for use with gtk_settings_install_property_parser()
or gtk_widget_class_install_style_property_parser()
which parses a single
enumeration value.
gtk_rc_property_parse_flags
A GtkRcPropertyParser
for use with gtk_settings_install_property_parser()
or gtk_widget_class_install_style_property_parser()
which parses flags.
gtk_rc_property_parse_requisition
A GtkRcPropertyParser
for use with gtk_settings_install_property_parser()
or gtk_widget_class_install_style_property_parser()
which parses a
requisition in the form
"{ width, height }"
for integers %width and %height.