blob: 161d1fc9117f8eb9a8f9b8183ec63b893b36377b (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* @brief Dialog for renaming layers
*/
/* 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_POWERSTROKE_PROPERTIES_H
#define INKSCAPE_DIALOG_POWERSTROKE_PROPERTIES_H
#include <2geom/point.h>
#include <gtkmm.h>
#include "live_effects/parameter/powerstrokepointarray.h"
class SPDesktop;
namespace Inkscape {
namespace UI {
namespace Dialogs {
class PowerstrokePropertiesDialog : public Gtk::Dialog {
public:
PowerstrokePropertiesDialog();
~PowerstrokePropertiesDialog() override;
Glib::ustring getName() const { return "LayerPropertiesDialog"; }
static void showDialog(SPDesktop *desktop, Geom::Point knotpoint, const Inkscape::LivePathEffect::PowerStrokePointArrayParamKnotHolderEntity *pt);
protected:
Inkscape::LivePathEffect::PowerStrokePointArrayParamKnotHolderEntity *_knotpoint;
Gtk::Label _powerstroke_position_label;
Gtk::SpinButton _powerstroke_position_entry;
Gtk::Label _powerstroke_width_label;
Gtk::SpinButton _powerstroke_width_entry;
Gtk::Grid _layout_table;
bool _position_visible;
Gtk::Button _close_button;
Gtk::Button _apply_button;
sigc::connection _destroy_connection;
static PowerstrokePropertiesDialog &_instance() {
static PowerstrokePropertiesDialog instance;
return instance;
}
void _setPt(const Inkscape::LivePathEffect::PowerStrokePointArrayParamKnotHolderEntity *pt);
void _apply();
void _close();
void _setKnotPoint(Geom::Point knotpoint);
void _prepareLabelRenderer(Gtk::TreeModel::const_iterator const &row);
bool _handleKeyEvent(GdkEventKey *event);
void _handleButtonEvent(GdkEventButton* event);
friend class Inkscape::LivePathEffect::PowerStrokePointArrayParamKnotHolderEntity;
private:
PowerstrokePropertiesDialog(PowerstrokePropertiesDialog const &); // no copy
PowerstrokePropertiesDialog &operator=(PowerstrokePropertiesDialog 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 :
|