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.

50 lines
1.2 KiB

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #include "statusbr.h"
  5. class CMainFrame : public CMDIFrameWnd
  6. {
  7. DECLARE_DYNAMIC(CMainFrame)
  8. public:
  9. CMainFrame();
  10. // Attributes
  11. public:
  12. // Operations
  13. public:
  14. // Overrides
  15. // ClassWizard generated virtual function overrides
  16. //{{AFX_VIRTUAL(CMainFrame)
  17. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  18. //}}AFX_VIRTUAL
  19. // Implementation
  20. public:
  21. virtual ~CMainFrame();
  22. #ifdef _DEBUG
  23. virtual void AssertValid() const;
  24. virtual void Dump(CDumpContext& dc) const;
  25. #endif
  26. protected: // control bar embedded members
  27. CEvtStatusBar m_wndStatusBar;
  28. CToolBar m_wndToolBar;
  29. // Generated message map functions
  30. protected:
  31. //{{AFX_MSG(CMainFrame)
  32. afx_msg LRESULT OnGotEvent (WPARAM wParam, LPARAM lParam) ;
  33. afx_msg LRESULT OnRefresh (WPARAM wParam, LPARAM lParam) ;
  34. afx_msg LRESULT OnExitEventThread(WPARAM wParam, LPARAM lParam) ;
  35. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  36. afx_msg void OnNeweventconnection();
  37. afx_msg void OnScheduleModifyschedules();
  38. afx_msg void OnViewshedule();
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. /////////////////////////////////////////////////////////////////////////////