aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/projectconfigurationaspects.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2019-11-22 14:50:15 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2019-11-25 09:46:41 +0000
commit72ca1796337fa0f7f0214632efba20682918a6e7 (patch)
treeffbf933d327bad6b0a623ec153116f8673b54458 /src/plugins/projectexplorer/projectconfigurationaspects.h
parent5795dc24c70ea10a622a2a98d4778aad405984af (diff)
QtSupport: Add a QmlDebuggingAspect
... and make use of it in the qbs build configuration. We cannot use it for qmake yet, because the build config there still has a custom, non-aspectified widget. Change-Id: Iacf902a2d9384d0074b10fdc98e082fa906fb6d6 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/projectconfigurationaspects.h')
-rw-r--r--src/plugins/projectexplorer/projectconfigurationaspects.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/plugins/projectexplorer/projectconfigurationaspects.h b/src/plugins/projectexplorer/projectconfigurationaspects.h
index 90bdcbc2bbb..540ae635e8b 100644
--- a/src/plugins/projectexplorer/projectconfigurationaspects.h
+++ b/src/plugins/projectexplorer/projectconfigurationaspects.h
@@ -33,6 +33,10 @@
#include <memory>
+QT_BEGIN_NAMESPACE
+class QCheckBox;
+QT_END_NAMESPACE
+
namespace ProjectExplorer {
namespace Internal {
@@ -64,6 +68,9 @@ public:
void fromMap(const QVariantMap &map) override;
void toMap(QVariantMap &map) const override;
+protected:
+ QCheckBox *checkBox() const;
+
private:
std::unique_ptr<Internal::BaseBoolAspectPrivate> d;
};