forked from qt-creator/qt-creator
Change-Id: I1e618408ba87fa1fbcd3c78498adb83d149d935a Reviewed-by: Daniel Teske <daniel.teske@theqtcompany.com>
152 lines
5.0 KiB
C++
152 lines
5.0 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
** Contact: http://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 http://www.qt.io/terms-conditions. For further information
|
|
** use the contact form at http://www.qt.io/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 or version 3 as published by the Free
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
** following information to ensure the GNU Lesser General Public License
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
**
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#ifndef CMAKERUNCONFIGURATION_H
|
|
#define CMAKERUNCONFIGURATION_H
|
|
|
|
#include <projectexplorer/localapplicationrunconfiguration.h>
|
|
#include <utils/environment.h>
|
|
|
|
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;
|
|
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&);
|
|
|
|
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();
|
|
|
|
QString m_buildTarget;
|
|
QString m_workingDirectory;
|
|
QString m_userWorkingDirectory;
|
|
QString m_title;
|
|
bool m_enabled;
|
|
};
|
|
|
|
class CMakeRunConfigurationWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CMakeRunConfigurationWidget(CMakeRunConfiguration *cmakeRunConfiguration, QWidget *parent = 0);
|
|
|
|
private slots:
|
|
void setWorkingDirectory();
|
|
void resetWorkingDirectory();
|
|
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<Core::Id> 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
|