mirror of
https://gitee.com/peng_zhihui/HoloCubic
synced 2025-11-04 21:19:40 +08:00
26 lines
403 B
C
26 lines
403 B
C
#ifndef GUI_GUIDER_H
|
|
#define GUI_GUIDER_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "lvgl.h"
|
|
#include "guider_fonts.h"
|
|
|
|
typedef struct
|
|
{
|
|
lv_obj_t* home;
|
|
lv_obj_t* home_cpicker0;
|
|
lv_obj_t* scenes;
|
|
lv_obj_t* scenes_canvas;
|
|
}lv_ui;
|
|
|
|
void setup_ui(lv_ui* ui);
|
|
extern lv_ui guider_ui;
|
|
void setup_scr_home(lv_ui* ui);
|
|
void setup_scr_scenes(lv_ui* ui);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif |