blob: d68ca4044ce69dc81309f2e4e90f186cc0abe44c (
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
|
/**
*
* \brief Dialog for modifying guidelines
*
* Author:
* Andrius R. <knutux@gmail.com>
*
* Copyright (C) 2006 Authors
*
* Released under GNU GPL. Read the file 'COPYING' for more information
*/
#ifndef INKSCAPE_DIALOG_GUIDELINE_H
#define INKSCAPE_DIALOG_GUIDELINE_H
#include <gtkmm/dialog.h>
#include <gtkmm/spinbutton.h>
#include <gtkmm/label.h>
#include <gtkmm/stock.h>
#include <gtkmm/adjustment.h>
namespace Inkscape {
namespace UI {
namespace Dialogs {
class GuidelinePropertiesDialog : public Gtk::Dialog {
public:
GuidelinePropertiesDialog(SPGuide *guide, SPDesktop *desktop);
virtual ~GuidelinePropertiesDialog();
Glib::ustring getName() const { return "LayerPropertiesDialog"; }
static void showDialog(SPGuide *guide, SPDesktop *desktop);
protected:
void _setup();
void _onApply();
void _onOK();
void _onDelete();
void _response(gint response);
void _modeChanged();
private:
GuidelinePropertiesDialog(GuidelinePropertiesDialog const &); // no copy
GuidelinePropertiesDialog &operator=(GuidelinePropertiesDialog const &); // no assign
SPDesktop *_desktop;
SPGuide *_guide;
Gtk::HBox _b1;
Gtk::VBox _b2;
Gtk::HBox _b3;
Gtk::HBox _b4;
Gtk::Label _label;
Gtk::Label _label_id;
Gtk::Button _but;
Gtk::Label _m;
Gtk::Adjustment _adjustment;
Gtk::SpinButton _spin_button;
GtkWidget *_unit_selector;
bool _mode;
gdouble _oldpos;
};
} // namespace
} // namespace
} // namespace
#endif // INKSCAPE_DIALOG_GUIDELINE_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 :
|