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

词法分析

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "C_Editor.h"
  5. #include "MainFrm.h"
  6. #include "SynEditView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  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_OPEN, OnFileOpen)
  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. // TODO: Delete these three lines if you don't want the toolbar to
  56. //  be dockable
  57. m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  58. EnableDocking(CBRS_ALIGN_ANY);
  59. DockControlBar(&m_wndToolBar);
  60. return 0;
  61. }
  62. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  63. {
  64. if( !CMDIFrameWnd::PreCreateWindow(cs) )
  65. return FALSE;
  66. // TODO: Modify the Window class or styles here by modifying
  67. //  the CREATESTRUCT cs
  68. return TRUE;
  69. }
  70. /////////////////////////////////////////////////////////////////////////////
  71. // CMainFrame diagnostics
  72. #ifdef _DEBUG
  73. void CMainFrame::AssertValid() const
  74. {
  75. CMDIFrameWnd::AssertValid();
  76. }
  77. void CMainFrame::Dump(CDumpContext& dc) const
  78. {
  79. CMDIFrameWnd::Dump(dc);
  80. }
  81. #endif //_DEBUG
  82. /////////////////////////////////////////////////////////////////////////////
  83. // CMainFrame message handlers
  84. void CMainFrame::OnFileOpen() 
  85. {
  86. // TODO: Add your command handler code here
  87. m_bAutoReturn = AfxGetApp()->GetProfileInt(_T("Editor Settings"),  _T("Auto Return"), TRUE);
  88. CFileDialog fd(TRUE);
  89. if(fd.DoModal()==IDCANCEL)
  90. return;
  91. CC_EditorApp *pApp = (CC_EditorApp *)AfxGetApp();
  92. pApp->OpenDocumentFile(fd.m_ofn.lpstrFile); //用MFC的方法建立一个新视
  93. CMDIFrameWnd *pFrame = (CMDIFrameWnd*)AfxGetApp()->m_pMainWnd;
  94. CMDIChildWnd *pChild = (CMDIChildWnd *) pFrame->GetActiveFrame();
  95. CSynEditView *pView = (CSynEditView *)pChild->GetActiveView();
  96. pView->LoadFile(fd.m_ofn.lpstrFile);
  97. pView->SetWrapMode
  98. (m_bAutoReturn==TRUE? CSynEditView::WrapToWindow:CSynEditView::WrapNone);
  99. }