aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizardpages.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2011-06-21 12:44:52 +0200
committerChristian Kandeler <christian.kandeler@nokia.com>2011-06-21 12:51:46 +0200
commit92b172641b55978e701aaf8231cdf93d59f01be2 (patch)
tree7386977f859d81f93adc4c9264ac0337cd60bf7a /src/plugins/remotelinux/genericlinuxdeviceconfigurationwizardpages.h
parente31accb84886cb7f60fcd359c9bb4b6a0dda4cd3 (diff)
RemoteLinux: Export and re-use wizard page.
Also rename the respective file to better reflect its new purpose. Change-Id: I815807a958d2d76db87d4d27b63338f5ced9ffeb Reviewed-on: http://codereview.qt.nokia.com/544 Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/genericlinuxdeviceconfigurationwizardpages.h')
-rw-r--r--src/plugins/remotelinux/genericlinuxdeviceconfigurationwizardpages.h96
1 files changed, 96 insertions, 0 deletions
diff --git a/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizardpages.h b/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizardpages.h
new file mode 100644
index 00000000000..10b6e0df0f0
--- /dev/null
+++ b/src/plugins/remotelinux/genericlinuxdeviceconfigurationwizardpages.h
@@ -0,0 +1,96 @@
+/**************************************************************************
+**
+** 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.
+**
+**************************************************************************/
+#ifndef GENERICLINUXDEVICECONFIGURATIONWIZARDSETUPPAGE_H
+#define GENERICLINUXDEVICECONFIGURATIONWIZARDSETUPPAGE_H
+
+#include "remotelinux_export.h"
+
+#include <utils/ssh/sshconnection.h>
+
+#include <QtGui/QWizardPage>
+
+QT_BEGIN_NAMESPACE
+class QLabel;
+QT_END_NAMESPACE
+
+namespace RemoteLinux {
+namespace Internal {
+class GenericLinuxDeviceConfigurationWizardSetupPagePrivate;
+} // namespace Internal
+
+class REMOTELINUX_EXPORT GenericLinuxDeviceConfigurationWizardSetupPage : public QWizardPage
+{
+ Q_OBJECT
+ Q_DISABLE_COPY(GenericLinuxDeviceConfigurationWizardSetupPage)
+
+public:
+ explicit GenericLinuxDeviceConfigurationWizardSetupPage(QWidget *parent = 0);
+ ~GenericLinuxDeviceConfigurationWizardSetupPage();
+
+ void initializePage();
+ bool isComplete() const;
+
+ QString configurationName() const;
+ QString hostName() const;
+ QString userName() const;
+ Utils::SshConnectionParameters::AuthenticationType authenticationType() const;
+ QString password() const;
+ QString privateKeyFilePath() const;
+
+ virtual QString defaultHostName() const;
+ virtual QString defaultUserName() const;
+ virtual QString defaultPassWord() const;
+
+private:
+ Q_SLOT void handleAuthTypeChanged();
+
+ Internal::GenericLinuxDeviceConfigurationWizardSetupPagePrivate * const m_d;
+};
+
+
+class REMOTELINUX_EXPORT GenericLinuxDeviceConfigurationWizardFinalPage : public QWizardPage
+{
+ Q_OBJECT
+public:
+ GenericLinuxDeviceConfigurationWizardFinalPage(QWidget *parent);
+
+ void initializePage();
+
+protected:
+ virtual QString infoText() const;
+
+private:
+ QLabel * const m_infoLabel;
+};
+
+} // namespace RemoteLinux
+
+#endif // GENERICLINUXDEVICECONFIGURATIONWIZARDSETUPPAGE_H