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

139 lines
4.4 KiB
C
Raw Normal View History

2009-03-10 14:20:07 +01:00
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
2009-03-10 14:20:07 +01:00
**
** Contact: Nokia Corporation (qt-info@nokia.com)
2009-03-10 14:20:07 +01:00
**
**
** GNU Lesser General Public License Usage
**
2011-04-13 08:42:33 +02:00
** 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.
2009-03-10 14:20:07 +01:00
**
2010-12-17 16:01:08 +01:00
** In addition, as a special exception, Nokia gives you certain additional
2011-04-13 08:42:33 +02:00
** rights. These rights are described in the Nokia Qt LGPL Exception
2010-12-17 16:01:08 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
2011-04-13 08:42:33 +02:00
** Other Usage
**
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
2010-12-17 16:01:08 +01:00
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
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);
virtual ~GenericMakeStep();
2009-11-26 14:43:27 +01:00
GenericBuildConfiguration *genericBuildConfiguration() const;
virtual bool init();
2009-03-10 14:20:07 +01:00
virtual void run(QFutureInterface<bool> &fi);
virtual ProjectExplorer::BuildStepConfigWidget *createConfigWidget();
virtual bool immutable() const;
bool buildsTarget(const QString &target) const;
void setBuildTarget(const QString &target, bool on);
QString allArguments() const;
QString makeCommand() 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);
virtual 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;
2009-03-10 14:20:07 +01:00
};
class GenericMakeStepConfigWidget :public ProjectExplorer::BuildStepConfigWidget
2009-03-10 14:20:07 +01:00
{
Q_OBJECT
public:
GenericMakeStepConfigWidget(GenericMakeStep *makeStep);
~GenericMakeStepConfigWidget();
2009-03-10 14:20:07 +01:00
virtual QString displayName() const;
virtual QString summaryText() const;
2009-03-10 14:20:07 +01:00
private slots:
void itemChanged(QListWidgetItem*);
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);
~GenericMakeStepFactory();
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