~aleteoryx/muditaos

ref: 5da31450b5930cf68bca6f1767299b329ff71d79 muditaos/module-apps/application-settings-new/windows/APNSettingsWindow.hpp -rw-r--r-- 611 bytes
5da31450 — Pawel Olejniczak [EGD-4739] Add empty APN settings window 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 "OptionWindow.hpp"
#include <Icon.hpp>

namespace gui
{
    class APNSettingsWindow : public OptionWindow
    {
      public:
        APNSettingsWindow(app::Application *app);

      private:
        void buildInterface() override;
        auto onInput(const InputEvent &inputEvent) -> bool override;

        Image *leftArrowImage = nullptr;
        Image *crossImage     = nullptr;
        Icon *emptyListIcon   = nullptr;
    };
}; // namespace gui