object-snapper.h revision 17e8c293a1792714f56eba5547874234e9ea0dea
#ifndef SEEN_OBJECT_SNAPPER_H
#define SEEN_OBJECT_SNAPPER_H
/**
* \file object-snapper.h
* \brief Snapping things to objects.
*
* Authors:
* Carl Hetherington <inkscape@carlh.net>
* Diederik van Lierop <mail@diedenrezi.nl>
*
* Copyright (C) 2005 - 2008 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "snapper.h"
#include "sp-path.h"
#include "splivarot.h"
struct SPNamedView;
struct SPItem;
struct SPObject;
{
{
~SnapCandidate();
bool clip_or_mask; // If true, then item refers to a clipping path or a mask
/* To find out the absolute position of a clipping path or mask, we not only need to know
* the transformation of the clipping path or mask itself, but also the transformation of
* the object to which the clip or mask is being applied; that transformation is stored here
*/
};
{
~ObjectSnapper();
enum DimensionToSnap {
GUIDE_TRANSL_SNAP_X, // For snapping a vertical guide (normal in the X-direction) to objects,
GUIDE_TRANSL_SNAP_Y, // For snapping a horizontal guide (normal in the Y-direction) to objects
ANGLED_GUIDE_TRANSL_SNAP, // For snapping an angled guide, while translating it accross the desktop
TRANSL_SNAP_XY}; // All other cases; for snapping to objects, other than guides
ConstraintLine const &c) const;
bool ThisSnapperMightSnap() const;
bool GuidesMightSnap() const;
Geom::Coord getSnapperTolerance() const; //returns the tolerance of the snapper in screen pixels (i.e. independent of zoom)
bool getSnapperAlwaysSnap() const; //if true, then the snapper will always snap, regardless of its tolerance
SnapSourceType const &source_type,
bool const &first_point,
SnapSourceType const &source_type,
bool const &first_point,
ConstraintLine const &c,
//store some lists of candidates, points and paths, so we don't have to rebuild them for each point we want to snap
bool const &first_point,
bool const _clip_or_mask,
SnapSourceType const &source_type,
bool const &first_point,
bool const &first_point) const;
SnapSourceType const &source_type,
bool const &first_point,
SPPath const *selected_path) const;
SnapSourceType const source_type,
bool const &first_point,
ConstraintLine const &c) const;
bool isUnselectedNode(Geom::Point const &point, std::vector<std::pair<Geom::Point, int> > const *unselected_nodes) const;
bool const &first_point) const;
void _clear_paths() const;
}; // end of ObjectSnapper class
void getBBoxPoints(Geom::OptRect const bbox, std::vector<std::pair<Geom::Point, int> > *points, bool const isTarget, bool const includeCorners, bool const includeLineMidpoints, bool const includeObjectMidpoints);
} // end of namespace Inkscape
#endif