summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/togglebutton.h
blob: c5f8a3c28230229ff4f41c6977c8cfd493eb6d87 (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
#ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_TOGGLEBUTTON_H
#define INKSCAPE_LIVEPATHEFFECT_PARAMETER_TOGGLEBUTTON_H

/*
 * Copyright (C) Jabiertxo Arraiza Cenoz 2014
 *
 * Released under GNU GPL, read the file 'COPYING' for more information
 */

#include <glib.h>
#include <sigc++/connection.h>
#include <sigc++/signal.h>

#include "live_effects/parameter/parameter.h"
#include "ui/widget/registered-widget.h"

namespace Inkscape {

namespace LivePathEffect {

/**
 * class ToggleButtonParam:
 *    represents a Gtk::ToggleButton as a Live Path Effect parameter
 */
class ToggleButtonParam : public Parameter {
public:
    ToggleButtonParam( const Glib::ustring& label,
               const Glib::ustring& tip,
               const Glib::ustring& key,
               Inkscape::UI::Widget::Registry* wr,
               Effect* effect,
               bool default_value = false,
               const Glib::ustring& inactive_label = "",
               char const * icon_active = NULL,
               char const * icon_inactive = NULL,
               GtkIconSize icon_size = GTK_ICON_SIZE_SMALL_TOOLBAR);
    virtual ~ToggleButtonParam();

    virtual Gtk::Widget * param_newWidget();

    virtual bool param_readSVGValue(const gchar * strvalue);
    virtual gchar * param_getSVGValue() const;
    virtual gchar * param_getDefaultSVGValue() const;

    void param_setValue(bool newvalue);
    virtual void param_set_default();

    bool get_value() const { return value; };

    inline operator bool() const { return value; };
    
    sigc::signal<void>& signal_toggled() { return _signal_toggled; }
    virtual void toggled();
    void param_update_default(bool default_value);
    virtual void param_update_default(const gchar * default_value);

private:
    ToggleButtonParam(const ToggleButtonParam&);
    ToggleButtonParam& operator=(const ToggleButtonParam&);

    void refresh_button();
    bool value;
    bool defvalue;
    const Glib::ustring inactive_label;
    const char * _icon_active;
    const char * _icon_inactive;
    GtkIconSize  _icon_size;
    Inkscape::UI::Widget::RegisteredToggleButton * checkwdg;

    sigc::signal<void> _signal_toggled;
    sigc::connection _toggled_connection;
};


} //namespace LivePathEffect

} //namespace Inkscape

#endif