snap.h revision 957324b1de76466c62aec3c1a8bf5b851dd322a2
#ifndef SEEN_SNAP_H
#define SEEN_SNAP_H
/**
* \file snap.h
* \brief SnapManager class.
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* Frank Felfe <innerspace@iname.com>
* Carl Hetherington <inkscape@carlh.net>
*
* Copyright (C) 2006-2007 Johan Engelen <johan@shouraizou.nl>
* Copyright (C) 2000-2002 Lauris Kaplinski
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <vector>
#include <libnr/nr-coord.h>
#include <libnr/nr-forward.h>
#include <libnr/nr-scale.h>
#include "guide-snapper.h"
#include "object-snapper.h"
/// Class to coordinate snapping operations
/**
* Each SPNamedView has one of these. It offers methods to snap points to whatever
* snappers are defined (e.g. grid, guides etc.). It also allows callers to snap
* points which have undergone some transformation (e.g. translation, scaling etc.)
*/
{
SnapManager(SPNamedView const *v);
bool SomeSnapperMightSnap() const;
bool const &first_point,
bool const &first_point,
SnapperList const &snappers ) const;
SnapperList &snappers );
SnapperList &snappers );
bool const &first_point,
bool uniform) const;
SnapperList getSnappers() const;
SnapperList getGridSnappers() const;
void setSnapModeBBox(bool enabled);
void setSnapModeNode(bool enabled);
void setSnapModeGuide(bool enabled);
bool getSnapModeBBox() const;
bool getSnapModeNode() const;
bool getSnapModeGuide() const;
void setIncludeItemCenter(bool enabled) {
//instead of passing it through many functions
}
bool getIncludeItemCenter() const {
return _include_item_center;
}
SPNamedView const *_named_view;
enum Transformation {
};
bool _include_item_center; //If true, snapping nodes will also snap the item's center
bool constrained,
bool uniform) const;
};
#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 :