~aleteoryx/muditaos

ref: d9a1194e6f203247ebcef4b03f8ce5ebccc7c778 muditaos/module-apps/application-notes/windows/NotePreviewWindow.hpp -rw-r--r-- 1.4 KiB
d9a1194e — Lukasz Mastalerz [BH-1688] Create a standard for logs 2 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
30
31
32
33
34
35
36
37
38
39
40
// Copyright (c) 2017-2022, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

#pragma once

#include "AppWindow.hpp"

#include <module-db/Interface/NotesRecord.hpp>
#include <module-apps/application-notes/presenter/NotePreviewWindowPresenter.hpp>

#include <module-gui/gui/widgets/text/Label.hpp>
#include <module-gui/gui/widgets/text/TextFixedSize.hpp>
#include <module-gui/gui/input/InputEvent.hpp>

namespace app::notes
{
    class NotePreviewWindow : public gui::AppWindow, public NotePreviewWindowContract::View
    {
      public:
        NotePreviewWindow(app::ApplicationCommon *app,
                          std::unique_ptr<NotePreviewWindowContract::Presenter> &&windowPresenter);
        ~NotePreviewWindow() noexcept override;

        void onBeforeShow(gui::ShowMode mode, gui::SwitchData *data) override;
        bool onInput(const gui::InputEvent &inputEvent) override;

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

      private:
        void updatePreview();
        void setEditDateText(std::uint32_t editTimestamp);

        std::unique_ptr<NotePreviewWindowContract::Presenter> presenter;
        std::shared_ptr<NotesRecord> notesRecord;
        gui::Text *note  = nullptr;
        gui::Label *date = nullptr;
    };
} // namespace app::notes