#ifndef SEEN_SNAP_H #define SEEN_SNAP_H /** * \file snap.h * \brief Various snapping methods. * * Authors: * Lauris Kaplinski * Frank Felfe * Carl Hetherington * * Copyright (C) 2000-2002 Lauris Kaplinski * * Released under GNU GPL, read the file 'COPYING' for more information */ #include #include #include #include #include #include "grid-snapper.h" #include "guide-snapper.h" #include "object-snapper.h" class SPNamedView; class SnapManager { public: SnapManager(SPNamedView const *v); bool willSnapSomething() const; Inkscape::SnappedPoint freeSnap(Inkscape::Snapper::PointType t, NR::Point const &p, SPItem const *it) const; Inkscape::SnappedPoint freeSnap(Inkscape::Snapper::PointType t, NR::Point const &p, std::list const &it) const; Inkscape::SnappedPoint constrainedSnap(Inkscape::Snapper::PointType t, NR::Point const &p, Inkscape::Snapper::ConstraintLine const &c, SPItem const *it) const; Inkscape::SnappedPoint constrainedSnap(Inkscape::Snapper::PointType t, NR::Point const &p, Inkscape::Snapper::ConstraintLine const &c, std::list const &it) const; std::pair freeSnapTranslation(Inkscape::Snapper::PointType t, std::vector const &p, std::list const &it, NR::Point const &tr) const; std::pair constrainedSnapTranslation(Inkscape::Snapper::PointType t, std::vector const &p, std::list const &it, Inkscape::Snapper::ConstraintLine const &c, NR::Point const &tr) const; std::pair freeSnapScale(Inkscape::Snapper::PointType t, std::vector const &p, std::list const &it, NR::scale const &s, NR::Point const &o) const; std::pair constrainedSnapScale(Inkscape::Snapper::PointType t, std::vector const &p, std::list const &it, Inkscape::Snapper::ConstraintLine const &c, NR::scale const &s, NR::Point const &o) const; std::pair freeSnapStretch(Inkscape::Snapper::PointType t, std::vector const &p, std::list const &it, NR::Coord const &s, NR::Point const &o, NR::Dim2 d, bool uniform) const; Inkscape::GridSnapper grid; Inkscape::GuideSnapper guide; Inkscape::ObjectSnapper object; typedef std::list SnapperList; SnapperList getSnappers() const; private: enum Transformation { TRANSLATION, SCALE, STRETCH }; std::pair _snapTransformed(Inkscape::Snapper::PointType type, std::vector const &points, std::list const &ignore, bool constrained, Inkscape::Snapper::ConstraintLine const &constraint, Transformation transformation_type, NR::Point const &transformation, NR::Point const &origin, NR::Dim2 dim, bool uniform) const; }; /* Single point methods */ NR::Coord namedview_vector_snap(SPNamedView const *nv, Inkscape::Snapper::PointType t, NR::Point &req, NR::Point const &d, std::list const &it); NR::Coord namedview_vector_snap(SPNamedView const *nv, Inkscape::Snapper::PointType t, NR::Point &req, NR::Point const &d, SPItem const *it); NR::Coord namedview_dim_snap(SPNamedView const *nv, Inkscape::Snapper::PointType t, NR::Point& req, NR::Dim2 const dim, SPItem const *it); NR::Coord namedview_dim_snap(SPNamedView const *nv, Inkscape::Snapper::PointType t, NR::Point& req, NR::Dim2 const dim, std::list const &it); /* List of points methods */ NR::Coord namedview_dim_snap_list_skew(SPNamedView const *nv, Inkscape::Snapper::PointType t, const std::vector &p, NR::Point const &norm, double const sx, NR::Dim2 const dim); #endif /* !SEEN_SNAP_H */ /* Local Variables: mode:c++ c-file-style:"stroustrup" c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) indent-tabs-mode:nil fill-column:99 End: */ // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :