Code

* INTL - fixed: "Crop to" dropdown strings not translated for PDF Import
[inkscape.git] / src / dyna-draw-context.h
index 6387672704786f3232f9c267f942feb7bcf891af..b3561b59a42066ded7306a16331dec5d2821eb15 100644 (file)
@@ -75,6 +75,7 @@ struct SPDynaDrawContext
     /* DynaDraw */
     NR::Point cur;
     NR::Point vel;
+    double vel_max;
     NR::Point acc;
     NR::Point ang;
     NR::Point last;
@@ -105,6 +106,19 @@ struct SPDynaDrawContext
 
     /** newly created object remain selected */
     bool keep_selected;
+
+    double hatch_spacing;
+    double hatch_spacing_step;
+    SPItem *hatch_item;
+    Path *hatch_livarot_path;
+    std::list<double> hatch_nearest_past;
+    std::list<double> hatch_pointer_past;
+    NR::Point hatch_last_nearest, hatch_last_pointer;
+    NR::Point hatch_vector_accumulated;
+    bool hatch_escaped;
+    SPCanvasItem *hatch_area;
+
+    bool trace_bg;
 };
 
 struct SPDynaDrawContextClass