2023-10-02 14:19:22 -04:00
|
|
|
/*
|
2024-05-12 08:55:11 -04:00
|
|
|
* Copyright (C) 2024 Bernd Herzog
|
2023-10-02 14:19:22 -04:00
|
|
|
*
|
|
|
|
* This file is part of PortaPack.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; see the file COPYING. If not, write to
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2024-05-12 08:55:11 -04:00
|
|
|
#ifndef __UI_STANDALONE_VIEW_H__
|
|
|
|
#define __UI_STANDALONE_VIEW_H__
|
2023-10-02 14:19:22 -04:00
|
|
|
|
|
|
|
#include "ui_navigation.hpp"
|
|
|
|
#include "event_m0.hpp"
|
|
|
|
#include "message.hpp"
|
2024-05-12 08:55:11 -04:00
|
|
|
#include "standalone_app.hpp"
|
2023-10-02 14:19:22 -04:00
|
|
|
|
2024-05-12 08:55:11 -04:00
|
|
|
namespace ui {
|
2023-10-02 14:19:22 -04:00
|
|
|
|
2024-05-12 08:55:11 -04:00
|
|
|
class StandaloneView : public View {
|
2023-10-02 14:19:22 -04:00
|
|
|
public:
|
2024-05-12 08:55:11 -04:00
|
|
|
StandaloneView(NavigationView& nav, std::unique_ptr<uint8_t[]> app_image);
|
|
|
|
virtual ~StandaloneView() override { get_application_information()->shutdown(); }
|
2023-10-02 14:19:22 -04:00
|
|
|
|
|
|
|
void focus() override;
|
|
|
|
|
2024-05-12 08:55:11 -04:00
|
|
|
std::string title() const override { return (const char*)get_application_information()->app_name; };
|
2023-10-02 14:19:22 -04:00
|
|
|
|
|
|
|
void paint(Painter& painter) override;
|
|
|
|
void frame_sync();
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool initialized = false;
|
|
|
|
NavigationView& nav_;
|
2024-05-12 08:55:11 -04:00
|
|
|
std::unique_ptr<uint8_t[]> _app_image;
|
|
|
|
standalone_application_information_t* get_application_information() const {
|
|
|
|
return reinterpret_cast<standalone_application_information_t*>(_app_image.get());
|
|
|
|
}
|
2023-10-02 14:19:22 -04:00
|
|
|
|
|
|
|
Button dummy{
|
|
|
|
{240, 0, 0, 0},
|
|
|
|
""};
|
|
|
|
|
|
|
|
MessageHandlerRegistration message_handler_sample{
|
|
|
|
Message::ID::DisplayFrameSync,
|
|
|
|
[this](const Message* const) {
|
|
|
|
this->frame_sync();
|
|
|
|
}};
|
|
|
|
};
|
|
|
|
|
2024-05-12 08:55:11 -04:00
|
|
|
} // namespace ui
|
2023-10-02 14:19:22 -04:00
|
|
|
|
2024-05-12 08:55:11 -04:00
|
|
|
#endif /*__UI_STANDALONE_VIEW_H__*/
|