blob: af6db27416366b1773fa1e2c80d15ed6809c0b65 (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef SEEN_SELECT_TOOLBAR_H
#define SEEN_SELECT_TOOLBAR_H
/** \file
* Selector aux toolbar
*/
/*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* bulia byak <bulia@dr.com>
*
* Copyright (C) 2003 authors
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "toolbar.h"
class SPDesktop;
namespace Inkscape {
class Selection;
namespace UI {
namespace Widget {
class UnitTracker;
}
namespace Toolbar {
class SelectToolbar : public Toolbar {
using parent_type = Toolbar;
private:
std::unique_ptr<UI::Widget::UnitTracker> _tracker;
Glib::RefPtr<Gtk::Adjustment> _adj_x;
Glib::RefPtr<Gtk::Adjustment> _adj_y;
Glib::RefPtr<Gtk::Adjustment> _adj_w;
Glib::RefPtr<Gtk::Adjustment> _adj_h;
Gtk::ToggleToolButton *_lock_btn;
Gtk::ToggleToolButton *_select_touch_btn;
Gtk::ToggleToolButton *_transform_stroke_btn;
Gtk::ToggleToolButton *_transform_corners_btn;
Gtk::ToggleToolButton *_transform_gradient_btn;
Gtk::ToggleToolButton *_transform_pattern_btn;
std::vector<Gtk::ToolItem *> _context_items;
std::vector<sigc::connection> _connections;
bool _update;
std::string _action_key;
std::string const _action_prefix;
char const *get_action_key(double mh, double sh, double mv, double sv);
void any_value_changed(Glib::RefPtr<Gtk::Adjustment>& adj);
void layout_widget_update(Inkscape::Selection *sel);
void on_inkscape_selection_modified(Inkscape::Selection *selection, guint flags);
void on_inkscape_selection_changed(Inkscape::Selection *selection);
void toggle_lock();
void toggle_touch();
void toggle_stroke();
void toggle_corners();
void toggle_gradient();
void toggle_pattern();
protected:
SelectToolbar(SPDesktop *desktop);
void on_unrealize() override;
public:
static GtkWidget * create(SPDesktop *desktop);
};
}
}
}
#endif /* !SEEN_SELECT_TOOLBAR_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 :
|