From cca66b9ec4e494c1d919bff0f71a820d8afab1fa Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:24:48 +0200 Subject: Adding upstream version 1.2.2. Signed-off-by: Daniel Baumann --- src/ui/draw-anchor.h | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 src/ui/draw-anchor.h (limited to 'src/ui/draw-anchor.h') diff --git a/src/ui/draw-anchor.h b/src/ui/draw-anchor.h new file mode 100644 index 0000000..dd0b13a --- /dev/null +++ b/src/ui/draw-anchor.h @@ -0,0 +1,71 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * The nodes at the ends of the path in the pen/pencil tools. + *//* + * Authors: see git history + * + * Copyright (C) 2014 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ +#ifndef SEEN_DRAW_ANCHOR_H +#define SEEN_DRAW_ANCHOR_H + +/** \file + * Drawing anchors. + */ + +#include <2geom/point.h> + +#include + +namespace Inkscape { + +class CanvasItemCtrl; + +namespace UI { +namespace Tools { + +class FreehandBase; + +} +} +} + +class SPCurve; + +/// The drawing anchor. +/// \todo Make this a regular knot, this will allow setting statusbar tips. + +// TODO Get rid of this class. + +class SPDrawAnchor +{ +public: + + Inkscape::UI::Tools::FreehandBase *dc; + std::unique_ptr curve; + bool start : 1; + bool active : 1; + Geom::Point dp; + Inkscape::CanvasItemCtrl *ctrl = nullptr; + + SPDrawAnchor(Inkscape::UI::Tools::FreehandBase *dc, + SPCurve *curve, bool start, Geom::Point delta); + + ~SPDrawAnchor(); + + SPDrawAnchor *anchorTest(Geom::Point w, bool activate); +}; + +#endif /* !SEEN_DRAW_ANCHOR_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:fileencoding=utf-8:textwidth=99 : -- cgit v1.2.3