/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** 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 Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #ifndef CMAKERUNCONFIGURATION_H #define CMAKERUNCONFIGURATION_H #include #include QT_BEGIN_NAMESPACE class QComboBox; QT_END_NAMESPACE namespace Utils { class PathChooser; class DetailsWidget; } namespace CMakeProjectManager { namespace Internal { class CMakeTarget; class CMakeRunConfiguration : public ProjectExplorer::LocalApplicationRunConfiguration { Q_OBJECT friend class CMakeRunConfigurationWidget; friend class CMakeRunConfigurationFactory; public: CMakeRunConfiguration(ProjectExplorer::Target *parent, Core::Id id, const QString &target, const QString &workingDirectory, const QString &title); ~CMakeRunConfiguration(); QString executable() const; ProjectExplorer::ApplicationLauncher::Mode runMode() const; void setRunMode(ProjectExplorer::ApplicationLauncher::Mode runMode); QString workingDirectory() const; QString commandLineArguments() const; QWidget *createConfigurationWidget(); void setExecutable(const QString &executable); void setBaseWorkingDirectory(const QString &workingDirectory); QString title() const; QVariantMap toMap() const; void setEnabled(bool b); bool isEnabled() const; QString disabledReason() const; signals: void baseWorkingDirectoryChanged(const QString&); private slots: void setCommandLineArguments(const QString &newText); protected: CMakeRunConfiguration(ProjectExplorer::Target *parent, CMakeRunConfiguration *source); virtual bool fromMap(const QVariantMap &map); QString defaultDisplayName() const; private: void setUserWorkingDirectory(const QString &workingDirectory); QString baseWorkingDirectory() const; void ctor(); ProjectExplorer::ApplicationLauncher::Mode m_runMode; QString m_buildTarget; QString m_workingDirectory; QString m_userWorkingDirectory; QString m_title; QString m_arguments; bool m_enabled; }; class CMakeRunConfigurationWidget : public QWidget { Q_OBJECT public: explicit CMakeRunConfigurationWidget(CMakeRunConfiguration *cmakeRunConfiguration, QWidget *parent = 0); private slots: void setArguments(const QString &args); void setWorkingDirectory(); void resetWorkingDirectory(); void runInTerminalToggled(bool toggled); void environmentWasChanged(); void workingDirectoryChanged(const QString &workingDirectory); private: void ctor(); bool m_ignoreChange; CMakeRunConfiguration *m_cmakeRunConfiguration; Utils::PathChooser *m_workingDirectoryEdit; Utils::DetailsWidget *m_detailsContainer; }; class CMakeRunConfigurationFactory : public ProjectExplorer::IRunConfigurationFactory { Q_OBJECT public: explicit CMakeRunConfigurationFactory(QObject *parent = 0); ~CMakeRunConfigurationFactory(); bool canCreate(ProjectExplorer::Target *parent, Core::Id id) const; bool canRestore(ProjectExplorer::Target *parent, const QVariantMap &map) const; bool canClone(ProjectExplorer::Target *parent, ProjectExplorer::RunConfiguration *product) const; ProjectExplorer::RunConfiguration *clone(ProjectExplorer::Target *parent, ProjectExplorer::RunConfiguration *product); QList availableCreationIds(ProjectExplorer::Target *parent, CreationMode mode) const; QString displayNameForId(Core::Id id) const; static Core::Id idFromBuildTarget(const QString &target); static QString buildTargetFromId(Core::Id id); private: bool canHandle(ProjectExplorer::Target *parent) const; ProjectExplorer::RunConfiguration *doCreate(ProjectExplorer::Target *parent, Core::Id id); ProjectExplorer::RunConfiguration *doRestore(ProjectExplorer::Target *parent, const QVariantMap &map); }; } } #endif // CMAKERUNCONFIGURATION_H