blob: 924d018f1d56ca962b9dc76a588e189b6c797e19 (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef SP_DYNA_DRAW_CONTEXT_H_SEEN
#define SP_DYNA_DRAW_CONTEXT_H_SEEN
/*
* Handwriting-like drawing mode
*
* Authors:
* Mitsuru Oka <oka326@parkcity.ne.jp>
* Lauris Kaplinski <lauris@kaplinski.com>
*
* The original dynadraw code:
* Paul Haeberli <paul@sgi.com>
*
* Copyright (C) 1998 The Free Software Foundation
* Copyright (C) 1999-2002 authors
* Copyright (C) 2001-2002 Ximian, Inc.
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include <list>
#include <string>
#include <2geom/point.h>
#include "ui/tools/dynamic-base.h"
class SPItem;
class Path;
struct SPCanvasItem;
#define DDC_MIN_PRESSURE 0.0
#define DDC_MAX_PRESSURE 1.0
#define DDC_DEFAULT_PRESSURE 1.0
#define DDC_MIN_TILT -1.0
#define DDC_MAX_TILT 1.0
#define DDC_DEFAULT_TILT 0.0
namespace Inkscape {
namespace UI {
namespace Tools {
class CalligraphicTool : public DynamicBase {
public:
CalligraphicTool();
~CalligraphicTool() override;
static const std::string prefsPath;
void setup() override;
void set(const Inkscape::Preferences::Entry& val) override;
bool root_handler(GdkEvent* event) override;
const std::string& getPrefsPath() override;
private:
/** newly created object remain selected */
bool keep_selected;
double hatch_spacing;
double hatch_spacing_step;
SPItem *hatch_item;
Path *hatch_livarot_path;
std::list<double> hatch_nearest_past;
std::list<double> hatch_pointer_past;
std::list<Geom::Point> inertia_vectors;
Geom::Point hatch_last_nearest, hatch_last_pointer;
std::list<Geom::Point> hatch_vectors;
bool hatch_escaped;
SPCanvasItem *hatch_area;
bool just_started_drawing;
bool trace_bg;
void clear_current();
void set_to_accumulated(bool unionize, bool subtract);
bool accumulate();
void fit_and_split(bool release);
void draw_temporary_box();
void cancel();
void brush();
bool apply(Geom::Point p);
void extinput(GdkEvent *event);
void reset(Geom::Point p);
};
}
}
}
#endif // SP_DYNA_DRAW_CONTEXT_H_SEEN
/*
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 :
|