home *** CD-ROM | disk | FTP | other *** search
/ Master Visual C++ 1.5 / MASTERVC15.ISO / vcprog / original / ch17 / mymouse / mymouvw.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-01-23  |  908 b   |  42 lines

  1. // mymouvw.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CMymouseView form view
  6.  
  7. #ifndef __AFXEXT_H__
  8. #include <afxext.h>
  9. #endif
  10.  
  11. class CMymouseView : public CFormView
  12. {
  13.     DECLARE_DYNCREATE(CMymouseView)
  14. protected:
  15.     CMymouseView();            // protected constructor used by dynamic creation
  16.  
  17. // Form Data
  18. public:
  19.     //{{AFX_DATA(CMymouseView)
  20.     enum { IDD = IDD_DIALOG1 };
  21.     CString    m_EditBoxContents;
  22.     //}}AFX_DATA
  23.  
  24. // Attributes
  25. public:
  26.  
  27. // Operations
  28. public:
  29.  
  30. // Implementation
  31. protected:
  32.     virtual ~CMymouseView();
  33.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34.     // Generated message map functions
  35.     //{{AFX_MSG(CMymouseView)
  36.     afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  37.     //}}AFX_MSG
  38.     DECLARE_MESSAGE_MAP()
  39. };
  40.  
  41. /////////////////////////////////////////////////////////////////////////////
  42.