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

  1. #if !defined(AFX_CFEATURESPAGE_H__D2C50BCF_C64C_11D0_8E02_00C04FB68D60__INCLUDED_)
  2. #define AFX_CFEATURESPAGE_H__D2C50BCF_C64C_11D0_8E02_00C04FB68D60__INCLUDED_
  3.  
  4. #if _MSC_VER >= 1000
  5. #pragma once
  6. #endif // _MSC_VER >= 1000
  7. // CFeaturesPage.H : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CFeaturesPage dialog
  12.  
  13. class CFeaturesPage : public CPropertyPage
  14. {
  15.     DECLARE_DYNCREATE(CFeaturesPage)
  16.  
  17. // Construction
  18. public:
  19.     CFeaturesPage();
  20.     ~CFeaturesPage();
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(CFeaturesPage)
  24.     enum { IDD = IDD_CONTAINEROPTIONS_FEATURES };
  25.     BOOL    m_tAllowWindowless;
  26.     BOOL    m_tTwoPassDrawing;
  27.     BOOL    m_tHonorIgnoreActivateWhenVisible;
  28.     BOOL    m_tUseIPointerInactive;
  29.     BOOL    m_tUseQuickActivation;
  30.     //}}AFX_DATA
  31.  
  32.  
  33. // Overrides
  34.     // ClassWizard generate virtual function overrides
  35.     //{{AFX_VIRTUAL(CFeaturesPage)
  36.     protected:
  37.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41. protected:
  42.     // Generated message map functions
  43.     //{{AFX_MSG(CFeaturesPage)
  44.     afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
  45.     afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48.  
  49. };
  50.  
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  53.  
  54. #endif // !defined(AFX_CFEATURESPAGE_H__D2C50BCF_C64C_11D0_8E02_00C04FB68D60__INCLUDED_)
  55.