diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2010-10-31 18:26:58 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2010-10-31 18:26:58 +0000 |
| commit | 79286f0636cf258c4dcf0b465b6c1445ce0124cb (patch) | |
| tree | 529516639de95fa03cccf4e7d63a07d786477ef2 /src/ui/tool/node-tool.h | |
| parent | - Constrained snap: proper implementation of the preference to snap the mouse... (diff) | |
| download | inkscape-79286f0636cf258c4dcf0b465b6c1445ce0124cb.tar.gz inkscape-79286f0636cf258c4dcf0b465b6c1445ce0124cb.zip | |
Fix pattern editing in the node editor. As a bonus, allow editing
of more than one non-path shape at once.
(bzr r9867)
Diffstat (limited to 'src/ui/tool/node-tool.h')
| -rw-r--r-- | src/ui/tool/node-tool.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ui/tool/node-tool.h b/src/ui/tool/node-tool.h index 641d064c1..11652b535 100644 --- a/src/ui/tool/node-tool.h +++ b/src/ui/tool/node-tool.h @@ -12,6 +12,7 @@ #define SEEN_UI_TOOL_NODE_TOOL_H #include <memory> +#include <boost/ptr_container/ptr_vector.hpp> #include <glib.h> #include <sigc++/sigc++.h> #include "event-context.h" @@ -41,6 +42,7 @@ typedef std::auto_ptr<Inkscape::UI::MultiPathManipulator> MultiPathPtr; typedef std::auto_ptr<Inkscape::UI::ControlPointSelection> CSelPtr; typedef std::auto_ptr<Inkscape::UI::Selector> SelectorPtr; typedef std::auto_ptr<Inkscape::UI::PathSharedData> PathSharedDataPtr; +typedef boost::ptr_vector<ShapeEditor> ShapeEditors; struct InkNodeTool : public SPEventContext { @@ -56,6 +58,7 @@ struct InkNodeTool : public SPEventContext PathSharedDataPtr _path_data; SPCanvasGroup *_transform_handle_group; SPItem *_last_over; + ShapeEditors _shape_editors; unsigned cursor_drag : 1; unsigned show_handles : 1; |
