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_QNXCONSTANTS_H
|
|
|
|
|
#define QNX_QNXCONSTANTS_H
|
|
|
|
|
|
2013-01-09 09:23:37 -05:00
|
|
|
#include <QtGlobal>
|
|
|
|
|
|
2012-06-29 07:23:13 +02:00
|
|
|
namespace Qnx {
|
|
|
|
|
|
|
|
|
|
enum QnxArchitecture {
|
|
|
|
|
X86,
|
|
|
|
|
ArmLeV7,
|
|
|
|
|
UnknownArch
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
namespace Constants {
|
|
|
|
|
|
|
|
|
|
const int QNX_BB_QT_FACTORY_PRIO = 60;
|
|
|
|
|
const int QNX_QNX_QT_FACTORY_PRIO = 50;
|
|
|
|
|
|
|
|
|
|
const char QNX_TARGET_KEY[] = "QNX_TARGET";
|
|
|
|
|
const char QNX_HOST_KEY[] = "QNX_HOST";
|
|
|
|
|
|
|
|
|
|
const char QNX_BB_QT[] = "Qt4ProjectManager.QtVersion.QNX.BlackBerry";
|
|
|
|
|
const char QNX_QNX_QT[] = "Qt4ProjectManager.QtVersion.QNX.QNX";
|
|
|
|
|
|
|
|
|
|
const char QNX_BB_FEATURE[] = "QtSupport.Wizards.FeatureBlackBerry";
|
|
|
|
|
const char QNX_QNX_FEATURE[] = "QtSupport.Wizards.FeatureQNX";
|
|
|
|
|
|
|
|
|
|
const char QNX_BB_X86_TARGET_ID[] = "Qt4ProjectManager.Target.QNX.BBX86Target";
|
|
|
|
|
const char QNX_BB_ARMLEV7_TARGET_ID[] = "Qt4ProjectManager.Target.QNX.BBArmLeV7Target";
|
|
|
|
|
const char QNX_QNX_X86_TARGET_ID[] = "Qt4ProjectManager.Target.QNX.QNXX86Target";
|
|
|
|
|
const char QNX_QNX_ARMLEV7_TARGET_ID[] = "Qt4ProjectManager.Target.QNX.QNXArmLeV7Target";
|
|
|
|
|
|
|
|
|
|
const char QNX_BB_DEPLOYCONFIGURATION_ID[] = "Qt4ProjectManager.QNX.BBDeployConfiguration";
|
|
|
|
|
const char QNX_QNX_DEPLOYCONFIGURATION_ID[] = "Qt4ProjectManager.QNX.QNXDeployConfiguration";
|
|
|
|
|
|
|
|
|
|
const char QNX_BB_RUNCONFIGURATION_PREFIX[] = "Qt4ProjectManager.QNX.BBRunConfiguration.";
|
|
|
|
|
const char QNX_QNX_RUNCONFIGURATION_PREFIX[] = "Qt4ProjectManager.QNX.QNXRunConfiguration.";
|
|
|
|
|
|
|
|
|
|
const char QNX_CREATE_PACKAGE_BS_ID[] = "Qt4ProjectManager.QnxCreatePackageBuildStep";
|
|
|
|
|
const char QNX_DEPLOY_PACKAGE_BS_ID[] = "Qt4ProjectManager.QnxDeployPackageBuildStep";
|
2014-01-23 14:38:23 +01:00
|
|
|
const char QNX_CHECK_DEVICE_STATUS_BS_ID[] = "Qt4ProjectManager.QnxCheckDeviceStatusBuildStep";
|
2012-06-29 07:23:13 +02:00
|
|
|
|
|
|
|
|
const char QNX_PROFILEPATH_KEY[] = "Qt4ProjectManager.QnxRunConfiguration.ProFilePath";
|
|
|
|
|
|
|
|
|
|
const char QNX_BB_OS_TYPE[] = "BBOsType";
|
|
|
|
|
const char QNX_QNX_OS_TYPE[] = "QnxOsType";
|
|
|
|
|
|
|
|
|
|
const char QNX_DEBUG_TOKEN_KEY[] = "debugToken";
|
|
|
|
|
|
2013-01-08 10:03:47 -05:00
|
|
|
const char QNX_BLACKBERRY_CASCADES_WIZARD_ID[] = "Q.QnxBlackBerryCascadesApp";
|
2012-06-29 07:23:13 +02:00
|
|
|
const char QNX_BAR_DESCRIPTOR_WIZARD_ID[] = "Q.QnxBlackBerryBarDescriptor";
|
|
|
|
|
const char QNX_BLACKBERRY_QTQUICK_APP_WIZARD_ID[] = "Q.QnxBlackBerryQQApp";
|
|
|
|
|
const char QNX_BLACKBERRY_QTQUICK2_APP_WIZARD_ID[] = "Q.QnxBlackBerryQQ2App";
|
|
|
|
|
const char QNX_BLACKBERRY_GUI_APP_WIZARD_ID[] = "Q.QnxBlackBerryGuiApp";
|
2013-04-12 17:09:11 -03:00
|
|
|
const char QNX_BLACKBERRY_SETUP_WIZARD_ID[] = "Q.QnxBlackBerrySetupWizardId";
|
2012-06-29 07:23:13 +02:00
|
|
|
|
|
|
|
|
const char QNX_QNX_PLATFORM_NAME[] = "QNX";
|
|
|
|
|
const char QNX_BB_PLATFORM_NAME[] = "BlackBerry";
|
|
|
|
|
|
|
|
|
|
const char QNX_DEBUG_EXECUTABLE[] = "pdebug";
|
|
|
|
|
|
2013-09-09 15:47:46 +02:00
|
|
|
const char QNX_TOOLCHAIN_ID[] = "Qnx.QccToolChain";
|
|
|
|
|
|
2013-01-17 15:27:02 -02:00
|
|
|
// BlackBerry settings constants
|
2013-01-23 14:34:01 +01:00
|
|
|
const char QNX_BB_CATEGORY[] = "XF.BlackBerry";
|
2013-01-17 15:27:02 -02:00
|
|
|
const char QNX_BB_CATEGORY_TR[] = QT_TRANSLATE_NOOP("BlackBerry", "BlackBerry");
|
|
|
|
|
const char QNX_BB_CATEGORY_ICON[] = ":/qnx/images/target.png";
|
2014-02-13 09:47:06 +01:00
|
|
|
const char QNX_BB_SETUP_ID[] = "ZA.BlackBerry Setup";
|
2013-01-17 15:27:02 -02:00
|
|
|
const char QNX_BB_NDK_SETTINGS_ID[] = "ZZ.BlackBerry NDK Configuration";
|
2013-01-17 16:06:13 -02:00
|
|
|
const char QNX_BB_SIGNING_ID[] = "ZZ.BlackBerry Signing Infrastructure Configuration";
|
2013-01-09 09:23:37 -05:00
|
|
|
|
2013-01-11 14:24:43 +01:00
|
|
|
const char QNX_BAR_DESCRIPTOR_MIME_TYPE[] = "application/vnd.rim.qnx.bar_descriptor";
|
|
|
|
|
const char QNX_BAR_DESCRIPTOR_EDITOR_ID[] = "Qnx.BarDescriptorEditor";
|
2013-10-17 09:16:18 +02:00
|
|
|
const char QNX_BAR_DESCRIPTOR_EDITOR_CONTEXT[] = "Qnx.BarDescriptorEditor";
|
2013-01-11 14:24:43 +01:00
|
|
|
|
|
|
|
|
const char QNX_TASK_CATEGORY_BARDESCRIPTOR[] = "Task.Category.BarDescriptor";
|
2013-01-17 16:06:13 -02:00
|
|
|
|
|
|
|
|
const char QNX_KEY_AUTHOR[] = "author";
|
|
|
|
|
const char QNX_KEY_PATH[] = "path";
|
|
|
|
|
const char QNX_KEY_ACTIVE[] = "active";
|
2013-03-12 09:23:08 +01:00
|
|
|
|
|
|
|
|
const char QNX_BLACKBERRY_DEPLOY_CMD[] = "blackberry-deploy";
|
|
|
|
|
|
2013-10-02 10:49:01 +02:00
|
|
|
const char QNX_BLACKBERRY_CASCADESIMPORTER_VERSION[] = "0.0.1";
|
|
|
|
|
|
2013-12-05 18:24:08 +01:00
|
|
|
const char QNX_BLACKBERRY_CONFIGS_FILENAME[] = "bbndkconfigurations.xml";
|
|
|
|
|
|
2014-02-12 05:58:56 +01:00
|
|
|
const char QNX_DEBUGGING_GROUP[] = "Debugger.Group.Qnx";
|
|
|
|
|
|
2014-02-10 14:16:55 +01:00
|
|
|
const char QNX_BLACKBERRY_DEFAULT_DEPLOY_QT_BASEPATH[] = "/accounts/devuser/";
|
|
|
|
|
|
2014-02-13 09:47:06 +01:00
|
|
|
const char QNX_OK_ICON[] = ":/qnx/images/ok.png";
|
|
|
|
|
const char QNX_INFO_ICON[] = ":/qnx/images/info.png";
|
|
|
|
|
const char QNX_WARNING_ICON[] = ":/qnx/images/warning.png";
|
|
|
|
|
const char QNX_ERROR_ICON[] = ":/qnx/images/error.png";
|
|
|
|
|
|
|
|
|
|
const char QNX_BLACKBERRY_SETUP_URL[] = "http://qt-project.org/wiki/Qt-Creator-with-BlackBerry-10";
|
|
|
|
|
const char QNX_LEGACY_KEYS_URL[] = "https://developer.blackberry.com/native/documentation/core"
|
|
|
|
|
"/com.qnx.doc.native_sdk.devguide/topic/bbid_to_sa.html";
|
|
|
|
|
const char QNX_REGISTER_KEYS_URL[] = "https://www.blackberry.com/SignedKeys/codesigning.html";
|
|
|
|
|
|
2014-02-13 11:16:45 +01:00
|
|
|
const char QNX_BB_KEY_CONFIGURATION_TYPE[] = "BBConfigurationType";
|
|
|
|
|
|
|
|
|
|
const char QNX_BB_APILEVEL_TYPE[] = "BBApiLevel";
|
|
|
|
|
const char QNX_BB_RUNTIME_TYPE[] = "BBRuntime";
|
|
|
|
|
|
2012-06-29 07:23:13 +02:00
|
|
|
} // namespace Constants
|
|
|
|
|
} // namespace Qnx
|
|
|
|
|
|
|
|
|
|
#endif // QNX_QNXCONSTANTS_H
|