mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-19 06:30:46 -04:00
24 lines
729 B
C++
24 lines
729 B
C++
// Copyright (c) 2017-2024, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include <application-settings/windows/BaseSettingsWindow.hpp>
|
|
#include <Text.hpp>
|
|
|
|
namespace app::onBoarding
|
|
{
|
|
class OnBoardingSimSelectWindow : public gui::BaseSettingsWindow
|
|
{
|
|
public:
|
|
explicit OnBoardingSimSelectWindow(app::ApplicationCommon *app, std::string name);
|
|
void buildInterface() override;
|
|
|
|
private:
|
|
gui::Text *descriptionText = nullptr;
|
|
|
|
auto buildOptionsList() -> std::list<gui::Option> override;
|
|
bool onInput(const gui::InputEvent &inputEvent) override;
|
|
};
|
|
} // namespace app::onBoarding
|