Code

Re-add two handles for PerpBisector LPE (we don't add the other two because they...
[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"
20 #include "knotholder.h"
21 #include "parameter/bool.h"
23 #define  LPE_CONVERSION_TOLERANCE 0.01    // FIXME: find good solution for this.
25 #define LPE_ENABLE_TEST_EFFECTS
27 struct SPDocument;
28 struct SPDesktop;
29 struct SPItem;
30 class NArtBpath;
31 struct LivePathEffectObject;
33 namespace Gtk {
34     class Widget;
35     class VBox;
36     class Tooltips;
37 }
39 namespace Geom {
40     class Matrix;
41 }
43 namespace Inkscape {
45 namespace XML {
46     class Node;
47 }
49 namespace NodePath {
50     class Path ;
51 }
53 namespace LivePathEffect {
55 enum EffectType {
56     BEND_PATH = 0,
57     PATTERN_ALONG_PATH,
58     SKETCH,
59     VONKOCH,
60     KNOT,
61 #ifdef LPE_ENABLE_TEST_EFFECTS
62     DOEFFECTSTACK_TEST,
63 #endif
64     GEARS,
65     CURVE_STITCH,
66     CIRCLE_WITH_RADIUS,
67     PERSPECTIVE_PATH,
68     SPIRO,
69     LATTICE,
70     ENVELOPE,
71     CONSTRUCT_GRID,
72     PERP_BISECTOR,
73     TANGENT_TO_CURVE,
74     INVALID_LPE // This must be last
75 };
77 extern const Util::EnumData<EffectType> LPETypeData[INVALID_LPE];
78 extern const Util::EnumDataConverter<EffectType> LPETypeConverter;
80 class Effect {
81 public:
82     static Effect* New(EffectType lpenr, LivePathEffectObject *lpeobj);
83     static void createAndApply(const char* name, SPDocument *doc, SPItem *item);
84     static void createAndApply(EffectType type, SPDocument *doc, SPItem *item);
86     virtual ~Effect();
88     EffectType effectType ();
90     virtual void doOnApply (SPLPEItem *lpeitem);
92     virtual void doBeforeEffect (SPLPEItem *lpeitem);
94     virtual void doEffect (SPCurve * curve);
96     virtual Gtk::Widget * newWidget(Gtk::Tooltips * tooltips);
98     virtual void resetDefaults(SPItem * item);
100     virtual void setup_nodepath(Inkscape::NodePath::Path *np);
102     virtual void transform_multiply(Geom::Matrix const& postmul, bool set);
104     bool providesKnotholder() { return (kh_entity_vector.size() > 0); }
105     void addHandles(KnotHolder *knotholder, SPDesktop *desktop, SPItem *item);
107     Glib::ustring          getName();
108     Inkscape::XML::Node *  getRepr();
109     SPDocument *           getSPDoc();
110     LivePathEffectObject * getLPEObj() {return lpeobj;};
111     Parameter *            getParameter(const char * key);
113     void readallParameters(Inkscape::XML::Node * repr);
114     void setParameter(const gchar * key, const gchar * new_value);
116     inline bool isVisible() { return is_visible; }
118     void editNextParamOncanvas(SPItem * item, SPDesktop * desktop);
120 protected:
121     Effect(LivePathEffectObject *lpeobject);
123     // provide a set of doEffect functions so the developer has a choice
124     // of what kind of input/output parameters he desires.
125     // the order in which they appear is the order in which they are
126     // called by this base class. (i.e. doEffect(SPCurve * curve) defaults to calling
127     // doEffect(std::vector<Geom::Path> )
128     virtual std::vector<Geom::Path>
129             doEffect_path (std::vector<Geom::Path> const & path_in);
130     virtual Geom::Piecewise<Geom::D2<Geom::SBasis> >
131             doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwd2_in);
133     void registerParameter(Parameter * param);
134     void registerKnotHolderHandle(KnotHolderEntity* entity, const char* descr);
135     void addPointParamHandles(KnotHolder *knotholder, SPDesktop *desktop, SPItem *item);
136     Parameter * getNextOncanvasEditableParam();
138     std::vector<Parameter *> param_vector;
139     std::vector<std::pair<KnotHolderEntity*, const char*> > kh_entity_vector;
140     int oncanvasedit_it;
141     BoolParam is_visible;
143     Inkscape::UI::Widget::Registry wr;
145     LivePathEffectObject *lpeobj;
147     // this boolean defaults to false, it concatenates the input path to one pwd2,
148     // instead of normally 'splitting' the path into continuous pwd2 paths.
149     bool concatenate_before_pwd2;
151 private:
152     Effect(const Effect&);
153     Effect& operator=(const Effect&);
154 };
157 } //namespace LivePathEffect
158 } //namespace Inkscape
160 #endif
162 /*
163   Local Variables:
164   mode:c++
165   c-file-style:"stroustrup"
166   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
167   indent-tabs-mode:nil
168   fill-column:99
169   End:
170 */
171 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :