summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/unit.h
blob: 15192b07485d112d461e86752ede5fb3375173af (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
#ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_UNIT_H
#define INKSCAPE_LIVEPATHEFFECT_PARAMETER_UNIT_H

/*
 * Inkscape::LivePathEffectParameters
 *
* Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com>
 *
 * Released under GNU GPL, read the file 'COPYING' for more information
 */

#include "live_effects/parameter/parameter.h"
#include <helper/units.h>

namespace Inkscape {

namespace LivePathEffect {

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

    virtual bool param_readSVGValue(const gchar * strvalue);
    virtual gchar * param_getSVGValue() const;
    virtual void param_set_default();
    void param_set_value(SPUnit const *val);
    const gchar *get_abbreviation();

    virtual Gtk::Widget * param_newWidget(Gtk::Tooltips * tooltips);

    operator SPUnit const *() { return unit; }

private:
    SPUnit const *unit;
    SPUnit const *defunit;

    UnitParam(const UnitParam&);
    UnitParam& operator=(const UnitParam&);
};

} //namespace LivePathEffect

} //namespace Inkscape

#endif