blob: af22e4e49a7c7c14103428970aefaa7b995ba57b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef SEEN_CANVAS_ITEM_GUIDELINE_H
#define SEEN_CANVAS_ITEM_GUIDELINE_H
/**
* A class to represent a control guide line.
*/
/*
* Authors:
* Tavmjong Bah - Rewrite of SPGuideLine
* Rafael Siejakowski - Tweaks to handle appearance
*
* Copyright (C) 2020-2022 the Authors.
*
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include <glibmm/ustring.h>
#include <2geom/point.h>
#include <2geom/transforms.h>
#include "canvas-item.h"
#include "canvas-item-ctrl.h"
namespace Inkscape {
class CanvasItemGroup; // A canvas control that contains other canvas controls.
class CanvasItemGuideHandle; // A handle ("dot") serving as draggable origin control
class CanvasItemGuideLine : public CanvasItem {
public:
CanvasItemGuideLine(CanvasItemGroup *group, Glib::ustring label,
Geom::Point const &origin, Geom::Point const &normal);
~CanvasItemGuideLine() override;
// Geometry
void set_origin(Geom::Point const &origin);
void set_normal(Geom::Point const &normal);
bool is_horizontal() const { return (_normal.x() == 0.0); }
bool is_vertical() const { return (_normal.y() == 0.0); }
void update(Geom::Affine const &affine) override;
double closest_distance_to(Geom::Point const &p);
// Selection
bool contains(Geom::Point const &p, double tolerance = 0) override;
// Display
void render(Inkscape::CanvasItemBuffer *buf) override;
// Properties
void hide() override;
void show() override;
void set_stroke(guint32 color) final;
void set_label(Glib::ustring const & label);
void set_locked(bool locked);
void set_inverted(bool inverted);
void set_sensitive(bool sensitive) { _sensitive = sensitive; }
// Getters
CanvasItemGuideHandle* dot() const;
protected:
Geom::Point _origin;
Geom::Point _normal = Geom::Point(0,1);
Glib::ustring _label;
bool _locked = true; // Flipped in constructor to trigger init of _origin_ctrl.
bool _inverted = false;
bool _sensitive = false;
std::unique_ptr<CanvasItemGuideHandle> _origin_ctrl;
private:
inline static guint32 const CONTROL_LOCKED_COLOR = 0x00000080; // RGBA black semitranslucent
inline static double const LABEL_SEP = 2.0; // Distance between the label and the origin control
};
class CanvasItemGuideHandle : public CanvasItemCtrl {
public:
CanvasItemGuideHandle(CanvasItemGroup *group, Geom::Point const &pos, CanvasItemGuideLine *line);
double radius() const;
void set_size_via_index(int index) final;
private:
CanvasItemGuideLine *_my_line; // The guide line we belong to
// static data
inline static double const SCALE = 0.55; // handle size relative to an auto-smooth node
inline static unsigned const MINIMUM_SIZE = 7; // smallest handle size, must be an odd int
};
} // namespace Inkscape
#endif // SEEN_CANVAS_ITEM_GUIDELINE_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 :
|