Code

a bunch of small changes to provide a user readable explanation of filters
[inkscape.git] / src / guide-snapper.h
index 37e3e3006d66c51c2c733fbefed5119b8026b595..0605bdb97daad193fa0b06294e27df2477f36645 100644 (file)
@@ -28,10 +28,12 @@ namespace Inkscape
 class GuideSnapper : public LineSnapper
 {
 public:
-    GuideSnapper(SPNamedView const *nv, NR::Coord const d);
+    GuideSnapper(SPNamedView const *nv, NR::Coord const d);    
+    bool ThisSnapperMightSnap() const;
 
 private:
-    LineList _getSnapLines(NR::Point const &p) const;
+    LineList _getSnapLines(NR::Point const &p) const;    
+    void _addSnappedLine(SnappedConstraints &sc, NR::Point const snapped_point, NR::Coord const snapped_distance, NR::Point const normal_to_line, NR::Point const point_on_line) const;
 };
 
 }