// 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 #include #include #include #include namespace app::notes { class NotePreviewWindow : public gui::AppWindow, public NotePreviewWindowContract::View { public: NotePreviewWindow(app::ApplicationCommon *app, std::unique_ptr &&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 presenter; std::shared_ptr notesRecord; gui::Text *note = nullptr; gui::Label *date = nullptr; }; } // namespace app::notes