2010-02-08 15:50:06 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
|
|
|
|
** 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
|
|
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "targetsettingspanel.h"
|
|
|
|
|
|
|
|
|
|
#include "addtargetdialog.h"
|
|
|
|
|
#include "buildsettingspropertiespage.h"
|
|
|
|
|
#include "project.h"
|
|
|
|
|
#include "projectwindow.h"
|
|
|
|
|
#include "runsettingspropertiespage.h"
|
|
|
|
|
#include "target.h"
|
|
|
|
|
#include "targetsettingswidget.h"
|
|
|
|
|
|
|
|
|
|
#include <extensionsystem/pluginmanager.h>
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QCoreApplication>
|
|
|
|
|
#include <QtGui/QLabel>
|
|
|
|
|
#include <QtGui/QVBoxLayout>
|
|
|
|
|
|
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
using namespace ProjectExplorer::Internal;
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
// TargetSettingsPanelFactory
|
|
|
|
|
///
|
|
|
|
|
|
|
|
|
|
QString TargetSettingsPanelFactory::id() const
|
|
|
|
|
{
|
|
|
|
|
return QLatin1String(TARGETSETTINGS_PANEL_ID);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString TargetSettingsPanelFactory::displayName() const
|
|
|
|
|
{
|
2010-02-25 10:34:25 +01:00
|
|
|
return QCoreApplication::translate("TargetSettingsPanelFactory", "Targets");
|
2010-02-08 15:50:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool TargetSettingsPanelFactory::supports(Project *project)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(project);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool TargetSettingsPanelFactory::supports(Target *target)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(target);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IPropertiesPanel *TargetSettingsPanelFactory::createPanel(Project *project)
|
|
|
|
|
{
|
|
|
|
|
return new TargetSettingsPanel(project);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IPropertiesPanel *TargetSettingsPanelFactory::createPanel(Target *target)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(target);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
// TargetSettingsPanel
|
|
|
|
|
///
|
|
|
|
|
|
|
|
|
|
TargetSettingsPanel::TargetSettingsPanel(Project *project) :
|
|
|
|
|
m_widget(new TargetSettingsPanelWidget(project))
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TargetSettingsPanel::~TargetSettingsPanel()
|
|
|
|
|
{
|
|
|
|
|
delete m_widget;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString TargetSettingsPanel::displayName() const
|
|
|
|
|
{
|
2010-02-25 10:34:25 +01:00
|
|
|
return QCoreApplication::translate("TargetSettingsPanel", "Targets");
|
2010-02-08 15:50:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QWidget *TargetSettingsPanel::widget() const
|
|
|
|
|
{
|
|
|
|
|
return m_widget;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QIcon TargetSettingsPanel::icon() const
|
|
|
|
|
{
|
|
|
|
|
return QIcon();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
// TargetSettingsWidget
|
|
|
|
|
///
|
|
|
|
|
|
|
|
|
|
TargetSettingsPanelWidget::TargetSettingsPanelWidget(Project *project) :
|
|
|
|
|
m_currentIndex(-1),
|
|
|
|
|
m_project(project),
|
|
|
|
|
m_selector(0),
|
|
|
|
|
m_centralWidget(0)
|
|
|
|
|
{
|
|
|
|
|
m_panelWidgets[0] = 0;
|
|
|
|
|
m_panelWidgets[1] = 0;
|
|
|
|
|
|
|
|
|
|
setupUi();
|
|
|
|
|
|
|
|
|
|
connect(m_project, SIGNAL(addedTarget(ProjectExplorer::Target*)),
|
|
|
|
|
this, SLOT(targetAdded(ProjectExplorer::Target*)));
|
|
|
|
|
connect(m_project, SIGNAL(aboutToRemoveTarget(ProjectExplorer::Target*)),
|
2010-02-10 17:29:08 +01:00
|
|
|
this, SLOT(aboutToRemoveTarget(ProjectExplorer::Target*)));
|
2010-02-08 15:50:06 +01:00
|
|
|
connect(m_project, SIGNAL(activeTargetChanged(ProjectExplorer::Target*)),
|
|
|
|
|
this, SLOT(activeTargetChanged(ProjectExplorer::Target*)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TargetSettingsPanelWidget::~TargetSettingsPanelWidget()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TargetSettingsPanelWidget::setupUi()
|
|
|
|
|
{
|
|
|
|
|
QVBoxLayout *viewLayout = new QVBoxLayout(this);
|
|
|
|
|
viewLayout->setMargin(0);
|
|
|
|
|
viewLayout->setSpacing(0);
|
|
|
|
|
|
|
|
|
|
m_selector = new TargetSettingsWidget(this);
|
|
|
|
|
viewLayout->addWidget(m_selector);
|
|
|
|
|
|
|
|
|
|
// Setup our container for the contents:
|
|
|
|
|
m_centralWidget = new QStackedWidget(this);
|
|
|
|
|
m_selector->setCentralWidget(m_centralWidget);
|
|
|
|
|
|
|
|
|
|
// no projects label:
|
|
|
|
|
m_noTargetLabel = new QWidget;
|
|
|
|
|
QVBoxLayout *noTargetLayout = new QVBoxLayout;
|
|
|
|
|
noTargetLayout->setMargin(0);
|
|
|
|
|
QLabel *label = new QLabel(m_noTargetLabel);
|
|
|
|
|
label->setText(tr("No target defined."));
|
|
|
|
|
{
|
|
|
|
|
QFont f = label->font();
|
|
|
|
|
f.setPointSizeF(f.pointSizeF() * 1.4);
|
|
|
|
|
f.setBold(true);
|
|
|
|
|
label->setFont(f);
|
|
|
|
|
}
|
|
|
|
|
label->setMargin(10);
|
|
|
|
|
label->setAlignment(Qt::AlignTop);
|
|
|
|
|
noTargetLayout->addWidget(label);
|
|
|
|
|
noTargetLayout->addStretch(10);
|
|
|
|
|
m_centralWidget->addWidget(m_noTargetLabel);
|
|
|
|
|
|
|
|
|
|
foreach (Target *t, m_project->targets())
|
|
|
|
|
targetAdded(t);
|
2010-02-22 14:42:37 +01:00
|
|
|
m_selector->markActive(m_targets.indexOf(m_project->activeTarget()));
|
2010-02-08 15:50:06 +01:00
|
|
|
|
|
|
|
|
connect(m_selector, SIGNAL(currentIndexChanged(int,int)),
|
|
|
|
|
this, SLOT(currentTargetIndexChanged(int,int)));
|
|
|
|
|
connect(m_selector, SIGNAL(addButtonClicked()),
|
|
|
|
|
this, SLOT(addTarget()));
|
2010-02-10 17:29:08 +01:00
|
|
|
connect(m_selector, SIGNAL(removeButtonClicked()),
|
|
|
|
|
this, SLOT(removeTarget()));
|
2010-02-08 15:50:06 +01:00
|
|
|
|
|
|
|
|
if (m_project->targets().count())
|
2010-02-22 14:42:37 +01:00
|
|
|
currentTargetIndexChanged(m_targets.indexOf(m_project->activeTarget()), 0);
|
2010-02-08 15:50:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TargetSettingsPanelWidget::currentTargetIndexChanged(int targetIndex, int subIndex)
|
|
|
|
|
{
|
2010-02-23 14:33:18 +01:00
|
|
|
if (targetIndex < -1 || targetIndex >= m_targets.count())
|
2010-02-08 15:50:06 +01:00
|
|
|
return;
|
|
|
|
|
if (subIndex < -1 || subIndex >= 2)
|
|
|
|
|
return;
|
|
|
|
|
m_selector->setCurrentIndex(targetIndex);
|
|
|
|
|
m_selector->setCurrentSubIndex(subIndex);
|
|
|
|
|
|
2010-02-22 14:42:37 +01:00
|
|
|
Target *target(m_targets.at(targetIndex));
|
2010-02-08 15:50:06 +01:00
|
|
|
|
|
|
|
|
// Target was not actually changed:
|
|
|
|
|
if (m_currentIndex == targetIndex) {
|
2010-02-23 14:33:18 +01:00
|
|
|
if (m_panelWidgets[subIndex])
|
|
|
|
|
m_centralWidget->setCurrentWidget(m_panelWidgets[subIndex]);
|
|
|
|
|
else
|
|
|
|
|
m_centralWidget->setCurrentWidget(m_noTargetLabel);
|
2010-02-08 15:50:06 +01:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-23 14:33:18 +01:00
|
|
|
m_currentIndex = targetIndex;
|
2010-02-08 15:50:06 +01:00
|
|
|
|
2010-02-23 14:33:18 +01:00
|
|
|
// Target has changed:
|
2010-02-08 15:50:06 +01:00
|
|
|
if (targetIndex == -1) { // no more targets!
|
|
|
|
|
m_centralWidget->setCurrentWidget(m_noTargetLabel);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PanelsWidget *buildPanel(new PanelsWidget(m_centralWidget));
|
|
|
|
|
PanelsWidget *runPanel(new PanelsWidget(m_centralWidget));
|
|
|
|
|
|
|
|
|
|
foreach (IPanelFactory *panelFactory, ExtensionSystem::PluginManager::instance()->getObjects<IPanelFactory>()) {
|
|
|
|
|
if (panelFactory->id() == QLatin1String(BUILDSETTINGS_PANEL_ID)) {
|
|
|
|
|
IPropertiesPanel *panel = panelFactory->createPanel(target);
|
|
|
|
|
buildPanel->addPropertiesPanel(panel);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (panelFactory->id() == QLatin1String(RUNSETTINGS_PANEL_ID)) {
|
|
|
|
|
IPropertiesPanel *panel = panelFactory->createPanel(target);
|
|
|
|
|
runPanel->addPropertiesPanel(panel);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
m_centralWidget->addWidget(buildPanel);
|
|
|
|
|
m_centralWidget->addWidget(runPanel);
|
|
|
|
|
|
2010-02-23 14:33:18 +01:00
|
|
|
m_centralWidget->setCurrentWidget(subIndex == 0 ? buildPanel : runPanel);
|
|
|
|
|
|
|
|
|
|
delete m_panelWidgets[0];
|
2010-02-08 15:50:06 +01:00
|
|
|
m_panelWidgets[0] = buildPanel;
|
2010-02-23 14:33:18 +01:00
|
|
|
delete m_panelWidgets[1];
|
2010-02-08 15:50:06 +01:00
|
|
|
m_panelWidgets[1] = runPanel;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TargetSettingsPanelWidget::addTarget()
|
|
|
|
|
{
|
|
|
|
|
AddTargetDialog dialog(m_project);
|
|
|
|
|
dialog.exec();
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-10 17:29:08 +01:00
|
|
|
void TargetSettingsPanelWidget::removeTarget()
|
|
|
|
|
{
|
|
|
|
|
int index = m_selector->currentIndex();
|
2010-02-22 14:42:37 +01:00
|
|
|
Target *t = m_targets.at(index);
|
2010-02-10 17:29:08 +01:00
|
|
|
// TODO: Ask before removal?
|
|
|
|
|
m_project->removeTarget(t);
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
void TargetSettingsPanelWidget::targetAdded(ProjectExplorer::Target *target)
|
|
|
|
|
{
|
|
|
|
|
Q_ASSERT(m_project == target->project());
|
|
|
|
|
Q_ASSERT(m_selector);
|
|
|
|
|
|
2010-02-22 14:42:37 +01:00
|
|
|
for (int pos = 0; pos <= m_targets.count(); ++pos) {
|
|
|
|
|
if (m_targets.count() == pos ||
|
|
|
|
|
m_targets.at(pos)->displayName() > target->displayName()) {
|
|
|
|
|
m_targets.insert(pos, target);
|
|
|
|
|
m_selector->insertTarget(pos, target->displayName());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-10 17:29:08 +01:00
|
|
|
m_selector->setAddButtonEnabled(m_project->possibleTargetIds().count() > 0);
|
|
|
|
|
m_selector->setRemoveButtonEnabled(m_project->targets().count() > 1);
|
2010-02-08 15:50:06 +01:00
|
|
|
}
|
|
|
|
|
|
2010-02-10 17:29:08 +01:00
|
|
|
void TargetSettingsPanelWidget::aboutToRemoveTarget(ProjectExplorer::Target *target)
|
2010-02-08 15:50:06 +01:00
|
|
|
{
|
|
|
|
|
Q_ASSERT(m_project == target->project());
|
|
|
|
|
Q_ASSERT(m_selector);
|
|
|
|
|
|
2010-02-22 14:42:37 +01:00
|
|
|
int index(m_targets.indexOf(target));
|
2010-02-08 15:50:06 +01:00
|
|
|
if (index < 0)
|
|
|
|
|
return;
|
2010-02-22 14:42:37 +01:00
|
|
|
m_targets.removeAt(index);
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
m_selector->removeTarget(index);
|
2010-02-10 17:29:08 +01:00
|
|
|
m_selector->setAddButtonEnabled(m_project->possibleTargetIds().count() > 0);
|
|
|
|
|
m_selector->setRemoveButtonEnabled(m_project->targets().count() > 2); // target is not yet removed!
|
2010-02-08 15:50:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TargetSettingsPanelWidget::activeTargetChanged(ProjectExplorer::Target *target)
|
|
|
|
|
{
|
|
|
|
|
Q_ASSERT(m_project == target->project());
|
|
|
|
|
Q_ASSERT(m_selector);
|
|
|
|
|
|
2010-02-22 14:42:37 +01:00
|
|
|
int index(m_targets.indexOf(target));
|
2010-02-08 15:50:06 +01:00
|
|
|
m_selector->markActive(index);
|
|
|
|
|
}
|