mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-28 08:48:49 -04:00
Network setting cleanup. Added missing sim cards window. Fixed option texts. Disabled not working options in UI.
27 lines
759 B
C++
27 lines
759 B
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include <application-settings/windows/BaseSettingsWindow.hpp>
|
|
|
|
namespace app::settingsInterface
|
|
{
|
|
class OperatorsSettings;
|
|
}; // namespace app::settingsInterface
|
|
|
|
namespace gui
|
|
{
|
|
class NetworkWindow : public BaseSettingsWindow
|
|
{
|
|
private:
|
|
auto buildOptionsList() -> std::list<Option> override;
|
|
app::settingsInterface::OperatorsSettings *operatorsSettings;
|
|
|
|
public:
|
|
NetworkWindow(app::Application *app, app::settingsInterface::OperatorsSettings *operatorsSettings);
|
|
|
|
void onBeforeShow(ShowMode mode, SwitchData *data) override;
|
|
};
|
|
} // namespace gui
|