lpe-patternalongpath.h revision 06d715aa150c39ce67c1a0d7e9d22d3cd7288e6e
#ifndef INKSCAPE_LPE_PATTERN_ALONG_PATH_H
#define INKSCAPE_LPE_PATTERN_ALONG_PATH_H
/*
* Inkscape::LPEPatternAlongPath
*
* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl>
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "live_effects/parameter/enum.h"
#include "live_effects/effect.h"
#include "live_effects/parameter/path.h"
#include "live_effects/parameter/bool.h"
#include "live_effects/parameter/point.h"
namespace Inkscape {
namespace LivePathEffect {
namespace WPAP {
class KnotHolderEntityWidthPatternAlongPath;
}
enum PAPCopyType {
PAPCT_SINGLE = 0,
PAPCT_SINGLE_STRETCHED,
PAPCT_REPEATED,
PAPCT_REPEATED_STRETCHED,
PAPCT_END // This must be last
};
class LPEPatternAlongPath : public Effect {
public:
LPEPatternAlongPath(LivePathEffectObject *lpeobject);
virtual ~LPEPatternAlongPath();
virtual void doBeforeEffect (SPLPEItem const* lpeitem);
virtual Geom::Piecewise<Geom::D2<Geom::SBasis> > doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwd2_in);
virtual void transform_multiply(Geom::Affine const& postmul, bool set);
void addCanvasIndicators(SPLPEItem const */*lpeitem*/, std::vector<Geom::PathVector> &hp_vec);
virtual void addKnotHolderEntities(KnotHolder * knotholder, SPDesktop * desktop, SPItem * item);
PathParam pattern;
friend class WPAP::KnotHolderEntityWidthPatternAlongPath;
protected:
double original_height;
ScalarParam prop_scale;
private:
EnumParam<PAPCopyType> copytype;
BoolParam scale_y_rel;
ScalarParam spacing;
ScalarParam normal_offset;
ScalarParam tang_offset;
BoolParam prop_units;
BoolParam vertical_pattern;
ScalarParam fuse_tolerance;
void on_pattern_pasted();
LPEPatternAlongPath(const LPEPatternAlongPath&);
LPEPatternAlongPath& operator=(const LPEPatternAlongPath&);
};
}; //namespace LivePathEffect
}; //namespace Inkscape
#endif
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :