Code

New LPE: circle through 3 points
[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 SPNodeContext;
31 class NArtBpath;
32 struct LivePathEffectObject;
34 namespace Gtk {
35     class Widget;
36     class VBox;
37     class Tooltips;
38 }
40 namespace Geom {
41     class Matrix;
42 }
44 namespace Inkscape {
46 namespace XML {
47     class Node;
48 }
50 namespace NodePath {
51     class Path ;
52 }
54 namespace LivePathEffect {
56 enum EffectType {
57     BEND_PATH = 0,
58     PATTERN_ALONG_PATH,
59     SKETCH,
60     VONKOCH,
61     KNOT,
62 #ifdef LPE_ENABLE_TEST_EFFECTS
63     DOEFFECTSTACK_TEST,
64 #endif
65     GEARS,
66     CURVE_STITCH,
67     CIRCLE_WITH_RADIUS,
68     PERSPECTIVE_PATH,
69     SPIRO,
70     LATTICE,
71     ENVELOPE,
72     CONSTRUCT_GRID,
73     PERP_BISECTOR,
74     TANGENT_TO_CURVE,
75     MIRROR_REFLECT,
76     CIRCLE_3PTS,
77     INVALID_LPE // This must be last
78 };
80 extern const Util::EnumData<EffectType> LPETypeData[INVALID_LPE];
81 extern const Util::EnumDataConverter<EffectType> LPETypeConverter;
83 enum LPEPathFlashType {
84     SUPPRESS_FLASH,
85 //    PERMANENT_FLASH,
86     DEFAULT
87 };
89 class Effect {
90 public:
91     static Effect* New(EffectType lpenr, LivePathEffectObject *lpeobj);
92     static void createAndApply(const char* name, SPDocument *doc, SPItem *item);
93     static void createAndApply(EffectType type, SPDocument *doc, SPItem *item);
95     virtual ~Effect();
97     EffectType effectType ();
99     virtual void doOnApply (SPLPEItem *lpeitem);
100     virtual void doBeforeEffect (SPLPEItem *lpeitem);
102     void writeParamsToSVG();
104     virtual void acceptParamPath (SPPath *param_path);
105     virtual int acceptsNumParams() { return 0; }
106     void doAcceptPathPreparations(SPLPEItem *lpeitem);
108     inline bool pathParamAccepted() { return done_pathparam_set; }
110     virtual void doEffect (SPCurve * curve);
112     virtual Gtk::Widget * newWidget(Gtk::Tooltips * tooltips);
114     virtual void resetDefaults(SPItem * item);
116     virtual void setup_nodepath(Inkscape::NodePath::Path *np);
118     virtual void transform_multiply(Geom::Matrix const& postmul, bool set);
120     // TODO: providesKnotholder() is currently used as an indicator of whether a nodepath is
121     // created for an item or not. When we allow both at the same time, this needs rethinking!
122     bool providesKnotholder() { return (kh_entity_vector.size() > 0); }
123     // TODO: in view of providesOwnFlashPaths() below, this is somewhat redundant
124     //       (but spiro lpe still needs it!)
125     virtual LPEPathFlashType pathFlashType() { return DEFAULT; }
126     void addHandles(KnotHolder *knotholder, SPDesktop *desktop, SPItem *item);
128     void addHelperPaths(SPLPEItem *lpeitem, SPDesktop *desktop);
129     inline bool providesOwnFlashPaths() {
130         return provides_own_flash_paths || show_orig_path;
131     }
132     inline bool showOrigPath() { return show_orig_path; }
134     Glib::ustring          getName();
135     Inkscape::XML::Node *  getRepr();
136     SPDocument *           getSPDoc();
137     LivePathEffectObject * getLPEObj() {return lpeobj;};
138     Parameter *            getParameter(const char * key);
140     void readallParameters(Inkscape::XML::Node * repr);
141     void setParameter(const gchar * key, const gchar * new_value);
143     inline bool isVisible() { return is_visible; }
145     void editNextParamOncanvas(SPItem * item, SPDesktop * desktop);
147 protected:
148     Effect(LivePathEffectObject *lpeobject);
150     // provide a set of doEffect functions so the developer has a choice
151     // of what kind of input/output parameters he desires.
152     // the order in which they appear is the order in which they are
153     // called by this base class. (i.e. doEffect(SPCurve * curve) defaults to calling
154     // doEffect(std::vector<Geom::Path> )
155     virtual std::vector<Geom::Path>
156             doEffect_path (std::vector<Geom::Path> const & path_in);
157     virtual Geom::Piecewise<Geom::D2<Geom::SBasis> >
158             doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwd2_in);
160     void registerParameter(Parameter * param);
161     void registerKnotHolderHandle(KnotHolderEntity* entity, const char* descr);
162     void addPointParamHandles(KnotHolder *knotholder, SPDesktop *desktop, SPItem *item);
163     Parameter * getNextOncanvasEditableParam();
165     virtual void addHelperPathsImpl(SPLPEItem *lpeitem, SPDesktop *desktop);
167     std::vector<Parameter *> param_vector;
168     std::vector<std::pair<KnotHolderEntity*, const char*> > kh_entity_vector;
169     int oncanvasedit_it;
170     BoolParam is_visible;
171     bool done_pathparam_set;
173     bool show_orig_path; // set this to true in derived effects to automatically have the original
174                          // path displayed as helperpath
176     Inkscape::UI::Widget::Registry wr;
178     LivePathEffectObject *lpeobj;
180     // this boolean defaults to false, it concatenates the input path to one pwd2,
181     // instead of normally 'splitting' the path into continuous pwd2 paths.
182     bool concatenate_before_pwd2;
184 private:
185     bool provides_own_flash_paths; // if true, the standard flash path is suppressed
187     Effect(const Effect&);
188     Effect& operator=(const Effect&);
189 };
192 } //namespace LivePathEffect
193 } //namespace Inkscape
195 #endif
197 /*
198   Local Variables:
199   mode:c++
200   c-file-style:"stroustrup"
201   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
202   indent-tabs-mode:nil
203   fill-column:99
204   End:
205 */
206 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :