blob: c17c625fa1251450ec70b733dce43e0d0fe27094 (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef SEEN_SIMPLE_PREF_PUSHER_H
#define SEEN_SIMPLE_PREF_PUSHER_H
#include "preferences.h"
namespace Gtk {
class ToggleToolButton;
}
namespace Inkscape {
namespace UI {
/**
* A simple mediator class that sets the state of a Gtk::ToggleToolButton when
* a preference is changed. Unlike the PrefPusher class, this does not provide
* the reverse process, so you still need to write your own handler for the
* "toggled" signal on the ToggleToolButton.
*/
class SimplePrefPusher : public Inkscape::Preferences::Observer
{
public:
/**
* Constructor for a boolean value that syncs to the supplied path.
* Initializes the widget to the current preference stored state and registers callbacks
* for widget changes and preference changes.
*
* @param act the widget to synchronize preference with.
* @param path the path to the preference the widget is synchronized with.
* @param callback function to invoke when changes are pushed.
* @param cbData data to be passed on to the callback function.
*/
SimplePrefPusher(Gtk::ToggleToolButton *btn,
Glib::ustring const & path);
/**
* Destructor that unregisters the preference callback.
*/
~SimplePrefPusher() override;
/**
* Callback method invoked when the preference setting changes.
*/
void notify(Inkscape::Preferences::Entry const &new_val) override;
private:
Gtk::ToggleToolButton *_btn;
bool freeze;
};
}
}
#endif
/*
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 :
|