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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
|
/**
* \brief Object Transformation dialog
*
* Author:
* Bryce W. Harrington <bryce@bryceharrington.org>
*
* Copyright (C) 2004, 2005 Authors
*
* Released under GNU GPL. Read the file 'COPYING' for more information.
*/
#ifndef INKSCAPE_UI_DIALOG_TRANSFORMATION_H
#define INKSCAPE_UI_DIALOG_TRANSFORMATION_H
#include <gtkmm/notebook.h>
#include <glibmm/i18n.h>
#include "dialog.h"
#include "application/application.h"
#include "ui/widget/notebook-page.h"
#include "ui/widget/scalar-unit.h"
#include "ui/widget/imageicon.h"
#include "ui/widget/button.h"
using namespace Inkscape::UI::Widget;
namespace Inkscape {
namespace UI {
namespace Dialog {
class Transformation : public Dialog
{
public:
/**
* Create a new transform
*/
Transformation();
/**
* Cleanup
*/
virtual ~Transformation();
/**
* Factory method. Create an instance of this class/interface
*/
static Transformation *create()
{ return new Transformation(); }
/**
* Show the Move panel
*/
void setPageMove()
{ present(PAGE_MOVE); }
/**
* Show the Scale panel
*/
void setPageScale()
{ present(PAGE_SCALE); }
/**
* Show the Rotate panel
*/
void setPageRotate()
{ present(PAGE_ROTATE); }
/**
* Show the Skew panel
*/
void setPageSkew()
{ present(PAGE_SKEW); }
/**
* Show the Transform panel
*/
void setPageTransform()
{ present(PAGE_TRANSFORM); }
int getCurrentPage()
{ return _notebook.get_current_page(); }
typedef enum {
PAGE_MOVE, PAGE_SCALE, PAGE_ROTATE, PAGE_SKEW, PAGE_TRANSFORM, PAGE_QTY
} PageType;
void updateSelection(PageType page, Inkscape::Selection *selection);
protected:
Gtk::Notebook _notebook;
NotebookPage _page_move;
NotebookPage _page_scale;
NotebookPage _page_rotate;
NotebookPage _page_skew;
NotebookPage _page_transform;
UnitMenu _units_move;
UnitMenu _units_scale;
UnitMenu _units_rotate;
UnitMenu _units_skew;
ScalarUnit _scalar_move_horizontal;
ScalarUnit _scalar_move_vertical;
ScalarUnit _scalar_scale_horizontal;
ScalarUnit _scalar_scale_vertical;
ScalarUnit _scalar_rotate;
ScalarUnit _scalar_skew_horizontal;
ScalarUnit _scalar_skew_vertical;
Scalar _scalar_transform_a;
Scalar _scalar_transform_b;
Scalar _scalar_transform_c;
Scalar _scalar_transform_d;
Scalar _scalar_transform_e;
Scalar _scalar_transform_f;
CheckButton _check_move_relative;
CheckButton _check_scale_proportional;
CheckButton _check_apply_separately;
CheckButton _check_replace_matrix;
/**
* Layout the GUI components, and prepare for use
*/
void layoutPageMove();
void layoutPageScale();
void layoutPageRotate();
void layoutPageSkew();
void layoutPageTransform();
virtual void _apply();
void present(PageType page);
void onSelectionChanged(Inkscape::NSApplication::Application *inkscape,
Inkscape::Selection *selection);
void onSelectionModified(Inkscape::NSApplication::Application *inkscape,
Inkscape::Selection *selection,
int unsigned flags);
void onSwitchPage(GtkNotebookPage *page,
guint pagenum);
/**
* Callbacks for when a user changes values on the panels
*/
void onMoveValueChanged();
void onMoveRelativeToggled();
void onScaleXValueChanged();
void onScaleYValueChanged();
void onRotateValueChanged();
void onSkewValueChanged();
void onTransformValueChanged();
void onReplaceMatrixToggled();
void onScaleProportionalToggled();
void onClear();
void onApplySeparatelyToggled();
/**
* Called when the selection is updated, to make
* the panel(s) show the new values.
* Editor---->dialog
*/
void updatePageMove(Inkscape::Selection *);
void updatePageScale(Inkscape::Selection *);
void updatePageRotate(Inkscape::Selection *);
void updatePageSkew(Inkscape::Selection *);
void updatePageTransform(Inkscape::Selection *);
/**
* Called when the Apply button is pushed
* Dialog---->editor
*/
void applyPageMove(Inkscape::Selection *);
void applyPageScale(Inkscape::Selection *);
void applyPageRotate(Inkscape::Selection *);
void applyPageSkew(Inkscape::Selection *);
void applyPageTransform(Inkscape::Selection *);
private:
/**
* Copy constructor
*/
Transformation(Transformation const &d);
/**
* Assignment operator
*/
Transformation operator=(Transformation const &d);
Gtk::Button *applyButton;
Gtk::Button *resetButton;
Gtk::Button *cancelButton;
};
} // namespace Dialog
} // namespace UI
} // namespace Inkscape
#endif //INKSCAPE_UI_DIALOG_TRANSFORMATION_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:encoding=utf-8:textwidth=99 :
|