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.

39 lines
930 B

  1. // SchView.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CScheduleView dialog
  5. class CScheduleView : public CDialog
  6. {
  7. // Construction
  8. public:
  9. CScheduleView(CWnd* pParent = NULL); // standard constructor
  10. // Dialog Data
  11. //{{AFX_DATA(CScheduleView)
  12. enum { IDD = IDR_SCHEDULEVIEW };
  13. CListBox m_ctrlScheduleList;
  14. //}}AFX_DATA
  15. // Overrides
  16. // ClassWizard generated virtual function overrides
  17. //{{AFX_VIRTUAL(CScheduleView)
  18. protected:
  19. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  20. //}}AFX_VIRTUAL
  21. // Implementation
  22. protected:
  23. // Generated message map functions
  24. //{{AFX_MSG(CScheduleView)
  25. afx_msg LRESULT OnRefresh (WPARAM wParam, LPARAM lParam) ;
  26. afx_msg LRESULT OnExitEventThread (WPARAM wParam, LPARAM lParam) ;
  27. virtual BOOL OnInitDialog();
  28. afx_msg void OnDetails();
  29. afx_msg void OnDelete();
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };