~ubuntu-sdk-team/qtcreator-plugin-remotelinux/trunk

« back to all changes in this revision

Viewing changes to src/qnx/blackberrydeviceconfigurationwidget.h

  • Committer: CI bot
  • Author(s): Benjamin Zeller
  • Date: 2014-06-16 10:28:43 UTC
  • mfrom: (4.2.4 remotelinux)
  • Revision ID: ps-jenkins@lists.canonical.com-20140616102843-8juvmjvzwlzsboyw
Migrating to Qt5.3 and QtC 3.1 

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
namespace Internal {
46
46
 
47
47
class BlackBerryDebugTokenUploader;
 
48
class BlackBerrySigningUtils;
48
49
 
49
 
namespace Ui {
50
 
class BlackBerryDeviceConfigurationWidget;
51
 
}
 
50
namespace Ui { class BlackBerryDeviceConfigurationWidget; }
52
51
 
53
52
class BlackBerryDeviceConfigurationWidget : public ProjectExplorer::IDeviceWidget
54
53
{
65
64
    void keyFileEditingFinished();
66
65
    void showPassword(bool showClearText);
67
66
    void debugTokenEditingFinished();
 
67
    void importDebugToken();
68
68
    void requestDebugToken();
69
69
    void uploadDebugToken();
70
70
    void updateUploadButton();
71
71
    void uploadFinished(int status);
72
72
    void appendConnectionLog(Core::Id deviceId, const QString &line);
73
73
    void clearConnectionLog(Core::Id deviceId);
 
74
    void populateDebugTokenCombo(const QString &current);
 
75
    void updateDebugTokenCombo();
74
76
 
75
77
private:
76
78
    void updateDeviceFromUi();
84
86
    QProgressDialog *progressDialog;
85
87
 
86
88
    BlackBerryDebugTokenUploader *uploader;
 
89
    BlackBerrySigningUtils &m_utils;
87
90
};
88
91
 
89
92