2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** 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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** 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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** 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
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "buildstepspage.h"
|
2008-12-09 15:25:01 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "ui_buildstepspage.h"
|
|
|
|
|
#include "project.h"
|
|
|
|
|
|
2009-01-12 15:06:43 +01:00
|
|
|
#include <coreplugin/coreconstants.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
2008-12-09 15:25:01 +01:00
|
|
|
#include <utils/qtcassert.h>
|
2009-09-17 13:59:10 +02:00
|
|
|
#include <utils/detailsbutton.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-08-06 15:31:32 +02:00
|
|
|
#include <QtGui/QLabel>
|
|
|
|
|
#include <QtGui/QPushButton>
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
using namespace ProjectExplorer::Internal;
|
|
|
|
|
|
2009-06-22 16:11:45 +02:00
|
|
|
BuildStepsPage::BuildStepsPage(Project *project, bool clean) :
|
2009-08-06 15:31:32 +02:00
|
|
|
BuildConfigWidget(),
|
2009-06-22 16:11:45 +02:00
|
|
|
m_pro(project),
|
|
|
|
|
m_clean(clean)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-08-06 15:31:32 +02:00
|
|
|
m_vbox = new QVBoxLayout(this);
|
|
|
|
|
m_vbox->setContentsMargins(20, 0, 0, 0);
|
|
|
|
|
const QList<BuildStep *> &steps = m_clean ? m_pro->cleanSteps() : m_pro->buildSteps();
|
|
|
|
|
foreach (BuildStep *bs, steps) {
|
|
|
|
|
addBuildStepWidget(-1, bs);
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-08-06 15:31:32 +02:00
|
|
|
m_noStepsLabel = new QLabel(tr("No Build Steps"), this);
|
|
|
|
|
m_noStepsLabel->setVisible(steps.isEmpty());
|
|
|
|
|
m_vbox->addWidget(m_noStepsLabel);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-08-06 15:31:32 +02:00
|
|
|
QHBoxLayout *hboxLayout = new QHBoxLayout();
|
|
|
|
|
m_addButton = new QPushButton(this);
|
2009-09-14 12:55:57 +02:00
|
|
|
m_addButton->setText(clean ? tr("Add clean step") : tr("Add build step"));
|
2009-08-06 15:31:32 +02:00
|
|
|
m_addButton->setMenu(new QMenu(this));
|
|
|
|
|
hboxLayout->addWidget(m_addButton);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-08-06 15:31:32 +02:00
|
|
|
m_removeButton = new QPushButton(this);
|
2009-09-14 12:55:57 +02:00
|
|
|
m_removeButton->setText(clean ? tr("Remove clean step") : tr("Remove build step"));
|
2009-08-06 15:31:32 +02:00
|
|
|
m_removeButton->setMenu(new QMenu(this));
|
|
|
|
|
hboxLayout->addWidget(m_removeButton);
|
|
|
|
|
hboxLayout->addStretch(10);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-08-20 20:04:58 +02:00
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
|
m_addButton->setAttribute(Qt::WA_MacSmallSize);
|
|
|
|
|
m_removeButton->setAttribute(Qt::WA_MacSmallSize);
|
|
|
|
|
#endif
|
|
|
|
|
|
2009-08-06 15:31:32 +02:00
|
|
|
m_vbox->addLayout(hboxLayout);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-08-06 15:31:32 +02:00
|
|
|
updateBuildStepButtonsState();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-08-06 15:31:32 +02:00
|
|
|
connect(m_addButton->menu(), SIGNAL(aboutToShow()),
|
|
|
|
|
this, SLOT(updateAddBuildStepMenu()));
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-08-06 15:31:32 +02:00
|
|
|
connect(m_removeButton->menu(), SIGNAL(aboutToShow()),
|
|
|
|
|
this, SLOT(updateRemoveBuildStepMenu()));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BuildStepsPage::~BuildStepsPage()
|
|
|
|
|
{
|
2009-08-06 15:31:32 +02:00
|
|
|
foreach(BuildStepsWidgetStruct s, m_buildSteps) {
|
|
|
|
|
delete s.detailsLabel;
|
|
|
|
|
delete s.upButton;
|
|
|
|
|
delete s.downButton;
|
|
|
|
|
delete s.detailsButton;
|
|
|
|
|
delete s.hbox;
|
|
|
|
|
delete s.widget;
|
|
|
|
|
}
|
|
|
|
|
m_buildSteps.clear();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-08-06 15:31:32 +02:00
|
|
|
void BuildStepsPage::toggleDetails()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-08-20 20:04:58 +02:00
|
|
|
QAbstractButton *button = qobject_cast<QAbstractButton *>(sender());
|
|
|
|
|
if (button) {
|
2009-08-11 16:37:24 +02:00
|
|
|
foreach(const BuildStepsWidgetStruct &s, m_buildSteps) {
|
2009-08-20 20:04:58 +02:00
|
|
|
if (s.detailsButton == button) {
|
2009-08-06 15:31:32 +02:00
|
|
|
s.widget->setVisible(!s.widget->isVisible());
|
2009-08-11 16:37:24 +02:00
|
|
|
fixupLayout(s.widget);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-08-06 15:31:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BuildStepsPage::updateSummary()
|
|
|
|
|
{
|
|
|
|
|
BuildStepConfigWidget *widget = qobject_cast<BuildStepConfigWidget *>(sender());
|
|
|
|
|
if (widget)
|
|
|
|
|
foreach(const BuildStepsWidgetStruct &s, m_buildSteps)
|
|
|
|
|
if (s.widget == widget)
|
|
|
|
|
s.detailsLabel->setText(widget->summaryText());
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString BuildStepsPage::displayName() const
|
|
|
|
|
{
|
2009-06-22 16:11:45 +02:00
|
|
|
return m_clean ? tr("Clean Steps") : tr("Build Steps");
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BuildStepsPage::init(const QString &buildConfiguration)
|
|
|
|
|
{
|
|
|
|
|
m_configuration = buildConfiguration;
|
|
|
|
|
|
|
|
|
|
// make sure widget is updated
|
2009-08-06 15:31:32 +02:00
|
|
|
foreach(BuildStepsWidgetStruct s, m_buildSteps) {
|
|
|
|
|
s.widget->init(m_configuration);
|
|
|
|
|
s.detailsLabel->setText(s.widget->summaryText());
|
2008-12-02 17:59:38 +01:00
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BuildStepsPage::updateAddBuildStepMenu()
|
|
|
|
|
{
|
|
|
|
|
QMap<QString, QPair<QString, IBuildStepFactory *> > map;
|
|
|
|
|
//Build up a list of possible steps and save map the display names to the (internal) name and factories.
|
|
|
|
|
QList<IBuildStepFactory *> factories = ExtensionSystem::PluginManager::instance()->getObjects<IBuildStepFactory>();
|
|
|
|
|
foreach (IBuildStepFactory * factory, factories) {
|
|
|
|
|
QStringList names = factory->canCreateForProject(m_pro);
|
|
|
|
|
foreach (const QString &name, names) {
|
|
|
|
|
map.insert(factory->displayNameForName(name), QPair<QString, IBuildStepFactory *>(name, factory));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Ask the user which one to add
|
2009-08-06 15:31:32 +02:00
|
|
|
QMenu *menu = m_addButton->menu();
|
2008-12-02 12:01:29 +01:00
|
|
|
m_addBuildStepHash.clear();
|
|
|
|
|
menu->clear();
|
2008-12-09 11:07:24 +01:00
|
|
|
if (!map.isEmpty()) {
|
2008-12-02 12:01:29 +01:00
|
|
|
QStringList names;
|
|
|
|
|
QMap<QString, QPair<QString, IBuildStepFactory *> >::const_iterator it, end;
|
|
|
|
|
end = map.constEnd();
|
2008-12-09 11:07:24 +01:00
|
|
|
for (it = map.constBegin(); it != end; ++it) {
|
2008-12-02 12:01:29 +01:00
|
|
|
QAction *action = menu->addAction(it.key());
|
|
|
|
|
connect(action, SIGNAL(triggered()),
|
|
|
|
|
this, SLOT(addBuildStep()));
|
|
|
|
|
m_addBuildStepHash.insert(action, it.value());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-06 15:31:32 +02:00
|
|
|
void BuildStepsPage::addBuildStepWidget(int pos, BuildStep *step)
|
|
|
|
|
{
|
|
|
|
|
// create everything
|
|
|
|
|
BuildStepsWidgetStruct s;
|
|
|
|
|
s.widget = step->createConfigWidget();
|
|
|
|
|
s.detailsLabel = new QLabel(this);
|
|
|
|
|
s.detailsLabel->setText(s.widget->summaryText());
|
|
|
|
|
s.upButton = new QToolButton(this);
|
|
|
|
|
s.upButton->setArrowType(Qt::UpArrow);
|
|
|
|
|
s.downButton = new QToolButton(this);
|
|
|
|
|
s.downButton->setArrowType(Qt::DownArrow);
|
2009-08-20 20:04:58 +02:00
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
|
s.upButton->setIconSize(QSize(10, 10));
|
|
|
|
|
s.downButton->setIconSize(QSize(10, 10));
|
|
|
|
|
#endif
|
2009-09-17 13:59:10 +02:00
|
|
|
s.detailsButton = new Utils::DetailsButton(this);
|
2009-08-20 20:04:58 +02:00
|
|
|
|
2009-08-06 15:31:32 +02:00
|
|
|
// layout
|
|
|
|
|
s.hbox = new QHBoxLayout();
|
|
|
|
|
s.hbox->addWidget(s.detailsLabel);
|
|
|
|
|
s.hbox->addWidget(s.upButton);
|
|
|
|
|
s.hbox->addWidget(s.downButton);
|
|
|
|
|
s.hbox->addWidget(s.detailsButton);
|
|
|
|
|
|
|
|
|
|
if (pos == -1)
|
|
|
|
|
m_buildSteps.append(s);
|
|
|
|
|
else
|
|
|
|
|
m_buildSteps.insert(pos, s);
|
|
|
|
|
|
|
|
|
|
if (pos == -1) {
|
|
|
|
|
m_vbox->addLayout(s.hbox);
|
|
|
|
|
m_vbox->addWidget(s.widget);
|
|
|
|
|
} else {
|
|
|
|
|
m_vbox->insertLayout(pos *2, s.hbox);
|
|
|
|
|
m_vbox->insertWidget(pos *2 + 1, s.widget);
|
|
|
|
|
}
|
|
|
|
|
s.widget->hide();
|
|
|
|
|
|
|
|
|
|
// connect
|
|
|
|
|
connect(s.detailsButton, SIGNAL(clicked()),
|
|
|
|
|
this, SLOT(toggleDetails()));
|
|
|
|
|
|
|
|
|
|
connect(s.widget, SIGNAL(updateSummary()),
|
|
|
|
|
this, SLOT(updateSummary()));
|
|
|
|
|
|
|
|
|
|
connect(s.upButton, SIGNAL(clicked()),
|
|
|
|
|
this, SLOT(upBuildStep()));
|
|
|
|
|
connect(s.downButton, SIGNAL(clicked()),
|
|
|
|
|
this, SLOT(downBuildStep()));
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
void BuildStepsPage::addBuildStep()
|
|
|
|
|
{
|
2008-12-09 11:07:24 +01:00
|
|
|
if (QAction *action = qobject_cast<QAction *>(sender())) {
|
2008-12-02 12:01:29 +01:00
|
|
|
QPair<QString, IBuildStepFactory *> pair = m_addBuildStepHash.value(action);
|
|
|
|
|
BuildStep *newStep = pair.second->create(m_pro, pair.first);
|
2009-08-06 15:31:32 +02:00
|
|
|
int pos = m_clean ? m_pro->cleanSteps().count() : m_pro->buildSteps().count();
|
|
|
|
|
m_clean ? m_pro->insertCleanStep(pos, newStep) : m_pro->insertBuildStep(pos, newStep);
|
|
|
|
|
|
|
|
|
|
addBuildStepWidget(pos, newStep);
|
|
|
|
|
const BuildStepsWidgetStruct s = m_buildSteps.at(pos);
|
|
|
|
|
s.widget->init(m_configuration);
|
|
|
|
|
s.detailsLabel->setText(s.widget->summaryText());
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-08-11 18:09:52 +02:00
|
|
|
updateBuildStepButtonsState();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-08-06 15:31:32 +02:00
|
|
|
void BuildStepsPage::updateRemoveBuildStepMenu()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-08-06 15:31:32 +02:00
|
|
|
QMenu *menu = m_removeButton->menu();
|
|
|
|
|
menu->clear();
|
2009-06-22 16:11:45 +02:00
|
|
|
const QList<BuildStep *> &steps = m_clean ? m_pro->cleanSteps() : m_pro->buildSteps();
|
2009-08-06 15:31:32 +02:00
|
|
|
foreach(BuildStep *step, steps) {
|
|
|
|
|
QAction *action = menu->addAction(step->displayName());
|
|
|
|
|
if (step->immutable())
|
|
|
|
|
action->setEnabled(false);
|
|
|
|
|
connect(action, SIGNAL(triggered()),
|
|
|
|
|
this, SLOT(removeBuildStep()));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BuildStepsPage::removeBuildStep()
|
|
|
|
|
{
|
|
|
|
|
QAction *action = qobject_cast<QAction *>(sender());
|
|
|
|
|
if (action) {
|
|
|
|
|
int pos = m_removeButton->menu()->actions().indexOf(action);
|
|
|
|
|
const QList<BuildStep *> &steps = m_clean ? m_pro->cleanSteps() : m_pro->buildSteps();
|
|
|
|
|
if (steps.at(pos)->immutable())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
BuildStepsWidgetStruct s = m_buildSteps.at(pos);
|
|
|
|
|
delete s.detailsLabel;
|
|
|
|
|
delete s.upButton;
|
|
|
|
|
delete s.downButton;
|
|
|
|
|
delete s.detailsButton;
|
|
|
|
|
delete s.hbox;
|
|
|
|
|
delete s.widget;
|
|
|
|
|
m_buildSteps.removeAt(pos);
|
|
|
|
|
m_clean ? m_pro->removeCleanStep(pos) : m_pro->removeBuildStep(pos);
|
|
|
|
|
}
|
2009-08-11 18:09:52 +02:00
|
|
|
updateBuildStepButtonsState();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BuildStepsPage::upBuildStep()
|
|
|
|
|
{
|
2009-08-06 15:31:32 +02:00
|
|
|
int pos = -1;
|
|
|
|
|
QToolButton *tb = qobject_cast<QToolButton *>(sender());
|
|
|
|
|
if (!tb)
|
2008-12-02 12:01:29 +01:00
|
|
|
return;
|
2009-08-06 15:31:32 +02:00
|
|
|
|
|
|
|
|
for (int i=0; i<m_buildSteps.count(); ++i) {
|
|
|
|
|
if (m_buildSteps.at(i).upButton == tb) {
|
|
|
|
|
pos = i;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (pos == -1)
|
2008-12-02 12:01:29 +01:00
|
|
|
return;
|
|
|
|
|
|
2009-06-22 16:11:45 +02:00
|
|
|
stepMoveUp(pos);
|
2008-12-02 12:01:29 +01:00
|
|
|
updateBuildStepButtonsState();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BuildStepsPage::downBuildStep()
|
|
|
|
|
{
|
2009-08-06 15:31:32 +02:00
|
|
|
int pos = -1;
|
|
|
|
|
QToolButton *tb = qobject_cast<QToolButton *>(sender());
|
|
|
|
|
if (!tb)
|
2008-12-02 12:01:29 +01:00
|
|
|
return;
|
2009-08-06 15:31:32 +02:00
|
|
|
|
|
|
|
|
for (int i=0; i<m_buildSteps.count(); ++i) {
|
|
|
|
|
if (m_buildSteps.at(i).downButton == tb) {
|
|
|
|
|
pos = i;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (pos == -1)
|
2008-12-02 12:01:29 +01:00
|
|
|
return;
|
|
|
|
|
|
2009-08-06 15:31:32 +02:00
|
|
|
stepMoveUp(pos + 1);
|
2008-12-02 12:01:29 +01:00
|
|
|
updateBuildStepButtonsState();
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-22 16:11:45 +02:00
|
|
|
void BuildStepsPage::stepMoveUp(int pos)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-08-06 15:31:32 +02:00
|
|
|
m_clean ? m_pro->moveCleanStepUp(pos) : m_pro->moveBuildStepUp(pos);
|
|
|
|
|
|
|
|
|
|
m_buildSteps.at(pos).hbox->setParent(0);
|
|
|
|
|
m_vbox->insertLayout((pos - 1) * 2, m_buildSteps.at(pos).hbox);
|
|
|
|
|
m_vbox->insertWidget((pos - 1) * 2 + 1, m_buildSteps.at(pos).widget);
|
|
|
|
|
|
|
|
|
|
BuildStepsWidgetStruct tmp = m_buildSteps.at(pos -1);
|
|
|
|
|
m_buildSteps[pos -1] = m_buildSteps.at(pos);
|
|
|
|
|
m_buildSteps[pos] = tmp;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void BuildStepsPage::updateBuildStepButtonsState()
|
|
|
|
|
{
|
2009-08-06 15:31:32 +02:00
|
|
|
const QList<BuildStep *> &steps = m_clean ? m_pro->cleanSteps() : m_pro->buildSteps();
|
|
|
|
|
for(int i=0; i<m_buildSteps.count(); ++i) {
|
|
|
|
|
BuildStepsWidgetStruct s = m_buildSteps.at(i);
|
|
|
|
|
s.upButton->setEnabled((i>0) && !(steps.at(i)->immutable() && steps.at(i - 1)));
|
|
|
|
|
s.downButton->setEnabled((i + 1< steps.count()) && !(steps.at(i)->immutable() && steps.at(i + 1)->immutable()));
|
2009-07-27 16:37:06 +02:00
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|