Remove superfluous include paths from project files.

A lot of our build system files specify unneeded include
paths. These roughly fall into the following categories:
    a) Paths that are already set in more general files
       such as qtcreator.pri.
    b) Paths that serve no purpose at all, possibly
       left over from earlier versions of the project.
    c) Paths that act as workarounds for wrong include
       statements of the form '#include "xyz.h"', where
       xyz.h is not in the same directory as the including
      file.
This patch removes such path specifications and fixes the offending
include statements from case c).
Tested on Linux, Windows and OSX with qmake and qbs.

Change-Id: I039a8449f8a65df0d616b4c08081145c18ae4b15
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
This commit is contained in:
Christian Kandeler
2013-08-29 16:36:42 +02:00
parent 7c4d0d3bf3
commit 72d173829c
167 changed files with 388 additions and 523 deletions
-3
View File
@@ -13,11 +13,8 @@ Application {
return ["-Wl,-s"] return ["-Wl,-s"]
} }
cpp.includePaths: [ cpp.includePaths: [
"..",
"../libs",
"../shared/qtsingleapplication", "../shared/qtsingleapplication",
"../shared/qtlockedfile", "../shared/qtlockedfile",
buildDirectory
] ]
Depends { name: "app_version_header" } Depends { name: "app_version_header" }
+1 -1
View File
@@ -27,7 +27,6 @@
** **
****************************************************************************/ ****************************************************************************/
#include "qtsingleapplication.h"
#include "../tools/qtcreatorcrashhandler/crashhandlersetup.h" #include "../tools/qtcreatorcrashhandler/crashhandlersetup.h"
#include <app/app_version.h> #include <app/app_version.h>
@@ -35,6 +34,7 @@
#include <extensionsystem/pluginerroroverview.h> #include <extensionsystem/pluginerroroverview.h>
#include <extensionsystem/pluginmanager.h> #include <extensionsystem/pluginmanager.h>
#include <extensionsystem/pluginspec.h> #include <extensionsystem/pluginspec.h>
#include <qtsingleapplication.h>
#include <QDebug> #include <QDebug>
#include <QDir> #include <QDir>
-4
View File
@@ -1,7 +1,3 @@
DEPENDPATH += $$PWD
INCLUDEPATH += $$PWD
HEADERS += \ HEADERS += \
$$PWD/cppassert.h \ $$PWD/cppassert.h \
$$PWD/CPlusPlus.h \ $$PWD/CPlusPlus.h \
+2 -2
View File
@@ -19,11 +19,11 @@ DynamicLibrary {
cpp.rpaths: qbs.targetOS.contains("osx") cpp.rpaths: qbs.targetOS.contains("osx")
? ["@loader_path/..", "@executable_path/.."] ? ["@loader_path/..", "@executable_path/.."]
: ["$ORIGIN", "$ORIGIN/.."] : ["$ORIGIN", "$ORIGIN/.."]
cpp.includePaths: [ ".", ".." ] cpp.includePaths: [path]
Export { Export {
Depends { name: "cpp" } Depends { name: "cpp" }
cpp.includePaths: [ "." ] cpp.includePaths: [path]
} }
Group { Group {
@@ -4,8 +4,6 @@ contains(CONFIG, dll) {
DEFINES += LANGUAGEUTILS_BUILD_STATIC_LIB DEFINES += LANGUAGEUTILS_BUILD_STATIC_LIB
} }
INCLUDEPATH += $$PWD/..
HEADERS += \ HEADERS += \
$$PWD/languageutils_global.h \ $$PWD/languageutils_global.h \
$$PWD/fakemetaobject.h \ $$PWD/fakemetaobject.h \
-1
View File
@@ -4,7 +4,6 @@ import "../QtcLibrary.qbs" as QtcLibrary
QtcLibrary { QtcLibrary {
name: "LanguageUtils" name: "LanguageUtils"
cpp.includePaths: base.concat("../3rdparty/cplusplus")
cpp.defines: base.concat([ cpp.defines: base.concat([
"LANGUAGEUTILS_BUILD_DIR" "LANGUAGEUTILS_BUILD_DIR"
]) ])
-2
View File
@@ -4,8 +4,6 @@ contains(CONFIG, dll) {
DEFINES += QMLDEBUG_STATIC_LIB DEFINES += QMLDEBUG_STATIC_LIB
} }
INCLUDEPATH += $$PWD/..
HEADERS += \ HEADERS += \
$$PWD/qmlprofilereventlocation.h \ $$PWD/qmlprofilereventlocation.h \
$$PWD/qmldebugclient.h \ $$PWD/qmldebugclient.h \
+2 -2
View File
@@ -438,12 +438,12 @@
<customwidget> <customwidget>
<class>QmlEditorWidgets::ColorButton</class> <class>QmlEditorWidgets::ColorButton</class>
<extends>QToolButton</extends> <extends>QToolButton</extends>
<header location="global">colorbutton.h</header> <header location="global">qmleditorwidgets/colorbutton.h</header>
</customwidget> </customwidget>
<customwidget> <customwidget>
<class>QmlEditorWidgets::FontSizeSpinBox</class> <class>QmlEditorWidgets::FontSizeSpinBox</class>
<extends>QSpinBox</extends> <extends>QSpinBox</extends>
<header location="global">fontsizespinbox.h</header> <header location="global">qmleditorwidgets/fontsizespinbox.h</header>
</customwidget> </customwidget>
</customwidgets> </customwidgets>
<resources/> <resources/>
@@ -43,11 +43,11 @@
#include <QGraphicsEffect> #include <QGraphicsEffect>
#include <QAction> #include <QAction>
#include "contextpanetextwidget.h" #include "contextpanetextwidget.h"
#include "easingcontextpane.h"
#include "contextpanewidgetimage.h" #include "contextpanewidgetimage.h"
#include "contextpanewidgetrectangle.h" #include "contextpanewidgetrectangle.h"
#include "customcolordialog.h" #include "customcolordialog.h"
#include "colorbutton.h" #include "colorbutton.h"
#include <qmleditorwidgets/easingpane/easingcontextpane.h>
using namespace Utils; using namespace Utils;
@@ -300,7 +300,7 @@
<customwidget> <customwidget>
<class>QmlEditorWidgets::FileWidget</class> <class>QmlEditorWidgets::FileWidget</class>
<extends>QComboBox</extends> <extends>QComboBox</extends>
<header location="global">filewidget.h</header> <header location="global">qmleditorwidgets/filewidget.h</header>
</customwidget> </customwidget>
</customwidgets> </customwidgets>
<resources> <resources>
@@ -285,7 +285,7 @@
<customwidget> <customwidget>
<class>QmlEditorWidgets::FileWidget</class> <class>QmlEditorWidgets::FileWidget</class>
<extends>QComboBox</extends> <extends>QComboBox</extends>
<header location="global">filewidget.h</header> <header location="global">qmleditorwidgets/filewidget.h</header>
</customwidget> </customwidget>
</customwidgets> </customwidgets>
<resources> <resources>
@@ -30,9 +30,9 @@
#include "contextpanewidgetrectangle.h" #include "contextpanewidgetrectangle.h"
#include "ui_contextpanewidgetrectangle.h" #include "ui_contextpanewidgetrectangle.h"
#include "contextpanewidget.h" #include "contextpanewidget.h"
#include "customcolordialog.h"
#include <qmljs/qmljspropertyreader.h> #include <qmljs/qmljspropertyreader.h>
#include <qmljs/qmljsutils.h> #include <qmljs/qmljsutils.h>
#include <customcolordialog.h>
#include <QDebug> #include <QDebug>
namespace QmlEditorWidgets { namespace QmlEditorWidgets {
@@ -298,12 +298,12 @@
<customwidget> <customwidget>
<class>QmlEditorWidgets::ColorButton</class> <class>QmlEditorWidgets::ColorButton</class>
<extends>QToolButton</extends> <extends>QToolButton</extends>
<header location="global">colorbutton.h</header> <header location="global">qmleditorwidgets/colorbutton.h</header>
</customwidget> </customwidget>
<customwidget> <customwidget>
<class>QmlEditorWidgets::GradientLine</class> <class>QmlEditorWidgets::GradientLine</class>
<extends>QWidget</extends> <extends>QWidget</extends>
<header location="global">gradientline.h</header> <header location="global">qmleditorwidgets/gradientline.h</header>
<container>1</container> <container>1</container>
</customwidget> </customwidget>
</customwidgets> </customwidgets>
@@ -1,5 +1,4 @@
VPATH += $$PWD VPATH += $$PWD
INCLUDEPATH += $$PWD
SOURCES += $$PWD/easinggraph.cpp \ SOURCES += $$PWD/easinggraph.cpp \
$$PWD/easingcontextpane.cpp $$PWD/easingcontextpane.cpp
@@ -1,7 +1,5 @@
QT += script declarative QT += script declarative
INCLUDEPATH += $$PWD
contains(CONFIG, dll) { contains(CONFIG, dll) {
DEFINES += BUILD_QMLEDITORWIDGETS_LIB DEFINES += BUILD_QMLEDITORWIDGETS_LIB
} else { } else {
@@ -4,7 +4,6 @@ import "../QtcLibrary.qbs" as QtcLibrary
QtcLibrary { QtcLibrary {
name: "QmlEditorWidgets" name: "QmlEditorWidgets"
cpp.includePaths: base.concat(easingPane.prefix)
cpp.defines: base.concat([ cpp.defines: base.concat([
"QWEAKPOINTER_ENABLE_ARROW", "QWEAKPOINTER_ENABLE_ARROW",
"BUILD_QMLEDITORWIDGETS_LIB" "BUILD_QMLEDITORWIDGETS_LIB"
-2
View File
@@ -6,8 +6,6 @@ contains(CONFIG, dll) {
include(parser/parser.pri) include(parser/parser.pri)
INCLUDEPATH += $$PWD/..
HEADERS += \ HEADERS += \
$$PWD/qmljs_global.h \ $$PWD/qmljs_global.h \
$$PWD/qmljsbind.h \ $$PWD/qmljsbind.h \
-1
View File
@@ -4,7 +4,6 @@ import "../QtcLibrary.qbs" as QtcLibrary
QtcLibrary { QtcLibrary {
name: "QmlJS" name: "QmlJS"
cpp.includePaths: base.concat("parser")
cpp.defines: base.concat([ cpp.defines: base.concat([
"QMLJS_BUILD_DIR" "QMLJS_BUILD_DIR"
]) ])
-1
View File
@@ -4,7 +4,6 @@ dll {
DEFINES += QTCREATOR_UTILS_STATIC_LIB DEFINES += QTCREATOR_UTILS_STATIC_LIB
} }
INCLUDEPATH += $$PWD
QT += script network QT += script network
CONFIG += exceptions # used by portlist.cpp, textfileformat.cpp, and ssh/* CONFIG += exceptions # used by portlist.cpp, textfileformat.cpp, and ssh/*
+3 -1
View File
@@ -26,7 +26,7 @@ Product {
if (qbs.buildVariant == "release" && (qbs.toolchain.contains("gcc") || qbs.toolchain.contains("mingw"))) if (qbs.buildVariant == "release" && (qbs.toolchain.contains("gcc") || qbs.toolchain.contains("mingw")))
return ["-Wl,-s"] return ["-Wl,-s"]
} }
cpp.includePaths: [ ".", ".." ] cpp.includePaths: [path]
Group { Group {
name: "PluginSpec" name: "PluginSpec"
@@ -47,5 +47,7 @@ Product {
Export { Export {
Depends { name: "ExtensionSystem" } Depends { name: "ExtensionSystem" }
Depends { name: "cpp" }
cpp.includePaths: [path]
} }
} }
-1
View File
@@ -22,7 +22,6 @@ QtcPlugin {
property bool enable: false property bool enable: false
pluginspecreplacements: ({"ANDROID_EXPERIMENTAL_STR": (enable ? "false": "true")}) pluginspecreplacements: ({"ANDROID_EXPERIMENTAL_STR": (enable ? "false": "true")})
cpp.includePaths: base.concat("../../shared")
cpp.defines: base.concat(project.buildQbsProjectManager ? ['HAVE_QBS'] : []) cpp.defines: base.concat(project.buildQbsProjectManager ? ['HAVE_QBS'] : [])
files: [ files: [
@@ -30,8 +30,8 @@
#include "actioncontainer_p.h" #include "actioncontainer_p.h"
#include "actionmanager.h" #include "actionmanager.h"
#include "coreconstants.h" #include <coreplugin/coreconstants.h>
#include "id.h" #include <coreplugin/id.h>
#include <utils/hostosinfo.h> #include <utils/hostosinfo.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
@@ -29,10 +29,10 @@
#include "actionmanager.h" #include "actionmanager.h"
#include "actionmanager_p.h" #include "actionmanager_p.h"
#include "mainwindow.h"
#include "actioncontainer_p.h" #include "actioncontainer_p.h"
#include "command_p.h" #include "command_p.h"
#include "id.h" #include <coreplugin/id.h>
#include <coreplugin/mainwindow.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
@@ -29,8 +29,8 @@
#include "command_p.h" #include "command_p.h"
#include "icontext.h" #include <coreplugin/icontext.h>
#include "id.h" #include <coreplugin/id.h>
#include <utils/hostosinfo.h> #include <utils/hostosinfo.h>
@@ -28,9 +28,9 @@
****************************************************************************/ ****************************************************************************/
#include "commandmappings.h" #include "commandmappings.h"
#include "shortcutsettings.h"
#include "ui_commandmappings.h" #include "ui_commandmappings.h"
#include "commandsfile.h" #include "commandsfile.h"
#include <coreplugin/dialogs/shortcutsettings.h>
#include <utils/hostosinfo.h> #include <utils/hostosinfo.h>
#include <utils/headerviewstretcher.h> #include <utils/headerviewstretcher.h>
@@ -28,8 +28,8 @@
****************************************************************************/ ****************************************************************************/
#include "commandsfile.h" #include "commandsfile.h"
#include "shortcutsettings.h"
#include "command_p.h" #include "command_p.h"
#include <coreplugin/dialogs/shortcutsettings.h>
#include <app/app_version.h> #include <app/app_version.h>
+2 -2
View File
@@ -28,16 +28,16 @@
****************************************************************************/ ****************************************************************************/
#include "coreplugin.h" #include "coreplugin.h"
#include "actionmanager.h"
#include "designmode.h" #include "designmode.h"
#include "editmode.h" #include "editmode.h"
#include "editormanager.h"
#include "fileiconprovider.h" #include "fileiconprovider.h"
#include "helpmanager.h" #include "helpmanager.h"
#include "mainwindow.h" #include "mainwindow.h"
#include "mimedatabase.h" #include "mimedatabase.h"
#include "modemanager.h" #include "modemanager.h"
#include "infobar.h" #include "infobar.h"
#include <coreplugin/actionmanager/actionmanager.h>
#include <coreplugin/editormanager/editormanager.h>
#include <utils/savefile.h> #include <utils/savefile.h>
-4
View File
@@ -12,10 +12,6 @@ greaterThan(QT_MAJOR_VERSION, 4) {
include(../../qtcreatorplugin.pri) include(../../qtcreatorplugin.pri)
include(../../shared/scriptwrapper/scriptwrapper.pri) include(../../shared/scriptwrapper/scriptwrapper.pri)
win32-msvc*:QMAKE_CXXFLAGS += -wd4251 -wd4290 -wd4250 win32-msvc*:QMAKE_CXXFLAGS += -wd4251 -wd4290 -wd4250
INCLUDEPATH += dialogs \
actionmanager \
editormanager \
progressmanager
SOURCES += mainwindow.cpp \ SOURCES += mainwindow.cpp \
editmode.cpp \ editmode.cpp \
tabpositionindicator.cpp \ tabpositionindicator.cpp \
-9
View File
@@ -15,15 +15,6 @@ QtcPlugin {
Depends { name: "Aggregation" } Depends { name: "Aggregation" }
Depends { name: "app_version_header" } Depends { name: "app_version_header" }
cpp.includePaths: base.concat([
"../..",
"../../shared/scriptwrapper",
"dialogs",
"editormanager",
"progressmanager",
"actionmanager"
])
cpp.dynamicLibraries: { cpp.dynamicLibraries: {
if (qbs.targetOS.contains("windows")) return [ if (qbs.targetOS.contains("windows")) return [
"ole32", "ole32",
+2 -2
View File
@@ -28,8 +28,8 @@
****************************************************************************/ ****************************************************************************/
#include "iwizard.h" #include "iwizard.h"
#include "icore.h" #include <coreplugin/icore.h>
#include "featureprovider.h" #include <coreplugin/featureprovider.h>
#include <extensionsystem/pluginmanager.h> #include <extensionsystem/pluginmanager.h>
@@ -27,11 +27,11 @@
** **
****************************************************************************/ ****************************************************************************/
#include "fileiconprovider.h"
#include "readonlyfilesdialog.h" #include "readonlyfilesdialog.h"
#include "ui_readonlyfilesdialog.h" #include "ui_readonlyfilesdialog.h"
#include <coreplugin/editormanager/editormanager.h> #include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/fileiconprovider.h>
#include <coreplugin/icore.h> #include <coreplugin/icore.h>
#include <coreplugin/idocument.h> #include <coreplugin/idocument.h>
#include <coreplugin/iversioncontrol.h> #include <coreplugin/iversioncontrol.h>
@@ -29,7 +29,7 @@
#include "settingsdialog.h" #include "settingsdialog.h"
#include "icore.h" #include <coreplugin/icore.h>
#include <extensionsystem/pluginmanager.h> #include <extensionsystem/pluginmanager.h>
#include <utils/hostosinfo.h> #include <utils/hostosinfo.h>
@@ -28,14 +28,14 @@
****************************************************************************/ ****************************************************************************/
#include "shortcutsettings.h" #include "shortcutsettings.h"
#include "actionmanager/actionmanager.h" #include <coreplugin/coreconstants.h>
#include "actionmanager/command.h" #include <coreplugin/documentmanager.h>
#include "command_p.h" #include <coreplugin/icore.h>
#include "commandsfile.h" #include <coreplugin/id.h>
#include "coreconstants.h" #include <coreplugin/actionmanager/actionmanager.h>
#include "documentmanager.h" #include <coreplugin/actionmanager/command.h>
#include "icore.h" #include <coreplugin/actionmanager/command_p.h>
#include "id.h" #include <coreplugin/actionmanager/commandsfile.h>
#include <QKeyEvent> #include <QKeyEvent>
#include <QFileDialog> #include <QFileDialog>
+6 -6
View File
@@ -29,17 +29,17 @@
#include "documentmanager.h" #include "documentmanager.h"
#include "editormanager.h"
#include "icore.h" #include "icore.h"
#include "ieditor.h"
#include "ieditorfactory.h"
#include "iexternaleditor.h"
#include "idocument.h" #include "idocument.h"
#include "mimedatabase.h" #include "mimedatabase.h"
#include "saveitemsdialog.h"
#include "coreconstants.h" #include "coreconstants.h"
#include "dialogs/readonlyfilesdialog.h" #include <coreplugin/dialogs/readonlyfilesdialog.h>
#include <coreplugin/dialogs/saveitemsdialog.h>
#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/editormanager/ieditor.h>
#include <coreplugin/editormanager/ieditorfactory.h>
#include <coreplugin/editormanager/iexternaleditor.h>
#include <utils/hostosinfo.h> #include <utils/hostosinfo.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
+2 -2
View File
@@ -28,14 +28,14 @@
****************************************************************************/ ****************************************************************************/
#include "editmode.h" #include "editmode.h"
#include "editormanager.h"
#include "coreconstants.h" #include "coreconstants.h"
#include "modemanager.h" #include "modemanager.h"
#include "minisplitter.h" #include "minisplitter.h"
#include "outputpane.h" #include "outputpane.h"
#include "navigationwidget.h" #include "navigationwidget.h"
#include "rightpane.h" #include "rightpane.h"
#include "ieditor.h" #include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/editormanager/ieditor.h>
#include <QLatin1String> #include <QLatin1String>
#include <QHBoxLayout> #include <QHBoxLayout>
@@ -29,7 +29,7 @@
#include "documentmodel.h" #include "documentmodel.h"
#include "ieditor.h" #include "ieditor.h"
#include "idocument.h" #include <coreplugin/idocument.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
@@ -29,34 +29,34 @@
#include "editormanager.h" #include "editormanager.h"
#include "editorview.h" #include "editorview.h"
#include "findplaceholder.h"
#include "openeditorswindow.h" #include "openeditorswindow.h"
#include "openeditorsview.h" #include "openeditorsview.h"
#include "documentmodel.h" #include "documentmodel.h"
#include "openwithdialog.h"
#include "outputpane.h"
#include "outputpanemanager.h"
#include "rightpane.h"
#include "documentmanager.h"
#include "icore.h"
#include "ieditor.h" #include "ieditor.h"
#include "iversioncontrol.h"
#include "mimedatabase.h"
#include "vcsmanager.h"
#include <coreplugin/actionmanager/actioncontainer.h> #include <coreplugin/actionmanager/actioncontainer.h>
#include <coreplugin/actionmanager/actionmanager.h> #include <coreplugin/actionmanager/actionmanager.h>
#include <coreplugin/coreconstants.h> #include <coreplugin/coreconstants.h>
#include <coreplugin/dialogs/openwithdialog.h>
#include <coreplugin/dialogs/readonlyfilesdialog.h>
#include <coreplugin/documentmanager.h>
#include <coreplugin/editormanager/ieditorfactory.h> #include <coreplugin/editormanager/ieditorfactory.h>
#include <coreplugin/editormanager/iexternaleditor.h> #include <coreplugin/editormanager/iexternaleditor.h>
#include <coreplugin/editortoolbar.h> #include <coreplugin/editortoolbar.h>
#include <coreplugin/fileutils.h> #include <coreplugin/fileutils.h>
#include <coreplugin/findplaceholder.h>
#include <coreplugin/icore.h>
#include <coreplugin/icorelistener.h> #include <coreplugin/icorelistener.h>
#include <coreplugin/infobar.h> #include <coreplugin/infobar.h>
#include <coreplugin/iversioncontrol.h>
#include <coreplugin/mimedatabase.h>
#include <coreplugin/modemanager.h> #include <coreplugin/modemanager.h>
#include <coreplugin/outputpane.h>
#include <coreplugin/outputpanemanager.h>
#include <coreplugin/rightpane.h>
#include <coreplugin/settingsdatabase.h> #include <coreplugin/settingsdatabase.h>
#include <coreplugin/variablemanager.h> #include <coreplugin/variablemanager.h>
#include <coreplugin/dialogs/readonlyfilesdialog.h> #include <coreplugin/vcsmanager.h>
#include <extensionsystem/pluginmanager.h> #include <extensionsystem/pluginmanager.h>
@@ -29,13 +29,13 @@
#include "editorview.h" #include "editorview.h"
#include "editormanager.h" #include "editormanager.h"
#include "icore.h"
#include "minisplitter.h"
#include "documentmodel.h" #include "documentmodel.h"
#include <coreplugin/editortoolbar.h> #include <coreplugin/editortoolbar.h>
#include <coreplugin/coreconstants.h> #include <coreplugin/coreconstants.h>
#include <coreplugin/icore.h>
#include <coreplugin/infobar.h> #include <coreplugin/infobar.h>
#include <coreplugin/minisplitter.h>
#include <coreplugin/editormanager/ieditor.h> #include <coreplugin/editormanager/ieditor.h>
#include <coreplugin/findplaceholder.h> #include <coreplugin/findplaceholder.h>
@@ -31,7 +31,7 @@
#include "documentmodel.h" #include "documentmodel.h"
#include "editormanager.h" #include "editormanager.h"
#include "editorview.h" #include "editorview.h"
#include "idocument.h" #include <coreplugin/idocument.h>
#include <utils/hostosinfo.h> #include <utils/hostosinfo.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
@@ -28,7 +28,7 @@
****************************************************************************/ ****************************************************************************/
#include "systemeditor.h" #include "systemeditor.h"
#include "id.h" #include <coreplugin/id.h>
#include <QStringList> #include <QStringList>
#include <QUrl> #include <QUrl>
+11 -11
View File
@@ -28,32 +28,21 @@
****************************************************************************/ ****************************************************************************/
#include "mainwindow.h" #include "mainwindow.h"
#include "actioncontainer.h"
#include "command.h"
#include "actionmanager.h"
#include "actionmanager_p.h"
#include "icore.h" #include "icore.h"
#include "coreconstants.h" #include "coreconstants.h"
#include "editormanager.h"
#include "toolsettings.h" #include "toolsettings.h"
#include "mimetypesettings.h" #include "mimetypesettings.h"
#include "fancytabwidget.h" #include "fancytabwidget.h"
#include "documentmanager.h" #include "documentmanager.h"
#include "generalsettings.h" #include "generalsettings.h"
#include "helpmanager.h" #include "helpmanager.h"
#include "ieditor.h"
#include "idocumentfactory.h" #include "idocumentfactory.h"
#include "messagemanager.h" #include "messagemanager.h"
#include "modemanager.h" #include "modemanager.h"
#include "mimedatabase.h" #include "mimedatabase.h"
#include "newdialog.h"
#include "outputpanemanager.h" #include "outputpanemanager.h"
#include "plugindialog.h" #include "plugindialog.h"
#include "progressmanager_p.h"
#include "progressview.h"
#include "shortcutsettings.h"
#include "vcsmanager.h" #include "vcsmanager.h"
#include "settingsdialog.h"
#include "variablemanager.h" #include "variablemanager.h"
#include "versiondialog.h" #include "versiondialog.h"
#include "statusbarmanager.h" #include "statusbarmanager.h"
@@ -71,8 +60,19 @@
#endif #endif
#include <app/app_version.h> #include <app/app_version.h>
#include <coreplugin/actionmanager/actioncontainer.h>
#include <coreplugin/actionmanager/actionmanager.h>
#include <coreplugin/actionmanager/actionmanager_p.h>
#include <coreplugin/actionmanager/command.h>
#include <coreplugin/dialogs/newdialog.h>
#include <coreplugin/dialogs/settingsdialog.h>
#include <coreplugin/dialogs/shortcutsettings.h>
#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/editormanager/ieditor.h>
#include <coreplugin/icorelistener.h> #include <coreplugin/icorelistener.h>
#include <coreplugin/inavigationwidgetfactory.h> #include <coreplugin/inavigationwidgetfactory.h>
#include <coreplugin/progressmanager/progressmanager_p.h>
#include <coreplugin/progressmanager/progressview.h>
#include <coreplugin/settingsdatabase.h> #include <coreplugin/settingsdatabase.h>
#include <utils/historycompleter.h> #include <utils/historycompleter.h>
#include <utils/hostosinfo.h> #include <utils/hostosinfo.h>
+3 -3
View File
@@ -28,14 +28,14 @@
****************************************************************************/ ****************************************************************************/
#include "coreconstants.h" #include "coreconstants.h"
#include "editormanager.h"
#include "icore.h" #include "icore.h"
#include "ieditorfactory.h"
#include "iexternaleditor.h"
#include "mimedatabase.h" #include "mimedatabase.h"
#include "mimetypemagicdialog.h" #include "mimetypemagicdialog.h"
#include "mimetypesettings.h" #include "mimetypesettings.h"
#include "ui_mimetypesettingspage.h" #include "ui_mimetypesettingspage.h"
#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/editormanager/ieditorfactory.h>
#include <coreplugin/editormanager/iexternaleditor.h>
#include <QAbstractTableModel> #include <QAbstractTableModel>
#include <QCoreApplication> #include <QCoreApplication>
+1 -1
View File
@@ -30,7 +30,7 @@
#ifndef MIMETYPESETTINGSPAGE_H #ifndef MIMETYPESETTINGSPAGE_H
#define MIMETYPESETTINGSPAGE_H #define MIMETYPESETTINGSPAGE_H
#include "ioptionspage.h" #include <coreplugin/dialogs/ioptionspage.h>
namespace Core { namespace Core {
namespace Internal { namespace Internal {
+1 -1
View File
@@ -28,7 +28,7 @@
****************************************************************************/ ****************************************************************************/
#include "textdocument.h" #include "textdocument.h"
#include "editormanager.h" #include <coreplugin/editormanager/editormanager.h>
#include <QDebug> #include <QDebug>
#include <QTextCodec> #include <QTextCodec>
+1 -1
View File
@@ -30,7 +30,7 @@
#ifndef TOOLSETTINGS_H #ifndef TOOLSETTINGS_H
#define TOOLSETTINGS_H #define TOOLSETTINGS_H
#include "ioptionspage.h" #include <coreplugin/dialogs/ioptionspage.h>
#include <QPointer> #include <QPointer>
+3 -3
View File
@@ -31,12 +31,12 @@
#include "iversioncontrol.h" #include "iversioncontrol.h"
#include "icore.h" #include "icore.h"
#include "documentmanager.h" #include "documentmanager.h"
#include "editormanager.h"
#include "ieditor.h"
#include "idocument.h" #include "idocument.h"
#include "infobar.h" #include "infobar.h"
#include "addtovcsdialog.h" #include <coreplugin/dialogs/addtovcsdialog.h>
#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/editormanager/ieditor.h>
#include <vcsbase/vcsbaseconstants.h> #include <vcsbase/vcsbaseconstants.h>
#include <extensionsystem/pluginmanager.h> #include <extensionsystem/pluginmanager.h>
+1 -1
View File
@@ -9,8 +9,8 @@ QtcTool {
submodules: ["gui", "network"] submodules: ["gui", "network"]
} }
Depends { name: "Core" } Depends { name: "Core" }
Depends { name: "CppTools" }
cpp.includePaths: ["../../"]
cpp.rpaths: [ cpp.rpaths: [
"$ORIGIN/../lib/qtcreator", "$ORIGIN/../lib/qtcreator",
"$ORIGIN/../lib/qtcreator/plugins", "$ORIGIN/../lib/qtcreator/plugins",
+1 -1
View File
@@ -216,7 +216,7 @@ p, li { white-space: pre-wrap; }
<customwidget> <customwidget>
<class>CodePaster::ColumnIndicatorTextEdit</class> <class>CodePaster::ColumnIndicatorTextEdit</class>
<extends>QTextEdit</extends> <extends>QTextEdit</extends>
<header>columnindicatortextedit.h</header> <header location="global">cpaster/columnindicatortextedit.h</header>
</customwidget> </customwidget>
</customwidgets> </customwidgets>
<tabstops> <tabstops>
-2
View File
@@ -14,8 +14,6 @@ QtcPlugin {
Depends { name: "TextEditor" } Depends { name: "TextEditor" }
Depends { name: "ProjectExplorer" } Depends { name: "ProjectExplorer" }
cpp.includePaths: base.concat("../../libs/3rdparty")
files: [ files: [
"cppautocompleter.cpp", "cppautocompleter.cpp",
"cppautocompleter.h", "cppautocompleter.h",
-1
View File
@@ -10,4 +10,3 @@ SOURCES += $$PWD/cdbengine.cpp \
FORMS += cdb/cdboptionspagewidget.ui FORMS += cdb/cdboptionspagewidget.ui
INCLUDEPATH*=$$PWD
+20 -19
View File
@@ -29,28 +29,29 @@
#include "cdbengine.h" #include "cdbengine.h"
#include "breakhandler.h"
#include "bytearrayinputstream.h" #include "bytearrayinputstream.h"
#include "cdboptionspage.h" #include "cdboptionspage.h"
#include "cdbparsehelpers.h" #include "cdbparsehelpers.h"
#include "debuggeractions.h"
#include "debuggercore.h" #include <debugger/breakhandler.h>
#include "debuggerprotocol.h" #include <debugger/debuggeractions.h>
#include "debuggermainwindow.h" #include <debugger/debuggercore.h>
#include "debuggerstartparameters.h" #include <debugger/debuggerprotocol.h>
#include "debuggertooltipmanager.h" #include <debugger/debuggermainwindow.h>
#include "disassembleragent.h" #include <debugger/debuggerstartparameters.h>
#include "disassemblerlines.h" #include <debugger/debuggertooltipmanager.h>
#include "memoryagent.h" #include <debugger/disassembleragent.h>
#include "moduleshandler.h" #include <debugger/disassemblerlines.h>
#include "registerhandler.h" #include <debugger/memoryagent.h>
#include "stackhandler.h" #include <debugger/moduleshandler.h>
#include "threadshandler.h" #include <debugger/registerhandler.h>
#include "watchhandler.h" #include <debugger/stackhandler.h>
#include "shared/cdbsymbolpathlisteditor.h" #include <debugger/threadshandler.h>
#include "shared/hostutils.h" #include <debugger/watchhandler.h>
#include "procinterrupt.h" #include <debugger/procinterrupt.h>
#include "sourceutils.h" #include <debugger/sourceutils.h>
#include <debugger/shared/cdbsymbolpathlisteditor.h>
#include <debugger/shared/hostutils.h>
#include <coreplugin/icore.h> #include <coreplugin/icore.h>
#include <projectexplorer/taskhub.h> #include <projectexplorer/taskhub.h>
+1 -1
View File
@@ -30,7 +30,7 @@
#ifndef DEBUGGER_CDBENGINE_H #ifndef DEBUGGER_CDBENGINE_H
#define DEBUGGER_CDBENGINE_H #define DEBUGGER_CDBENGINE_H
#include "debuggerengine.h" #include <debugger/debuggerengine.h>
#include <QSharedPointer> #include <QSharedPointer>
#include <QProcess> #include <QProcess>
+5 -5
View File
@@ -28,12 +28,12 @@
****************************************************************************/ ****************************************************************************/
#include "cdboptionspage.h" #include "cdboptionspage.h"
#include "commonoptionspage.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerinternalconstants.h"
#include "cdbengine.h" #include "cdbengine.h"
#include "cdbsymbolpathlisteditor.h" #include <debugger/commonoptionspage.h>
#include <debugger/debuggeractions.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggerinternalconstants.h>
#include <debugger/shared/cdbsymbolpathlisteditor.h>
#include <coreplugin/icore.h> #include <coreplugin/icore.h>
+5 -4
View File
@@ -30,10 +30,11 @@
#include "cdbparsehelpers.h" #include "cdbparsehelpers.h"
#include "bytearrayinputstream.h" #include "bytearrayinputstream.h"
#include "debuggerprotocol.h"
#include "disassemblerlines.h" #include <debugger/debuggerprotocol.h>
#include "shared/hostutils.h" #include <debugger/disassemblerlines.h>
#include "threaddata.h" #include <debugger/shared/hostutils.h>
#include <debugger/threaddata.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
+1 -1
View File
@@ -30,7 +30,7 @@
#ifndef CDBPARSEHELPERS_H #ifndef CDBPARSEHELPERS_H
#define CDBPARSEHELPERS_H #define CDBPARSEHELPERS_H
#include "breakpoint.h" #include <debugger/breakpoint.h>
#include <QPair> #include <QPair>
+1 -7
View File
@@ -18,12 +18,7 @@ QtcPlugin {
Depends { name: "QtcSsh" } Depends { name: "QtcSsh" }
Depends { name: "Utils" } Depends { name: "Utils" }
cpp.includePaths: base.concat([ cpp.includePaths: base.concat(["../../shared/registryaccess"])
"shared",
lldblib.prefix,
"../../shared/json",
"../../shared/registryaccess"
])
pluginRecommends: [ pluginRecommends: [
"CppEditor" "CppEditor"
@@ -283,6 +278,5 @@ QtcPlugin {
Export { Export {
Depends { name: "cpp" } Depends { name: "cpp" }
Depends { name: "QtcSsh" } Depends { name: "QtcSsh" }
cpp.includePaths: ["."]
} }
} }
+1 -1
View File
@@ -40,12 +40,12 @@
#include "disassembleragent.h" #include "disassembleragent.h"
#include "memoryagent.h" #include "memoryagent.h"
#include "moduleshandler.h" #include "moduleshandler.h"
#include "peutils.h"
#include "registerhandler.h" #include "registerhandler.h"
#include "sourcefileshandler.h" #include "sourcefileshandler.h"
#include "stackhandler.h" #include "stackhandler.h"
#include "threadshandler.h" #include "threadshandler.h"
#include "watchhandler.h" #include "watchhandler.h"
#include <debugger/shared/peutils.h>
#include <coreplugin/editormanager/editormanager.h> #include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/editormanager/ieditor.h> #include <coreplugin/editormanager/ieditor.h>
+1 -1
View File
@@ -61,8 +61,8 @@
#include "debuggertooltipmanager.h" #include "debuggertooltipmanager.h"
#include "localsandexpressionswindow.h" #include "localsandexpressionswindow.h"
#include "loadcoredialog.h" #include "loadcoredialog.h"
#include "hostutils.h"
#include "sourceutils.h" #include "sourceutils.h"
#include <debugger/shared/hostutils.h>
#include "snapshothandler.h" #include "snapshothandler.h"
#include "threadshandler.h" #include "threadshandler.h"
+1 -1
View File
@@ -42,7 +42,7 @@
#include "breakhandler.h" #include "breakhandler.h"
#ifdef Q_OS_WIN #ifdef Q_OS_WIN
# include "peutils.h" # include "shared/peutils.h"
# include <utils/winutils.h> # include <utils/winutils.h>
#endif #endif
@@ -29,11 +29,11 @@
#include "abstractplaingdbadapter.h" #include "abstractplaingdbadapter.h"
#include "debuggeractions.h" #include <debugger/debuggeractions.h>
#include "debuggercore.h" #include <debugger/debuggercore.h>
#include "debuggerprotocol.h" #include <debugger/debuggerprotocol.h>
#include "debuggerstartparameters.h" #include <debugger/debuggerstartparameters.h>
#include "debuggerstringutils.h" #include <debugger/debuggerstringutils.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
@@ -29,9 +29,9 @@
#include "attachgdbadapter.h" #include "attachgdbadapter.h"
#include "debuggerprotocol.h" #include <debugger/debuggerprotocol.h>
#include "debuggerstringutils.h" #include <debugger/debuggerstringutils.h>
#include "debuggerstartparameters.h" #include <debugger/debuggerstartparameters.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
@@ -29,13 +29,13 @@
#include "gdbengine.h" #include "gdbengine.h"
#include "debuggeractions.h" #include <debugger/debuggeractions.h>
#include "debuggercore.h" #include <debugger/debuggercore.h>
#include "debuggerprotocol.h" #include <debugger/debuggerprotocol.h>
#include "debuggerstartparameters.h" #include <debugger/debuggerstartparameters.h>
#include "debuggerstringutils.h" #include <debugger/debuggerstringutils.h>
#include "sourceutils.h" #include <debugger/sourceutils.h>
#include "stackhandler.h" #include <debugger/stackhandler.h>
#include <coreplugin/icore.h> #include <coreplugin/icore.h>
#include <projectexplorer/projectexplorerconstants.h> #include <projectexplorer/projectexplorerconstants.h>
+4 -4
View File
@@ -29,10 +29,10 @@
#include "coregdbadapter.h" #include "coregdbadapter.h"
#include "debuggercore.h" #include <debugger/debuggercore.h>
#include "debuggerprotocol.h" #include <debugger/debuggerprotocol.h>
#include "debuggerstartparameters.h" #include <debugger/debuggerstartparameters.h>
#include "debuggerstringutils.h" #include <debugger/debuggerstringutils.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
+26 -24
View File
@@ -29,10 +29,6 @@
#include "gdbengine.h" #include "gdbengine.h"
#include "debuggerstartparameters.h"
#include "debuggerinternalconstants.h"
#include "debuggerruncontrolfactory.h"
#include "disassemblerlines.h"
#include "attachgdbadapter.h" #include "attachgdbadapter.h"
#include "coregdbadapter.h" #include "coregdbadapter.h"
#include "localplaingdbadapter.h" #include "localplaingdbadapter.h"
@@ -40,28 +36,34 @@
#include "remotegdbserveradapter.h" #include "remotegdbserveradapter.h"
#include "remoteplaingdbadapter.h" #include "remoteplaingdbadapter.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggermainwindow.h"
#include "debuggerplugin.h"
#include "debuggerprotocol.h"
#include "debuggerstringutils.h"
#include "debuggertooltipmanager.h"
#include "disassembleragent.h"
#include "gdboptionspage.h" #include "gdboptionspage.h"
#include "memoryagent.h"
#include "sourceutils.h"
#include "breakhandler.h" #include <debugger/debuggerstartparameters.h>
#include "moduleshandler.h" #include <debugger/debuggerinternalconstants.h>
#include "registerhandler.h" #include <debugger/debuggerruncontrolfactory.h>
#include "sourcefileshandler.h" #include <debugger/disassemblerlines.h>
#include "stackhandler.h"
#include "threadshandler.h" #include <debugger/debuggeractions.h>
#include "debuggersourcepathmappingwidget.h" #include <debugger/debuggercore.h>
#include "hostutils.h" #include <debugger/debuggermainwindow.h>
#include "logwindow.h" #include <debugger/debuggerplugin.h>
#include "procinterrupt.h" #include <debugger/debuggerprotocol.h>
#include <debugger/debuggerstringutils.h>
#include <debugger/debuggertooltipmanager.h>
#include <debugger/disassembleragent.h>
#include <debugger/memoryagent.h>
#include <debugger/sourceutils.h>
#include <debugger/breakhandler.h>
#include <debugger/moduleshandler.h>
#include <debugger/registerhandler.h>
#include <debugger/sourcefileshandler.h>
#include <debugger/stackhandler.h>
#include <debugger/threadshandler.h>
#include <debugger/debuggersourcepathmappingwidget.h>
#include <debugger/logwindow.h>
#include <debugger/procinterrupt.h>
#include <debugger/shared/hostutils.h>
#include <coreplugin/icore.h> #include <coreplugin/icore.h>
#include <projectexplorer/taskhub.h> #include <projectexplorer/taskhub.h>
+3 -3
View File
@@ -30,10 +30,10 @@
#ifndef DEBUGGER_GDBENGINE_H #ifndef DEBUGGER_GDBENGINE_H
#define DEBUGGER_GDBENGINE_H #define DEBUGGER_GDBENGINE_H
#include "debuggerengine.h" #include <debugger/debuggerengine.h>
#include "watchhandler.h" #include <debugger/watchhandler.h>
#include "watchutils.h" #include <debugger/watchutils.h>
#include <coreplugin/id.h> #include <coreplugin/id.h>
+4 -4
View File
@@ -28,10 +28,10 @@
****************************************************************************/ ****************************************************************************/
#include "gdboptionspage.h" #include "gdboptionspage.h"
#include "commonoptionspage.h" #include <debugger/commonoptionspage.h>
#include "debuggeractions.h" #include <debugger/debuggeractions.h>
#include "debuggercore.h" #include <debugger/debuggercore.h>
#include "debuggerinternalconstants.h" #include <debugger/debuggerinternalconstants.h>
#include <coreplugin/icore.h> #include <coreplugin/icore.h>
+2 -2
View File
@@ -29,8 +29,8 @@
#include "localgdbprocess.h" #include "localgdbprocess.h"
#include "procinterrupt.h" #include <debugger/procinterrupt.h>
#include "debuggerconstants.h" #include <debugger/debuggerconstants.h>
#include <utils/qtcprocess.h> #include <utils/qtcprocess.h>
@@ -29,8 +29,8 @@
#include "localplaingdbadapter.h" #include "localplaingdbadapter.h"
#include "debuggerstartparameters.h" #include <debugger/debuggerstartparameters.h>
#include "debuggerstringutils.h" #include <debugger/debuggerstringutils.h>
#include <utils/hostosinfo.h> #include <utils/hostosinfo.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
@@ -32,7 +32,7 @@
#include "abstractplaingdbadapter.h" #include "abstractplaingdbadapter.h"
#include "localgdbprocess.h" #include "localgdbprocess.h"
#include <outputcollector.h> #include <debugger/outputcollector.h>
namespace Debugger { namespace Debugger {
namespace Internal { namespace Internal {
+6 -6
View File
@@ -29,13 +29,13 @@
#include "gdbengine.h" #include "gdbengine.h"
#include "debuggerprotocol.h" #include <debugger/debuggerprotocol.h>
#include "debuggeractions.h" #include <debugger/debuggeractions.h>
#include "debuggercore.h" #include <debugger/debuggercore.h>
#include "debuggerstringutils.h" #include <debugger/debuggerstringutils.h>
#include "debuggertooltipmanager.h" #include <debugger/debuggertooltipmanager.h>
#include "stackhandler.h" #include <debugger/stackhandler.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
@@ -29,11 +29,11 @@
#include "remotegdbserveradapter.h" #include "remotegdbserveradapter.h"
#include "debuggeractions.h" #include <debugger/debuggeractions.h>
#include "debuggercore.h" #include <debugger/debuggercore.h>
#include "debuggerprotocol.h" #include <debugger/debuggerprotocol.h>
#include "debuggerstartparameters.h" #include <debugger/debuggerstartparameters.h>
#include "debuggerstringutils.h" #include <debugger/debuggerstringutils.h>
#include <utils/hostosinfo.h> #include <utils/hostosinfo.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
@@ -28,7 +28,7 @@
****************************************************************************/ ****************************************************************************/
#include "remoteplaingdbadapter.h" #include "remoteplaingdbadapter.h"
#include "debuggerstartparameters.h" #include <debugger/debuggerstartparameters.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
@@ -29,11 +29,11 @@
#include "startgdbserverdialog.h" #include "startgdbserverdialog.h"
#include "debuggermainwindow.h" #include <debugger/debuggermainwindow.h>
#include "debuggerplugin.h" #include <debugger/debuggerplugin.h>
#include "debuggerkitinformation.h" #include <debugger/debuggerkitinformation.h>
#include "debuggerruncontrolfactory.h" #include <debugger/debuggerruncontrolfactory.h>
#include "debuggerstartparameters.h" #include <debugger/debuggerstartparameters.h>
#include <projectexplorer/kitchooser.h> #include <projectexplorer/kitchooser.h>
#include <projectexplorer/devicesupport/deviceprocesslist.h> #include <projectexplorer/devicesupport/deviceprocesslist.h>
+5 -5
View File
@@ -29,11 +29,11 @@
#include "termgdbadapter.h" #include "termgdbadapter.h"
#include "debuggercore.h" #include <debugger/debuggercore.h>
#include "debuggerprotocol.h" #include <debugger/debuggerprotocol.h>
#include "debuggerstartparameters.h" #include <debugger/debuggerstartparameters.h>
#include "debuggerstringutils.h" #include <debugger/debuggerstringutils.h>
#include "shared/hostutils.h" #include <debugger/shared/hostutils.h>
#include <utils/hostosinfo.h> #include <utils/hostosinfo.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
-2
View File
@@ -1,5 +1,3 @@
HEADERS += $$PWD/lldbengine.h HEADERS += $$PWD/lldbengine.h
SOURCES += $$PWD/lldbengine.cpp SOURCES += $$PWD/lldbengine.cpp
INCLUDEPATH *= $$PWD
+17 -17
View File
@@ -29,24 +29,24 @@
#include "lldbengine.h" #include "lldbengine.h"
#include "debuggeractions.h" #include <debugger/debuggeractions.h>
#include "debuggercore.h" #include <debugger/debuggercore.h>
#include "debuggerdialogs.h" #include <debugger/debuggerdialogs.h>
#include "debuggerplugin.h" #include <debugger/debuggerplugin.h>
#include "debuggerprotocol.h" #include <debugger/debuggerprotocol.h>
#include "debuggerstartparameters.h" #include <debugger/debuggerstartparameters.h>
#include "debuggerstringutils.h" #include <debugger/debuggerstringutils.h>
#include "debuggertooltipmanager.h" #include <debugger/debuggertooltipmanager.h>
#include "breakhandler.h" #include <debugger/breakhandler.h>
#include "disassemblerlines.h" #include <debugger/disassemblerlines.h>
#include "moduleshandler.h" #include <debugger/moduleshandler.h>
#include "registerhandler.h" #include <debugger/registerhandler.h>
#include "stackhandler.h" #include <debugger/stackhandler.h>
#include "sourceutils.h" #include <debugger/sourceutils.h>
#include "threadshandler.h" #include <debugger/threadshandler.h>
#include "watchhandler.h" #include <debugger/watchhandler.h>
#include "watchutils.h" #include <debugger/watchutils.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
#include <utils/savedaction.h> #include <utils/savedaction.h>
+3 -3
View File
@@ -30,9 +30,9 @@
#ifndef DEBUGGER_LLDBENGINE #ifndef DEBUGGER_LLDBENGINE
#define DEBUGGER_LLDBENGINE #define DEBUGGER_LLDBENGINE
#include "debuggerengine.h" #include <debugger/debuggerengine.h>
#include "disassembleragent.h" #include <debugger/disassembleragent.h>
#include "memoryagent.h" #include <debugger/memoryagent.h>
#include <QPointer> #include <QPointer>
#include <QProcess> #include <QProcess>
@@ -30,11 +30,11 @@
#ifndef IPCENGINEGUEST_H #ifndef IPCENGINEGUEST_H
#define IPCENGINEGUEST_H #define IPCENGINEGUEST_H
#include "breakhandler.h" #include <debugger/breakhandler.h>
#include "debuggerengine.h" #include <debugger/debuggerengine.h>
#include "disassemblerlines.h" #include <debugger/disassemblerlines.h>
#include "stackhandler.h" #include <debugger/stackhandler.h>
#include "threadshandler.h" #include <debugger/threadshandler.h>
#include <QQueue> #include <QQueue>
#include <QThread> #include <QThread>
+14 -14
View File
@@ -30,20 +30,20 @@
#include "ipcenginehost.h" #include "ipcenginehost.h"
#include "ipcengineguest.h" #include "ipcengineguest.h"
#include "debuggerstartparameters.h" #include <debugger/debuggerstartparameters.h>
#include "breakhandler.h" #include <debugger/breakhandler.h>
#include "breakpoint.h" #include <debugger/breakpoint.h>
#include "disassemblerlines.h" #include <debugger/disassemblerlines.h>
#include "moduleshandler.h" #include <debugger/moduleshandler.h>
#include "registerhandler.h" #include <debugger/registerhandler.h>
#include "stackhandler.h" #include <debugger/stackhandler.h>
#include "watchhandler.h" #include <debugger/watchhandler.h>
#include "watchutils.h" #include <debugger/watchutils.h>
#include "threadshandler.h" #include <debugger/threadshandler.h>
#include "disassembleragent.h" #include <debugger/disassembleragent.h>
#include "memoryagent.h" #include <debugger/memoryagent.h>
#include "debuggerstreamops.h" #include <debugger/debuggerstreamops.h>
#include "debuggercore.h" #include <debugger/debuggercore.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
+5 -5
View File
@@ -30,11 +30,11 @@
#ifndef DEBUGGER_IPCENGINE_HOST_H #ifndef DEBUGGER_IPCENGINE_HOST_H
#define DEBUGGER_IPCENGINE_HOST_H #define DEBUGGER_IPCENGINE_HOST_H
#include "debuggerengine.h" #include <debugger/debuggerengine.h>
#include "threadshandler.h" #include <debugger/threadshandler.h>
#include "stackhandler.h" #include <debugger/stackhandler.h>
#include "breakhandler.h" #include <debugger/breakhandler.h>
#include "sourceagent.h" #include <debugger/sourceagent.h>
#include <QQueue> #include <QQueue>
#include <QVariant> #include <QVariant>
+16 -16
View File
@@ -29,23 +29,23 @@
#include "lldbenginehost.h" #include "lldbenginehost.h"
#include "debuggerstartparameters.h" #include <debugger/debuggerstartparameters.h>
#include "debuggeractions.h" #include <debugger/debuggeractions.h>
#include "debuggerconstants.h" #include <debugger/debuggerconstants.h>
#include "debuggerdialogs.h" #include <debugger/debuggerdialogs.h>
#include "debuggerplugin.h" #include <debugger/debuggerplugin.h>
#include "debuggerstringutils.h" #include <debugger/debuggerstringutils.h>
#include "breakhandler.h" #include <debugger/breakhandler.h>
#include "breakpoint.h" #include <debugger/breakpoint.h>
#include "moduleshandler.h" #include <debugger/moduleshandler.h>
#include "registerhandler.h" #include <debugger/registerhandler.h>
#include "stackhandler.h" #include <debugger/stackhandler.h>
#include "watchhandler.h" #include <debugger/watchhandler.h>
#include "watchutils.h" #include <debugger/watchutils.h>
#include "threadshandler.h" #include <debugger/threadshandler.h>
#include "disassembleragent.h" #include <debugger/disassembleragent.h>
#include "memoryagent.h" #include <debugger/memoryagent.h>
#include <coreplugin/icore.h> #include <coreplugin/icore.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
@@ -28,8 +28,8 @@
****************************************************************************/ ****************************************************************************/
#include "lldboptionspage.h" #include "lldboptionspage.h"
#include "debuggerconstants.h" #include <debugger/debuggerconstants.h>
#include "debuggerinternalconstants.h" #include <debugger/debuggerinternalconstants.h>
#include <coreplugin/icore.h> #include <coreplugin/icore.h>
+15 -15
View File
@@ -29,22 +29,22 @@
#include "pdbengine.h" #include "pdbengine.h"
#include "debuggeractions.h" #include <debugger/debuggeractions.h>
#include "debuggercore.h" #include <debugger/debuggercore.h>
#include "debuggerdialogs.h" #include <debugger/debuggerdialogs.h>
#include "debuggerplugin.h" #include <debugger/debuggerplugin.h>
#include "debuggerprotocol.h" #include <debugger/debuggerprotocol.h>
#include "debuggerstartparameters.h" #include <debugger/debuggerstartparameters.h>
#include "debuggerstringutils.h" #include <debugger/debuggerstringutils.h>
#include "debuggertooltipmanager.h" #include <debugger/debuggertooltipmanager.h>
#include "breakhandler.h" #include <debugger/breakhandler.h>
#include "moduleshandler.h" #include <debugger/moduleshandler.h>
#include "registerhandler.h" #include <debugger/registerhandler.h>
#include "stackhandler.h" #include <debugger/stackhandler.h>
#include "sourceutils.h" #include <debugger/sourceutils.h>
#include "watchhandler.h" #include <debugger/watchhandler.h>
#include "watchutils.h" #include <debugger/watchutils.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
+1 -1
View File
@@ -30,7 +30,7 @@
#ifndef DEBUGGER_PDBENGINE_H #ifndef DEBUGGER_PDBENGINE_H
#define DEBUGGER_PDBENGINE_H #define DEBUGGER_PDBENGINE_H
#include "debuggerengine.h" #include <debugger/debuggerengine.h>
#include <QProcess> #include <QProcess>
#include <QQueue> #include <QQueue>
@@ -30,7 +30,7 @@
#ifndef BASEQMLDEBUGGERCLIENT_H #ifndef BASEQMLDEBUGGERCLIENT_H
#define BASEQMLDEBUGGERCLIENT_H #define BASEQMLDEBUGGERCLIENT_H
#include "debuggerengine.h" #include <debugger/debuggerengine.h>
#include <qmldebug/qmldebugclient.h> #include <qmldebug/qmldebugclient.h>
namespace Debugger { namespace Debugger {
+1 -1
View File
@@ -29,7 +29,7 @@
#include "qmladapter.h" #include "qmladapter.h"
#include "debuggerstringutils.h" #include <debugger/debuggerstringutils.h>
#include "qmlengine.h" #include "qmlengine.h"
#include "qmlv8debuggerclient.h" #include "qmlv8debuggerclient.h"
#include "qscriptdebuggerclient.h" #include "qscriptdebuggerclient.h"
+4 -4
View File
@@ -28,11 +28,11 @@
****************************************************************************/ ****************************************************************************/
#include "qmlcppengine.h" #include "qmlcppengine.h"
#include "debuggerruncontrolfactory.h"
#include "debuggerstartparameters.h"
#include "stackhandler.h"
#include "qmlengine.h" #include "qmlengine.h"
#include "watchhandler.h" #include <debugger/debuggerruncontrolfactory.h>
#include <debugger/debuggerstartparameters.h>
#include <debugger/stackhandler.h>
#include <debugger/watchhandler.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
#include <texteditor/itexteditor.h> #include <texteditor/itexteditor.h>
+1 -1
View File
@@ -30,7 +30,7 @@
#ifndef QMLCPPENGINE_H #ifndef QMLCPPENGINE_H
#define QMLCPPENGINE_H #define QMLCPPENGINE_H
#include "debuggerengine.h" #include <debugger/debuggerengine.h>
namespace Debugger { namespace Debugger {
namespace Internal { namespace Internal {
+14 -14
View File
@@ -31,21 +31,21 @@
#include "baseqmldebuggerclient.h" #include "baseqmldebuggerclient.h"
#include "qmlinspectoragent.h" #include "qmlinspectoragent.h"
#include "debuggerstartparameters.h" #include <debugger/debuggerstartparameters.h>
#include "debuggeractions.h" #include <debugger/debuggeractions.h>
#include "debuggercore.h" #include <debugger/debuggercore.h>
#include "debuggerinternalconstants.h" #include <debugger/debuggerinternalconstants.h>
#include "debuggermainwindow.h" #include <debugger/debuggermainwindow.h>
#include "debuggerrunner.h" #include <debugger/debuggerrunner.h>
#include "debuggerstringutils.h" #include <debugger/debuggerstringutils.h>
#include "debuggertooltipmanager.h" #include <debugger/debuggertooltipmanager.h>
#include "localsandexpressionswindow.h" #include <debugger/localsandexpressionswindow.h>
#include "watchwindow.h" #include <debugger/watchwindow.h>
#include "breakhandler.h" #include <debugger/breakhandler.h>
#include "stackhandler.h" #include <debugger/stackhandler.h>
#include "watchhandler.h" #include <debugger/watchhandler.h>
#include "sourcefileshandler.h" #include <debugger/sourcefileshandler.h>
#include <qmljseditor/qmljseditorconstants.h> #include <qmljseditor/qmljseditorconstants.h>
#include <qmljs/parser/qmljsast_p.h> #include <qmljs/parser/qmljsast_p.h>
#include <qmljs/qmljsmodelmanagerinterface.h> #include <qmljs/qmljsmodelmanagerinterface.h>
+1 -1
View File
@@ -30,10 +30,10 @@
#ifndef QMLENGINE_H #ifndef QMLENGINE_H
#define QMLENGINE_H #define QMLENGINE_H
#include "debuggerengine.h"
#include "interactiveinterpreter.h" #include "interactiveinterpreter.h"
#include "qmladapter.h" #include "qmladapter.h"
#include "qmlinspectoradapter.h" #include "qmlinspectoradapter.h"
#include <debugger/debuggerengine.h>
#include <projectexplorer/applicationlauncher.h> #include <projectexplorer/applicationlauncher.h>
#include <qmldebug/qdebugmessageclient.h> #include <qmldebug/qdebugmessageclient.h>
@@ -29,13 +29,13 @@
#include "qmlinspectoradapter.h" #include "qmlinspectoradapter.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerstringutils.h"
#include "qmladapter.h" #include "qmladapter.h"
#include "debuggerengine.h"
#include "qmlinspectoragent.h" #include "qmlinspectoragent.h"
#include "qmllivetextpreview.h" #include "qmllivetextpreview.h"
#include <debugger/debuggeractions.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggerstringutils.h>
#include <debugger/debuggerengine.h>
#include <coreplugin/actionmanager/actionmanager.h> #include <coreplugin/actionmanager/actionmanager.h>
#include <coreplugin/icore.h> #include <coreplugin/icore.h>
@@ -30,7 +30,7 @@
#ifndef QMLINSPECTORADAPTER_H #ifndef QMLINSPECTORADAPTER_H
#define QMLINSPECTORADAPTER_H #define QMLINSPECTORADAPTER_H
#include "debuggerconstants.h" #include <debugger/debuggerconstants.h>
#include <coreplugin/icontext.h> #include <coreplugin/icontext.h>
#include <qmldebug/qmldebugclient.h> #include <qmldebug/qmldebugclient.h>
@@ -29,11 +29,11 @@
#include "qmlinspectoragent.h" #include "qmlinspectoragent.h"
#include "debuggeractions.h" #include <debugger/debuggeractions.h>
#include "debuggercore.h" #include <debugger/debuggercore.h>
#include "debuggerengine.h" #include <debugger/debuggerengine.h>
#include "debuggerstringutils.h" #include <debugger/debuggerstringutils.h>
#include "watchhandler.h" #include <debugger/watchhandler.h>
#include <qmldebug/qmldebugconstants.h> #include <qmldebug/qmldebugconstants.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
@@ -29,14 +29,14 @@
#include "qmlv8debuggerclient.h" #include "qmlv8debuggerclient.h"
#include "qmlv8debuggerclientconstants.h" #include "qmlv8debuggerclientconstants.h"
#include "debuggerstringutils.h"
#include "watchhandler.h"
#include "breakhandler.h"
#include "qmlengine.h" #include "qmlengine.h"
#include "stackhandler.h"
#include "debuggercore.h" #include <debugger/debuggerstringutils.h>
#include "debuggeractions.h" #include <debugger/watchhandler.h>
#include <debugger/breakhandler.h>
#include <debugger/stackhandler.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggeractions.h>
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
#include <texteditor/basetexteditor.h> #include <texteditor/basetexteditor.h>
@@ -28,12 +28,12 @@
****************************************************************************/ ****************************************************************************/
#include "qscriptdebuggerclient.h" #include "qscriptdebuggerclient.h"
#include "watchhandler.h"
#include "breakhandler.h"
#include "qmlengine.h" #include "qmlengine.h"
#include "stackhandler.h" #include <debugger/watchhandler.h>
#include "debuggercore.h" #include <debugger/breakhandler.h>
#include "debuggerstringutils.h" #include <debugger/stackhandler.h>
#include <debugger/debuggercore.h>
#include <debugger/debuggerstringutils.h>
#include <QFileInfo> #include <QFileInfo>
#include <QMessageBox> #include <QMessageBox>
@@ -34,7 +34,7 @@
#include <utils/pathchooser.h> #include <utils/pathchooser.h>
#include <utils/checkablemessagebox.h> #include <utils/checkablemessagebox.h>
#include <symbolpathsdialog.h> #include "symbolpathsdialog.h"
#include <QCheckBox> #include <QCheckBox>
#include <QDir> #include <QDir>
-2
View File
@@ -10,8 +10,6 @@ HEADERS += $$PWD/backtrace.h \
$$PWD/peutils.h \ $$PWD/peutils.h \
shared/symbolpathsdialog.h shared/symbolpathsdialog.h
INCLUDEPATH += $$PWD
win32-msvc* { win32-msvc* {
# For the Privilege manipulation functions in sharedlibraryinjector.cpp. # For the Privilege manipulation functions in sharedlibraryinjector.cpp.
LIBS += -ladvapi32 LIBS += -ladvapi32
-2
View File
@@ -1,5 +1,3 @@
INCLUDEPATH+=$$PWD
DEFINES+=CPP_ENABLED DEFINES+=CPP_ENABLED
HEADERS+=$$PWD/formclasswizardpage.h \ HEADERS+=$$PWD/formclasswizardpage.h \
+1 -1
View File
@@ -28,7 +28,7 @@
****************************************************************************/ ****************************************************************************/
#include "cppsettingspage.h" #include "cppsettingspage.h"
#include "designerconstants.h" #include <designer/designerconstants.h>
#include <QCoreApplication> #include <QCoreApplication>
#include <QTextStream> #include <QTextStream>
+1 -1
View File
@@ -31,7 +31,7 @@
#define CPPSETTINGSPAGE_H #define CPPSETTINGSPAGE_H
#include "ui_cppsettingspagewidget.h" #include "ui_cppsettingspagewidget.h"
#include "qtdesignerformclasscodegenerator.h" #include <designer/qtdesignerformclasscodegenerator.h>
#include <coreplugin/dialogs/ioptionspage.h> #include <coreplugin/dialogs/ioptionspage.h>

Some files were not shown because too many files have changed in this diff Show More