blob: 74f0f63b10c07dcb18d051c58b6ed4273deadc0f (
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
110
111
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef SEEN_PENCIL_TOOLBAR_H
#define SEEN_PENCIL_TOOLBAR_H
/**
* @file
* Pencil and pen toolbars
*/
/* Authors:
* MenTaLguY <mental@rydia.net>
* Lauris Kaplinski <lauris@kaplinski.com>
* bulia byak <buliabyak@users.sf.net>
* Frank Felfe <innerspace@iname.com>
* John Cliff <simarilius@yahoo.com>
* David Turner <novalis@gnu.org>
* Josh Andler <scislac@scislac.com>
* Jon A. Cruz <jon@joncruz.org>
* Maximilian Albert <maximilian.albert@gmail.com>
* Tavmjong Bah <tavmjong@free.fr>
* Abhishek Sharma
* Kris De Gussem <Kris.DeGussem@gmail.com>
*
* Copyright (C) 2004 David Turner
* Copyright (C) 2003 MenTaLguY
* Copyright (C) 1999-2011 authors
* Copyright (C) 2001-2002 Ximian, Inc.
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "toolbar.h"
#include <gtkmm/adjustment.h>
#include <vector>
class SPDesktop;
namespace Gtk {
class RadioToolButton;
class ToggleToolButton;
class ToolButton;
}
namespace Inkscape {
namespace XML {
class Node;
}
namespace UI {
namespace Widget {
class SpinButtonToolItem;
class ComboToolItem;
}
namespace Toolbar {
class PencilToolbar : public Toolbar {
private:
bool const _tool_is_pencil;
std::vector<Gtk::RadioToolButton *> _mode_buttons;
Gtk::ToggleToolButton *_pressure_item = nullptr;
UI::Widget::SpinButtonToolItem *_minpressure = nullptr;
UI::Widget::SpinButtonToolItem *_maxpressure = nullptr;
UI::Widget::SpinButtonToolItem *_shapescale = nullptr;
XML::Node *_repr = nullptr;
Gtk::ToolButton *_flatten_spiro_bspline = nullptr;
Gtk::ToolButton *_flatten_simplify = nullptr;
UI::Widget::ComboToolItem *_shape_item = nullptr;
UI::Widget::ComboToolItem *_cap_item = nullptr;
Gtk::ToggleToolButton *_simplify = nullptr;
bool _freeze = false;
Glib::RefPtr<Gtk::Adjustment> _minpressure_adj;
Glib::RefPtr<Gtk::Adjustment> _maxpressure_adj;
Glib::RefPtr<Gtk::Adjustment> _tolerance_adj;
Glib::RefPtr<Gtk::Adjustment> _shapescale_adj;
void add_freehand_mode_toggle();
void mode_changed(int mode);
Glib::ustring const freehand_tool_name();
void minpressure_value_changed();
void maxpressure_value_changed();
void shapewidth_value_changed();
void use_pencil_pressure();
void tolerance_value_changed();
void add_advanced_shape_options();
void add_powerstroke_cap();
void change_shape(int shape);
void update_width_value(int shape);
void change_cap(int cap);
void simplify_lpe();
void simplify_flatten();
void flatten_spiro_bspline();
protected:
PencilToolbar(SPDesktop *desktop, bool pencil_mode);
~PencilToolbar() override;
public:
static GtkWidget * create_pencil(SPDesktop *desktop);
static GtkWidget * create_pen(SPDesktop *desktop);
};
}
}
}
#endif /* !SEEN_PENCIL_TOOLBAR_H */
|