From 96bf3670efc23ecee2b9546b0b55993b1601c221 Mon Sep 17 00:00:00 2001 From: Tavmjong Bah Date: Wed, 19 Oct 2016 13:11:05 +0200 Subject: Implement 'vector-effect' value 'non-scaling-stroke'. No GUI yet. (bzr r15177) --- src/style-enums.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/style-enums.h') diff --git a/src/style-enums.h b/src/style-enums.h index 06207852c..a0fcaedef 100644 --- a/src/style-enums.h +++ b/src/style-enums.h @@ -309,6 +309,10 @@ enum SPTextRendering { SP_CSS_TEXT_RENDERING_GEOMETRICPRECISION }; +enum SPVectorEffect { + SP_VECTOR_EFFECT_NONE, + SP_VECTOR_EFFECT_NON_SCALING_STROKE +}; struct SPStyleEnum { char const *key; @@ -668,6 +672,12 @@ static SPStyleEnum const enum_color_interpolation[] = { {NULL, -1} }; +static SPStyleEnum const enum_vector_effect[] = { + {"none", SP_VECTOR_EFFECT_NONE}, + {"non-scaling-stroke", SP_VECTOR_EFFECT_NON_SCALING_STROKE}, + {NULL, -1} +}; + #endif // SEEN_SP_STYLE_ENUMS_H -- cgit v1.2.3