home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / labs / c12 / lab01 / ex03 / dibfileproppage.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  954 b   |  41 lines

  1. #ifndef __DIBFILEPROPPAGE_H__
  2. #define __DIBFILEPROPPAGE_H__
  3.  
  4. // DibFilePropPage.h : header file
  5. //
  6.  
  7. /////////////////////////////////////////////////////////////////////////////
  8. // CDibFilePropPage : Property page dialog
  9.  
  10. class CDibFilePropPage : public COlePropertyPage
  11. {
  12.     DECLARE_DYNCREATE(CDibFilePropPage)
  13.     DECLARE_OLECREATE_EX(CDibFilePropPage)
  14.  
  15. // Constructors
  16. public:
  17.     CDibFilePropPage();
  18.  
  19. // Dialog Data
  20.     //{{AFX_DATA(CDibFilePropPage)
  21.     enum { IDD = IDD_PROPPAGE_DIBFILE };
  22.     CString    m_DibFileName;
  23.     //}}AFX_DATA
  24.  
  25. // Implementation
  26. protected:
  27.     virtual void DoDataExchange(CDataExchange* pDX);        // DDX/DDV support
  28.  
  29. // Message maps
  30. protected:
  31.     //{{AFX_MSG(CDibFilePropPage)
  32.     afx_msg void OnBrowse();
  33.     //}}AFX_MSG
  34.     DECLARE_MESSAGE_MAP()
  35. };
  36.  
  37. //{{AFX_INSERT_LOCATION}}
  38. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  39.  
  40. #endif // __DIBFILEPROPPAGE_H__
  41.