mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
61 lines
916 B
C
61 lines
916 B
C
/**
|
|
* @file lv_rect.h
|
|
*
|
|
*/
|
|
|
|
#ifndef LV_RECT_H
|
|
#define LV_RECT_H
|
|
|
|
/*********************
|
|
* INCLUDES
|
|
*********************/
|
|
#include "lv_conf.h"
|
|
#if USE_LV_TEMPL != 0
|
|
|
|
#include "../lv_obj/lv_obj.h"
|
|
|
|
/*********************
|
|
* DEFINES
|
|
*********************/
|
|
|
|
/**********************
|
|
* TYPEDEFS
|
|
**********************/
|
|
|
|
/*Style of TEMPLATE*/
|
|
typedef struct
|
|
{
|
|
|
|
}lv_templs_t;
|
|
|
|
|
|
/*Built-in styles of TEMPLATE*/
|
|
typedef enum
|
|
{
|
|
LV_RECTS_DEF,
|
|
LV_RECTS_TRANSP,
|
|
LV_RECTS_BORDER,
|
|
}lv_templs_builtin_t;
|
|
|
|
/*Data of TEMPLATE*/
|
|
typedef struct
|
|
{
|
|
|
|
}lv_templ_t;
|
|
|
|
|
|
/**********************
|
|
* GLOBAL PROTOTYPES
|
|
**********************/
|
|
lv_obj_t* lv_templ_create(lv_obj_t* par_dp);
|
|
bool lv_templ_signal(lv_obj_t* obj_dp, lv_signal_t sign, void * param);
|
|
lv_templs_t * lv_templs_get(lv_templs_builtin_t style, lv_templs_t * copy_p);
|
|
|
|
/**********************
|
|
* MACROS
|
|
**********************/
|
|
|
|
#endif
|
|
|
|
#endif
|