summaryrefslogtreecommitdiffstats
path: root/src/ui/tools/node-tool.h
diff options
context:
space:
mode:
authorDiederik van Lierop <mail@diedenrezi.nl>2015-05-30 18:33:03 +0000
committerDiederik van Lierop <mail@diedenrezi.nl>2015-05-30 18:33:03 +0000
commit1791eb30ed40414ac83d4bb8cd0c6ce219597e42 (patch)
treece406836916951a6c15ac1182446ef0abc2fc1b8 /src/ui/tools/node-tool.h
parentSnapping in node tool now also works when: (diff)
downloadinkscape-1791eb30ed40414ac83d4bb8cd0c6ce219597e42.tar.gz
inkscape-1791eb30ed40414ac83d4bb8cd0c6ce219597e42.zip
Replace tabs by spaces
(bzr r14190)
Diffstat (limited to 'src/ui/tools/node-tool.h')
-rw-r--r--src/ui/tools/node-tool.h56
1 files changed, 28 insertions, 28 deletions
diff --git a/src/ui/tools/node-tool.h b/src/ui/tools/node-tool.h
index d5a21e0c6..8342d66a6 100644
--- a/src/ui/tools/node-tool.h
+++ b/src/ui/tools/node-tool.h
@@ -19,18 +19,18 @@
#include "selection.h"
namespace Inkscape {
- namespace Display {
- class TemporaryItem;
- }
-
- namespace UI {
- class MultiPathManipulator;
- class ControlPointSelection;
- class Selector;
- class ControlPoint;
-
- struct PathSharedData;
- }
+ namespace Display {
+ class TemporaryItem;
+ }
+
+ namespace UI {
+ class MultiPathManipulator;
+ class ControlPointSelection;
+ class Selector;
+ class ControlPoint;
+
+ struct PathSharedData;
+ }
}
struct SPCanvasGroup;
@@ -44,26 +44,26 @@ namespace Tools {
class NodeTool : public ToolBase {
public:
- NodeTool();
- virtual ~NodeTool();
+ NodeTool();
+ virtual ~NodeTool();
- Inkscape::UI::ControlPointSelection* _selected_nodes;
+ Inkscape::UI::ControlPointSelection* _selected_nodes;
Inkscape::UI::MultiPathManipulator* _multipath;
bool edit_clipping_paths;
bool edit_masks;
- static const std::string prefsPath;
+ static const std::string prefsPath;
- virtual void setup();
- virtual void update_helperpath();
- virtual void set(const Inkscape::Preferences::Entry& val);
- virtual bool root_handler(GdkEvent* event);
+ virtual void setup();
+ virtual void update_helperpath();
+ virtual void set(const Inkscape::Preferences::Entry& val);
+ virtual bool root_handler(GdkEvent* event);
- virtual const std::string& getPrefsPath();
+ virtual const std::string& getPrefsPath();
private:
- sigc::connection _selection_changed_connection;
+ sigc::connection _selection_changed_connection;
sigc::connection _mouseover_changed_connection;
sigc::connection _sizeUpdatedConn;
@@ -88,13 +88,13 @@ private:
std::vector<SPItem*> _current_selection;
std::vector<SPItem*> _previous_selection;
- void selection_changed(Inkscape::Selection *sel);
+ void selection_changed(Inkscape::Selection *sel);
- void select_area(Geom::Rect const &sel, GdkEventButton *event);
- void select_point(Geom::Point const &sel, GdkEventButton *event);
- void mouseover_changed(Inkscape::UI::ControlPoint *p);
- void update_tip(GdkEvent *event);
- void handleControlUiStyleChange();
+ void select_area(Geom::Rect const &sel, GdkEventButton *event);
+ void select_point(Geom::Point const &sel, GdkEventButton *event);
+ void mouseover_changed(Inkscape::UI::ControlPoint *p);
+ void update_tip(GdkEvent *event);
+ void handleControlUiStyleChange();
};
}