Code

r11516@tres: ted | 2006-04-26 21:30:18 -0700
[inkscape.git] / src / attributes.cpp
index 4d182179c7a7e873cde6b8e4f8354394f4fa6e0b..541acfc0cfda10c5752e77a823001e270fe489dd 100644 (file)
@@ -36,6 +36,8 @@ static SPStyleProp const props[] = {
     {SP_ATTR_SODIPODI_NONPRINTABLE, "sodipodi:nonprintable"},
     {SP_ATTR_CONNECTOR_AVOID, "inkscape:connector-avoid"},
     {SP_ATTR_STYLE, "style"},
+    {SP_ATTR_TRANSFORM_CENTER_X, "inkscape:transform-center-x"},
+    {SP_ATTR_TRANSFORM_CENTER_Y, "inkscape:transform-center-y"},
     /* SPAnchor */
     {SP_ATTR_XLINK_HREF, "xlink:href"},
     {SP_ATTR_XLINK_TYPE, "xlink:type"},
@@ -100,6 +102,11 @@ static SPStyleProp const props[] = {
     {SP_ATTR_INKSCAPE_OBJECT_NODES, "inkscape:object-nodes"},
     {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"},
@@ -301,6 +308,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]))