mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-22 10:43:11 +00:00
53 lines
1.1 KiB
C++
53 lines
1.1 KiB
C++
|
#pragma once
|
||
|
#include "gui/modules/button_menu.h"
|
||
|
#include "gui/modules/text_input.h"
|
||
|
#include <furi.h>
|
||
|
#include <gui/view_dispatcher.h>
|
||
|
#include <gui/modules/dialog_ex.h>
|
||
|
#include <gui/modules/submenu.h>
|
||
|
#include <gui/modules/popup.h>
|
||
|
#include "irda-app.hpp"
|
||
|
|
||
|
class IrdaAppViewManager {
|
||
|
public:
|
||
|
enum class ViewType : uint8_t {
|
||
|
DialogEx,
|
||
|
TextInput,
|
||
|
Submenu,
|
||
|
ButtonMenu,
|
||
|
Popup,
|
||
|
};
|
||
|
|
||
|
IrdaAppViewManager();
|
||
|
~IrdaAppViewManager();
|
||
|
|
||
|
void switch_to(ViewType type);
|
||
|
|
||
|
void receive_event(IrdaAppEvent* event);
|
||
|
void send_event(IrdaAppEvent* event);
|
||
|
|
||
|
DialogEx* get_dialog_ex();
|
||
|
Submenu* get_submenu();
|
||
|
Popup* get_popup();
|
||
|
TextInput* get_text_input();
|
||
|
ButtonMenu* get_button_menu();
|
||
|
|
||
|
osMessageQueueId_t get_event_queue();
|
||
|
|
||
|
uint32_t previous_view_callback(void* context);
|
||
|
|
||
|
private:
|
||
|
ViewDispatcher* view_dispatcher;
|
||
|
Gui* gui;
|
||
|
TextInput* text_input;
|
||
|
DialogEx* dialog_ex;
|
||
|
Submenu* submenu;
|
||
|
Popup* popup;
|
||
|
ButtonMenu* button_menu;
|
||
|
|
||
|
osMessageQueueId_t event_queue;
|
||
|
|
||
|
void add_view(ViewType view_type, View* view);
|
||
|
};
|
||
|
|