mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-29 01:08:43 -04:00
25 lines
596 B
C++
25 lines
596 B
C++
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include "EnterNumberWindow.hpp"
|
|
|
|
namespace gui
|
|
{
|
|
|
|
class EmergencyCallWindow : public EnterNumberWindow
|
|
{
|
|
public:
|
|
EmergencyCallWindow(app::Application *app);
|
|
|
|
bool onInput(const InputEvent &inputEvent) override;
|
|
bool handleSwitchData(SwitchData *data) override;
|
|
|
|
void rebuild() override;
|
|
void buildInterface() override;
|
|
void destroyInterface() override;
|
|
};
|
|
|
|
} /* namespace gui */
|