📄 mpopmenu.h
字号:
#include"include\mwindow.h"
#include"include\mlist.h"
#include"include\define.h"
#if !defined(MPOPMENU_H)
#define MPOPMENU_H
class MMenu : public MList
{
public:
MMenu():MList(){}
MMenu(int x,int y,char *idname)
:MList(x,y,idname,0){}
virtual int F(){ return MENU;}
};
class MPopMenu : public MWindowObj
{
private:
void far *rscreen;
public:
MPopMenu() : MWindowObj(){rscreen=NULL;}
MPopMenu(MList &alist,char *idname);
~MPopMenu();
virtual void GetFocus();
virtual void UnFocus();
virtual int Process();
virtual STATE Save();
virtual void Restore();
virtual char far *Nameof() { return "mpopmenu";}
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -