summaryrefslogtreecommitdiffstats
path: root/src/ui/tools/select-tool.cpp
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2018-01-30 08:33:01 +0000
committerTavmjong Bah <tavmjong@free.fr>2018-01-30 08:33:01 +0000
commit267299811df952d08324a39008f52c19641de9e0 (patch)
tree28fef736a52cb7a72119d119be8eb663ad20a77f /src/ui/tools/select-tool.cpp
parentTranslations: update inkscape.pot (diff)
downloadinkscape-267299811df952d08324a39008f52c19641de9e0.tar.gz
inkscape-267299811df952d08324a39008f52c19641de9e0.zip
Move classes derived from SPObject to own directory.
A lot of header clean-up.
Diffstat (limited to 'src/ui/tools/select-tool.cpp')
-rw-r--r--src/ui/tools/select-tool.cpp35
1 files changed, 21 insertions, 14 deletions
diff --git a/src/ui/tools/select-tool.cpp b/src/ui/tools/select-tool.cpp
index 2468575c6..ddc6e2881 100644
--- a/src/ui/tools/select-tool.cpp
+++ b/src/ui/tools/select-tool.cpp
@@ -17,36 +17,43 @@
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
+
#include <cstring>
#include <string>
+
#include <gdk/gdkkeysyms.h>
+#include <glibmm/i18n.h>
+
+#include "desktop.h"
+#include "document-undo.h"
+#include "document.h"
#include "macros.h"
+#include "message-stack.h"
#include "rubberband.h"
-#include "document.h"
-#include "document-undo.h"
+#include "selection-chemistry.h"
+#include "selection-describer.h"
#include "selection.h"
+#include "seltrans.h"
#include "sp-cursor.h"
+
+#include "display/drawing-item.h"
+#include "display/sp-canvas.h"
+#include "display/sp-canvas-item.h"
+
+#include "object/box3d.h"
#include "style.h"
-#include "pixmaps/cursor-select-m.xpm"
+
#include "pixmaps/cursor-select-d.xpm"
+#include "pixmaps/cursor-select-m.xpm"
#include "pixmaps/handles.xpm"
-#include <glibmm/i18n.h>
+#include "ui/tools-switch.h"
#include "ui/tools/select-tool.h"
-#include "selection-chemistry.h"
+
#ifdef WITH_DBUS
#include "extension/dbus/document-interface.h"
#endif
-#include "desktop.h"
-#include "sp-root.h"
-#include "ui/tools-switch.h"
-#include "message-stack.h"
-#include "selection-describer.h"
-#include "seltrans.h"
-#include "box3d.h"
-#include "display/sp-canvas.h"
-#include "display/drawing-item.h"
using Inkscape::DocumentUndo;