Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
2.0 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1998.
  5. //
  6. // File: cause.h
  7. //
  8. // Contents: RSOP's Cause property sheet
  9. //
  10. // Classes: CCause
  11. //
  12. // History: 07-10-2000 stevebl Created
  13. //
  14. //---------------------------------------------------------------------------
  15. #if !defined(AFX_CAUSE_H__5A23FB9E_92BB_11D1_984E_00C04FB9603F__INCLUDED_)
  16. #define AFX_CAUSE_H__5A23FB9E_92BB_11D1_984E_00C04FB9603F__INCLUDED_
  17. #if _MSC_VER >= 1000
  18. #pragma once
  19. #endif // _MSC_VER >= 1000
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CCause dialog
  22. class CCause : public CPropertyPage
  23. {
  24. DECLARE_DYNCREATE(CCause)
  25. // Construction
  26. public:
  27. CCause();
  28. ~CCause();
  29. CCause ** m_ppThis;
  30. CAppData * m_pData;
  31. BOOL m_fRemovedView;
  32. void RefreshData(void);
  33. // Dialog Data
  34. //{{AFX_DATA(CCause)
  35. enum { IDD = IDD_RSOPCAUSE};
  36. // NOTE - ClassWizard will add data members here.
  37. // DO NOT EDIT what you see in these blocks of generated code !
  38. //}}AFX_DATA
  39. // Overrides
  40. // ClassWizard generate virtual function overrides
  41. //{{AFX_VIRTUAL(CCause)
  42. public:
  43. virtual BOOL OnApply();
  44. protected:
  45. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  46. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  47. //}}AFX_VIRTUAL
  48. //
  49. protected:
  50. // Generated message map functions
  51. //{{AFX_MSG(CCause)
  52. virtual BOOL OnInitDialog();
  53. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  54. //}}AFX_MSG\
  55. DECLARE_MESSAGE_MAP()
  56. };
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  59. #endif // !defined(AFX_CAUSE_H__5A23FB9E_92BB_11D1_984E_00C04FB9603F__INCLUDED_)