mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-23 21:34:35 +03:00
acc39a4bc0
* Api Symbols: replace asserts with checks * Api Symbols: replace asserts with checks part 2 * Update no args function signatures with void, to help compiler to track incorrect usage * More unavoidable void * Update PVS config and code to make it happy * Format sources * nfc: fix checks * dead code cleanup & include fixes Co-authored-by: gornekich <n.gorbadey@gmail.com> Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: hedger <hedger@nanode.su>
40 lines
808 B
C++
40 lines
808 B
C++
#pragma once
|
|
#include <furi.h>
|
|
#include <gui/view_dispatcher.h>
|
|
#include <gui/modules/submenu.h>
|
|
#include <gui/modules/popup.h>
|
|
#include "accessor_event.h"
|
|
|
|
class AccessorAppViewManager {
|
|
public:
|
|
enum class ViewType : uint8_t {
|
|
Submenu,
|
|
Popup,
|
|
Tune,
|
|
};
|
|
|
|
FuriMessageQueue* event_queue;
|
|
|
|
AccessorAppViewManager(void);
|
|
~AccessorAppViewManager(void);
|
|
|
|
void switch_to(ViewType type);
|
|
|
|
void receive_event(AccessorEvent* event);
|
|
void send_event(AccessorEvent* event);
|
|
|
|
Submenu* get_submenu(void);
|
|
Popup* get_popup(void);
|
|
|
|
private:
|
|
ViewDispatcher* view_dispatcher;
|
|
Gui* gui;
|
|
|
|
uint32_t previous_view_callback(void* context);
|
|
void add_view(ViewType view_type, View* view);
|
|
|
|
// view elements
|
|
Submenu* submenu;
|
|
Popup* popup;
|
|
};
|