Files
qt-creator/src/plugins/projectexplorer/buildstep.cpp

160 lines
4.4 KiB
C++
Raw Normal View History

/**************************************************************************
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator
**
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
2008-12-02 12:01:29 +01:00
**
** Contact: Nokia Corporation (qt-info@nokia.com)
2008-12-02 12:01:29 +01:00
**
** Commercial Usage
**
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Nokia.
**
** 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.
**
** If you are unsure which license is appropriate for your use, please
2009-08-14 09:30:56 +02:00
** contact the sales department at http://qt.nokia.com/contact.
2008-12-02 12:01:29 +01:00
**
**************************************************************************/
2008-12-02 16:19:05 +01:00
2008-12-02 12:01:29 +01:00
#include "buildstep.h"
#include "buildconfiguration.h"
2008-12-09 15:25:01 +01:00
#include <utils/qtcassert.h>
#include <QtGui/QLayout>
2008-12-09 15:25:01 +01:00
using namespace ProjectExplorer;
using namespace ProjectExplorer::Internal;
2008-12-02 12:01:29 +01:00
BuildStep::BuildStep(Project * pro)
: m_project(pro)
{
m_configuration = new BuildConfiguration("");
}
BuildStep::~BuildStep()
{
qDeleteAll(m_buildConfigurations);
delete m_configuration;
}
Project * BuildStep::project() const
{
return m_project;
}
void BuildStep::addBuildConfiguration(const QString &name)
{
m_buildConfigurations.push_back(new BuildConfiguration(name));
}
void BuildStep::removeBuildConfiguration(const QString &name)
{
2008-12-09 11:07:24 +01:00
for (int i = 0; i != m_buildConfigurations.size(); ++i)
if (m_buildConfigurations.at(i)->name() == name) {
2008-12-02 12:01:29 +01:00
delete m_buildConfigurations.at(i);
m_buildConfigurations.removeAt(i);
break;
}
}
void BuildStep::copyBuildConfiguration(const QString &source, const QString &dest)
{
2008-12-09 11:07:24 +01:00
for (int i = 0; i != m_buildConfigurations.size(); ++i)
if (m_buildConfigurations.at(i)->name() == source)
2008-12-02 12:01:29 +01:00
m_buildConfigurations.push_back(new BuildConfiguration(dest, m_buildConfigurations.at(i)));
}
void BuildStep::setValue(const QString &buildConfiguration, const QString &name, const QVariant &value)
{
BuildConfiguration *bc = getBuildConfiguration(buildConfiguration);
Q_ASSERT(bc);
2008-12-02 12:01:29 +01:00
bc->setValue(name, value);
}
void BuildStep::setValue(const QString &name, const QVariant &value)
{
m_configuration->setValue(name, value);
}
QVariant BuildStep::value(const QString &buildConfiguration, const QString &name) const
{
BuildConfiguration *bc = getBuildConfiguration(buildConfiguration);
if (bc)
return bc->getValue(name);
else
return QVariant();
}
QVariant BuildStep::value(const QString &name) const
{
return m_configuration->getValue(name);
}
void BuildStep::setValuesFromMap(const QMap<QString, QVariant> & values)
{
m_configuration->setValuesFromMap(values);
}
void BuildStep::setValuesFromMap(const QString & buildConfiguration, const QMap<QString, QVariant> & values)
{
getBuildConfiguration(buildConfiguration)->setValuesFromMap(values);
}
QMap<QString, QVariant> BuildStep::valuesToMap()
{
return m_configuration->toMap();
}
QMap<QString, QVariant> BuildStep::valuesToMap(const QString & buildConfiguration)
{
return getBuildConfiguration(buildConfiguration)->toMap();
}
BuildConfiguration * BuildStep::getBuildConfiguration(const QString & name) const
{
for (int i = 0; i != m_buildConfigurations.size(); ++i)
if (m_buildConfigurations.at(i)->name() == name)
return m_buildConfigurations.at(i);
return 0;
}
bool BuildStep::immutable() const
{
return false;
}
void BuildConfigWidget::fixupLayout(QWidget *widget)
{
QWidget *parent = widget;
2009-08-12 16:10:50 +02:00
QStack<QWidget *> widgets;
while((parent = parent->parentWidget()) && parent && parent->layout()) {
widgets.push(parent);
parent->layout()->update();
}
while(!widgets.isEmpty()) {
widgets.pop()->layout()->activate();
}
}
2008-12-02 12:01:29 +01:00
IBuildStepFactory::IBuildStepFactory()
{
}
IBuildStepFactory::~IBuildStepFactory()
{
}