summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/unit.cpp
diff options
context:
space:
mode:
authorMaximilian Albert <maximilian.albert@gmail.com>2008-07-31 15:48:02 +0000
committercilix42 <cilix42@users.sourceforge.net>2008-07-31 15:48:02 +0000
commit97db522e1aeecfce661ed7cc1f7e3da9d736c05c (patch)
tree1d2aa385e79f3f24ac4b617057ce543dd80b8e17 /src/live_effects/parameter/unit.cpp
parentIcon for polylines mode (diff)
downloadinkscape-97db522e1aeecfce661ed7cc1f7e3da9d736c05c.tar.gz
inkscape-97db522e1aeecfce661ed7cc1f7e3da9d736c05c.zip
New unit parameter for LPEs which lpe-ruler now uses
(bzr r6487)
Diffstat (limited to 'src/live_effects/parameter/unit.cpp')
-rw-r--r--src/live_effects/parameter/unit.cpp94
1 files changed, 94 insertions, 0 deletions
diff --git a/src/live_effects/parameter/unit.cpp b/src/live_effects/parameter/unit.cpp
new file mode 100644
index 000000000..1ec15e337
--- /dev/null
+++ b/src/live_effects/parameter/unit.cpp
@@ -0,0 +1,94 @@
+#define INKSCAPE_LIVEPATHEFFECT_PARAMETER_UNIT_CPP
+
+/*
+ * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com>
+ *
+ * Released under GNU GPL, read the file 'COPYING' for more information
+ */
+
+#include "live_effects/parameter/unit.h"
+#include "live_effects/effect.h"
+#include "ui/widget/registered-widget.h"
+
+namespace Inkscape {
+
+namespace LivePathEffect {
+
+
+UnitParam::UnitParam( const Glib::ustring& label, const Glib::ustring& tip,
+ const Glib::ustring& key, Inkscape::UI::Widget::Registry* wr,
+ Effect* effect, SPUnitId default_value)
+ : Parameter(label, tip, key, wr, effect)
+{
+ defunit = &sp_unit_get_by_id(default_value);;
+ unit = defunit;
+}
+
+UnitParam::~UnitParam()
+{
+}
+
+bool
+UnitParam::param_readSVGValue(const gchar * strvalue)
+{
+ SPUnit const *newval = sp_unit_get_by_abbreviation(strvalue);
+ if (newval) {
+ param_set_value(newval);
+ return true;
+ }
+ return false;
+}
+
+gchar *
+UnitParam::param_getSVGValue() const
+{
+ return g_strdup(sp_unit_get_abbreviation(unit));
+}
+
+void
+UnitParam::param_set_default()
+{
+ param_set_value(defunit);
+}
+
+void
+UnitParam::param_set_value(SPUnit const *val)
+{
+ unit = val;
+}
+
+const gchar *
+UnitParam::get_abbreviation()
+{
+ return sp_unit_get_abbreviation(unit);
+}
+
+Gtk::Widget *
+UnitParam::param_newWidget(Gtk::Tooltips * /*tooltips*/)
+{
+ Inkscape::UI::Widget::RegisteredUnitMenu* unit_menu = Gtk::manage(
+ new Inkscape::UI::Widget::RegisteredUnitMenu(param_label,
+ param_key,
+ *param_wr,
+ param_effect->getRepr(),
+ param_effect->getSPDoc()));
+
+ unit_menu->setUnit(unit);
+ unit_menu->set_undo_parameters(SP_VERB_DIALOG_LIVE_PATH_EFFECT, _("Change unit parameter"));
+
+ return dynamic_cast<Gtk::Widget *> (unit_menu);
+}
+
+} /* 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 :