aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/projectconfigurationaspects.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2018-09-17 15:56:14 +0200
committerhjk <hjk@qt.io>2018-09-19 13:46:26 +0000
commit8dfa977f2fc83ed24358c654ed90936bb066b58a (patch)
tree85747188904ea77ffbd4b50fc7036ac21fac41c9 /src/plugins/projectexplorer/projectconfigurationaspects.h
parentd05e906bac963fe48ce3dbceaf65c953ce12e6c0 (diff)
ProjectExplorer: Move Base{Bool,String}Aspect to new files
Create projectconfigurationaspect.{h,cpp} for re-usable aspects. Also pimpl the two exported classes. Task-number: QTCREATORBUG-19985 Change-Id: Id1d44b551c5dc2cf6eb4fbc3a2a505d4a83ae53f Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/projectconfigurationaspects.h')
-rw-r--r--src/plugins/projectexplorer/projectconfigurationaspects.h109
1 files changed, 109 insertions, 0 deletions
diff --git a/src/plugins/projectexplorer/projectconfigurationaspects.h b/src/plugins/projectexplorer/projectconfigurationaspects.h
new file mode 100644
index 00000000000..a058c20ec0f
--- /dev/null
+++ b/src/plugins/projectexplorer/projectconfigurationaspects.h
@@ -0,0 +1,109 @@
+/****************************************************************************
+**
+** Copyright (C) 2018 The Qt Company Ltd.
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of Qt Creator.
+**
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3 as published by the Free Software
+** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-3.0.html.
+**
+****************************************************************************/
+
+#pragma once
+
+#include "projectconfiguration.h"
+#include "environmentaspect.h"
+
+#include <utils/fileutils.h>
+#include <utils/pathchooser.h>
+
+#include <memory>
+
+namespace ProjectExplorer {
+
+namespace Internal {
+class BaseBoolAspectPrivate;
+class BaseStringAspectPrivate;
+} // Internal
+
+class PROJECTEXPLORER_EXPORT BaseBoolAspect : public ProjectConfigurationAspect
+{
+ Q_OBJECT
+
+public:
+ explicit BaseBoolAspect(const QString &settingsKey = QString());
+ ~BaseBoolAspect() override;
+
+ void addToConfigurationLayout(QFormLayout *layout) override;
+
+ bool value() const;
+ void setValue(bool val);
+
+ bool defaultValue() const;
+ void setDefaultValue(bool defaultValue);
+
+ void setLabel(const QString &label);
+
+ void fromMap(const QVariantMap &map) override;
+ void toMap(QVariantMap &map) const override;
+
+private:
+ std::unique_ptr<Internal::BaseBoolAspectPrivate> d;
+};
+
+class PROJECTEXPLORER_EXPORT BaseStringAspect : public ProjectConfigurationAspect
+{
+ Q_OBJECT
+
+public:
+ BaseStringAspect();
+ ~BaseStringAspect() override;
+
+ void addToConfigurationLayout(QFormLayout *layout) override;
+
+ QString value() const;
+ void setValue(const QString &val);
+
+ QString labelText() const;
+ void setLabelText(const QString &labelText);
+ void setLabelPixmap(const QPixmap &labelPixmap);
+
+ void setDisplayFilter(const std::function<QString (const QString &)> &displayFilter);
+ void setPlaceHolderText(const QString &placeHolderText);
+ void setHistoryCompleter(const QString &historyCompleterKey);
+ void setExpectedKind(const Utils::PathChooser::Kind expectedKind);
+ void setEnvironment(const Utils::Environment &env);
+
+ bool isChecked() const;
+ void makeCheckable(const QString &optionalLabel, const QString &optionalBaseKey);
+
+ enum DisplayStyle { LabelDisplay, LineEditDisplay, PathChooserDisplay };
+ void setDisplayStyle(DisplayStyle style);
+
+ void fromMap(const QVariantMap &map) override;
+ void toMap(QVariantMap &map) const override;
+
+ Utils::FileName fileName() const;
+ void setFileName(const Utils::FileName &val);
+
+private:
+ void update();
+
+ std::unique_ptr<Internal::BaseStringAspectPrivate> d;
+};
+
+} // namespace ProjectExplorer