viewcontrol.h

来自「本文件中收录了多种3D文件格式」· C头文件 代码 · 共 31 行

H
31
字号
//// File: ViewControl.h// Created by: <Andrea Ingegneri>//#ifndef _CVIEWCONTROL_H_#define _CVIEWCONTROL_H_class CWindow;class CViewControl{public:	CViewControl(string ApplicationName);	virtual ~CViewControl() {}	static	void		Reshape(int Width, int Height);	static	void		Display();	static	void		Idle();	static	void		Keyboard(unsigned char key, int x, int y);	virtual	bool		AppendWindow(CWindow *Window);	virtual	bool		Start();	virtual	bool		RedrawAll();private:	int					mCount;							// Number of windows	const string		mApplicationName;	vector		<int>	mHandles;};#endif	//_CVIEWCONTROL_H_

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?