OSDN Git Service

It's 2011 now.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qt4projectmanager / qt-maemo / maemodeviceconfigurationssettingswidget.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of Qt Creator.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU Lesser
18 ** General Public License version 2.1 as published by the Free Software
19 ** Foundation and appearing in the file LICENSE.LGPL included in the
20 ** packaging of this file.  Please review the following information to
21 ** ensure the GNU Lesser General Public License version 2.1 requirements
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23 **
24 ** In addition, as a special exception, Nokia gives you certain additional
25 ** rights.  These rights are described in the Nokia Qt LGPL Exception
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 ** $QT_END_LICENSE$
32 **
33 ****************************************************************************/
34
35 #ifndef MAEMODEVICECONFIGURATIONSSETTINGSWIDGET_H
36 #define MAEMODEVICECONFIGURATIONSSETTINGSWIDGET_H
37
38 #include "maemodeviceconfigurations.h"
39
40 #include <QtCore/QList>
41 #include <QtCore/QSharedPointer>
42 #include <QtCore/QString>
43 #include <QtGui/QWidget>
44
45 QT_BEGIN_NAMESPACE
46 class QLineEdit;
47
48 class Ui_MaemoDeviceConfigurationsSettingsWidget;
49 QT_END_NAMESPACE
50
51 namespace Core {
52 class SshRemoteProcessRunner;
53 }
54
55 namespace Qt4ProjectManager {
56 namespace Internal {
57
58 class NameValidator;
59
60 class MaemoDeviceConfigurationsSettingsWidget : public QWidget
61 {
62     Q_OBJECT
63 public:
64     MaemoDeviceConfigurationsSettingsWidget(QWidget *parent);
65     ~MaemoDeviceConfigurationsSettingsWidget();
66
67     void saveSettings();
68     QString searchKeywords() const;
69
70 private slots:
71     void currentConfigChanged(int index);
72     void addConfig();
73     void deleteConfig();
74     void configNameEditingFinished();
75     void deviceTypeChanged();
76     void authenticationTypeChanged();
77     void hostNameEditingFinished();
78     void sshPortEditingFinished();
79     void timeoutEditingFinished();
80     void userNameEditingFinished();
81     void passwordEditingFinished();
82     void keyFileEditingFinished();
83     void showPassword(bool showClearText);
84     void handleFreePortsChanged();
85     void showRemoteProcesses();
86     void setDefaultKeyFilePath();
87
88     // For configuration testing.
89     void testConfig();
90
91     void showGenerateSshKeyDialog();
92     void setPrivateKey(const QString &path);
93
94     // For key deploying.
95     void deployKey();
96     void stopDeploying();
97     void handleConnectionFailure();
98     void handleKeyUploadFinished(int exitStatus);
99
100 private:
101     void initGui();
102     void display(const MaemoDeviceConfig &devConfig);
103     MaemoDeviceConfig &currentConfig();
104     void clearDetails();
105     QString parseTestOutput();
106     void fillInValues();
107     void updatePortsWarningLabel();
108
109     Ui_MaemoDeviceConfigurationsSettingsWidget *m_ui;
110     QList<MaemoDeviceConfig> m_devConfs;
111     MaemoDeviceConfig m_lastConfigHW;
112     MaemoDeviceConfig m_lastConfigSim;
113     NameValidator * const m_nameValidator;
114     QSharedPointer<Core::SshRemoteProcessRunner> m_keyDeployer;
115     bool m_saveSettingsRequested;
116 };
117
118 } // namespace Internal
119 } // namespace Qt4ProjectManager
120
121 #endif // MAEMODEVICECONFIGURATIONSSETTINGSWIDGET_H