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

界面编程

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "DialogBar.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_DYNCREATE(CMainFrame, CFrameWnd)
  14. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  15. ON_WM_CREATE()
  16. //响应来自工具“测试”按钮的信息
  17.  ON_COMMAND(IDC_BUTTON_INTOOLBAR,RefectMessage)
  18. //禁用或启用“测试”按钮
  19.  ON_UPDATE_COMMAND_UI(IDC_BUTTON_INTOOLBAR, OnupdataButton)
  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. ENABLE=1;
  33. }
  34. CMainFrame::~CMainFrame()
  35. {
  36. }
  37. void CMainFrame::OnupdataButton(CCmdUI* pCmdUI)
  38. {
  39. if(ENABLE)
  40. {
  41. //禁用控件
  42. pCmdUI->Enable(0);
  43. ENABLE=!ENABLE;
  44. }
  45. else
  46. {
  47. //启用用控件
  48. pCmdUI->Enable(1);
  49. ENABLE=!ENABLE;
  50. }
  51. }
  52. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  53. {
  54. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  55. return -1;
  56. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  57. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  58. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  59. {
  60. TRACE0("Failed to create toolbarn");
  61. return -1;      // fail to create
  62. }
  63. if (!m_wndStatusBar.Create(this) ||
  64. !m_wndStatusBar.SetIndicators(indicators,
  65.   sizeof(indicators)/sizeof(UINT)))
  66. {
  67. TRACE0("Failed to create status barn");
  68. return -1;      // fail to create
  69. }
  70. //创建对话框工具条
  71. //设置基对齐方式在左边对齐,支持快速提示,支持动态停泊
  72. if( !DialogTooBar.Create( this, IDD_DIALOG_TOOLBAR, CBRS_LEFT|CBRS_TOOLTIPS|CBRS_FLYBY, ID_MYDIALOGBAR) )
  73.         {
  74.         
  75.   AfxMessageBox("对话框工具条创建出错");
  76.   return -1;      // fail to create
  77.         }
  78. EnableDocking(CBRS_ALIGN_ANY) ;
  79. //启用对话框工具条的任意停泊特性
  80. DialogTooBar.EnableDocking(CBRS_ALIGN_ANY);
  81. //将对话框工具条停放在窗左边
  82. DockControlBar(&DialogTooBar);
  83. // TODO: Delete these three lines if you don't want the toolbar to
  84. //  be dockable
  85. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  86. DockControlBar(&m_wndToolBar);
  87. return 0;
  88. }
  89. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  90. {
  91. if( !CFrameWnd::PreCreateWindow(cs) )
  92. return FALSE;
  93. // TODO: Modify the Window class or styles here by modifying
  94. //  the CREATESTRUCT cs
  95. return TRUE;
  96. }
  97. /////////////////////////////////////////////////////////////////////////////
  98. // CMainFrame diagnostics
  99. #ifdef _DEBUG
  100. void CMainFrame::AssertValid() const
  101. {
  102. CFrameWnd::AssertValid();
  103. }
  104. void CMainFrame::Dump(CDumpContext& dc) const
  105. {
  106. CFrameWnd::Dump(dc);
  107. }
  108. #endif //_DEBUG
  109. /////////////////////////////////////////////////////////////////////////////
  110. // CMainFrame message handlers
  111. void CMainFrame::RefectMessage()
  112. {
  113. AfxMessageBox("主窗口收到来自于对话框工具条信息");
  114. }
  115. BOOL CMainFrame::OnCommand(WPARAM wParam, LPARAM lParam) 
  116. {
  117. // TODO: Add your specialized code here and/or call the base class
  118. return CFrameWnd::OnCommand(wParam, lParam);
  119. }