12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #if !defined(AFX_CURWIN_H__F8258A51_9664_4220_A254_0E1613339936__INCLUDED_)
- #define AFX_CURWIN_H__F8258A51_9664_4220_A254_0E1613339936__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // Curwin.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // CCurwin dialog
- class CCurwin : public CDialog
- {
- // Construction
- public:
- CCurwin(CWnd* pParent = NULL); // standard constructor
- // Dialog Data
- //{{AFX_DATA(CCurwin)
- enum { IDD = IDD_CURWIN };
- CStatic m_black;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CCurwin)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CCurwin)
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- afx_msg void OnMove(int x, int y);
- afx_msg void OnPaint();
- afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- public:
- afx_msg void OnStnClickedBlack();
- afx_msg BOOL OnEraseBkgnd(CDC* pDC);
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_CURWIN_H__F8258A51_9664_4220_A254_0E1613339936__INCLUDED_)
|