blob: 692d1e05eaec0c6a2cba8172e0c333859aba1271 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#pragma once
#include "common.h"
class AFX_CLASS_EXPORT T2ArrowWnd : public CFrameWnd {
DECLARE_DYNCREATE(T2ArrowWnd)
DECLARE_MESSAGE_MAP()
public:
T2ArrowWnd();
virtual ~T2ArrowWnd();
void Show(int inX, int inY, T2TowerDoc* inDoc);
protected:
afx_msg BOOL OnEraseBkgnd(CDC* pDC);
afx_msg void OnTimer(UINT nIDEvent);
afx_msg void OnDestroy();
CString mWndClass;
CRgn mRgn;
unsigned short mCounter;
};
|