2012-06-29 07:23:13 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2012 - 2014 BlackBerry Limited. All rights reserved.
|
2012-06-29 07:23:13 +02:00
|
|
|
**
|
2013-10-11 17:44:13 +02:00
|
|
|
** Contact: BlackBerry (qt@blackberry.com)
|
2012-06-29 07:23:13 +02:00
|
|
|
** Contact: KDAB (info@kdab.com)
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2012-06-29 07:23:13 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2012-06-29 07:23:13 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
** Alternatively, 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, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2012-06-29 07:23:13 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2012-06-29 07:23:13 +02:00
|
|
|
|
|
|
|
|
#ifndef QNX_INTERNAL_BLACKBERRYDEVICECONFIGURATIONWIZARD_H
|
|
|
|
|
#define QNX_INTERNAL_BLACKBERRYDEVICECONFIGURATIONWIZARD_H
|
|
|
|
|
|
2013-08-12 15:22:55 +02:00
|
|
|
#include "blackberrydeviceconfigurationwizardpages.h"
|
|
|
|
|
|
2012-06-29 07:23:13 +02:00
|
|
|
#include <projectexplorer/devicesupport/idevice.h>
|
2013-10-09 11:20:26 +02:00
|
|
|
#include <utils/wizard.h>
|
2012-06-29 07:23:13 +02:00
|
|
|
|
|
|
|
|
namespace Qnx {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2013-10-09 11:20:26 +02:00
|
|
|
class BlackBerryDeviceConfigurationWizard : public Utils::Wizard
|
2012-06-29 07:23:13 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
explicit BlackBerryDeviceConfigurationWizard(QWidget *parent = 0);
|
|
|
|
|
|
|
|
|
|
ProjectExplorer::IDevice::Ptr device();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
enum PageId {
|
|
|
|
|
SetupPageId,
|
2013-08-12 15:22:55 +02:00
|
|
|
QueryPageId,
|
|
|
|
|
ConfigPageId,
|
2012-06-29 07:23:13 +02:00
|
|
|
FinalPageId
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
BlackBerryDeviceConfigurationWizardSetupPage *m_setupPage;
|
2013-08-12 15:22:55 +02:00
|
|
|
BlackBerryDeviceConfigurationWizardQueryPage *m_queryPage;
|
|
|
|
|
BlackBerryDeviceConfigurationWizardConfigPage *m_configPage;
|
2012-06-29 07:23:13 +02:00
|
|
|
BlackBerryDeviceConfigurationWizardFinalPage *m_finalPage;
|
2013-08-12 15:22:55 +02:00
|
|
|
|
|
|
|
|
BlackBerryDeviceConfigurationWizardHolder m_holder;
|
2012-06-29 07:23:13 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Qnx
|
|
|
|
|
|
|
|
|
|
#endif // QNX_INTERNAL_BLACKBERRYDEVICECONFIGURATIONWIZARD_H
|