MainFrm.h
上传用户:dfwb928
上传日期:2013-04-20
资源大小:228k
文件大小:1k
源码类别:

图形图象

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__65A4B78D_6B91_11D3_96F0_B4809CB3F4D6__INCLUDED_)
  5. #define AFX_MAINFRM_H__65A4B78D_6B91_11D3_96F0_B4809CB3F4D6__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. #include "EditToolBar.h"
  10. class CMainFrame : public CFrameWnd {
  11. protected: // create from serialization only
  12. CMainFrame();
  13. DECLARE_DYNCREATE(CMainFrame)
  14. public:
  15. int m_iThreshold;
  16. CToolBar m_wndProtoBar;
  17. CEditToolBar m_wndToolBar;
  18. //{{AFX_VIRTUAL(CMainFrame)
  19. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  20. //}}AFX_VIRTUAL
  21. public:
  22. void SetStatusMessage(CString);
  23. void SetStatusMessage(UINT);
  24. void PercentComplete(float);
  25. void DockControlBarLeftOf(CToolBar *, CToolBar *);
  26. CToolBar *GetToolbar();
  27. virtual ~CMainFrame();
  28. #ifdef _DEBUG
  29. virtual void AssertValid() const;
  30. virtual void Dump(CDumpContext& dc) const;
  31. #endif
  32. protected:
  33. CStatusBar m_wndStatusBar;
  34. protected:
  35. CFont m_cFont;
  36. //{{AFX_MSG(CMainFrame)
  37. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  38. afx_msg LRESULT ThreshChange(WPARAM, LPARAM);
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. //{{AFX_INSERT_LOCATION}}
  43. #endif