aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux/genericlinuxdeviceconfigurationwidget.h
diff options
context:
space:
mode:
authorNicolas Arnaud-Cormos <nicolas@kdab.com>2012-02-15 14:47:45 -0800
committerChristian Kandeler <christian.kandeler@nokia.com>2012-02-20 17:51:10 +0100
commit74da217204ff126f6d5e67311bc9845a1a459bc1 (patch)
treea16abe52a71629a8ec51af0e7a8e14dc37687eb7 /src/plugins/remotelinux/genericlinuxdeviceconfigurationwidget.h
parent147396d764aff1b5ca5cf2a50b43efb37e02291c (diff)
Extract the device specific settings for linux device.
The LinuxConfigFactory has now a new pure virtual method to create the widget for the device specific settings. It allows new device to create their own settings page. Change-Id: Ie14df043fdef088b0e6e3b1e08b5d0d1863f76e5 Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
Diffstat (limited to 'src/plugins/remotelinux/genericlinuxdeviceconfigurationwidget.h')
-rw-r--r--src/plugins/remotelinux/genericlinuxdeviceconfigurationwidget.h77
1 files changed, 77 insertions, 0 deletions
diff --git a/src/plugins/remotelinux/genericlinuxdeviceconfigurationwidget.h b/src/plugins/remotelinux/genericlinuxdeviceconfigurationwidget.h
new file mode 100644
index 0000000000..7e5a3ef30d
--- /dev/null
+++ b/src/plugins/remotelinux/genericlinuxdeviceconfigurationwidget.h
@@ -0,0 +1,77 @@
+/**************************************************************************
+**
+** This file is part of Qt Creator
+**
+** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
+**
+** Contact: Nokia Corporation (qt-info@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 qt-info@nokia.com.
+**
+**************************************************************************/
+
+#ifndef REMOTELINUX_GENERICLINUXDEVICECONFIGURATIONWIDGET_H
+#define REMOTELINUX_GENERICLINUXDEVICECONFIGURATIONWIDGET_H
+
+#include "remotelinux_export.h"
+
+#include "linuxdeviceconfiguration.h"
+
+namespace RemoteLinux {
+
+namespace Ui {
+class GenericLinuxDeviceConfigurationWidget;
+}
+
+class REMOTELINUX_EXPORT GenericLinuxDeviceConfigurationWidget : public ILinuxDeviceConfigurationWidget
+{
+ Q_OBJECT
+
+public:
+ explicit GenericLinuxDeviceConfigurationWidget(
+ const LinuxDeviceConfiguration::Ptr &deviceConfig,
+ QWidget *parent = 0);
+ ~GenericLinuxDeviceConfigurationWidget();
+
+private slots:
+ void authenticationTypeChanged();
+ void hostNameEditingFinished();
+ void sshPortEditingFinished();
+ void timeoutEditingFinished();
+ void userNameEditingFinished();
+ void passwordEditingFinished();
+ void keyFileEditingFinished();
+ void showPassword(bool showClearText);
+ void handleFreePortsChanged();
+ void setDefaultKeyFilePath();
+ void setPrivateKey(const QString &path);
+
+private:
+ void updatePortsWarningLabel();
+ void initGui();
+
+ Ui::GenericLinuxDeviceConfigurationWidget *m_ui;
+};
+
+} // namespace RemoteLinux
+
+#endif // REMOTELINUX_GENERICLINUXDEVICECONFIGURATIONWIDGET_H