aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qnx/qnxdevicewizard.h
blob: a5abbd95a6bc9e44ed83fb5eec1e5c237b70cdde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright (C) 2016 BlackBerry Limited. All rights reserved.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "qnxdevice.h"

#include <utils/wizard.h>

namespace RemoteLinux {
class GenericLinuxDeviceConfigurationWizardSetupPage;
class GenericLinuxDeviceConfigurationWizardKeyDeploymentPage;
class GenericLinuxDeviceConfigurationWizardFinalPage;
}

namespace Qnx::Internal {

class QnxDeviceWizard : public Utils::Wizard
{
public:
    explicit QnxDeviceWizard(QWidget *parent = nullptr);

    ProjectExplorer::IDevice::Ptr device();

private:
    enum PageId {
        SetupPageId,
        KeyDeploymenPageId,
        FinalPageId
    };

    RemoteLinux::GenericLinuxDeviceConfigurationWizardSetupPage *m_setupPage;
    RemoteLinux::GenericLinuxDeviceConfigurationWizardKeyDeploymentPage *m_keyDeploymentPage;
    RemoteLinux::GenericLinuxDeviceConfigurationWizardFinalPage *m_finalPage;
    QnxDevice::Ptr m_device;
};

} // Qnx::Internal