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 / evlogpg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.4 KB  |  54 lines

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