Code

add pointparam-knotholder files to Makefile_insert
[inkscape.git] / src / live_effects / parameter / path.h
1 #ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_PATH_H
2 #define INKSCAPE_LIVEPATHEFFECT_PARAMETER_PATH_H
4 /*
5  * Inkscape::LivePathEffectParameters
6  *
7 * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl>
8  *
9  * Released under GNU GPL, read the file 'COPYING' for more information
10  */
12 #include <glib/gtypes.h>
13 #include <2geom/path.h>
15 #include <gtkmm/tooltips.h>
17 #include "live_effects/parameter/parameter.h"
19 #include <sigc++/sigc++.h>
21 namespace Inkscape {
23 namespace LivePathEffect {
25 class PathParam : public Geom::Piecewise<Geom::D2<Geom::SBasis> >, public Parameter {
26 public:
27     PathParam ( const Glib::ustring& label,
28                 const Glib::ustring& tip,
29                 const Glib::ustring& key,
30                 Inkscape::UI::Widget::Registry* wr,
31                 Effect* effect,
32                 const gchar * default_value = "M0,0 L1,1");
33     virtual ~PathParam();
35     virtual Gtk::Widget * param_newWidget(Gtk::Tooltips * tooltips);
37     bool param_readSVGValue(const gchar * strvalue);
38     gchar * param_writeSVGValue() const;
40     void param_set_default();
41     void param_set_and_write_default();
42     void param_set_and_write_new_value (Geom::Piecewise<Geom::D2<Geom::SBasis> > newpath);
44     virtual void param_editOncanvas(SPItem * item, SPDesktop * dt);
45     virtual void param_setup_nodepath(Inkscape::NodePath::Path *np);
47     virtual void param_transform_multiply(Geom::Matrix const& /*postmul*/, bool /*set*/);
49     sigc::signal <void> signal_path_pasted;
50     sigc::signal <void> signal_path_changed;
52 private:
53     PathParam(const PathParam&);
54     PathParam& operator=(const PathParam&);
56     void on_edit_button_click();
57     void on_paste_button_click();
58     void on_copy_button_click();
60     gchar * defvalue;
61 };
64 } //namespace LivePathEffect
66 } //namespace Inkscape
68 #endif