31 lines
649 B
C
31 lines
649 B
C
#ifndef _FUNC_MENU_H
|
|
#define _FUNC_MENU_H
|
|
|
|
enum {
|
|
MENU_CLARM, //心率
|
|
MENU_CLOCK, //时钟表盘
|
|
MENU_ACTIVITY, //运动
|
|
|
|
};
|
|
|
|
|
|
//MENU STYLE
|
|
enum {
|
|
MENU_STYLE_HONEYCOMB, //蜂窝
|
|
MENU_STYLE_LIST, //菜单列表
|
|
};
|
|
|
|
//创建不同菜单窗体
|
|
compo_form_t *func_menu_sub_honeycomb_form_create(void);
|
|
compo_form_t *func_menu_sub_list_form_create(void);
|
|
|
|
//不同样式菜单入口
|
|
void func_menu_sub_honeycomb(void);
|
|
void func_menu_sub_list(void);
|
|
|
|
//公用函数
|
|
void func_menu_sub_message(size_msg_t msg);
|
|
void func_menu_sub_exit(void);
|
|
|
|
#endif
|