Code

Merge and cleanup of GSoC C++-ification project.
[inkscape.git] / src / extension / internal / odf.h
index 250b807d5228f55909d951d74c44dbf47d7d8401..9ad2610989b6da0dfa60856ba91084c2a9f5ecef 100644 (file)
@@ -11,6 +11,7 @@
  *
  * Authors:
  *   Bob Jamison
+ *   Abhishek Sharma
  *
  * Copyright (C) 2006 Bob Jamison
  *
@@ -34,8 +35,9 @@
 
 #include <dom/dom.h>
 #include <dom/io/stringstream.h>
+#include <dom/uri.h>
 
-#include <glib.h>
+#include <glibmm.h>
 #include "extension/implementation/implementation.h"
 
 
@@ -46,8 +48,7 @@
 
 #include <dom/util/ziptool.h>
 #include <dom/io/domstream.h>
-
-typedef org::w3c::dom::io::Writer Writer;
+#include "sp-item.h"
 
 namespace Inkscape
 {
@@ -56,6 +57,8 @@ namespace Extension
 namespace Internal
 {
 
+typedef org::w3c::dom::URI URI;
+typedef org::w3c::dom::io::Writer Writer;
 
 
 class StyleInfo
@@ -67,13 +70,6 @@ public:
         init();
         }
 
-    StyleInfo(const std::string &nameArg, const std::string &styleArg)
-        {
-        init();
-        name   = nameArg;
-        style  = styleArg;
-        }
-
     StyleInfo(const StyleInfo &other)
         {
         assign(other);
@@ -87,75 +83,183 @@ public:
 
     void assign(const StyleInfo &other)
         {
-        name        = other.name;
-        style       = other.style;
-        cssStyle    = other.cssStyle;
-        stroke      = other.stroke;
-        strokeColor = other.strokeColor;
-        strokeWidth = other.strokeWidth;
-        fill        = other.fill;
-        fillColor   = other.fillColor;
+        name          = other.name;
+        stroke        = other.stroke;
+        strokeColor   = other.strokeColor;
+        strokeWidth   = other.strokeWidth;
+        strokeOpacity = other.strokeOpacity;
+        fill          = other.fill;
+        fillColor     = other.fillColor;
+        fillOpacity   = other.fillOpacity;
         }
 
     void init()
         {
-        name        = "none";
-        style       = "none";
-        cssStyle    = "none";
-        stroke      = "none";
-        strokeColor = "none";
-        strokeWidth = "none";
-        fill        = "none";
-        fillColor   = "none";
+        name          = "none";
+        stroke        = "none";
+        strokeColor   = "none";
+        strokeWidth   = "none";
+        strokeOpacity = "none";
+        fill          = "none";
+        fillColor     = "none";
+        fillOpacity   = "none";
         }
 
     virtual ~StyleInfo()
         {}
 
-    std::string getName()
+    //used for eliminating duplicates in the styleTable
+    bool equals(const StyleInfo &other)
         {
-        return name;
+        if (
+            stroke        != other.stroke        ||
+            strokeColor   != other.strokeColor   ||
+            strokeWidth   != other.strokeWidth   ||
+            strokeOpacity != other.strokeOpacity ||
+            fill          != other.fill          ||
+            fillColor     != other.fillColor     ||
+            fillOpacity   != other.fillOpacity
+           )
+            return false;
+        return true;
         }
 
-    std::string getCssStyle()
+    Glib::ustring name;
+    Glib::ustring stroke;
+    Glib::ustring strokeColor;
+    Glib::ustring strokeWidth;
+    Glib::ustring strokeOpacity;
+    Glib::ustring fill;
+    Glib::ustring fillColor;
+    Glib::ustring fillOpacity;
+
+};
+
+
+
+
+class GradientStop
+{
+public:
+    GradientStop()
+        {}
+    GradientStop(unsigned long rgbArg, double opacityArg)
+        { rgb = rgbArg; opacity = opacityArg; }
+    virtual ~GradientStop()
+        {}
+    GradientStop(const GradientStop &other)
+        {  assign(other); }
+    virtual GradientStop operator=(const GradientStop &other)
+        {  assign(other); return *this; }
+    void assign(const GradientStop &other)
         {
-        return cssStyle;
+        rgb = other.rgb;
+        opacity = other.opacity;
         }
+    unsigned long rgb;
+    double opacity;
+};
+
+
 
-    std::string getStroke()
+class GradientInfo
+{
+public:
+
+    GradientInfo()
         {
-        return stroke;
+        init();
         }
 
-    std::string getStrokeColor()
+    GradientInfo(const GradientInfo &other)
         {
-        return strokeColor;
+        assign(other);
         }
 
-    std::string getStrokeWidth()
+    GradientInfo &operator=(const GradientInfo &other)
         {
-        return strokeWidth;
+        assign(other);
+        return *this;
         }
 
+    void assign(const GradientInfo &other)
+        {
+        name          = other.name;
+        style         = other.style;
+        cx            = other.cx;
+        cy            = other.cy;
+        fx            = other.fx;
+        fy            = other.fy;
+        r             = other.r;
+        x1            = other.x1;
+        y1            = other.y1;
+        x2            = other.x2;
+        y2            = other.y2;
+        stops         = other.stops;
+        }
 
-    std::string getFill()
+    void init()
         {
-        return fill;
+        name          = "none";
+        style         = "none";
+        cx            = 0.0;
+        cy            = 0.0;
+        fx            = 0.0;
+        fy            = 0.0;
+        r             = 0.0;
+        x1            = 0.0;
+        y1            = 0.0;
+        x2            = 0.0;
+        y2            = 0.0;
+        stops.clear();
         }
 
-    std::string getFillColor()
+    virtual ~GradientInfo()
+        {}
+
+    //used for eliminating duplicates in the styleTable
+    bool equals(const GradientInfo &other)
         {
-        return fillColor;
+        if (
+            name        != other.name   ||
+            style       != other.style  ||
+            cx          != other.cx     ||
+            cy          != other.cy     ||
+            fx          != other.fx     ||
+            fy          != other.fy     ||
+            r           != other.r      ||
+            x1          != other.x1     ||
+            y1          != other.y1     ||
+            x2          != other.x2     ||
+            y2          != other.y2
+           )
+            return false;
+        if (stops.size() != other.stops.size())
+            return false;
+        for (unsigned int i=0 ; i<stops.size() ; i++)
+            {
+            GradientStop g1 = stops[i];
+            GradientStop g2 = other.stops[i];
+            if (g1.rgb != g2.rgb)
+                return false;
+            if (g1.opacity != g2.opacity)
+                return false;
+            }
+        return true;
         }
 
-    std::string name;
-    std::string style;
-    std::string cssStyle;
-    std::string stroke;
-    std::string strokeColor;
-    std::string strokeWidth;
-    std::string fill;
-    std::string fillColor;
+    Glib::ustring name;
+    Glib::ustring style;
+    double cx;
+    double cy;
+    double fx;
+    double fy;
+    double r;
+    double x1;
+    double y1;
+    double x2;
+    double y2;
+    std::vector<GradientStop> stops;
 
 };
 
@@ -170,24 +274,60 @@ public:
 
     void save  (Inkscape::Extension::Output *mod,
                SPDocument *doc,
-               const gchar *uri);
+               gchar const *filename);
 
     static void   init  (void);
 
 private:
 
-    std::map<std::string, StyleInfo> styleTable;
+    URI documentUri;
+
+    void reset();
+
+    //cc or dc metadata name/value pairs
+    std::map<Glib::ustring, Glib::ustring> metadata;
+
+    /* Style table
+       Uses a two-stage lookup to avoid style duplication.
+       Use like:
+       StyleInfo si = styleTable[styleLookupTable[id]];
+       but check for errors, of course
+    */
+    //element id -> style entry name
+    std::map<Glib::ustring, Glib::ustring> styleLookupTable;
+    //style entry name -> style info
+    std::vector<StyleInfo> styleTable;
+
+    //element id -> gradient entry name
+    std::map<Glib::ustring, Glib::ustring> gradientLookupTable;
+    //gradient entry name -> gradient info
+    std::vector<GradientInfo> gradientTable;
 
     //for renaming image file names
-    std::map<std::string, std::string> imageTable;
+    std::map<Glib::ustring, Glib::ustring> imageTable;
 
     void preprocess(ZipFile &zf, Inkscape::XML::Node *node);
 
     bool writeManifest(ZipFile &zf);
 
-    bool writeStyle(Writer &outs);
+    bool writeMeta(ZipFile &zf);
+
+    bool writeStyle(ZipFile &zf);
+
+    bool processStyle(Writer &outs, SPItem *item, const Glib::ustring &id);
+
+    bool processGradient(Writer &outs, SPItem *item,
+                    const Glib::ustring &id, Geom::Matrix &tf);
+
+    bool writeStyleHeader(Writer &outs);
+
+    bool writeStyleFooter(Writer &outs);
+
+    bool writeContentHeader(Writer &outs);
+
+    bool writeContentFooter(Writer &outs);
 
-    bool writeTree(Writer &outs, Inkscape::XML::Node *node);
+    bool writeTree(Writer &couts, Writer &souts, Inkscape::XML::Node *node);
 
     bool writeContent(ZipFile &zf, Inkscape::XML::Node *node);