summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/bool.cpp
blob: 14fd88423821c7aa406e33190b48efdd3a7ece72 (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
84
85
86
87
88
89
90
91
92
93
94
95
#define INKSCAPE_LIVEPATHEFFECT_PARAMETER_BOOL_CPP

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

#include "live_effects/parameter/bool.h"
#include "live_effects/effect.h"
#include "svg/svg.h"
#include "svg/stringstream.h"
#include <gtkmm.h>
#include "widgets/icon.h"

#include "inkscape.h"
#include "verbs.h"
#include "helper-fns.h"

#define noLPEBOOLPARAM_DEBUG

namespace Inkscape {

namespace LivePathEffect {

BoolParam::BoolParam( const Glib::ustring& label, const Glib::ustring& tip,
                      const Glib::ustring& key, Inkscape::UI::Widget::Registry* wr,
                      Effect* effect, bool default_value )
    : Parameter(label, tip, key, wr, effect), value(default_value), defvalue(default_value)
{
    checkwdg = NULL;
}

BoolParam::~BoolParam()
{
    if (checkwdg)
        delete checkwdg;
}

void
BoolParam::param_set_default()
{
    param_setValue(defvalue);
}

bool
BoolParam::param_readSVGValue(const gchar * strvalue)
{
    param_setValue(helperfns_read_bool(strvalue, defvalue));
    return true; // not correct: if value is unacceptable, should return false!
}

gchar *
BoolParam::param_writeSVGValue() const
{
    gchar * str = g_strdup(value ? "true" : "false");
    return str;
}

Gtk::Widget *
BoolParam::param_newWidget(Gtk::Tooltips * tooltips)
{
    // WIDGET TODO: This implementation is incorrect, it should create a *new* widget for the caller, not just return an already created widget
    g_warning("BoolParam::param_newWidget still needs recoding to work with multiple document views");
    if (!checkwdg) {
        checkwdg = new Inkscape::UI::Widget::RegisteredCheckButton();
        checkwdg->init(param_label, param_tooltip, param_key, *param_wr, false, param_effect->getRepr(), param_effect->getSPDoc());
        checkwdg->setActive(value);
        checkwdg->set_undo_parameters(SP_VERB_DIALOG_LIVE_PATH_EFFECT, _("Change bool parameter"));
    }
    return dynamic_cast<Gtk::Widget *> (checkwdg->_button);
}

void
BoolParam::param_setValue(bool newvalue)
{
    value = newvalue;
    if (checkwdg)
        checkwdg->setActive(newvalue);
}

} /* namespace LivePathEffect */

} /* namespace Inkscape */

/*
  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 :