MainFrm.cpp
上传用户:jinlangri
上传日期:2022-07-17
资源大小:10774k
文件大小:3k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "draw.h"
  5. #include "MainFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMainFrame
  13. IMPLEMENT_DYNAMIC(CMainFrame, CMDIFrameWnd)
  14. BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
  15. //{{AFX_MSG_MAP(CMainFrame)
  16. ON_WM_CREATE()
  17. ON_COMMAND(ID_PAINTTOOL, OnPainttool)
  18. ON_UPDATE_COMMAND_UI(ID_PAINTTOOL, OnUpdatePainttool)
  19. //}}AFX_MSG_MAP
  20. END_MESSAGE_MAP()
  21. static UINT indicators[] =
  22. {
  23. ID_SEPARATOR,           // status line indicator
  24. ID_INDICATOR_CAPS,
  25. ID_INDICATOR_NUM,
  26. ID_INDICATOR_SCRL,
  27. };
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CMainFrame construction/destruction
  30. CMainFrame::CMainFrame()
  31. {
  32. // TODO: add member initialization code here
  33. }
  34. CMainFrame::~CMainFrame()
  35. {
  36. }
  37. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  38. {
  39. if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
  40. return -1;
  41. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  42. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  43. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  44. {
  45. TRACE0("Failed to create toolbarn");
  46. return -1;      // fail to create
  47. }
  48. if (!m_wndStatusBar.Create(this) ||
  49. !m_wndStatusBar.SetIndicators(indicators,
  50.   sizeof(indicators)/sizeof(UINT)))
  51. {
  52. TRACE0("Failed to create status barn");
  53. return -1;      // fail to create
  54. }
  55. if(!m_wndPaintToolBar.Create(this,WS_CHILD|WS_VISIBLE|CBRS_SIZE_FIXED|CBRS_LEFT|CBRS_TOOLTIPS,0x1208)
  56. ||!m_wndPaintToolBar.LoadToolBar(IDR_TOOLBAR1))
  57. {
  58. TRACE0("Failed to create status barn");
  59. return -1;      // fail to create
  60. }
  61. m_wndPaintToolBar.SetWindowText(_T("工具箱"));
  62. m_wndPaintToolBar.EnableDocking(CBRS_ALIGN_LEFT|CBRS_ALIGN_RIGHT);
  63. m_wndPaintToolBar.SetColumns(2);
  64. // TODO: Delete these three lines if you don't want the toolbar to
  65. //  be dockable
  66. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  67. EnableDocking(CBRS_ALIGN_ANY);
  68. DockControlBar(&m_wndToolBar);
  69. DockControlBar(&m_wndPaintToolBar);
  70. return 0;
  71. }
  72. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  73. {
  74. if( !CMDIFrameWnd::PreCreateWindow(cs) )
  75. return FALSE;
  76. // TODO: Modify the Window class or styles here by modifying
  77. //  the CREATESTRUCT cs
  78. cs.style = WS_OVERLAPPED | WS_CAPTION | FWS_ADDTOTITLE
  79. | WS_THICKFRAME | WS_SYSMENU | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_MAXIMIZE;
  80. return TRUE;
  81. }
  82. /////////////////////////////////////////////////////////////////////////////
  83. // CMainFrame diagnostics
  84. #ifdef _DEBUG
  85. void CMainFrame::AssertValid() const
  86. {
  87. CMDIFrameWnd::AssertValid();
  88. }
  89. void CMainFrame::Dump(CDumpContext& dc) const
  90. {
  91. CMDIFrameWnd::Dump(dc);
  92. }
  93. #endif //_DEBUG
  94. /////////////////////////////////////////////////////////////////////////////
  95. // CMainFrame message handlers
  96. void CMainFrame::OnPainttool() 
  97. {
  98. BOOL bVisible = ((m_wndPaintToolBar.GetStyle() & WS_VISIBLE) != 0);
  99. ShowControlBar(&m_wndPaintToolBar, !bVisible,FALSE);
  100. RecalcLayout();
  101. GetMenu()->CheckMenuItem(ID_PAINTTOOL, (bVisible ? MF_UNCHECKED : MF_CHECKED) | MF_BYCOMMAND);
  102. }
  103. void CMainFrame::OnUpdatePainttool(CCmdUI* pCmdUI) 
  104. {
  105. BOOL bVisible = ((m_wndPaintToolBar.GetStyle() & WS_VISIBLE) != 0);
  106. pCmdUI->SetCheck(bVisible);
  107. }