Code

- try to use more forward declarations for less dependencies on display/curve.h
[inkscape.git] / src / live_effects / effect.h
1 #ifndef INKSCAPE_LIVEPATHEFFECT_H
2 #define INKSCAPE_LIVEPATHEFFECT_H
4 /*
5  * Inkscape::LivePathEffect
6  *
7 * Copyright (C) Johan Engelen 2007-2008 <j.b.c.engelen@utwente.nl>
8  *
9  * Released under GNU GPL, read the file 'COPYING' for more information
10  */
13 #include "display/display-forward.h"
14 #include <map>
15 #include <glibmm/ustring.h>
16 #include <2geom/path.h>
17 #include "ui/widget/registry.h"
18 #include "util/enums.h"
19 #include "sp-lpe-item.h"
21 #define  LPE_CONVERSION_TOLERANCE 0.01    // FIXME: find good solution for this.
23 #define LPE_ENABLE_TEST_EFFECTS
25 struct SPDocument;
26 struct SPDesktop;
27 struct SPItem;
28 class NArtBpath;
29 struct LivePathEffectObject;
31 namespace Gtk {
32     class Widget;
33     class VBox;
34     class Tooltips;
35 }
37 namespace Geom {
38     class Matrix;
39 }
41 namespace Inkscape {
43 namespace XML {
44     class Node;
45 }
47 namespace NodePath {
48     class Path ;
49 }
51 namespace LivePathEffect {
53 enum EffectType {
54     BEND_PATH = 0,
55     PATTERN_ALONG_PATH,
56     SKETCH,
57     VONKOCH,
58     KNOT,
59 #ifdef LPE_ENABLE_TEST_EFFECTS
60     SLANT,
61     DOEFFECTSTACK_TEST,
62 #endif
63     GEARS,
64     CURVE_STITCH,
65     CIRCLE_WITH_RADIUS,
66     PERSPECTIVE_PATH,
67     SPIRO,
68     CONSTRUCT_GRID,
69     INVALID_LPE // This must be last
70 };
72 extern const Util::EnumData<EffectType> LPETypeData[INVALID_LPE];
73 extern const Util::EnumDataConverter<EffectType> LPETypeConverter;
75 class Parameter;
77 class Effect {
78 public:
79     static Effect* New(EffectType lpenr, LivePathEffectObject *lpeobj);
81     virtual ~Effect();
83     virtual void doBeforeEffect (SPLPEItem *lpeitem);
85     virtual void doEffect (SPCurve * curve);
87     virtual Gtk::Widget * newWidget(Gtk::Tooltips * tooltips);
89     virtual void resetDefaults(SPItem * item);
91     virtual void setup_nodepath(Inkscape::NodePath::Path *np);
93     virtual void transform_multiply(Geom::Matrix const& postmul, bool set);
95     Glib::ustring          getName();
96     Inkscape::XML::Node *  getRepr();
97     SPDocument *           getSPDoc();
98     LivePathEffectObject * getLPEObj() {return lpeobj;};
99     Parameter *            getParameter(const char * key);
101     void readallParameters(Inkscape::XML::Node * repr);
102     void setParameter(const gchar * key, const gchar * new_value);
104     void editNextParamOncanvas(SPItem * item, SPDesktop * desktop);
106 protected:
107     Effect(LivePathEffectObject *lpeobject);
109     // provide a set of doEffect functions so the developer has a choice
110     // of what kind of input/output parameters he desires.
111     // the order in which they appear is the order in which they are
112     // called by this base class. (i.e. doEffect(SPCurve * curve) defaults to calling
113     // doEffect(std::vector<Geom::Path> )
114     virtual NArtBpath *
115             doEffect_nartbpath (NArtBpath const * path_in) __attribute__ ((deprecated));
116     virtual std::vector<Geom::Path>
117             doEffect_path (std::vector<Geom::Path> const & path_in);
118     virtual Geom::Piecewise<Geom::D2<Geom::SBasis> >
119             doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwd2_in);
121     void registerParameter(Parameter * param);
122     Parameter * getNextOncanvasEditableParam();
124     std::vector<Parameter *> param_vector;
125     int oncanvasedit_it;
126     Inkscape::UI::Widget::Registry wr;
128     LivePathEffectObject *lpeobj;
130     // this boolean defaults to false, it concatenates the input path to one pwd2,
131     // instead of normally 'splitting' the path into continuous pwd2 paths.
132     bool concatenate_before_pwd2;
134 private:
135     Effect(const Effect&);
136     Effect& operator=(const Effect&);
137 };
140 } //namespace LivePathEffect
141 } //namespace Inkscape
143 #endif