~aleteoryx/muditaos

ref: 621304168edc83453e0f60a7c4a459401f68f822 muditaos/module-apps/application-settings/windows/network/SimContactsImportWindow.hpp -rw-r--r-- 989 bytes
62130416 — Przemyslaw Brudny [EGD-7203] Added extra space removal in Text draw line ending 4 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
25
26
27
28
29
// 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>
#include <application-settings/presenter/network/SimContactsImportWindowPresenter.hpp>
#include <application-settings/models/network/SimContactsImportModel.hpp>

namespace gui
{
    class SimContactsImportWindow : public AppWindow, public SimContactsImportWindowContract::View
    {

      public:
        SimContactsImportWindow(app::Application *app,
                                std::unique_ptr<SimContactsImportWindowContract::Presenter> presenter);

      private:
        ListView *list = nullptr;

        void buildInterface() override;
        void onBeforeShow(ShowMode mode, SwitchData *data) override;
        void onClose(CloseReason reason) override;

        std::shared_ptr<SimContactsImportWindowPresenter::Presenter> presenter;
    };

} // namespace gui