summaryrefslogtreecommitdiffstats
path: root/src/widgets
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2015-03-08 15:36:57 +0000
committerJabiertxof <jtx@jtx.marker.es>2015-03-08 15:36:57 +0000
commitc4383f04d9a3cbe231a31662cb0b5358d512e2f1 (patch)
tree43171487c52b52c24d16a3f329f49b6943a2f221 /src/widgets
parentupdate to trunk (diff)
downloadinkscape-c4383f04d9a3cbe231a31662cb0b5358d512e2f1.tar.gz
inkscape-c4383f04d9a3cbe231a31662cb0b5358d512e2f1.zip
allow use multiple lines, added new icon
(bzr r13973.1.3)
Diffstat (limited to 'src/widgets')
-rw-r--r--src/widgets/pencil-toolbar.cpp32
-rw-r--r--src/widgets/toolbox.cpp1
2 files changed, 18 insertions, 15 deletions
diff --git a/src/widgets/pencil-toolbar.cpp b/src/widgets/pencil-toolbar.cpp
index 43d73dbc6..a06d76d01 100644
--- a/src/widgets/pencil-toolbar.cpp
+++ b/src/widgets/pencil-toolbar.cpp
@@ -49,6 +49,7 @@
#include "live_effects/effect-enum.h"
#include "live_effects/lpeobject.h"
#include "sp-lpe-item.h"
+#include "util/glib-list-iterators.h"
using Inkscape::UI::UXManager;
using Inkscape::DocumentUndo;
@@ -245,19 +246,22 @@ static void sp_pencil_tb_tolerance_value_changed(GtkAdjustment *adj, GObject *tb
gtk_adjustment_get_value(adj));
g_object_set_data( tbl, "freeze", GINT_TO_POINTER(FALSE) );
SPDesktop *desktop = static_cast<SPDesktop *>(g_object_get_data(tbl, "desktop"));
- SPItem * item = desktop->getSelection()->singleItem();
- if(item){
- SPLPEItem* lpeitem = dynamic_cast<SPLPEItem*>(item);
- if (lpeitem && lpeitem->hasPathEffect()){
- Inkscape::LivePathEffect::Effect* thisEffect = lpeitem->getPathEffectOfType(Inkscape::LivePathEffect::SIMPLIFY);
- if(thisEffect){
- Inkscape::LivePathEffect::LPESimplify *lpe = dynamic_cast<Inkscape::LivePathEffect::LPESimplify*>(thisEffect->getLPEObj()->get_lpe());
- if (lpe) {
- double tol = prefs->getDoubleLimited("/tools/freehand/pencil/tolerance", 10.0, 1.0, 100.0);
- tol = tol/(100.0*(101.0-tol));
- std::ostringstream ss;
- ss << tol;
- lpe->getRepr()->setAttribute("threshold", ss.str());
+ std::list<SPItem *> selected;
+ selected.insert<GSListConstIterator<SPItem *> >(selected.end(), desktop->getSelection()->itemList(), NULL);
+ if(!selected.empty()){
+ for (std::list<SPItem *>::iterator it(selected.begin()); it != selected.end(); ++it){
+ SPLPEItem* lpeitem = dynamic_cast<SPLPEItem*>(*it);
+ if (lpeitem && lpeitem->hasPathEffect()){
+ Inkscape::LivePathEffect::Effect* thisEffect = lpeitem->getPathEffectOfType(Inkscape::LivePathEffect::SIMPLIFY);
+ if(thisEffect){
+ Inkscape::LivePathEffect::LPESimplify *lpe = dynamic_cast<Inkscape::LivePathEffect::LPESimplify*>(thisEffect->getLPEObj()->get_lpe());
+ if (lpe) {
+ double tol = prefs->getDoubleLimited("/tools/freehand/pencil/tolerance", 10.0, 1.0, 100.0);
+ tol = tol/(100.0*(101.0-tol));
+ std::ostringstream ss;
+ ss << tol;
+ lpe->getRepr()->setAttribute("threshold", ss.str());
+ }
}
}
}
@@ -340,7 +344,7 @@ void sp_pencil_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainActions, GOb
_("LPE based interactive simplify"),
_("LPE based interactive simplify"),
INKSCAPE_ICON("interactive_simplify"),
- Inkscape::ICON_SIZE_DECORATION );
+ Inkscape::ICON_SIZE_SMALL_TOOLBAR );
gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(itact), prefs->getInt("/tools/freehand/pencil/simplify", 0) );
g_signal_connect_after( G_OBJECT(itact), "toggled", G_CALLBACK(freehand_simplify_lpe), holder) ;
gtk_action_group_add_action( mainActions, GTK_ACTION(itact) );
diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp
index 83180e43d..79b94cd24 100644
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
@@ -402,7 +402,6 @@ static gchar const * ui_descr =
" <toolitem action='FreehandModeActionPencil' />"
" <separator />"
" <toolitem action='PencilToleranceAction' />"
- " <separator />"
" <toolitem action='PencilLpeSimplify' />"
" <separator />"
" <toolitem action='PencilResetAction' />"