📄 mbox.h
字号:
#if !defined(MBOX_H)
#define MBOX_H
#include"\sunshine\include\mobj.h"
class MBox : public MObj
{
protected:
int color;
int style;
public:
MBox(int x,int y,int w,int h,int cr=LIGHTGRAY,int fill=1)
:MObj(x,y,w,h,"box"){color=cr;firstrun=1;style=fill;}
virtual void UnFocus();
virtual void GetFocus(){}
virtual int Process();
virtual char * Nameof(){return "mbox";}
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -