46 lines
773 B
C
46 lines
773 B
C
|
/**
|
|||
|
* @file ui.h
|
|||
|
*
|
|||
|
*/
|
|||
|
|
|||
|
#ifndef __UI_CONF_H__
|
|||
|
#define __UI_CONF_H__
|
|||
|
|
|||
|
#ifdef __cplusplus
|
|||
|
extern "C" {
|
|||
|
#endif
|
|||
|
|
|||
|
/*********************
|
|||
|
* INCLUDES
|
|||
|
*********************/
|
|||
|
|
|||
|
|
|||
|
/*********************
|
|||
|
* DEFINES
|
|||
|
*********************/
|
|||
|
#define UI_DESKTOP_FRAME_COUNT_MAX 5 // 桌面可左右滑动的帧最大数量
|
|||
|
#define UI_STATUS_BAR_HEIGHT 32 // 状态栏高度, 最小24
|
|||
|
#define UI_PAGE_TITLE_HEIGHT 40 // 页面标题栏高度, 最小32
|
|||
|
|
|||
|
|
|||
|
/**********************
|
|||
|
* TYPEDEFS
|
|||
|
**********************/
|
|||
|
|
|||
|
|
|||
|
/**********************
|
|||
|
* GLOBAL PROTOTYPES
|
|||
|
**********************/
|
|||
|
|
|||
|
|
|||
|
|
|||
|
/**********************
|
|||
|
* MACROS
|
|||
|
**********************/
|
|||
|
|
|||
|
#ifdef __cplusplus
|
|||
|
} /* extern "C" */
|
|||
|
#endif
|
|||
|
|
|||
|
#endif /*__UI_CONF_H__*/
|