Files
qt-creator/src/plugins/genericprojectmanager/genericmakestep.h

138 lines
4.5 KiB
C
Raw Normal View History

/****************************************************************************
2009-03-10 14:20:07 +01:00
**
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
2009-03-10 14:20:07 +01:00
**
** This file is part of Qt Creator.
2009-03-10 14:20:07 +01:00
**
** 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.
2009-03-10 14:20:07 +01:00
**
** 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
2010-12-17 16:01:08 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/
2009-03-10 14:20:07 +01:00
#ifndef GENERICMAKESTEP_H
#define GENERICMAKESTEP_H
2009-03-10 14:20:07 +01:00
#include <projectexplorer/abstractprocessstep.h>
2009-03-10 14:20:07 +01:00
QT_BEGIN_NAMESPACE
class QListWidgetItem;
2009-03-19 11:35:25 +01:00
QT_END_NAMESPACE
2009-03-10 14:20:07 +01:00
namespace GenericProjectManager {
namespace Internal {
2009-11-26 14:43:27 +01:00
class GenericBuildConfiguration;
class GenericMakeStepConfigWidget;
class GenericMakeStepFactory;
namespace Ui { class GenericMakeStep; }
2009-03-10 14:20:07 +01:00
class GenericMakeStep : public ProjectExplorer::AbstractProcessStep
2009-03-10 14:20:07 +01:00
{
Q_OBJECT
friend class GenericMakeStepConfigWidget;
friend class GenericMakeStepFactory;
2009-03-10 14:20:07 +01:00
public:
GenericMakeStep(ProjectExplorer::BuildStepList *parent);
~GenericMakeStep();
2009-11-26 14:43:27 +01:00
GenericBuildConfiguration *genericBuildConfiguration() const;
bool init();
void run(QFutureInterface<bool> &fi);
2009-03-10 14:20:07 +01:00
ProjectExplorer::BuildStepConfigWidget *createConfigWidget();
bool immutable() const;
bool buildsTarget(const QString &target) const;
void setBuildTarget(const QString &target, bool on);
QString allArguments() const;
QString makeCommand(const Utils::Environment &environment) const;
void setClean(bool clean);
bool isClean() const;
QVariantMap toMap() const;
protected:
GenericMakeStep(ProjectExplorer::BuildStepList *parent, GenericMakeStep *bs);
GenericMakeStep(ProjectExplorer::BuildStepList *parent, const Core::Id id);
bool fromMap(const QVariantMap &map);
2009-03-10 14:20:07 +01:00
private:
void ctor();
QStringList m_buildTargets;
QString m_makeArguments;
QString m_makeCommand;
bool m_clean;
QList<ProjectExplorer::Task> m_tasks;
2009-03-10 14:20:07 +01:00
};
class GenericMakeStepConfigWidget : public ProjectExplorer::BuildStepConfigWidget
2009-03-10 14:20:07 +01:00
{
Q_OBJECT
2009-03-10 14:20:07 +01:00
public:
GenericMakeStepConfigWidget(GenericMakeStep *makeStep);
~GenericMakeStepConfigWidget();
QString displayName() const;
QString summaryText() const;
2009-03-10 14:20:07 +01:00
private slots:
void itemChanged(QListWidgetItem *item);
void makeLineEditTextEdited();
void makeArgumentsLineEditTextEdited();
void updateMakeOverrrideLabel();
void updateDetails();
private:
Ui::GenericMakeStep *m_ui;
GenericMakeStep *m_makeStep;
QString m_summaryText;
2009-03-10 14:20:07 +01:00
};
class GenericMakeStepFactory : public ProjectExplorer::IBuildStepFactory
2009-03-10 14:20:07 +01:00
{
Q_OBJECT
public:
explicit GenericMakeStepFactory(QObject *parent = 0);
bool canCreate(ProjectExplorer::BuildStepList *parent, const Core::Id id) const;
ProjectExplorer::BuildStep *create(ProjectExplorer::BuildStepList *parent, const Core::Id id);
bool canClone(ProjectExplorer::BuildStepList *parent,
ProjectExplorer::BuildStep *source) const;
ProjectExplorer::BuildStep *clone(ProjectExplorer::BuildStepList *parent,
ProjectExplorer::BuildStep *source);
bool canRestore(ProjectExplorer::BuildStepList *parent, const QVariantMap &map) const;
ProjectExplorer::BuildStep *restore(ProjectExplorer::BuildStepList *parent,
const QVariantMap &map);
QList<Core::Id> availableCreationIds(ProjectExplorer::BuildStepList *bc) const;
QString displayNameForId(const Core::Id id) const;
2009-03-10 14:20:07 +01:00
};
} // namespace Internal
} // namespace GenericProjectManager
2009-03-10 14:20:07 +01:00
#endif // GENERICMAKESTEP_H