MainFrm.cpp
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "GuiVisioDemo.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. #define IDC_COMBOMENU 5006
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CMainFrame
  14. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  15. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  16. //{{AFX_MSG_MAP(CMainFrame)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code !
  19. ON_WM_CREATE()
  20. //}}AFX_MSG_MAP
  21. END_MESSAGE_MAP()
  22. static UINT indicators[] =
  23. {
  24. ID_SEPARATOR,           // status line indicator
  25. ID_INDICATOR_CAPS,
  26. ID_INDICATOR_NUM,
  27. ID_INDICATOR_SCRL,
  28. };
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CMainFrame construction/destruction
  31. CMainFrame::CMainFrame()
  32. {
  33. // TODO: add member initialization code here
  34. }
  35. CMainFrame::~CMainFrame()
  36. {
  37. }
  38. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  39. {
  40. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  41. return -1;
  42. InitMenu(IDR_MAINFRAME);
  43. InitToolBar(IDR_MAINFRAME);
  44. InitStatusBar(indicators,sizeof(indicators)/sizeof(UINT));
  45. if (!m_OutNormal.Create(_T("ToolBar Visio"),WS_CHILD | WS_VISIBLE, this, 0x995))
  46.     {
  47.         TRACE0("Failed to create m_OutNormaln");
  48.         return -1;      
  49. }
  50. m_OutNormal.SetBarStyle(m_OutNormal.GetBarStyle() |
  51. CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
  52. // TODO: Delete these three lines if you don't want the toolbar to
  53. //  be dockable
  54. EnableDocking(CBRS_ALIGN_ANY);
  55. m_wndMenuBar.EnableDocking(CBRS_ALIGN_ANY);
  56.     m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  57. m_wndMenuBar.SetSaveHistory("HistoryVisio",TRUE);
  58. m_wndMenuBar.CreateCombo(&m_combMenu,IDC_COMBOMENU,150);
  59. DockControlBar(&m_wndMenuBar,m_dockTop);
  60. DockControlBar(&m_wndToolBar,m_dockTop);
  61. m_OutNormal.EnableDocking(CBRS_ALIGN_ANY);
  62. DockControlBar(&m_OutNormal, AFX_IDW_DOCKBAR_LEFT);
  63. sProfile = _T("GuiVisioDemo");
  64. // LoadBars();
  65. return 0;
  66. }
  67. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  68. {
  69. if( !CFrameWnd::PreCreateWindow(cs) )
  70. return FALSE;
  71. // TODO: Modify the Window class or styles here by modifying
  72. //  the CREATESTRUCT cs
  73. return TRUE;
  74. }
  75. /////////////////////////////////////////////////////////////////////////////
  76. // CMainFrame diagnostics
  77. #ifdef _DEBUG
  78. void CMainFrame::AssertValid() const
  79. {
  80. CFrameWnd::AssertValid();
  81. }
  82. void CMainFrame::Dump(CDumpContext& dc) const
  83. {
  84. CFrameWnd::Dump(dc);
  85. }
  86. #endif //_DEBUG
  87. /////////////////////////////////////////////////////////////////////////////
  88. // CMainFrame message handlers