Code

svg-filters branch merged back to head
[inkscape.git] / src / attributes.cpp
index 10b33e178c19f1780e96c9e7b9201522bda2d895..f0ecc1e415ed13bccc0ac252997375062732699e 100644 (file)
@@ -103,6 +103,10 @@ static SPStyleProp const props[] = {
     {SP_ATTR_INKSCAPE_CURRENT_LAYER, "inkscape:current-layer"},
     {SP_ATTR_INKSCAPE_DOCUMENT_UNITS, "inkscape:document-units"},
     {SP_ATTR_INKSCAPE_CONNECTOR_SPACING, "inkscape:connector-spacing"},
+    /* SPColorProfile */
+    {SP_ATTR_LOCAL, "local"},
+    {SP_ATTR_NAME, "name"},
+    {SP_ATTR_RENDERING_INTENT, "rendering-intent"},
     /* SPGuide */
     {SP_ATTR_ORIENTATION, "orientation"},
     {SP_ATTR_POSITION, "position"},
@@ -167,6 +171,12 @@ static SPStyleProp const props[] = {
     {SP_ATTR_STARTOFFSET, "startOffset"},
     /* SPStop */
     {SP_ATTR_OFFSET, "offset"},
+    /* SPFilter */
+    {SP_ATTR_FILTERUNITS, "filterUnits"},
+    {SP_ATTR_PRIMITIVEUNITS, "primitiveUnits"},
+    {SP_ATTR_FILTERRES, "filterRes"},
+    /* SPGaussianBlur */
+    {SP_ATTR_STDDEVIATION, "stdDeviation"},
     /* SPGradient */
     {SP_ATTR_GRADIENTUNITS, "gradientUnits"},
     {SP_ATTR_GRADIENTTRANSFORM, "gradientTransform"},
@@ -304,6 +314,10 @@ static SPStyleProp const props[] = {
     {SP_PROP_STROKE_OPACITY, "stroke-opacity"},
     {SP_PROP_STROKE_WIDTH, "stroke-width"},
     {SP_PROP_TEXT_RENDERING, "text-rendering"},
+    /* Conditional */
+    {SP_PROP_SYSTEM_LANGUAGE, "systemLanguage"},
+    {SP_PROP_REQUIRED_FEATURES, "requiredFeatures"},
+    {SP_PROP_REQUIRED_EXTENSIONS, "requiredExtensions"},
 };
 
 #define n_attrs (sizeof(props) / sizeof(props[0]))