mainwindow.h

来自「这是VCF框架的代码」· C头文件 代码 · 共 45 行

H
45
字号
//MainWindow.h#ifndef _MAINWINDOW_H__#define _MAINWINDOW_H__/***Class MainWindow documentation*/class MainWindow : public VCF::Window { public:	MainWindow();	virtual ~MainWindow();[!if FILE_MENU]	void onFileOpenProject( VCF::MenuItemEvent* e );	void onFileSaveProject( VCF::MenuItemEvent* e );[!endif]	void onFileExit( VCF::MenuItemEvent* e );[!if UNDO_REDO]	void onEditUndo( VCF::MenuItemEvent* e );	void onEditUndoUpdate( VCF::MenuItemEvent* e );	void onEditRedo( VCF::MenuItemEvent* e );	void onEditRedoUpdate( VCF::MenuItemEvent* e );[!endif][!if HELP_MENU]	void onHelpAbout( VCF::MenuItemEvent* e );[!endif]protected:private:};#endif //_MAINWINDOW_H__

⌨️ 快捷键说明

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