mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-21 12:28:19 -05:00
54 lines
1.8 KiB
C++
54 lines
1.8 KiB
C++
// Copyright (c) 2017-2024, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#include "AppWindow.hpp"
|
|
|
|
#include <module-db/Interface/NotesRecord.hpp>
|
|
|
|
#include "gui/widgets/text/Label.hpp"
|
|
#include "gui/widgets/text/Text.hpp"
|
|
#include "gui/input/InputEvent.hpp"
|
|
|
|
#include <module-apps/application-notes/presenter/NoteEditWindowPresenter.hpp>
|
|
|
|
namespace app::notes
|
|
{
|
|
class NoteEditWindow : public gui::AppWindow, public NoteEditWindowContract::View
|
|
{
|
|
public:
|
|
NoteEditWindow(app::ApplicationCommon *app,
|
|
std::unique_ptr<NoteEditWindowContract::Presenter> &&windowPresenter);
|
|
~NoteEditWindow() 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;
|
|
|
|
protected:
|
|
NoteEditWindow(app::ApplicationCommon *app,
|
|
std::unique_ptr<NoteEditWindowContract::Presenter> &&windowPresenter,
|
|
const std::string &windowName);
|
|
virtual void onCharactersCountChanged(std::uint32_t count);
|
|
|
|
private:
|
|
bool isNoteEmpty() const noexcept override;
|
|
void setCharactersCount(std::uint32_t count);
|
|
void setNoteText(const UTF8 &text);
|
|
void saveNote();
|
|
bool isAnyUnsavedUserDataInWindow() const override;
|
|
|
|
std::unique_ptr<NoteEditWindowContract::Presenter> presenter;
|
|
std::shared_ptr<NotesRecord> notesRecord;
|
|
gui::Label *charactersCounter = nullptr;
|
|
gui::Text *edit = nullptr;
|
|
bool optionsLabelEnabled = false;
|
|
};
|
|
} // namespace app::notes
|