MainFrm.h
上传用户:ywlong9188
上传日期:2022-05-31
资源大小:2656k
文件大小:1k
源码类别:

远程控制编程

开发平台:

C/C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. class CMainFrame : public CFrameWnd
  5. {
  6. protected: // create from serialization only
  7. afx_msg void OnUpdateDate(CCmdUI* pCmdUI);
  8. CMainFrame();
  9. DECLARE_DYNCREATE(CMainFrame);
  10. // Attributes
  11. protected:
  12. CPaletteBar m_wndPaletteBar;
  13. public:
  14. int m_nDatePaneNo;
  15. BOOL CreatePaletteBar();
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CMainFrame)
  21. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  22. virtual void ActivateFrame(int nCmdShow=1);
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. public:
  26. virtual ~CMainFrame();
  27. #ifdef _DEBUG
  28. virtual void AssertValid() const;
  29. virtual void Dump(CDumpContext& dc) const;
  30. #endif
  31. protected:  // control bar embedded members
  32. CStatusBar  m_wndStatusBar;
  33. CToolBar    m_wndToolBar;
  34. // Generated message map functions
  35. protected:
  36. //{{AFX_MSG(CMainFrame)
  37. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  38. afx_msg void OnViewPaletteBar();
  39. afx_msg void OnUpdateViewPaletteBar(CCmdUI* pCmdUI);
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. private:
  43. BOOL InitStatusBar(UINT *pIndicators, int nSize, int nSeconds);
  44. };
  45. /////////////////////////////////////////////////////////////////////////////