2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2013-04-25 16:02:17 +02:00
|
|
|
|
|
|
|
|
#include "iossettingspage.h"
|
|
|
|
|
|
|
|
|
|
#include "iossettingswidget.h"
|
|
|
|
|
#include "iosconstants.h"
|
|
|
|
|
|
2016-09-06 14:21:09 +02:00
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
|
|
|
|
|
2013-04-25 16:02:17 +02:00
|
|
|
#include <QCoreApplication>
|
|
|
|
|
|
|
|
|
|
namespace Ios {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2019-03-21 08:09:35 +01:00
|
|
|
IosSettingsPage::IosSettingsPage()
|
2013-04-25 16:02:17 +02:00
|
|
|
{
|
|
|
|
|
setId(Constants::IOS_SETTINGS_ID);
|
2020-01-16 18:18:20 +01:00
|
|
|
setDisplayName(IosSettingsWidget::tr("iOS"));
|
2016-09-06 14:21:09 +02:00
|
|
|
setCategory(ProjectExplorer::Constants::DEVICE_SETTINGS_CATEGORY);
|
2020-01-07 16:51:01 +01:00
|
|
|
setWidgetCreator([] { return new IosSettingsWidget; });
|
2013-04-25 16:02:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Ios
|