📄 isnowmenu.h
字号:
#ifndef _ISNOWMENU_H
#define _ISNOWMENU_H
#include "Aeestdlib.h"
#include "aeemenu.h"
#include "aeebitmap.h"
#include "aeeshell.h"
#include "IMineMusic.h"
typedef enum
{
CMD_MENUMIN,
CMD_MENUSTART,
CMD_MENUSCORE,
CMD_MENUEXIT,
CMD_MENUMAX
}TMineCMD;
typedef struct _TPopo
{
AEERect rt;
IBitmap* bitmap;
struct _TPopo* pNext;
}TPopo;
typedef struct _ISnowMenu
{
IBitmap* m_pOldScreen;
IBitmap* m_pCursor;
IDisplay* m_pIDisplay;
IShell* m_pIShell;
TPopo* m_Popo;
IMineMusic* m_pMusic;
int m_PopoNum;
uint16 m_ActiveItem;
AEERect m_rt;
AEERect m_CursorRect;
}ISnowMenu;
ISnowMenu* ISNOWMENU_CreateInstance();
boolean ISNOWMENU_Release(ISnowMenu* pCtl);
boolean ISNOWMENU_Start(ISnowMenu* pCtl);
boolean ISNOWMENU_Stop(ISnowMenu* pCtl);
boolean ISNOWMENU_HandleKeyEvent(ISnowMenu* pCtl,uint16 wParam);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -