summaryrefslogtreecommitdiffstats
path: root/src/ui/draw-anchor.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:24:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:24:48 +0000
commitcca66b9ec4e494c1d919bff0f71a820d8afab1fa (patch)
tree146f39ded1c938019e1ed42d30923c2ac9e86789 /src/ui/draw-anchor.h
parentInitial commit. (diff)
downloadinkscape-upstream/1.2.2.tar.xz
inkscape-upstream/1.2.2.zip
Adding upstream version 1.2.2.upstream/1.2.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/ui/draw-anchor.h')
-rw-r--r--src/ui/draw-anchor.h71
1 files changed, 71 insertions, 0 deletions
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 <memory>
+
+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<SPCurve> 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 :