Annotation of DewFind/DewFindDlg.h, revision 1.1.1.1
1.1 nick 1: // DewFindDlg.h : header file
2: //
3:
4: #pragma once
5: #include "GameBoard.h"
6:
7: // CDewFindDlg dialog
8: class CDewFindDlg : public CDialog
9: {
10: // Construction
11: public:
12: CDewFindDlg(CWnd* pParent = NULL); // standard constructor
13:
14: // Dialog Data
15: enum { IDD = IDD_DEWFIND_DIALOG };
16:
17: protected:
18: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
19:
20: private:
21: GameBoard gameboard_;
22: void DrawScreen();
23:
24: // Implementation
25: protected:
26: HICON m_hIcon;
27:
28: // Generated message map functions
29: virtual BOOL OnInitDialog();
30: afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
31: afx_msg void OnPaint();
32: afx_msg HCURSOR OnQueryDragIcon();
33: DECLARE_MESSAGE_MAP()
34: public:
35: afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
36: afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
37: afx_msg void OnFileNewgame();
38: afx_msg void OnFileQuitgame();
39: virtual BOOL PreTranslateMessage(MSG* pMsg);
40: };
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>