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/ui/interface.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 '')
| -rw-r--r-- | src/ui/interface.cpp | 71 |
1 files changed, 39 insertions, 32 deletions
diff --git a/src/ui/interface.cpp b/src/ui/interface.cpp index 7df3502f7..0be3ef684 100644 --- a/src/ui/interface.cpp +++ b/src/ui/interface.cpp @@ -23,56 +23,63 @@ #include <config.h> #endif -#include "ui/dialog/dialog-manager.h" #include <gtkmm/icontheme.h> #include <gtkmm/radiomenuitem.h> #include <gtkmm/separatormenuitem.h> -#include "file.h" #include <glibmm/miscutils.h> +#include "desktop-style.h" +#include "desktop.h" +#include "document-undo.h" +#include "document.h" #include "enums.h" +#include "file.h" +#include "gradient-drag.h" #include "inkscape.h" +#include "message-context.h" +#include "message-stack.h" +#include "preferences.h" +#include "selection-chemistry.h" +#include "shortcuts.h" +#include "svg-view-widget.h" + +#include "display/sp-canvas.h" + #include "extension/db.h" #include "extension/effect.h" +#include "extension/find_extension_by_mime.h" #include "extension/input.h" -#include "preferences.h" -#include "shortcuts.h" -#include "document.h" -#include "ui/interface.h" -#include "ui/monitor.h" -#include "desktop.h" -#include "selection-chemistry.h" -#include "svg-view-widget.h" -#include "widgets/desktop-widget.h" -#include "sp-item-group.h" -#include "sp-text.h" -#include "sp-flowtext.h" -#include "sp-namedview.h" -#include "sp-root.h" #include "helper/action.h" #include "helper/window.h" + #include "io/sys.h" -#include "ui/dialog-events.h" -#include "message-context.h" -#include "ui/uxmanager.h" -#include "ui/clipboard.h" -#include "display/sp-canvas.h" -#include "svg/svg-color.h" -#include "desktop-style.h" +#include "object/sp-anchor.h" +#include "object/sp-clippath.h" +#include "object/sp-flowtext.h" +#include "object/sp-image.h" +#include "object/sp-item-group.h" +#include "object/sp-mask.h" +#include "object/sp-namedview.h" +#include "object/sp-root.h" +#include "object/sp-shape.h" +#include "object/sp-text.h" #include "style.h" + +#include "svg/svg-color.h" + +#include "ui/clipboard.h" +#include "ui/dialog-events.h" +#include "ui/dialog/dialog-manager.h" +#include "ui/dialog/layer-properties.h" +#include "ui/interface.h" +#include "ui/monitor.h" #include "ui/tools/tool-base.h" -#include "gradient-drag.h" +#include "ui/uxmanager.h" + +#include "widgets/desktop-widget.h" #include "widgets/ege-paint-def.h" -#include "document-undo.h" -#include "sp-anchor.h" -#include "sp-clippath.h" -#include "sp-image.h" -#include "sp-mask.h" -#include "message-stack.h" -#include "ui/dialog/layer-properties.h" -#include "extension/find_extension_by_mime.h" using Inkscape::DocumentUndo; |
