lpe-patternalongpath.h revision 51b680543b6cffe94253713bcd5b47175368d811
#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 {
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);
PathParam pattern;
private:
EnumParam<PAPCopyType> copytype;
ScalarParam prop_scale;
PointParam width;
BoolParam scale_y_rel;
ScalarParam spacing;
ScalarParam normal_offset;
ScalarParam tang_offset;
BoolParam prop_units;
BoolParam vertical_pattern;
ScalarParam fuse_tolerance;
double height;
double original_height;
double prop_scale_from_widget;
Geom::PathVector hp;
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 :