⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 keyboardmgr_t.h

📁 VC++ DEMO, used for the beginners and the amour
💻 H
字号:
// KeyboardMgr_t.h: interface for the KeyboardMgr_t class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_KEYBOARDMGR_T_H__D3EC88F6_57F9_4A9D_81AC_C939A108CCED__INCLUDED_)
#define AFX_KEYBOARDMGR_T_H__D3EC88F6_57F9_4A9D_81AC_C939A108CCED__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "Keyboard.h"

class KeyboardMgr_t  
{
public:
	KeyboardMgr_t();
	virtual ~KeyboardMgr_t();
	typedef  map<Key,Hot_Key *> KeyboardMap_t;
	void     FireEvent(const KeyVector_t& JustPressedKeys,const KeyVector_t& PressedKeys,
					   const KeyVector_t& JustUnPressedKeys);
	void     SetKeyboardMap( Hot_Key * HotKey);
private:
	KeyboardMap_t            m_KeyboardMap;

};

#endif // !defined(AFX_KEYBOARDMGR_T_H__D3EC88F6_57F9_4A9D_81AC_C939A108CCED__INCLUDED_)

⌨️ 快捷键说明

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