MainFrm.h
上传用户:qiye66671
上传日期:2009-12-10
资源大小:182k
文件大小:2k
源码类别:

绘图程序

开发平台:

C/C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__A2F7CE67_D58B_48EC_BDC8_F7C32BC788A6__INCLUDED_)
  5. #define AFX_MAINFRM_H__A2F7CE67_D58B_48EC_BDC8_F7C32BC788A6__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "DLineProperty.h"
  10. #include "StyleBar.h"
  11. #include"Resource.h"
  12. class CMainFrame : public CMDIFrameWnd
  13. {
  14. DECLARE_DYNAMIC(CMainFrame)
  15. public:
  16. CMainFrame();
  17. // Attributes
  18. public:
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CMainFrame)
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. //}}AFX_VIRTUAL
  26.      
  27. // Implementation
  28. public:
  29. virtual ~CMainFrame();
  30. #ifdef _DEBUG
  31. virtual void AssertValid() const;
  32. virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34. protected:  // control bar embedded members
  35. CStatusBar  m_wndStatusBar;
  36. CToolBar    m_wndToolBar;
  37. CToolBar    m_wndDrawToolBar;
  38. public: 
  39. CStyleBar m_wndStyleBar;
  40. public:   
  41. void AddTempFile();
  42. void SetMousePosText(CPoint Logpoint,CPoint Devpoint);
  43. void ShowFontBar(BOOL isShow=true);
  44. CDLineProperty* m_DLineProperty;
  45. // Generated message map functions
  46. protected:
  47. //{{AFX_MSG(CMainFrame)
  48. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  49. afx_msg void OnShowPorDlg();
  50. afx_msg void OnUpdateShowPorDlg(CCmdUI* pCmdUI);
  51. afx_msg void OnShowDrawToolBar();
  52. afx_msg void OnUpdateShowDrawToolBar(CCmdUI* pCmdUI);
  53. afx_msg void OnTimer(UINT nIDEvent);
  54. //}}AFX_MSG
  55. afx_msg void OnUpdateMousPoint(CCmdUI* pCmdUI);
  56.     afx_msg void OnUpdateMousCaption(CCmdUI* pCmdUI);
  57. DECLARE_MESSAGE_MAP()
  58. };
  59. /////////////////////////////////////////////////////////////////////////////
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  62. #endif // !defined(AFX_MAINFRM_H__A2F7CE67_D58B_48EC_BDC8_F7C32BC788A6__INCLUDED_)