MainFrm.h
上传用户:cqzhuye
上传日期:2007-01-01
资源大小:72k
文件大小:2k
源码类别:

浏览器

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__D1A35149_9D79_11D1_9D77_826FD3E9461F__INCLUDED_)
  5. #define AFX_MAINFRM_H__D1A35149_9D79_11D1_9D77_826FD3E9461F__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CMainFrame : public CFrameWnd
  10. {
  11. protected: // create from serialization only
  12. CMainFrame();
  13. DECLARE_DYNCREATE(CMainFrame)
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CMainFrame)
  21. public:
  22. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  23. virtual BOOL DestroyWindow();
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. virtual ~CMainFrame();
  28. #ifdef _DEBUG
  29. virtual void AssertValid() const;
  30. virtual void Dump(CDumpContext& dc) const;
  31. #endif
  32. protected:  // control bar embedded members
  33. CStatusBar  m_wndStatusBar;
  34. CToolBar    m_wndToolBar;
  35. CReBar      m_wndReBar;
  36. CDialogBar      m_wndDlgBar;
  37. // Generated message map functions
  38. protected:
  39. //{{AFX_MSG(CMainFrame)
  40. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  41. afx_msg void OnStart();
  42. afx_msg void OnStop();
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. private:
  46. BOOL m_bDialog;
  47. BOOL m_bStart;
  48. };
  49. /////////////////////////////////////////////////////////////////////////////
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_MAINFRM_H__D1A35149_9D79_11D1_9D77_826FD3E9461F__INCLUDED_)