Code

Merge from trunk.
[inkscape.git] / src / snapper.cpp
index 7e08c22ef7a71d8d2c77b154252da9068548c039..fb7281c30bfb14647ab83f69b7cf5aa8bd4ffa8d 100644 (file)
@@ -9,7 +9,6 @@
  *  Released under GNU GPL, read the file 'COPYING' for more information.
  */
 
-#include "libnr/nr-values.h"
 #include "sp-namedview.h"
 #include "inkscape.h"
 #include "desktop.h"
@@ -20,8 +19,9 @@
  *  \param d Snap tolerance.
  */
 Inkscape::Snapper::Snapper(SnapManager *sm, Geom::Coord const /*t*/) :
-       _snapmanager(sm),
-       _snap_enabled(true)
+    _snapmanager(sm),
+    _snap_enabled(true),
+    _snap_visible_only(true)
 {
     g_assert(_snapmanager != NULL);
 }
@@ -35,6 +35,11 @@ void Inkscape::Snapper::setEnabled(bool s)
     _snap_enabled = s;
 }
 
+void Inkscape::Snapper::setSnapVisibleOnly(bool s)
+{
+    _snap_visible_only = s;
+}
+
 /*
   Local Variables:
   mode:c++