mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-19 01:40:10 +00:00
styleproperties: add a "text-shadow" style property
And document its use in the CSS parser gtk-doc. https://bugzilla.gnome.org/show_bug.cgi?id=649314
This commit is contained in:
parent
5b6253252e
commit
016f540931
@ -505,6 +505,28 @@
|
|||||||
* color-stop (1, @green))</literallayout></para>
|
* color-stop (1, @green))</literallayout></para>
|
||||||
* </example>
|
* </example>
|
||||||
* </refsect2>
|
* </refsect2>
|
||||||
|
* <refsect2 id="gtkcssprovider-shadows">
|
||||||
|
* <title>Text shadow</title>
|
||||||
|
* <para>
|
||||||
|
* A shadow list can be applied to text or symbolic icons, using the CSS3
|
||||||
|
* text-shadow syntax, as defined in
|
||||||
|
* <ulink url="http://www.w3.org/TR/css3-text/#text-shadow">the CSS3 specification</ulink>.
|
||||||
|
* </para>
|
||||||
|
* <para>
|
||||||
|
* A text shadow is specified using the syntax
|
||||||
|
* <literallayout>text-shadow: @horizontal_offset @vertical_offset [ @blur_radius ] @color</literallayout>
|
||||||
|
* The offset of the shadow is specified with the @horizontal_offset and @vertical_offset
|
||||||
|
* parameters. The optional blur radius is parsed, but it is currently not rendered by
|
||||||
|
* the GTK+ theming engine.
|
||||||
|
* </para>
|
||||||
|
* <para>
|
||||||
|
* To set multiple shadows on an element, you can specify a comma-separated list
|
||||||
|
* of shadow elements in the text-shadow property. Shadows are always rendered
|
||||||
|
* front-back, i.e. the first shadow specified is on top of the others. Shadows
|
||||||
|
* can thus overlay each other, but they can never overlay the text itself,
|
||||||
|
* which is always rendered on top of the shadow layer.
|
||||||
|
* </para>
|
||||||
|
* </refsect2>
|
||||||
* <refsect2 id="gtkcssprovider-slices">
|
* <refsect2 id="gtkcssprovider-slices">
|
||||||
* <title>Border images</title>
|
* <title>Border images</title>
|
||||||
* <para>
|
* <para>
|
||||||
@ -693,6 +715,11 @@
|
|||||||
* border-image: url("/path/to/image.png") 3 4 4 3 repeat stretch;</literallayout>
|
* border-image: url("/path/to/image.png") 3 4 4 3 repeat stretch;</literallayout>
|
||||||
* </entry>
|
* </entry>
|
||||||
* </row>
|
* </row>
|
||||||
|
* <entry>text-shadow</entry>
|
||||||
|
* <entry>shadow list (see above)</entry>
|
||||||
|
* <entry>#GtkTextShadow</entry>
|
||||||
|
* <entry><literallayout>text-shadow: 1 1 0 blue, -4 -4 red;</literallayout></entry>
|
||||||
|
* </row>
|
||||||
* <row>
|
* <row>
|
||||||
* <entry>transition</entry>
|
* <entry>transition</entry>
|
||||||
* <entry>transition (see above)</entry>
|
* <entry>transition (see above)</entry>
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
#include "gtkborder.h"
|
#include "gtkborder.h"
|
||||||
#include "gtkgradient.h"
|
#include "gtkgradient.h"
|
||||||
#include "gtk9slice.h"
|
#include "gtk9slice.h"
|
||||||
|
#include "gtkshadowprivate.h"
|
||||||
#include "gtkintl.h"
|
#include "gtkintl.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -109,12 +110,6 @@ gtk_style_properties_class_init (GtkStylePropertiesClass *klass)
|
|||||||
gtk_style_param_set_inherit (pspec, TRUE);
|
gtk_style_param_set_inherit (pspec, TRUE);
|
||||||
gtk_style_properties_register_property (NULL, pspec);
|
gtk_style_properties_register_property (NULL, pspec);
|
||||||
|
|
||||||
gtk_style_properties_register_property (NULL,
|
|
||||||
g_param_spec_boxed ("background-color",
|
|
||||||
"Background color",
|
|
||||||
"Background color",
|
|
||||||
GDK_TYPE_RGBA, 0));
|
|
||||||
|
|
||||||
pspec = g_param_spec_boxed ("font",
|
pspec = g_param_spec_boxed ("font",
|
||||||
"Font Description",
|
"Font Description",
|
||||||
"Font Description",
|
"Font Description",
|
||||||
@ -122,6 +117,13 @@ gtk_style_properties_class_init (GtkStylePropertiesClass *klass)
|
|||||||
gtk_style_param_set_inherit (pspec, TRUE);
|
gtk_style_param_set_inherit (pspec, TRUE);
|
||||||
gtk_style_properties_register_property (NULL, pspec);
|
gtk_style_properties_register_property (NULL, pspec);
|
||||||
|
|
||||||
|
pspec = g_param_spec_boxed ("text-shadow",
|
||||||
|
"Text shadow",
|
||||||
|
"Text shadow",
|
||||||
|
GTK_TYPE_SHADOW, 0);
|
||||||
|
gtk_style_param_set_inherit (pspec, TRUE);
|
||||||
|
gtk_style_properties_register_property (NULL, pspec);
|
||||||
|
|
||||||
gtk_style_properties_register_property (NULL,
|
gtk_style_properties_register_property (NULL,
|
||||||
g_param_spec_boxed ("margin",
|
g_param_spec_boxed ("margin",
|
||||||
"Margin",
|
"Margin",
|
||||||
@ -153,6 +155,11 @@ gtk_style_properties_class_init (GtkStylePropertiesClass *klass)
|
|||||||
"Border color",
|
"Border color",
|
||||||
"Border color",
|
"Border color",
|
||||||
GDK_TYPE_RGBA, 0));
|
GDK_TYPE_RGBA, 0));
|
||||||
|
gtk_style_properties_register_property (NULL,
|
||||||
|
g_param_spec_boxed ("background-color",
|
||||||
|
"Background color",
|
||||||
|
"Background color",
|
||||||
|
GDK_TYPE_RGBA, 0));
|
||||||
gtk_style_properties_register_property (NULL,
|
gtk_style_properties_register_property (NULL,
|
||||||
g_param_spec_boxed ("background-image",
|
g_param_spec_boxed ("background-image",
|
||||||
"Background Image",
|
"Background Image",
|
||||||
|
Loading…
Reference in New Issue
Block a user