2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2013-04-25 16:02:17 +02:00
|
|
|
|
|
|
|
|
#include "iossettingspage.h"
|
|
|
|
|
|
|
|
|
|
#include "iosconstants.h"
|
2022-12-20 13:39:23 +01:00
|
|
|
#include "iossettingswidget.h"
|
|
|
|
|
#include "iostr.h"
|
2013-04-25 16:02:17 +02:00
|
|
|
|
2016-09-06 14:21:09 +02:00
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
|
|
|
|
|
2022-12-20 13:39:23 +01:00
|
|
|
namespace Ios::Internal {
|
2013-04-25 16:02:17 +02:00
|
|
|
|
2019-03-21 08:09:35 +01:00
|
|
|
IosSettingsPage::IosSettingsPage()
|
2013-04-25 16:02:17 +02:00
|
|
|
{
|
|
|
|
|
setId(Constants::IOS_SETTINGS_ID);
|
2022-12-20 13:39:23 +01:00
|
|
|
setDisplayName(Tr::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
|
|
|
}
|
|
|
|
|
|
2022-12-20 13:39:23 +01:00
|
|
|
} // Ios::Internal
|