mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 06:00:22 +00:00
Add border-{top|left|bottom|right}-style properties
Add all the border-style subproperties and turn border-style itself in a shorthand.
This commit is contained in:
parent
066f3be659
commit
e69f14cf2b
@ -29,6 +29,7 @@
|
|||||||
#include "gtkcssstylefuncsprivate.h"
|
#include "gtkcssstylefuncsprivate.h"
|
||||||
#include "gtkcsstypesprivate.h"
|
#include "gtkcsstypesprivate.h"
|
||||||
#include "gtkprivatetypebuiltins.h"
|
#include "gtkprivatetypebuiltins.h"
|
||||||
|
#include "gtktypebuiltins.h"
|
||||||
|
|
||||||
/* this is in case round() is not provided by the compiler,
|
/* this is in case round() is not provided by the compiler,
|
||||||
* such as in the case of C89 compilers, like MSVC
|
* such as in the case of C89 compilers, like MSVC
|
||||||
@ -177,6 +178,39 @@ parse_border_color (GtkCssShorthandProperty *shorthand,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
parse_border_style (GtkCssShorthandProperty *shorthand,
|
||||||
|
GValue *values,
|
||||||
|
GtkCssParser *parser,
|
||||||
|
GFile *base)
|
||||||
|
{
|
||||||
|
GtkBorderStyle styles[4];
|
||||||
|
guint i;
|
||||||
|
|
||||||
|
for (i = 0; i < 4; i++)
|
||||||
|
{
|
||||||
|
if (!_gtk_css_parser_try_enum (parser, GTK_TYPE_BORDER_STYLE, (int *)&styles[i]))
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (i == 0)
|
||||||
|
{
|
||||||
|
_gtk_css_parser_error (parser, "Expected a border style");
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (; i < G_N_ELEMENTS (styles); i++)
|
||||||
|
styles[i] = styles[(i - 1) >> 1];
|
||||||
|
|
||||||
|
for (i = 0; i < G_N_ELEMENTS (styles); i++)
|
||||||
|
{
|
||||||
|
g_value_init (&values[i], GTK_TYPE_BORDER_STYLE);
|
||||||
|
g_value_set_enum (&values[i], styles[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
parse_border_image (GtkCssShorthandProperty *shorthand,
|
parse_border_image (GtkCssShorthandProperty *shorthand,
|
||||||
GValue *values,
|
GValue *values,
|
||||||
@ -691,6 +725,44 @@ pack_border_color (GValue *value,
|
|||||||
gtk_style_properties_get_property (props, "border-top-color", state, value);
|
gtk_style_properties_get_property (props, "border-top-color", state, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static GParameter *
|
||||||
|
unpack_border_style (const GValue *value,
|
||||||
|
guint *n_params)
|
||||||
|
{
|
||||||
|
GParameter *parameter = g_new0 (GParameter, 4);
|
||||||
|
GtkBorderStyle style;
|
||||||
|
|
||||||
|
style = g_value_get_enum (value);
|
||||||
|
|
||||||
|
parameter[0].name = "border-top-style";
|
||||||
|
g_value_init (¶meter[0].value, GTK_TYPE_BORDER_STYLE);
|
||||||
|
g_value_set_enum (¶meter[0].value, style);
|
||||||
|
parameter[1].name = "border-right-style";
|
||||||
|
g_value_init (¶meter[1].value, GTK_TYPE_BORDER_STYLE);
|
||||||
|
g_value_set_enum (¶meter[1].value, style);
|
||||||
|
parameter[2].name = "border-bottom-style";
|
||||||
|
g_value_init (¶meter[2].value, GTK_TYPE_BORDER_STYLE);
|
||||||
|
g_value_set_enum (¶meter[2].value, style);
|
||||||
|
parameter[3].name = "border-left-style";
|
||||||
|
g_value_init (¶meter[3].value, GTK_TYPE_BORDER_STYLE);
|
||||||
|
g_value_set_enum (¶meter[3].value, style);
|
||||||
|
|
||||||
|
*n_params = 4;
|
||||||
|
return parameter;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
pack_border_style (GValue *value,
|
||||||
|
GtkStyleProperties *props,
|
||||||
|
GtkStateFlags state)
|
||||||
|
{
|
||||||
|
/* NB: We can just resolve to a style. We pick one and stick to it.
|
||||||
|
* Lesson learned: Don't query border-style shorthand, query the
|
||||||
|
* real properties instead. */
|
||||||
|
g_value_unset (value);
|
||||||
|
gtk_style_properties_get_property (props, "border-top-style", state, value);
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
_gtk_css_shorthand_property_register (const char *name,
|
_gtk_css_shorthand_property_register (const char *name,
|
||||||
GType value_type,
|
GType value_type,
|
||||||
@ -723,6 +795,7 @@ _gtk_css_shorthand_property_init_properties (void)
|
|||||||
const char *border_radius_subproperties[] = { "border-top-left-radius", "border-top-right-radius",
|
const char *border_radius_subproperties[] = { "border-top-left-radius", "border-top-right-radius",
|
||||||
"border-bottom-right-radius", "border-bottom-left-radius", NULL };
|
"border-bottom-right-radius", "border-bottom-left-radius", NULL };
|
||||||
const char *border_color_subproperties[] = { "border-top-color", "border-right-color", "border-bottom-color", "border-left-color", NULL };
|
const char *border_color_subproperties[] = { "border-top-color", "border-right-color", "border-bottom-color", "border-left-color", NULL };
|
||||||
|
const char *border_style_subproperties[] = { "border-top-style", "border-right-style", "border-bottom-style", "border-left-style", NULL };
|
||||||
const char *border_image_subproperties[] = { "border-image-source", "border-image-slice", "border-image-width", "border-image-repeat", NULL };
|
const char *border_image_subproperties[] = { "border-image-source", "border-image-slice", "border-image-width", "border-image-repeat", NULL };
|
||||||
const char *background_subproperties[] = { "background-image", "background-repeat", "background-clip", "background-origin",
|
const char *background_subproperties[] = { "background-image", "background-repeat", "background-clip", "background-origin",
|
||||||
"background-color", NULL };
|
"background-color", NULL };
|
||||||
@ -763,6 +836,12 @@ _gtk_css_shorthand_property_init_properties (void)
|
|||||||
parse_border_color,
|
parse_border_color,
|
||||||
unpack_border_color,
|
unpack_border_color,
|
||||||
pack_border_color);
|
pack_border_color);
|
||||||
|
_gtk_css_shorthand_property_register ("border-style",
|
||||||
|
GTK_TYPE_BORDER_STYLE,
|
||||||
|
border_style_subproperties,
|
||||||
|
parse_border_style,
|
||||||
|
unpack_border_style,
|
||||||
|
pack_border_style);
|
||||||
_gtk_css_shorthand_property_register ("border-image",
|
_gtk_css_shorthand_property_register ("border-image",
|
||||||
G_TYPE_NONE,
|
G_TYPE_NONE,
|
||||||
border_image_subproperties,
|
border_image_subproperties,
|
||||||
|
@ -715,13 +715,35 @@ _gtk_css_style_property_init_properties (void)
|
|||||||
NULL,
|
NULL,
|
||||||
&no_corner_radius);
|
&no_corner_radius);
|
||||||
|
|
||||||
gtk_style_property_register ("border-style",
|
gtk_style_property_register ("border-top-style",
|
||||||
GTK_TYPE_BORDER_STYLE,
|
GTK_TYPE_BORDER_STYLE,
|
||||||
0,
|
0,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
GTK_BORDER_STYLE_NONE);
|
GTK_BORDER_STYLE_NONE);
|
||||||
|
gtk_style_property_register ("border-left-style",
|
||||||
|
GTK_TYPE_BORDER_STYLE,
|
||||||
|
0,
|
||||||
|
NULL,
|
||||||
|
NULL,
|
||||||
|
NULL,
|
||||||
|
GTK_BORDER_STYLE_NONE);
|
||||||
|
gtk_style_property_register ("border-bottom-style",
|
||||||
|
GTK_TYPE_BORDER_STYLE,
|
||||||
|
0,
|
||||||
|
NULL,
|
||||||
|
NULL,
|
||||||
|
NULL,
|
||||||
|
GTK_BORDER_STYLE_NONE);
|
||||||
|
gtk_style_property_register ("border-right-style",
|
||||||
|
GTK_TYPE_BORDER_STYLE,
|
||||||
|
0,
|
||||||
|
NULL,
|
||||||
|
NULL,
|
||||||
|
NULL,
|
||||||
|
GTK_BORDER_STYLE_NONE);
|
||||||
|
|
||||||
gtk_style_property_register ("background-clip",
|
gtk_style_property_register ("background-clip",
|
||||||
GTK_TYPE_CSS_AREA,
|
GTK_TYPE_CSS_AREA,
|
||||||
0,
|
0,
|
||||||
|
@ -7,19 +7,22 @@
|
|||||||
border-bottom-color: inherit;
|
border-bottom-color: inherit;
|
||||||
border-bottom-left-radius: inherit;
|
border-bottom-left-radius: inherit;
|
||||||
border-bottom-right-radius: inherit;
|
border-bottom-right-radius: inherit;
|
||||||
|
border-bottom-style: inherit;
|
||||||
border-bottom-width: inherit;
|
border-bottom-width: inherit;
|
||||||
border-image-repeat: inherit;
|
border-image-repeat: inherit;
|
||||||
border-image-slice: inherit;
|
border-image-slice: inherit;
|
||||||
border-image-source: inherit;
|
border-image-source: inherit;
|
||||||
border-image-width: inherit;
|
border-image-width: inherit;
|
||||||
border-left-color: inherit;
|
border-left-color: inherit;
|
||||||
|
border-left-style: inherit;
|
||||||
border-left-width: inherit;
|
border-left-width: inherit;
|
||||||
border-right-color: inherit;
|
border-right-color: inherit;
|
||||||
|
border-right-style: inherit;
|
||||||
border-right-width: inherit;
|
border-right-width: inherit;
|
||||||
border-style: inherit;
|
|
||||||
border-top-color: inherit;
|
border-top-color: inherit;
|
||||||
border-top-left-radius: inherit;
|
border-top-left-radius: inherit;
|
||||||
border-top-right-radius: inherit;
|
border-top-right-radius: inherit;
|
||||||
|
border-top-style: inherit;
|
||||||
border-top-width: inherit;
|
border-top-width: inherit;
|
||||||
box-shadow: inherit;
|
box-shadow: inherit;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
|
@ -7,19 +7,22 @@
|
|||||||
border-bottom-color: initial;
|
border-bottom-color: initial;
|
||||||
border-bottom-left-radius: initial;
|
border-bottom-left-radius: initial;
|
||||||
border-bottom-right-radius: initial;
|
border-bottom-right-radius: initial;
|
||||||
|
border-bottom-style: initial;
|
||||||
border-bottom-width: initial;
|
border-bottom-width: initial;
|
||||||
border-image-repeat: initial;
|
border-image-repeat: initial;
|
||||||
border-image-slice: initial;
|
border-image-slice: initial;
|
||||||
border-image-source: initial;
|
border-image-source: initial;
|
||||||
border-image-width: initial;
|
border-image-width: initial;
|
||||||
border-left-color: initial;
|
border-left-color: initial;
|
||||||
|
border-left-style: initial;
|
||||||
border-left-width: initial;
|
border-left-width: initial;
|
||||||
border-right-color: initial;
|
border-right-color: initial;
|
||||||
|
border-right-style: initial;
|
||||||
border-right-width: initial;
|
border-right-width: initial;
|
||||||
border-style: initial;
|
|
||||||
border-top-color: initial;
|
border-top-color: initial;
|
||||||
border-top-left-radius: initial;
|
border-top-left-radius: initial;
|
||||||
border-top-right-radius: initial;
|
border-top-right-radius: initial;
|
||||||
|
border-top-style: initial;
|
||||||
border-top-width: initial;
|
border-top-width: initial;
|
||||||
box-shadow: initial;
|
box-shadow: initial;
|
||||||
color: initial;
|
color: initial;
|
||||||
|
@ -7,24 +7,27 @@
|
|||||||
border-bottom-color: none;
|
border-bottom-color: none;
|
||||||
border-bottom-left-radius: none;
|
border-bottom-left-radius: none;
|
||||||
border-bottom-right-radius: none;
|
border-bottom-right-radius: none;
|
||||||
|
border-bottom-style: none;
|
||||||
border-bottom-width: none;
|
border-bottom-width: none;
|
||||||
border-image-repeat: none;
|
border-image-repeat: none;
|
||||||
border-image-slice: none;
|
border-image-slice: none;
|
||||||
border-image-source: none;
|
border-image-source: none;
|
||||||
border-image-width: none;
|
border-image-width: none;
|
||||||
border-left-color: none;
|
border-left-color: none;
|
||||||
|
border-left-style: none;
|
||||||
border-left-width: none;
|
border-left-width: none;
|
||||||
border-right-color: none;
|
border-right-color: none;
|
||||||
|
border-right-style: none;
|
||||||
border-right-width: none;
|
border-right-width: none;
|
||||||
border-style: none;
|
|
||||||
border-top-color: none;
|
border-top-color: none;
|
||||||
border-top-left-radius: none;
|
border-top-left-radius: none;
|
||||||
border-top-right-radius: none;
|
border-top-right-radius: none;
|
||||||
|
border-top-style: none;
|
||||||
border-top-width: none;
|
border-top-width: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
color: none;
|
color: none;
|
||||||
engine: none;
|
engine: none;
|
||||||
font-family: none;
|
font-family: none;
|
||||||
font-size: none;
|
font-size: none;
|
||||||
font-style: none;
|
font-style: none;
|
||||||
font-variant: none;
|
font-variant: none;
|
||||||
|
@ -5,28 +5,28 @@ value-none.css:6: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
|||||||
value-none.css:7: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:7: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:8: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:8: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:9: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:9: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:10: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
|
||||||
value-none.css:11: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:11: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:12: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:12: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:14: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:13: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:15: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:15: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:16: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:16: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:17: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
|
||||||
value-none.css:18: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:18: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:20: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:19: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:21: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:21: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:22: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:22: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:23: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:23: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:25: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:24: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
|
value-none.css:26: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:28: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:28: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:29: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
|
||||||
value-none.css:30: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
|
||||||
value-none.css:31: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:31: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
|
value-none.css:32: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:33: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:33: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:34: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:34: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:35: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
|
||||||
value-none.css:36: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:36: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:37: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:37: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:38: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:38: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:39: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:39: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
value-none.css:40: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
value-none.css:40: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
|
value-none.css:41: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
|
value-none.css:42: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
|
value-none.css:43: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
|
||||||
|
@ -1,7 +1,10 @@
|
|||||||
* {
|
* {
|
||||||
background-image: none;
|
background-image: none;
|
||||||
|
border-bottom-style: none;
|
||||||
border-image-source: none;
|
border-image-source: none;
|
||||||
border-style: none;
|
border-left-style: none;
|
||||||
|
border-right-style: none;
|
||||||
|
border-top-style: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
engine: none;
|
engine: none;
|
||||||
font-family: "none";
|
font-family: "none";
|
||||||
|
Loading…
Reference in New Issue
Block a user