2013-04-25 16:02:17 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2013-04-25 16:02:17 +02:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** 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
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2013-04-25 16:02:17 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2013-04-25 16:02:17 +02:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
2016-01-15 14:57:40 +01:00
|
|
|
|
2013-04-25 16:02:17 +02:00
|
|
|
#ifndef IOSCONSTANTS_H
|
|
|
|
|
#define IOSCONSTANTS_H
|
|
|
|
|
|
|
|
|
|
#include <QtGlobal>
|
2014-08-26 15:53:13 +02:00
|
|
|
#include <QLoggingCategory>
|
2013-04-25 16:02:17 +02:00
|
|
|
|
|
|
|
|
namespace Ios {
|
|
|
|
|
namespace Internal {
|
2014-07-07 09:24:17 +02:00
|
|
|
Q_DECLARE_LOGGING_CATEGORY(iosLog)
|
2013-04-25 16:02:17 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
|
|
|
|
|
namespace Constants {
|
|
|
|
|
const char IOS_SETTINGS_ID[] = "ZZ.Ios Configurations";
|
|
|
|
|
const char IOS_SETTINGS_CATEGORY[] = "XA.Ios";
|
|
|
|
|
const char IOS_SETTINGS_TR_CATEGORY[] = QT_TRANSLATE_NOOP("Ios", "iOS");
|
2013-11-26 10:39:31 +01:00
|
|
|
const char IOS_SETTINGS_CATEGORY_ICON[] = ":/ios/images/iossettings.png";
|
2014-05-07 14:01:10 +02:00
|
|
|
const char IOSQT[] = "Qt4ProjectManager.QtVersion.Ios"; // this literal is replicated to avoid dependencies
|
2013-04-25 16:02:17 +02:00
|
|
|
|
|
|
|
|
const char IOS_DEVICE_TYPE[] = "Ios.Device.Type";
|
|
|
|
|
const char IOS_SIMULATOR_TYPE[] = "Ios.Simulator.Type";
|
|
|
|
|
const char IOS_DEVICE_ID[] = "iOS Device ";
|
|
|
|
|
const char IOS_SIMULATOR_DEVICE_ID[] = "iOS Simulator Device ";
|
2014-03-12 21:25:28 +01:00
|
|
|
const char IOS_DSYM_BUILD_STEP_ID[] = "Ios.IosDsymBuildStep";
|
2014-02-25 16:02:02 +01:00
|
|
|
|
|
|
|
|
const quint16 IOS_DEVICE_PORT_START = 30000;
|
|
|
|
|
const quint16 IOS_DEVICE_PORT_END = 31000;
|
|
|
|
|
const quint16 IOS_SIMULATOR_PORT_START = 30000;
|
|
|
|
|
const quint16 IOS_SIMULATOR_PORT_END = 31000;
|
|
|
|
|
|
2014-02-25 22:20:16 +01:00
|
|
|
const char EXTRA_INFO_KEY[] = "extraInfo";
|
|
|
|
|
|
2013-04-25 16:02:17 +02:00
|
|
|
} // namespace Constants;
|
|
|
|
|
} // namespace Ios
|
|
|
|
|
|
|
|
|
|
#endif // IOSCONSTANTS_H
|