summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/parameter.h
blob: 942def5b86d8b4f1f24c9f5f42c279da3060ebc1 (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
96
97
98
#ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_H
#define INKSCAPE_LIVEPATHEFFECT_PARAMETER_H

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

#include <glibmm/ustring.h>
#include <2geom/point.h>
#include <2geom/path.h>

#include "ui/widget/registry.h"
#include "ui/widget/registered-widget.h"

namespace Gtk {
    class Widget;
}

namespace Inkscape {

namespace LivePathEffect {

class Effect;

class Parameter {
public:
    Parameter(  const Glib::ustring& label,
                const Glib::ustring& tip,
                const Glib::ustring& key,
                Inkscape::UI::Widget::Registry* wr,
                Effect* effect);
    virtual ~Parameter() {};

    virtual bool param_readSVGValue(const gchar * strvalue) = 0;   // returns true if new value is valid / accepted.
    virtual gchar * param_writeSVGValue() const = 0;

    virtual void param_set_default() = 0;

    // This returns pointer to the parameter's widget to be put in the live-effects dialog. Must also create the
    // necessary widget if it does not exist yet.
    virtual Gtk::Widget * param_getWidget() = 0;
    virtual Glib::ustring * param_getTooltip() { return &param_tooltip; };

    Glib::ustring param_key;
    Inkscape::UI::Widget::Registry * param_wr;
    Glib::ustring param_label;

protected:
    Glib::ustring param_tooltip;

    Effect* param_effect;

private:
    Parameter(const Parameter&);
    Parameter& operator=(const Parameter&);
};


class RealParam : public Parameter {
public:
    RealParam(  const Glib::ustring& label,
                const Glib::ustring& tip,
                const Glib::ustring& key, 
                Inkscape::UI::Widget::Registry* wr,
                Effect* effect,
                gdouble default_value = 1.0);
    ~RealParam();

    bool param_readSVGValue(const gchar * strvalue);
    gchar * param_writeSVGValue() const;

    void param_set_default();
    void param_set_value(gdouble val);

    Gtk::Widget * param_getWidget();

    inline operator gdouble()
        { return value; };

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

    gdouble value;
    gdouble defvalue;
    Inkscape::UI::Widget::RegisteredScalar * rsu;
};


} //namespace LivePathEffect

} //namespace Inkscape

#endif