summaryrefslogtreecommitdiffstats
path: root/src/key.h
blob: c26bfb3ab7e7d3b7ef60be105681f6306aa83951 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// key.h

#ifndef _KEY_H_
#define	_KEY_H_


#include "control.h"


class CD3DEngine;



class CKey : public CControl
{
public:
	CKey(CInstanceManager* iMan);
	~CKey();

	BOOL	Create(FPOINT pos, FPOINT dim, int icon, EventMsg eventMsg);

	BOOL	EventProcess(const Event &event);

	void	Draw();

	void	SetKey(int option, int key);
	int		RetKey(int option);

protected:
	BOOL	TestKey(int key);

protected:
	int		m_key[2];
	BOOL	m_bCatch;
};


#endif //_KEY_H_