mirror of
https://github.com/vicliu624/trail-mate.git
synced 2026-07-12 06:39:00 +00:00
25381c5c22
- migrate ESP board-specific implementations and runtime adapters into boards/* - continue GAT562/Tab5/UI runtime alignment across app and board layers - sync BLE and runtime integrations, and apply repository clang-format rules
26 lines
401 B
C++
26 lines
401 B
C++
#pragma once
|
|
|
|
#include "lvgl.h"
|
|
|
|
#include "app/app_facades.h"
|
|
#include "ui/app_catalog.h"
|
|
|
|
namespace ui
|
|
{
|
|
namespace menu_layout
|
|
{
|
|
|
|
struct InitOptions
|
|
{
|
|
app::IAppMessagingFacade* messaging = nullptr;
|
|
AppCatalog apps{};
|
|
};
|
|
|
|
void init(const InitOptions& options);
|
|
lv_obj_t* menuPanel();
|
|
void bringContentToFront();
|
|
void setMenuVisible(bool visible);
|
|
|
|
} // namespace menu_layout
|
|
} // namespace ui
|