2025-06-27 00:32:57 +08:00
|
|
|
|
#ifndef MYWIN_USER_MENU_H__
|
|
|
|
|
#define MYWIN_USER_MENU_H__
|
|
|
|
|
|
|
|
|
|
#include "mywin_inc.h"
|
|
|
|
|
|
|
|
|
|
|
2025-07-05 19:47:28 +08:00
|
|
|
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ַ<EFBFBD><D6B7><EFBFBD><EFBFBD><EFBFBD>
|
2025-06-27 00:32:57 +08:00
|
|
|
|
#define MENU_TXT_MAXLEN 20
|
|
|
|
|
|
2025-07-05 19:47:28 +08:00
|
|
|
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀ<EFBFBD><C4BF>
|
2025-06-27 00:32:57 +08:00
|
|
|
|
#define MENU_ITEM_MAXNUM 20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
|
{
|
|
|
|
|
char *img;
|
|
|
|
|
char txt[MENU_TXT_MAXLEN];
|
|
|
|
|
}MENU_ItemStruct;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
|
{
|
|
|
|
|
WIN_TouchWinStruct win;
|
|
|
|
|
MENU_ItemStruct title;
|
|
|
|
|
|
|
|
|
|
WIN_ButtonStruct *key_back;
|
|
|
|
|
WIN_ScrollbarStruct *bar;
|
|
|
|
|
|
|
|
|
|
}WIN_MenuStruct;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
WIN_MenuStruct *WIN_CreatMenu (WIN_WindowStruct *base,
|
|
|
|
|
void (*msgLoop)(struct _WIN_WindowStruct *win,WIN_MsgStruct *msg),
|
|
|
|
|
int x,int y,int x_size,int y_size);
|
|
|
|
|
|
|
|
|
|
|
2025-07-05 19:47:28 +08:00
|
|
|
|
//<2F><><EFBFBD>ñ<EFBFBD><C3B1><EFBFBD>
|
2025-06-27 00:32:57 +08:00
|
|
|
|
void MENU_SetTitle (WIN_MenuStruct *menu,char *img,char *txt);
|
|
|
|
|
|
|
|
|
|
void MENU_SetMaxItem(WIN_MenuStruct *menu,int itemNum);
|
|
|
|
|
|
2025-07-05 19:47:28 +08:00
|
|
|
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀ
|
2025-06-27 00:32:57 +08:00
|
|
|
|
void MENU_AddItem (WIN_MenuStruct *menu,char *img,char *txt);
|
|
|
|
|
|
|
|
|
|
int MENU_GetAllItemNum(WIN_MenuStruct *menu);
|
|
|
|
|
|
|
|
|
|
char *MENU_GetItem(WIN_MenuStruct *menu,int index);
|
|
|
|
|
|
|
|
|
|
char *MENU_GetSelectItem(WIN_MenuStruct *menu);
|
|
|
|
|
|
|
|
|
|
int MENU_GetIndex(WIN_MenuStruct *menu);
|
|
|
|
|
|
2025-07-05 19:47:28 +08:00
|
|
|
|
//Ĭ<>ϻ<EFBFBD><CFBB>ƺ<EFBFBD><C6BA><EFBFBD>
|
2025-06-27 00:32:57 +08:00
|
|
|
|
void MENU_DefaultPaint (WIN_MenuStruct *menu);
|
|
|
|
|
|
|
|
|
|
|
2025-07-05 19:47:28 +08:00
|
|
|
|
//Ĭ<><C4AC><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2025-06-27 00:32:57 +08:00
|
|
|
|
void MENU_DefaultMsgLoop (WIN_MenuStruct *menu,WIN_MsgStruct *msg);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|