lpe-skeleton.cpp revision bf09820d782b89c56d79f070d06d7cf2682c270e
4b9b63a91da8fd8538b1cf3ce3ec3ea78522176ejohanengelen * LPE <skeleton> implementation, used as an example for a base starting class
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm * when implementing new LivePathEffects.
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm * In vi, three global search-and-replaces will let you rename everything
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm * in this and the .h file:
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm * Authors:
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm * Johan Engelen
02b211d5ad0015f24b09dee846a89cf19e95f98dcilix * Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl>
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm * Released under GNU GPL, read the file 'COPYING' for more information
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm// You might need to include other 2geom files. You can add them here:
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrmLPESkeleton::LPESkeleton(LivePathEffectObject *lpeobject) :
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm // initialise your parameters here:
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm number(_("Float parameter"), _("just a real number like 1.4!"), "svgname", &wr, this, 1.2)
80d34fe4a953d704430b44c6201a4fcbf455dfc6cilix /* uncomment the following line to have the original path displayed while the item is selected */
80d34fe4a953d704430b44c6201a4fcbf455dfc6cilix //show_orig_path = true;
80d34fe4a953d704430b44c6201a4fcbf455dfc6cilix /* register all your parameters here, so Inkscape knows which parameters this effect has: */
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm registerParameter( dynamic_cast<Parameter *>(&number) );
bf09820d782b89c56d79f070d06d7cf2682c270ecilix /* register all your knotholder handles here: */
bf09820d782b89c56d79f070d06d7cf2682c270ecilix //registerKnotHolderHandle(new Skeleton::KnotHolderEntityAttachMyHandle(), _("help message"));
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm/* ########################
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm * Choose to implement one of the doEffect functions. You can delete or comment out the others.
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrmLPESkeleton::doEffect (SPCurve * curve)
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm // spice this up to make the effect actually *do* something!
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrmstd::vector<Geom::Path>
fb95eb573982218bbb35250e42fe69d84c4fd64acilixLPESkeleton::doEffect_path (std::vector<Geom::Path> const & path_in)
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm std::vector<Geom::Path> path_out;
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm path_out = path_in; // spice this up to make the effect actually *do* something!
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm return path_out;
ecda720053ff791e35dae3c5c1177bc225b6cdf1johanengelenLPESkeleton::doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwd2_in)
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm output = pwd2_in; // spice this up to make the effect actually *do* something!
bf09820d782b89c56d79f070d06d7cf2682c270ecilix/* ########################
bf09820d782b89c56d79f070d06d7cf2682c270ecilix * Define the classes for your knotholder handles here
bf09820d782b89c56d79f070d06d7cf2682c270ecilixclass KnotHolderEntityMyHandle : public KnotHolderEntity
bf09820d782b89c56d79f070d06d7cf2682c270ecilix virtual bool isLPEParam() { return true; } // this is always needed
bf09820d782b89c56d79f070d06d7cf2682c270ecilix // the set() and get() methods must be implemented, click() is optional
bf09820d782b89c56d79f070d06d7cf2682c270ecilix virtual void knot_set(NR::Point const &p, NR::Point const &origin, guint state);
bf09820d782b89c56d79f070d06d7cf2682c270ecilix //virtual void knot_click(guint state);
bf09820d782b89c56d79f070d06d7cf2682c270ecilix} // namespace Skeleton
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm/* ######################## */
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm} //namespace LivePathEffect
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm} /* namespace Inkscape */
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm Local Variables:
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm c-file-style:"stroustrup"
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm indent-tabs-mode:nil
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm fill-column:99
f07bfd5a05d43a6d11f7cd442f085149092dea88pjrm// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :