blob: 18f674500da7084da81f778bcb733293877ab5a6 (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* @brief
*/
/* Author:
* Bryce W. Harrington <bryce@bryceharrington.com>
*
* Copyright (C) 2004 Bryce Harrington
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef INKSCAPE_DIALOG_KNOT_PROPERTIES_H
#define INKSCAPE_DIALOG_KNOT_PROPERTIES_H
#include <gtkmm/dialog.h>
#include <gtkmm/grid.h>
#include <gtkmm/label.h>
#include <gtkmm/spinbutton.h>
#include <2geom/point.h>
#include "ui/tools/measure-tool.h"
class SPDesktop;
namespace Inkscape {
namespace UI {
namespace Dialogs {
// Used in Measure tool to set ends of "ruler" (via Shift-click)."
class KnotPropertiesDialog : public Gtk::Dialog {
public:
KnotPropertiesDialog();
~KnotPropertiesDialog() override;
Glib::ustring getName() const { return "LayerPropertiesDialog"; }
static void showDialog(SPDesktop *desktop, const SPKnot *pt, Glib::ustring const unit_name);
protected:
SPKnot *_knotpoint;
Gtk::Label _knot_x_label;
Gtk::SpinButton _knot_x_entry;
Gtk::Label _knot_y_label;
Gtk::SpinButton _knot_y_entry;
Gtk::Grid _layout_table;
bool _position_visible;
Gtk::Button _close_button;
Gtk::Button _apply_button;
Glib::ustring _unit_name;
sigc::connection _destroy_connection;
static KnotPropertiesDialog &_instance() {
static KnotPropertiesDialog instance;
return instance;
}
void _setPt(const SPKnot *pt);
void _apply();
void _close();
void _setKnotPoint(Geom::Point knotpoint, Glib::ustring const unit_name);
void _prepareLabelRenderer(Gtk::TreeModel::const_iterator const &row);
bool _handleKeyEvent(GdkEventKey *event);
void _handleButtonEvent(GdkEventButton* event);
friend class Inkscape::UI::Tools::MeasureTool;
private:
KnotPropertiesDialog(KnotPropertiesDialog const &); // no copy
KnotPropertiesDialog &operator=(KnotPropertiesDialog const &); // no assign
};
} // namespace
} // namespace
} // namespace
#endif //INKSCAPE_DIALOG_LAYER_PROPERTIES_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 :
|