2011-08-01 16:44:59 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Nokia Corporation (info@qt.nokia.com)
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
|
|
|
|
** 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, Nokia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** If you have questions regarding the use of this file, please contact
|
|
|
|
|
** Nokia at info@qt.nokia.com.
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
#include "remotelinuxdeployconfigurationwidget.h"
|
|
|
|
|
#include "ui_remotelinuxdeployconfigurationwidget.h"
|
|
|
|
|
|
|
|
|
|
#include "deployablefilesperprofile.h"
|
|
|
|
|
#include "deploymentinfo.h"
|
|
|
|
|
#include "linuxdeviceconfigurations.h"
|
|
|
|
|
#include "remotelinuxdeployconfiguration.h"
|
|
|
|
|
#include "remotelinuxsettingspages.h"
|
|
|
|
|
#include "typespecificdeviceconfigurationlistmodel.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
|
|
|
|
|
namespace RemoteLinux {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class RemoteLinuxDeployConfigurationWidgetPrivate
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
Ui::RemoteLinuxDeployConfigurationWidget ui;
|
|
|
|
|
RemoteLinuxDeployConfiguration *deployConfiguration;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
|
|
|
|
|
using namespace Internal;
|
|
|
|
|
|
|
|
|
|
RemoteLinuxDeployConfigurationWidget::RemoteLinuxDeployConfigurationWidget(QWidget *parent) :
|
2011-09-15 09:10:10 +02:00
|
|
|
DeployConfigurationWidget(parent), d(new RemoteLinuxDeployConfigurationWidgetPrivate)
|
2011-08-01 16:44:59 +02:00
|
|
|
{
|
2011-09-15 09:10:10 +02:00
|
|
|
d->ui.setupUi(this);
|
2011-08-01 16:44:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RemoteLinuxDeployConfigurationWidget::~RemoteLinuxDeployConfigurationWidget()
|
|
|
|
|
{
|
2011-09-15 09:10:10 +02:00
|
|
|
delete d;
|
2011-08-01 16:44:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RemoteLinuxDeployConfigurationWidget::init(DeployConfiguration *dc)
|
|
|
|
|
{
|
2011-09-15 09:10:10 +02:00
|
|
|
d->deployConfiguration = qobject_cast<RemoteLinuxDeployConfiguration *>(dc);
|
|
|
|
|
Q_ASSERT(d->deployConfiguration);
|
2011-08-01 16:44:59 +02:00
|
|
|
|
2011-09-15 09:10:10 +02:00
|
|
|
connect(d->ui.manageDevConfsLabel, SIGNAL(linkActivated(QString)),
|
2011-08-01 16:44:59 +02:00
|
|
|
SLOT(showDeviceConfigurations()));
|
|
|
|
|
|
2011-09-15 09:10:10 +02:00
|
|
|
d->ui.deviceConfigsComboBox->setModel(d->deployConfiguration->deviceConfigModel().data());
|
|
|
|
|
connect(d->ui.deviceConfigsComboBox, SIGNAL(activated(int)),
|
2011-08-01 16:44:59 +02:00
|
|
|
SLOT(handleSelectedDeviceConfigurationChanged(int)));
|
2011-09-15 09:10:10 +02:00
|
|
|
connect(d->deployConfiguration, SIGNAL(deviceConfigurationListChanged()),
|
2011-08-01 16:44:59 +02:00
|
|
|
SLOT(handleDeviceConfigurationListChanged()));
|
|
|
|
|
handleDeviceConfigurationListChanged();
|
|
|
|
|
|
2011-09-15 09:10:10 +02:00
|
|
|
d->ui.projectsComboBox->setModel(d->deployConfiguration->deploymentInfo().data());
|
|
|
|
|
connect(d->deployConfiguration->deploymentInfo().data(), SIGNAL(modelAboutToBeReset()),
|
2011-08-01 16:44:59 +02:00
|
|
|
SLOT(handleModelListToBeReset()));
|
|
|
|
|
|
|
|
|
|
// Queued connection because of race condition with combo box's reaction
|
|
|
|
|
// to modelReset().
|
2011-09-15 09:10:10 +02:00
|
|
|
connect(d->deployConfiguration->deploymentInfo().data(), SIGNAL(modelReset()),
|
2011-08-01 16:44:59 +02:00
|
|
|
SLOT(handleModelListReset()), Qt::QueuedConnection);
|
|
|
|
|
|
2011-09-15 09:10:10 +02:00
|
|
|
connect(d->ui.projectsComboBox, SIGNAL(currentIndexChanged(int)), SLOT(setModel(int)));
|
2011-08-01 16:44:59 +02:00
|
|
|
handleModelListReset();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RemoteLinuxDeployConfiguration *RemoteLinuxDeployConfigurationWidget::deployConfiguration() const
|
|
|
|
|
{
|
2011-09-15 09:10:10 +02:00
|
|
|
return d->deployConfiguration;
|
2011-08-01 16:44:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DeployableFilesPerProFile *RemoteLinuxDeployConfigurationWidget::currentModel() const
|
|
|
|
|
{
|
2011-09-15 09:10:10 +02:00
|
|
|
const int modelRow = d->ui.projectsComboBox->currentIndex();
|
2011-08-01 16:44:59 +02:00
|
|
|
if (modelRow == -1)
|
|
|
|
|
return 0;
|
2011-09-15 09:10:10 +02:00
|
|
|
return d->deployConfiguration->deploymentInfo()->modelAt(modelRow);
|
2011-08-01 16:44:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RemoteLinuxDeployConfigurationWidget::handleModelListToBeReset()
|
|
|
|
|
{
|
2011-09-15 09:10:10 +02:00
|
|
|
d->ui.tableView->setModel(0);
|
2011-08-01 16:44:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RemoteLinuxDeployConfigurationWidget::handleModelListReset()
|
|
|
|
|
{
|
2011-09-15 09:10:10 +02:00
|
|
|
QTC_ASSERT(d->deployConfiguration->deploymentInfo()->modelCount()
|
|
|
|
|
== d->ui.projectsComboBox->count(), return);
|
2011-08-01 16:44:59 +02:00
|
|
|
|
2011-09-15 09:10:10 +02:00
|
|
|
if (d->deployConfiguration->deploymentInfo()->modelCount() > 0) {
|
|
|
|
|
if (d->ui.projectsComboBox->currentIndex() == -1)
|
|
|
|
|
d->ui.projectsComboBox->setCurrentIndex(0);
|
2011-08-01 16:44:59 +02:00
|
|
|
else
|
2011-09-15 09:10:10 +02:00
|
|
|
setModel(d->ui.projectsComboBox->currentIndex());
|
2011-08-01 16:44:59 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RemoteLinuxDeployConfigurationWidget::setModel(int row)
|
|
|
|
|
{
|
|
|
|
|
DeployableFilesPerProFile * const proFileInfo = row == -1
|
2011-09-15 09:10:10 +02:00
|
|
|
? 0 : d->deployConfiguration->deploymentInfo()->modelAt(row);
|
|
|
|
|
d->ui.tableView->setModel(proFileInfo);
|
2011-08-01 16:44:59 +02:00
|
|
|
if (proFileInfo)
|
2011-09-15 09:10:10 +02:00
|
|
|
d->ui.tableView->resizeRowsToContents();
|
2011-08-01 16:44:59 +02:00
|
|
|
emit currentModelChanged(proFileInfo);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RemoteLinuxDeployConfigurationWidget::handleSelectedDeviceConfigurationChanged(int index)
|
|
|
|
|
{
|
2011-09-15 09:10:10 +02:00
|
|
|
disconnect(d->deployConfiguration, SIGNAL(deviceConfigurationListChanged()), this,
|
2011-08-01 16:44:59 +02:00
|
|
|
SLOT(handleDeviceConfigurationListChanged()));
|
2011-09-15 09:10:10 +02:00
|
|
|
d->deployConfiguration->setDeviceConfiguration(index);
|
|
|
|
|
connect(d->deployConfiguration, SIGNAL(deviceConfigurationListChanged()),
|
2011-08-01 16:44:59 +02:00
|
|
|
SLOT(handleDeviceConfigurationListChanged()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RemoteLinuxDeployConfigurationWidget::handleDeviceConfigurationListChanged()
|
|
|
|
|
{
|
|
|
|
|
const LinuxDeviceConfiguration::ConstPtr &devConf
|
2011-09-15 09:10:10 +02:00
|
|
|
= d->deployConfiguration->deviceConfiguration();
|
2011-08-01 16:44:59 +02:00
|
|
|
const LinuxDeviceConfiguration::Id internalId
|
|
|
|
|
= LinuxDeviceConfigurations::instance()->internalId(devConf);
|
2011-09-15 09:10:10 +02:00
|
|
|
const int newIndex = d->deployConfiguration->deviceConfigModel()->indexForInternalId(internalId);
|
|
|
|
|
d->ui.deviceConfigsComboBox->setCurrentIndex(newIndex);
|
2011-08-01 16:44:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RemoteLinuxDeployConfigurationWidget::showDeviceConfigurations()
|
|
|
|
|
{
|
|
|
|
|
Core::ICore::instance()->showOptionsDialog(LinuxDeviceConfigurationsSettingsPage::pageCategory(),
|
|
|
|
|
LinuxDeviceConfigurationsSettingsPage::pageId());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace RemoteLinux
|