mbox.h

来自「飞虹 vision仿windows开发」· C头文件 代码 · 共 17 行

H
17
字号
#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 + =
减小字号Ctrl + -
显示快捷键?