MainFrm.h
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__FCB54CDE_1391_4A20_8F96_C9BDFD7F13FB__INCLUDED_)
  5. #define AFX_MAINFRM_H__FCB54CDE_1391_4A20_8F96_C9BDFD7F13FB__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "left.h"
  10. #include "right.h"
  11. //使用CJLibrary风格的窗口框
  12. #define CFrameWnd CCJFrameWnd
  13. class CMainFrame : public CFrameWnd
  14. {
  15. protected: 
  16. CMainFrame();
  17. DECLARE_DYNCREATE(CMainFrame)
  18. protected:
  19. CSplitterWnd m_wndSplitter;
  20. public:
  21. //获取运行视图
  22. CLeft* GetLeftPane();
  23. CRight* GetRightPane();
  24. //ReBar风格的工具条
  25. CReBar m_wndReBar;
  26. //地址栏
  27. CComboBox m_wndAddress;
  28. //AVI播放器
  29. CAnimateCtrl m_wndAnimate;
  30. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  31. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  32. virtual ~CMainFrame();
  33. #ifdef _DEBUG
  34. virtual void AssertValid() const;
  35. virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. protected: 
  38. CStatusBar  m_wndStatusBar;
  39. //使用CJLibrary风格的工具条
  40. CCJToolBar    m_wndToolBar;
  41. protected:
  42. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  43. //自定义工具条的按钮响应函数
  44. afx_msg void OnBack();
  45. afx_msg void OnForward();
  46. afx_msg void OnUp();
  47. afx_msg void OnCut();
  48. afx_msg void OnCopy();
  49. afx_msg void OnPaste();
  50. afx_msg void OnUndo();
  51. afx_msg void OnDelete();
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. /////////////////////////////////////////////////////////////////////////////
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  57. #endif // !defined(AFX_MAINFRM_H__FCB54CDE_1391_4A20_8F96_C9BDFD7F13FB__INCLUDED_)