diff options
| author | Maximilian Albert <maximilian.albert@gmail.com> | 2008-07-30 10:57:48 +0000 |
|---|---|---|
| committer | cilix42 <cilix42@users.sourceforge.net> | 2008-07-30 10:57:48 +0000 |
| commit | 03d492341f6ffc28d110ecc3a773acdbdcc1e125 (patch) | |
| tree | 32a6d94a52f10bfe54a1d76b02d5d591ea071d09 /src | |
| parent | Move coordinate transform workaround to a more logical place (diff) | |
| download | inkscape-03d492341f6ffc28d110ecc3a773acdbdcc1e125.tar.gz inkscape-03d492341f6ffc28d110ecc3a773acdbdcc1e125.zip | |
New LPE: Text label
(bzr r6472)
Diffstat (limited to 'src')
| -rw-r--r-- | src/live_effects/Makefile_insert | 4 | ||||
| -rw-r--r-- | src/live_effects/effect.cpp | 5 | ||||
| -rw-r--r-- | src/live_effects/effect.h | 1 | ||||
| -rw-r--r-- | src/live_effects/lpe-text_label.cpp | 61 | ||||
| -rw-r--r-- | src/live_effects/lpe-text_label.h | 51 |
5 files changed, 121 insertions, 1 deletions
diff --git a/src/live_effects/Makefile_insert b/src/live_effects/Makefile_insert index b67e44051..ea432e4c3 100644 --- a/src/live_effects/Makefile_insert +++ b/src/live_effects/Makefile_insert @@ -68,5 +68,7 @@ live_effects_liblive_effects_a_SOURCES = \ live_effects/lpe-offset.cpp \ live_effects/lpe-offset.h \ live_effects/lpe-ruler.cpp \ - live_effects/lpe-ruler.h + live_effects/lpe-ruler.h \ + live_effects/lpe-text_label.cpp \ + live_effects/lpe-text_label.h diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index d365880a6..701b46d36 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -63,6 +63,7 @@ #include "live_effects/lpe-ruler.h" #include "live_effects/lpe-boolops.h" #include "live_effects/lpe-interpolate.h" +#include "live_effects/lpe-text_label.h" // end of includes namespace Inkscape { @@ -98,6 +99,7 @@ const Util::EnumData<EffectType> LPETypeData[] = { {SPIRO, N_("Spiro spline"), "spiro"}, {CURVE_STITCH, N_("Stitch Sub-Paths"), "curvestitching"}, {TANGENT_TO_CURVE, N_("Tangent to curve"), "tangent_to_curve"}, + {TEXT_LABEL, N_("Text label"), "text_label"}, {VONKOCH, N_("VonKoch"), "vonkoch"}, }; const Util::EnumDataConverter<EffectType> LPETypeConverter(LPETypeData, sizeof(LPETypeData)/sizeof(*LPETypeData)); @@ -187,6 +189,9 @@ Effect::New(EffectType lpenr, LivePathEffectObject *lpeobj) case INTERPOLATE: neweffect = static_cast<Effect*> ( new LPEInterpolate(lpeobj) ); break; + case TEXT_LABEL: + neweffect = static_cast<Effect*> ( new LPETextLabel(lpeobj) ); + break; default: g_warning("LivePathEffect::Effect::New called with invalid patheffect type (%d)", lpenr); neweffect = NULL; diff --git a/src/live_effects/effect.h b/src/live_effects/effect.h index 37170eae0..859c0ff7b 100644 --- a/src/live_effects/effect.h +++ b/src/live_effects/effect.h @@ -79,6 +79,7 @@ enum EffectType { RULER, BOOLOPS, INTERPOLATE, + TEXT_LABEL, INVALID_LPE // This must be last }; diff --git a/src/live_effects/lpe-text_label.cpp b/src/live_effects/lpe-text_label.cpp new file mode 100644 index 000000000..c986dbd63 --- /dev/null +++ b/src/live_effects/lpe-text_label.cpp @@ -0,0 +1,61 @@ +#define INKSCAPE_LPE_TEXT_LABEL_CPP +/** \file + * LPE <text_label> implementation + */ +/* + * Authors: + * Maximilian Albert + * Johan Engelen + * + * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> + * + * Released under GNU GPL, read the file 'COPYING' for more information + */ + +#include "live_effects/lpe-text_label.h" + +namespace Inkscape { +namespace LivePathEffect { + +LPETextLabel::LPETextLabel(LivePathEffectObject *lpeobject) : + Effect(lpeobject), + label(_("Label"), _("Text label attached to the path"), "label", &wr, this, "This is a label") +{ + registerParameter( dynamic_cast<Parameter *>(&label) ); +} + +LPETextLabel::~LPETextLabel() +{ + +} + +Geom::Piecewise<Geom::D2<Geom::SBasis> > +LPETextLabel::doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwd2_in) +{ + using namespace Geom; + + double t = (pwd2_in.cuts.front() + pwd2_in.cuts.back()) / 2; + Point pos(pwd2_in.valueAt(t)); + Point dir(unit_vector(derivative(pwd2_in).valueAt(t))); + Point n(-rot90(dir) * 30); + + double angle = angle_between(dir, Point(1,0)); + label.setPos(pos + n); + label.setAnchor(std::sin(angle), -std::cos(angle)); + + return pwd2_in; +} + +} //namespace LivePathEffect +} /* namespace Inkscape */ + +/* + 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 : diff --git a/src/live_effects/lpe-text_label.h b/src/live_effects/lpe-text_label.h new file mode 100644 index 000000000..58db5ece9 --- /dev/null +++ b/src/live_effects/lpe-text_label.h @@ -0,0 +1,51 @@ +#ifndef INKSCAPE_LPE_TEXT_LABEL_H +#define INKSCAPE_LPE_TEXT_LABEL_H + +/** \file + * LPE <text_label> implementation + */ +/* + * Authors: + * Maximilian Albert + * Johan Engelen + * + * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com> + * + * Released under GNU GPL, read the file 'COPYING' for more information + */ + +#include "live_effects/effect.h" +#include "live_effects/parameter/text.h" + +namespace Inkscape { +namespace LivePathEffect { + +class LPETextLabel : public Effect { +public: + LPETextLabel(LivePathEffectObject *lpeobject); + virtual ~LPETextLabel(); + + virtual Geom::Piecewise<Geom::D2<Geom::SBasis> > doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwd2_in); + +private: + TextParam label; + + LPETextLabel(const LPETextLabel&); + LPETextLabel& operator=(const LPETextLabel&); +}; + +} //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 : |
