curve-drag-point.h revision 0d68d82e47abab250c99dd534da2e2d26b697b2d
/** @file
* Control point that is dragged during path drag
*/
/* Authors:
* Krzysztof KosiƄski <tweenk.pl@gmail.com>
*
* Copyright (C) 2009 Authors
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifndef SEEN_UI_TOOL_CURVE_DRAG_POINT_H
#define SEEN_UI_TOOL_CURVE_DRAG_POINT_H
#include "ui/tool/control-point.h"
#include "ui/tool/node.h"
class SPDesktop;
namespace Inkscape {
namespace UI {
class PathManipulator;
struct PathSharedData;
class CurveDragPoint : public ControlPoint {
public:
CurveDragPoint(PathManipulator &pm);
void setSize(double sz) { _setSize(sz); }
void setTimeValue(double t) { _t = t; }
void setIterator(NodeList::iterator i) { first = i; }
virtual bool _eventHandler(SPEventContext *event_context, GdkEvent *event);
protected:
virtual Glib::ustring _getTip(unsigned state);
virtual void dragged(Geom::Point &, GdkEventMotion *);
virtual bool grabbed(GdkEventMotion *);
virtual void ungrabbed(GdkEventButton *);
virtual bool clicked(GdkEventButton *);
virtual bool doubleclicked(GdkEventButton *);
private:
void _insertNode(bool take_selection);
double _t;
PathManipulator &_pm;
NodeList::iterator first;
static bool _drags_stroke;
static bool _segment_was_degenerate;
static Geom::Point _stroke_drag_origin;
};
} // namespace UI
} // namespace Inkscape
#endif
/*
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:fileencoding=utf-8:textwidth=99 :