~aleteoryx/muditaos

ref: 1f7d47183133e84f05babb8626d6d032421d97e7 muditaos/module-apps/application-call/windows/EmergencyCallWindow.hpp -rw-r--r-- 640 bytes
1f7d4718 — alek [EGD-4429] Fix gui issues in application call 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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 "EnterNumberWindow.hpp"

namespace gui
{

    class EmergencyCallWindow : public EnterNumberWindow
    {
      public:
        EmergencyCallWindow(app::Application *app, app::EnterNumberWindowInterface *interface);

        bool onInput(const InputEvent &inputEvent) override;
        bool handleSwitchData(SwitchData *data) override;

        void rebuild() override;
        void buildInterface() override;
        void destroyInterface() override;
    };

} /* namespace gui */