Searched defs:Effect (Results 1 - 5 of 5) sorted by relevance

/inkscape/src/extension/
H A Deffect.cpp26 /* Inkscape::Extension::Effect */
31 Effect * Effect::_last_effect = NULL;
32 Inkscape::XML::Node * Effect::_effects_list = NULL;
33 Inkscape::XML::Node * Effect::_filters_list = NULL;
38 Effect::Effect (Inkscape::XML::Node * in_repr, Implementation::Implementation * in_imp) function in class:Inkscape::Extension::Effect
123 Effect::merge_menu (Inkscape::XML::Node * base,
212 Effect::~Effect (voi
[all...]
H A Deffect.h35 class Effect : public Extension { class in namespace:Inkscape::Extension
38 static Effect * _last_effect;
55 Effect * _effect;
68 Effect * effect,
107 Effect (Inkscape::XML::Node * in_repr,
109 virtual ~Effect (void);
117 static Effect * get_last_effect (void) { return _last_effect; };
118 static void set_last_effect (Effect * in_effect);
/inkscape/src/live_effects/
H A Deffect.h47 class Effect { class in namespace:Inkscape::LivePathEffect
49 static Effect* New(EffectType lpenr, LivePathEffectObject *lpeobj);
53 virtual ~Effect();
127 Effect(LivePathEffectObject *lpeobject);
173 Effect(const Effect&);
174 Effect& operator=(const Effect&);
H A Deffect.cpp158 Effect::acceptsNumClicks(EffectType type) {
170 Effect*
171 Effect::New(EffectType lpenr, LivePathEffectObject *lpeobj)
173 Effect* neweffect = NULL;
176 neweffect = static_cast<Effect*> ( new LPEPatternAlongPath(lpeobj) );
179 neweffect = static_cast<Effect*> ( new LPEBendPath(lpeobj) );
182 neweffect = static_cast<Effect*> ( new LPESketch(lpeobj) );
185 neweffect = static_cast<Effect*> ( new LPERoughHatches(lpeobj) );
188 neweffect = static_cast<Effect*> ( new LPEVonKoch(lpeobj) );
191 neweffect = static_cast<Effect*> ( ne
357 Effect::Effect(LivePathEffectObject *lpeobject) function in class:Inkscape::LivePathEffect::Effect
[all...]
/inkscape/share/extensions/
H A Dinkex.py146 class Effect: class in inherits:
168 """Apply some effects on the document. Extensions subclassing Effect

Completed in 28 milliseconds