summaryrefslogtreecommitdiffstats
path: root/src/style-enums.h
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2016-10-19 11:11:05 +0000
committertavmjong-free <tavmjong@free.fr>2016-10-19 11:11:05 +0000
commit96bf3670efc23ecee2b9546b0b55993b1601c221 (patch)
tree57811483e1b2ea1e395b8f125964e45296138b6c /src/style-enums.h
parentupdate author list in about dialog from AUTHORS file (diff)
downloadinkscape-96bf3670efc23ecee2b9546b0b55993b1601c221.tar.gz
inkscape-96bf3670efc23ecee2b9546b0b55993b1601c221.zip
Implement 'vector-effect' value 'non-scaling-stroke'. No GUI yet.
(bzr r15177)
Diffstat (limited to 'src/style-enums.h')
-rw-r--r--src/style-enums.h10
1 files changed, 10 insertions, 0 deletions
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