forked from qt-creator/qt-creator
136 lines
4.9 KiB
C++
136 lines
4.9 KiB
C++
|
|
/**************************************************************************
|
||
|
|
**
|
||
|
|
** 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 "genericlinuxdeviceconfigurationwizardsetuppage.h"
|
||
|
|
#include "ui_genericlinuxdeviceconfigurationwizardsetuppage.h"
|
||
|
|
|
||
|
|
#include "linuxdeviceconfiguration.h"
|
||
|
|
|
||
|
|
namespace RemoteLinux {
|
||
|
|
namespace Internal {
|
||
|
|
|
||
|
|
class GenericLinuxDeviceConfigurationWizardSetupPagePrivate
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
Ui::GenericLinuxDeviceConfigurationWizardSetupPage ui;
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace Internal
|
||
|
|
|
||
|
|
using namespace Utils;
|
||
|
|
|
||
|
|
GenericLinuxDeviceConfigurationWizardSetupPage::GenericLinuxDeviceConfigurationWizardSetupPage(QWidget *parent) :
|
||
|
|
QWizardPage(parent), m_d(new Internal::GenericLinuxDeviceConfigurationWizardSetupPagePrivate)
|
||
|
|
{
|
||
|
|
m_d->ui.setupUi(this);
|
||
|
|
setTitle(tr("Connection Data"));
|
||
|
|
setSubTitle(QLatin1String(" ")); // For Qt bug (background color)
|
||
|
|
m_d->ui.privateKeyPathChooser->setExpectedKind(PathChooser::File);
|
||
|
|
connect(m_d->ui.nameLineEdit, SIGNAL(textChanged(QString)), SIGNAL(completeChanged()));
|
||
|
|
connect(m_d->ui.hostNameLineEdit, SIGNAL(textChanged(QString)), SIGNAL(completeChanged()));
|
||
|
|
connect(m_d->ui.userNameLineEdit, SIGNAL(textChanged(QString)), SIGNAL(completeChanged()));
|
||
|
|
connect(m_d->ui.privateKeyPathChooser, SIGNAL(validChanged()), SIGNAL(completeChanged()));
|
||
|
|
connect(m_d->ui.passwordButton, SIGNAL(toggled(bool)), SLOT(handleAuthTypeChanged()));
|
||
|
|
}
|
||
|
|
|
||
|
|
GenericLinuxDeviceConfigurationWizardSetupPage::~GenericLinuxDeviceConfigurationWizardSetupPage()
|
||
|
|
{
|
||
|
|
delete m_d;
|
||
|
|
}
|
||
|
|
|
||
|
|
void GenericLinuxDeviceConfigurationWizardSetupPage::initializePage()
|
||
|
|
{
|
||
|
|
m_d->ui.nameLineEdit->setText(QLatin1String("(New Configuration)"));
|
||
|
|
m_d->ui.hostNameLineEdit->setText(defaultHostName());
|
||
|
|
m_d->ui.userNameLineEdit->setText(defaultUserName());
|
||
|
|
m_d->ui.passwordButton->setChecked(true);
|
||
|
|
m_d->ui.passwordLineEdit->clear();
|
||
|
|
m_d->ui.privateKeyPathChooser->setPath(LinuxDeviceConfiguration::defaultPrivateKeyFilePath());
|
||
|
|
handleAuthTypeChanged();
|
||
|
|
}
|
||
|
|
|
||
|
|
bool GenericLinuxDeviceConfigurationWizardSetupPage::isComplete() const
|
||
|
|
{
|
||
|
|
return !configurationName().isEmpty() && !hostName().isEmpty() && !userName().isEmpty()
|
||
|
|
&& (authenticationType() == SshConnectionParameters::AuthenticationByPassword
|
||
|
|
|| !m_d->ui.privateKeyPathChooser->isValid());
|
||
|
|
}
|
||
|
|
|
||
|
|
QString GenericLinuxDeviceConfigurationWizardSetupPage::configurationName() const
|
||
|
|
{
|
||
|
|
return m_d->ui.nameLineEdit->text().trimmed();
|
||
|
|
}
|
||
|
|
|
||
|
|
QString GenericLinuxDeviceConfigurationWizardSetupPage::hostName() const
|
||
|
|
{
|
||
|
|
return m_d->ui.hostNameLineEdit->text().trimmed();
|
||
|
|
}
|
||
|
|
|
||
|
|
QString GenericLinuxDeviceConfigurationWizardSetupPage::userName() const
|
||
|
|
{
|
||
|
|
return m_d->ui.userNameLineEdit->text().trimmed();
|
||
|
|
}
|
||
|
|
|
||
|
|
SshConnectionParameters::AuthenticationType GenericLinuxDeviceConfigurationWizardSetupPage::authenticationType() const
|
||
|
|
{
|
||
|
|
return m_d->ui.passwordButton->isChecked()
|
||
|
|
? SshConnectionParameters::AuthenticationByPassword
|
||
|
|
: SshConnectionParameters::AuthenticationByKey;
|
||
|
|
}
|
||
|
|
|
||
|
|
QString GenericLinuxDeviceConfigurationWizardSetupPage::password() const
|
||
|
|
{
|
||
|
|
return m_d->ui.passwordLineEdit->text();
|
||
|
|
}
|
||
|
|
|
||
|
|
QString GenericLinuxDeviceConfigurationWizardSetupPage::privateKeyFilePath() const
|
||
|
|
{
|
||
|
|
return m_d->ui.privateKeyPathChooser->path();
|
||
|
|
}
|
||
|
|
|
||
|
|
QString GenericLinuxDeviceConfigurationWizardSetupPage::defaultHostName() const
|
||
|
|
{
|
||
|
|
return QString();
|
||
|
|
}
|
||
|
|
|
||
|
|
QString GenericLinuxDeviceConfigurationWizardSetupPage::defaultUserName() const
|
||
|
|
{
|
||
|
|
return QString();
|
||
|
|
}
|
||
|
|
|
||
|
|
void GenericLinuxDeviceConfigurationWizardSetupPage::handleAuthTypeChanged()
|
||
|
|
{
|
||
|
|
m_d->ui.passwordLineEdit->setEnabled(authenticationType() == SshConnectionParameters::AuthenticationByPassword);
|
||
|
|
m_d->ui.privateKeyPathChooser->setEnabled(authenticationType() == SshConnectionParameters::AuthenticationByKey);
|
||
|
|
emit completeChanged();
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace RemoteLinux
|