home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / controls / push / pushppg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.1 KB  |  45 lines

  1. // pushppg.h : Declaration of the CPushPropPage property page class.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14. ////////////////////////////////////////////////////////////////////////////
  15. // CPushPropPage : See pushppg.cpp for implementation.
  16.  
  17. class CPushPropPage : public COlePropertyPage
  18. {
  19.     DECLARE_DYNCREATE(CPushPropPage)
  20.     DECLARE_OLECREATE_EX(CPushPropPage)
  21.  
  22. // Constructor
  23. public:
  24.     CPushPropPage();
  25.  
  26. // Dialog Data
  27.     //{{AFX_DATA(CPushPropPage)
  28.     enum { IDD = IDD_PROPPAGE_PUSH };
  29.     BOOL    m_Border;
  30.     CString m_Caption;
  31.     BOOL    m_Enabled;
  32.     //}}AFX_DATA
  33.  
  34. // Implementation
  35. protected:
  36.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37.  
  38. // Message maps
  39. protected:
  40.     //{{AFX_MSG(CPushPropPage)
  41.     //}}AFX_MSG
  42.     DECLARE_MESSAGE_MAP()
  43.  
  44. };
  45.