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 "CGuiTabbedDemo.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 WM_USER+1
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CMainFrame
  14. IMPLEMENT_DYNAMIC(CMainFrame, CMDIFrameWnd)
  15. BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
  16. //{{AFX_MSG_MAP(CMainFrame)
  17. ON_WM_CREATE()
  18. ON_COMMAND(ID_FILE_PRINT_PREVIEW, OnFilePrintPreview)
  19. ON_WM_TIMER()
  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 (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
  41. return -1;
  42. InitMenu(IDR_MAINFRAME);
  43. InitToolBar(IDR_MAINFRAME);
  44. InitStatusBar(indicators,sizeof(indicators)/sizeof(UINT));
  45. // TODO: Delete these three lines if you don't want the toolbar to
  46. //  be dockable
  47. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  48. EnableDocking(CBRS_ALIGN_ANY);
  49. m_wndMenuBar.EnableDocking(CBRS_ALIGN_ANY);
  50. m_wndMenuBar.SetSaveHistory("MyHistory1",TRUE);
  51. m_wndMenuBar.CreateCombo(&m_combMenu,IDC_COMBOMENU,150);
  52. DockControlBar(&m_wndMenuBar,m_dockTop);
  53. DockControlBar(&m_wndToolBar,m_dockTop);
  54. m_wndStatusBar.SetStyle(CGuiStatusBar::OFFICE);
  55. DockControlBar(&m_wndToolBar);
  56. sProfile = _T("GuiTabbedDemo");
  57. LoadBars();
  58. InitMDITabbed();
  59. m_MdiTabbed.SetTabsMenu(IDR_MENUTABS);
  60. SetTimer(1,150,0);
  61. return 0;
  62. }
  63. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  64. {
  65. if( !CMDIFrameWnd::PreCreateWindow(cs) )
  66. return FALSE;
  67. // TODO: Modify the Window class or styles here by modifying
  68. //  the CREATESTRUCT cs
  69. return TRUE;
  70. }
  71. /////////////////////////////////////////////////////////////////////////////
  72. // CMainFrame diagnostics
  73. #ifdef _DEBUG
  74. void CMainFrame::AssertValid() const
  75. {
  76. CMDIFrameWnd::AssertValid();
  77. }
  78. void CMainFrame::Dump(CDumpContext& dc) const
  79. {
  80. CMDIFrameWnd::Dump(dc);
  81. }
  82. #endif //_DEBUG
  83. /////////////////////////////////////////////////////////////////////////////
  84. // CMainFrame message handlers
  85. void CMainFrame::OnFilePrintPreview() 
  86. {
  87. // TODO: Add your command handler code here
  88. AfxMessageBox("hola");
  89. }
  90. void CMainFrame::OnTimer(UINT nIDEvent) 
  91. {
  92. // TODO: Add your message handler code here and/or call default
  93. StyleDispl(GUISTYLE_2003);
  94. KillTimer(nIDEvent);
  95. CMDIFrameWnd::OnTimer(nIDEvent);
  96. }