summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/bool.h
blob: b67f5552fcb4be469256dbbf163294e29353b209 (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
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_BOOL_H
#define INKSCAPE_LIVEPATHEFFECT_PARAMETER_BOOL_H

/*
 * Inkscape::LivePathEffectParameters
 *
 * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl>
 *
 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
 */

#include <glib.h>

#include "live_effects/parameter/parameter.h"

namespace Inkscape {

namespace LivePathEffect {


class BoolParam : public Parameter {
public:
    BoolParam( const Glib::ustring& label,
               const Glib::ustring& tip,
               const Glib::ustring& key,
               Inkscape::UI::Widget::Registry* wr,
               Effect* effect,
               bool default_value = false);
    ~BoolParam() override;
    BoolParam(const BoolParam&) = delete;
    BoolParam& operator=(const BoolParam&) = delete;

    Gtk::Widget * param_newWidget() override;

    bool param_readSVGValue(const gchar * strvalue) override;
    Glib::ustring param_getSVGValue() const override;
    Glib::ustring param_getDefaultSVGValue() const override;

    void param_setValue(bool newvalue);
    void param_set_default() override;
    void param_update_default(bool const default_value);
    void param_update_default(const gchar * default_value) override;
    bool get_value() const { return value; };
    inline operator bool() const { return value; };
    ParamType paramType() const override { return ParamType::BOOL; };

private:
    bool value;
    bool defvalue;
};


} //namespace LivePathEffect

} //namespace Inkscape

#endif