Description Usage Arguments Details Value Author(s)
Creates up a GtkStyle
from styles defined in a RC file by providing
the raw components used in matching. This function may be useful
when creating pseudo-widgets that should be themed like widgets but
don't actually have corresponding GTK+ widgets. An example of this
would be items inside a GNOME canvas widget.
1 | gtkRcGetStyleByPaths(settings, widget.path, class.path, type)
|
|
a |
|
the widget path to use when looking up the style, or |
|
the class path to use when looking up the style, or |
|
a type that will be used along with parent types of this type
when matching against class styles, or |
The action of gtkRcGetStyle
is similar to:
1 2 3 | path <- widget$path()$path
class_path <- widget$classPath()$path
gtkRcGetStyleByPaths(widget$getSettings(), path, class_path, class(widget)[1])
|
[GtkStyle
] A style created by matching with the supplied paths,
or NULL
if nothing matching was specified and the default style should
be used.
Derived by RGtkGen from GTK+ documentation
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.