summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2Message.h
blob: 7a6bb8594192acd8165f2972f35b2b43cf097bfe (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
#pragma once
#include "common.h"

class AFX_CLASS_EXPORT T2Message : public CWnd {
    DECLARE_MESSAGE_MAP()
public:
	T2Message();
	void ShowMessage(const CString&);
protected:
	virtual ~T2Message();
	virtual void PostNcDestroy();
	int OnCreate(CREATESTRUCT*);
	void OnTimer(unsigned int);
	long OnHookMessage(UINT, LONG);
	void OnLButtonDown(UINT, CPoint);
	void OnRButtonDown(UINT, CPoint);
	void OnKeyDown(UINT, UINT, UINT);
	void OnDestroy();
	BOOL OnEraseBkgnd(CDC*);

protected:
    CString mString;
    CFont mFont;
    CBrush mBrush;
    CRect mRect1;
    CRect mRect2;
    int m74;
    BOOL m78;
};