📄 viewcontrol.h
字号:
//// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -