MainFrm.cpp
上传用户:bingyunhe
上传日期:2013-07-06
资源大小:723k
文件大小:3k
源码类别:

词法分析

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "ChineseInputer.h"
  5. #include "MainFrm.h"
  6. #include "DlgInput.h"
  7. #include ".mainfrm.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CMainFrame
  15. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  16. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  17. //{{AFX_MSG_MAP(CMainFrame)
  18. ON_WM_CREATE()
  19. ON_COMMAND(AFX_MENU_INPUT, OnMenuInput)
  20. //}}AFX_MSG_MAP
  21. ON_COMMAND(ID_MEMTESTSTART, OnMemteststart)
  22. ON_COMMAND(ID_MEMTESTEND, OnMemtestend)
  23. END_MESSAGE_MAP()
  24. static UINT indicators[] =
  25. {
  26. ID_SEPARATOR,           // status line indicator
  27. ID_INDICATOR_CAPS,
  28. ID_INDICATOR_NUM,
  29. ID_INDICATOR_SCRL,
  30. };
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CMainFrame construction/destruction
  33. CMainFrame::CMainFrame()
  34. {
  35. // TODO: add member initialization code here
  36. }
  37. CMainFrame::~CMainFrame()
  38. {
  39. }
  40. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  41. {
  42. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  43. return -1;
  44. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  45. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  46. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  47. {
  48. TRACE0("Failed to create toolbarn");
  49. return -1;      // fail to create
  50. }
  51. if (!m_wndStatusBar.Create(this) ||
  52. !m_wndStatusBar.SetIndicators(indicators,
  53.   sizeof(indicators)/sizeof(UINT)))
  54. {
  55. TRACE0("Failed to create status barn");
  56. return -1;      // fail to create
  57. }
  58. // TODO: Delete these three lines if you don't want the toolbar to
  59. //  be dockable
  60. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  61. EnableDocking(CBRS_ALIGN_ANY);
  62. DockControlBar(&m_wndToolBar);
  63. return 0;
  64. }
  65. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  66. {
  67. if( !CFrameWnd::PreCreateWindow(cs) )
  68. return FALSE;
  69. // TODO: Modify the Window class or styles here by modifying
  70. //  the CREATESTRUCT cs
  71. return TRUE;
  72. }
  73. /////////////////////////////////////////////////////////////////////////////
  74. // CMainFrame diagnostics
  75. #ifdef _DEBUG
  76. void CMainFrame::AssertValid() const
  77. {
  78. CFrameWnd::AssertValid();
  79. }
  80. void CMainFrame::Dump(CDumpContext& dc) const
  81. {
  82. CFrameWnd::Dump(dc);
  83. }
  84. #endif //_DEBUG
  85. /////////////////////////////////////////////////////////////////////////////
  86. // CMainFrame message handlers
  87. void CMainFrame::OnMenuInput() 
  88. {
  89. // TODO: Add your command handler code here 
  90.    CDlgInput DlgInput ; 
  91.    DlgInput.DoModal(  ) ;
  92.  
  93.  
  94. }
  95. void CMainFrame::OnMemteststart()
  96. {
  97. // TODO: 在此添加命令处理程序代码 
  98.    
  99. #ifdef _DEBUG
  100. oldMemState.Checkpoint();
  101. #endif 
  102. }
  103. void CMainFrame::OnMemtestend()
  104. {
  105. // TODO: 在此添加命令处理程序代码
  106.    #ifdef _DEBUG
  107.    newMemState.Checkpoint( );
  108.    if( diffMemState.Difference( oldMemState, newMemState ) )
  109. {
  110.  TRACE( "Memory leaked!n" );
  111.  diffMemState.DumpStatistics(  ); 
  112. //  TRACE( "DumpAllObjectsn" );
  113.  //diffMemState.DumpAllObjectsSince(  );
  114. }
  115. #endif
  116. }