blob: 357f6adf7a19ade56c5383278cf6f0efadd507b4 (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef SEEN_INK_EXTENSION_PARAMBOOL_H
#define SEEN_INK_EXTENSION_PARAMBOOL_H
/*
* Copyright (C) 2005-2007 Authors:
* Ted Gould <ted@gould.cx>
* Johan Engelen <johan@shouraizou.nl> *
* Jon A. Cruz <jon@joncruz.org>
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "parameter.h"
namespace Gtk {
class Widget;
}
namespace Inkscape {
namespace XML {
class Node;
}
namespace Extension {
/**
* A boolean parameter.
*/
class ParamBool : public InxParameter {
public:
ParamBool(Inkscape::XML::Node *xml, Inkscape::Extension::Extension *ext);
/**
* Returns the current state/value.
*/
bool get() const;
/**
* A function to set the state/value.
* This function sets the internal value, but it also sets the value
* in the preferences structure. To put it in the right place pref_name() is used.
*
* @param in The value to set to
*/
bool set(bool in);
/**
* Creates a bool check button for a bool parameter.
* Builds a hbox with a label and a check button in it.
*/
Gtk::Widget *get_widget(sigc::signal<void ()> *changeSignal) override;
/**
* Appends 'true' or 'false'.
* @todo investigate. Returning a value that can then be appended would probably work better/safer.
*/
std::string value_to_string() const override;
void string_to_value(const std::string &in) override;
private:
/** Internal value. */
bool _value = true;
};
} // namespace Extension
} // namespace Inkscape
#endif // SEEN_INK_EXTENSION_PARAMBOOL_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 :
|