diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2018-01-30 08:33:01 +0000 |
|---|---|---|
| committer | Tavmjong Bah <tavmjong@free.fr> | 2018-01-30 08:33:01 +0000 |
| commit | 267299811df952d08324a39008f52c19641de9e0 (patch) | |
| tree | 28fef736a52cb7a72119d119be8eb663ad20a77f /src/desktop-events.cpp | |
| parent | Translations: update inkscape.pot (diff) | |
| download | inkscape-267299811df952d08324a39008f52c19641de9e0.tar.gz inkscape-267299811df952d08324a39008f52c19641de9e0.zip | |
Move classes derived from SPObject to own directory.
A lot of header clean-up.
Diffstat (limited to 'src/desktop-events.cpp')
| -rw-r--r-- | src/desktop-events.cpp | 41 |
1 files changed, 25 insertions, 16 deletions
diff --git a/src/desktop-events.cpp b/src/desktop-events.cpp index 758c3e939..c48b06a9c 100644 --- a/src/desktop-events.cpp +++ b/src/desktop-events.cpp @@ -15,46 +15,55 @@ #ifdef HAVE_CONFIG_H # include <config.h> #endif + #include <map> #include <string> -#include "ui/dialog/guides.h" #include "desktop-events.h" #include <gdkmm/display.h> +#include <gtk/gtk.h> #if GTK_CHECK_VERSION(3, 20, 0) # include <gdkmm/seat.h> #else # include <gdkmm/devicemanager.h> #endif +#include <glibmm/i18n.h> + #include <2geom/line.h> #include <2geom/angle.h> -#include <glibmm/i18n.h> #include "desktop.h" +#include "document-undo.h" +#include "document.h" +#include "message-context.h" +#include "preferences.h" +#include "snap.h" +#include "sp-cursor.h" +#include "verbs.h" -#include "ui/dialog-events.h" #include "display/canvas-axonomgrid.h" #include "display/canvas-grid.h" #include "display/guideline.h" #include "display/snap-indicator.h" -#include "document.h" -#include "document-undo.h" -#include "ui/tools/tool-base.h" -#include "helper/action.h" -#include "message-context.h" -#include "preferences.h" -#include "snap.h" #include "display/sp-canvas.h" -#include "sp-guide.h" -#include "sp-namedview.h" -#include "sp-root.h" + +#include "helper/action.h" + +#include "pixmaps/cursor-select.xpm" + +#include "object/sp-guide.h" +#include "object/sp-namedview.h" +#include "object/sp-root.h" + +#include "ui/dialog-events.h" #include "ui/tools-switch.h" -#include "verbs.h" +#include "ui/dialog/guides.h" +#include "ui/tools/tool-base.h" + #include "widgets/desktop-widget.h" -#include "sp-cursor.h" -#include "pixmaps/cursor-select.xpm" + #include "xml/repr.h" using Inkscape::DocumentUndo; |
