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.

93 lines
1.6 KiB

  1. //{{AFX_INCLUDES()
  2. #include "hours1.h"
  3. //}}AFX_INCLUDES
  4. /*++
  5. Copyright (c) 1996 Microsoft Corporation
  6. Module Name:
  7. Hours.h : header file
  8. File History:
  9. JonY Apr-96 created
  10. --*/
  11. //
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CSWnd window
  14. class CSWnd : public CStatic
  15. {
  16. // Construction
  17. public:
  18. CSWnd();
  19. BOOL bWhich;
  20. // Attributes
  21. public:
  22. // Operations
  23. public:
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CSWnd)
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. public:
  30. virtual ~CSWnd();
  31. // Generated message map functions
  32. protected:
  33. //{{AFX_MSG(CSWnd)
  34. afx_msg void OnPaint();
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. };
  38. /////////////////////////////////////////////////////////////////////////////
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CHoursDlg dialog
  41. class CHoursDlg : public CWizBaseDlg
  42. {
  43. DECLARE_DYNCREATE(CHoursDlg)
  44. // Construction
  45. public:
  46. CHoursDlg();
  47. ~CHoursDlg();
  48. // Dialog Data
  49. //{{AFX_DATA(CHoursDlg)
  50. enum { IDD = IDD_HOURS_DLG };
  51. CSWnd m_swDisAllowed;
  52. CSWnd m_swAllowed;
  53. CHours m_ccHours;
  54. //}}AFX_DATA
  55. // Overrides
  56. // ClassWizard generate virtual function overrides
  57. //{{AFX_VIRTUAL(CHoursDlg)
  58. protected:
  59. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  60. //}}AFX_VIRTUAL
  61. // Implementation
  62. protected:
  63. // Generated message map functions
  64. //{{AFX_MSG(CHoursDlg)
  65. virtual BOOL OnInitDialog();
  66. afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
  67. //}}AFX_MSG
  68. DECLARE_MESSAGE_MAP()
  69. LRESULT OnWizardNext();
  70. LRESULT OnWizardBack();
  71. };