summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/path.h
blob: e26611b859da8ab8d0a2b7390b2aebd3dd895258 (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
#ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_PATH_H
#define INKSCAPE_LIVEPATHEFFECT_PARAMETER_PATH_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 <glib/gtypes.h>
#include <2geom/path.h>

#include "ui/widget/registry.h"
#include <gtkmm/tooltips.h>

#include "live_effects/parameter/parameter.h"

#include <sigc++/sigc++.h>

namespace Inkscape {

namespace LivePathEffect {

class PathParam : public Geom::Piecewise<Geom::D2<Geom::SBasis> >, public Parameter {
public:
    PathParam ( const Glib::ustring& label,
                const Glib::ustring& tip,
                const Glib::ustring& key,
                Inkscape::UI::Widget::Registry* wr,
                Effect* effect,
                const gchar * default_value = "M0,0 L1,1");
    ~PathParam();

    Gtk::Widget * param_getWidget();

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

    void param_set_default();

    sigc::signal <void> signal_path_pasted;
    sigc::signal <void> signal_path_changed;

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

    Gtk::Widget * _widget;
    Gtk::Tooltips * _tooltips;

    void param_write_to_repr(const char * svgd);

    void on_edit_button_click();
    void on_paste_button_click();

    gchar * defvalue;
};


} //namespace LivePathEffect

} //namespace Inkscape

#endif