Code

fix pasting style after copying a text span
[inkscape.git] / src / sp-gradient.h
index de5247c1c57fc2499a1353a05d8772c708b13fcb..3a26f5e5a53d618e6738ec6e958d60a4d873abef 100644 (file)
@@ -6,7 +6,9 @@
  *
  * Authors:
  *   Lauris Kaplinski <lauris@kaplinski.com>
+ *   Johan Engelen <j.b.c.engelen@ewi.utwente.nl>
  *
+ * Copyright (C) 2007 Johan Engelen
  * Copyright (C) 1999-2002 Lauris Kaplinski
  * Copyright (C) 2000-2001 Ximian, Inc.
  *
@@ -37,13 +39,18 @@ typedef enum {
 } SPGradientState;
 
 typedef enum {
-    POINT_LG_BEGIN,
+    POINT_LG_BEGIN =0, //start enum at 0 (for indexing into gr_knot_shapes array for example)
     POINT_LG_END,
     POINT_LG_MID,
     POINT_RG_CENTER,
     POINT_RG_R1,
     POINT_RG_R2,
-    POINT_RG_FOCUS
+    POINT_RG_FOCUS,
+    POINT_RG_MID1,
+    POINT_RG_MID2,
+    // insert new point types here.
+    
+    POINT_G_INVALID
 } GrPointType;
 
 /**
@@ -61,7 +68,7 @@ struct SPGradient : public SPPaintServer {
        SPGradientUnits units;
        guint units_set : 1;
        /** gradientTransform attribute */
-       NR::Matrix gradientTransform;
+       Geom::Matrix gradientTransform;
        guint gradientTransform_set : 1;
        /** spreadMethod attribute */
        SPGradientSpread spread;