Files
luban-lite-t3e-pro/packages/artinchip/lvgl-ui/aic_demo/demo_hub/demo_hub.h

36 lines
600 B
C
Raw Normal View History

2024-06-04 19:00:30 +08:00
/*
* Copyright (c) 2023-2024, ArtInChip Technology Co., Ltd
*
* SPDX-License-Identifier: Apache-2.0
*
* Authors: ArtInChip
*/
2024-09-03 11:16:08 +08:00
#ifndef _AIC_LV_DEMO_HUB_H
#define _AIC_LV_DEMO_HUB_H
2024-06-04 19:00:30 +08:00
#ifdef __cplusplus
extern "C" {
#endif
#include "lvgl.h"
#include "aic_ui.h"
typedef struct _layer_sys_ui {
lv_obj_t *home_btn;
} layer_sys_ui;
/* expand an interface for obtaining colors */
lv_color_t lv_theme_get_color_emphasize(lv_obj_t * obj);
void layer_sys_ui_visible(int flag);
void layer_sys_ui_invisible(int flag);
2024-09-03 11:16:08 +08:00
void demo_hub_init(void);
2024-06-04 19:00:30 +08:00
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif