Leaked source code of windows server 2003
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.

88 lines
2.5 KiB

  1. #if !defined(AFX_REMDLG_H__3FB35059_815F_45FC_B12D_E6B2F31204C1__INCLUDED_)
  2. #define AFX_REMDLG_H__3FB35059_815F_45FC_B12D_E6B2F31204C1__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // RemDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CReminderDlg dialog
  10. class CReminderDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CReminderDlg(CWnd* pParent = NULL); // standard constructor
  15. CReminderDlg(HKEY hKey, LPCTSTR pszRegValueName, CWnd* pParent = NULL);
  16. // Dialog Data
  17. //{{AFX_DATA(CReminderDlg)
  18. enum { IDD = IDD_REMINDER };
  19. BOOL m_bMsgOnOff;
  20. //}}AFX_DATA
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CReminderDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. HKEY m_hKey;
  30. CString m_strRegValueName;
  31. // Generated message map functions
  32. //{{AFX_MSG(CReminderDlg)
  33. virtual void OnOK();
  34. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  35. afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
  36. virtual BOOL OnInitDialog();
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. };
  40. class CReminderDlgEx : public CDialog
  41. {
  42. // Construction
  43. public:
  44. CReminderDlgEx(CWnd* pParent = NULL); // standard constructor
  45. CReminderDlgEx(HKEY hKey, LPCTSTR pszRegValueName, CWnd* pParent = NULL);
  46. // Dialog Data
  47. //{{AFX_DATA(CReminderDlgEx)
  48. enum { IDD = IDD_REMINDER_ENABLE };
  49. BOOL m_bMsgOnOff;
  50. //}}AFX_DATA
  51. // Overrides
  52. // ClassWizard generated virtual function overrides
  53. //{{AFX_VIRTUAL(CReminderDlgEx)
  54. protected:
  55. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  56. //}}AFX_VIRTUAL
  57. // Implementation
  58. protected:
  59. HKEY m_hKey;
  60. CString m_strRegValueName;
  61. // Generated message map functions
  62. //{{AFX_MSG(CReminderDlgEx)
  63. virtual void OnOK();
  64. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  65. afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
  66. afx_msg void OnHelpLink(NMHDR* pNMHDR, LRESULT* pResult);
  67. virtual BOOL OnInitDialog();
  68. //}}AFX_MSG
  69. DECLARE_MESSAGE_MAP()
  70. };
  71. //{{AFX_INSERT_LOCATION}}
  72. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  73. #endif // !defined(AFX_REMDLG_H__3FB35059_815F_45FC_B12D_E6B2F31204C1__INCLUDED_)