mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-06-30 19:27:03 -04:00
50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
/*
|
|
* @file NotesEditWindow.hpp
|
|
* @author Robert Borzecki (robert.borzecki@mudita.com)
|
|
* @date 13 sie 2019
|
|
* @brief
|
|
* @copyright Copyright (C) 2019 mudita.com
|
|
* @details
|
|
*/
|
|
#ifndef MODULE_APPS_APPLICATION_NOTES_WINDOWS_NOTESEDITWINDOW_HPP_
|
|
#define MODULE_APPS_APPLICATION_NOTES_WINDOWS_NOTESEDITWINDOW_HPP_
|
|
|
|
#include <string>
|
|
#include <functional>
|
|
|
|
#include "AppWindow.hpp"
|
|
#include "gui/widgets/Text.hpp"
|
|
#include "gui/widgets/Label.hpp"
|
|
#include "gui/widgets/Image.hpp"
|
|
#include "gui/widgets/Window.hpp"
|
|
#include "gui/widgets/BottomBar.hpp"
|
|
#include "gui/widgets/TopBar.hpp"
|
|
#include "gui/widgets/ListView.hpp"
|
|
|
|
namespace gui
|
|
{
|
|
|
|
class NotesEditWindow : public AppWindow
|
|
{
|
|
Text *text = nullptr;
|
|
Label *title = nullptr;
|
|
|
|
public:
|
|
NotesEditWindow(app::Application *app);
|
|
virtual ~NotesEditWindow();
|
|
|
|
// virtual methods
|
|
void onBeforeShow(ShowMode mode, SwitchData *data) override;
|
|
|
|
void rebuild() override;
|
|
void buildInterface() override;
|
|
void destroyInterface() override;
|
|
};
|
|
|
|
} /* namespace gui */
|
|
|
|
#endif /* MODULE_APPS_APPLICATION_NOTES_WINDOWS_NOTESEDITWINDOW_HPP_ */
|