prop.cpp
上传用户:tenhai
上传日期:2021-02-19
资源大小:492k
文件大小:7k
源码类别:

组合框控件

开发平台:

Visual C++

  1. // prop.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "prop.h"
  5. #include "childfrm.h"
  6. #include "MainFrm.h"
  7. #include "ChildFrm.h"
  8. #include "propDoc.h"
  9. #include "propView.h"
  10. #include "ptreeDoc.h"
  11. #include "ptreeView.h"
  12. #include "slstDoc.h"
  13. #include "slstView.h"
  14. #include "grammardlg.h"
  15. #ifdef _DEBUG
  16. #define new DEBUG_NEW
  17. #undef THIS_FILE
  18. static char THIS_FILE[] = __FILE__;
  19. #endif
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CPropApp
  22. BEGIN_MESSAGE_MAP(CPropApp, CWinApp)
  23. //{{AFX_MSG_MAP(CPropApp)
  24. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  25. ON_COMMAND(ID_GRAMMAR_LOAD, OnGrammarLoad)
  26. ON_COMMAND(ID_PARSE_LOAD, OnParseLoad)
  27. ON_COMMAND(ID_FILE_NEW, OnFileNew)
  28. ON_COMMAND(ID_EXECUTE, OnExecute)
  29. //}}AFX_MSG_MAP
  30. // Standard file based document commands
  31. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  32. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  33. // Standard print setup command
  34. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  35. END_MESSAGE_MAP()
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CPropApp construction
  38. CPropApp::CPropApp()
  39. {
  40. // TODO: add construction code here,
  41. // Place all significant initialization in InitInstance
  42. }
  43. /////////////////////////////////////////////////////////////////////////////
  44. // The one and only CPropApp object
  45. CPropApp theApp;
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CPropApp initialization
  48. BOOL CPropApp::InitInstance()
  49. {
  50. // Initialize OLE libraries
  51. if (!AfxOleInit())
  52. {
  53. AfxMessageBox(IDP_OLE_INIT_FAILED);
  54. return FALSE;
  55. }
  56. AfxEnableControlContainer();
  57. // Standard initialization
  58. // If you are not using these features and wish to reduce the size
  59. //  of your final executable, you should remove from the following
  60. //  the specific initialization routines you do not need.
  61. #ifdef _AFXDLL
  62. Enable3dControls(); // Call this when using MFC in a shared DLL
  63. #else
  64. Enable3dControlsStatic(); // Call this when linking to MFC statically
  65. #endif
  66. // Change the registry key under which our settings are stored.
  67. // TODO: You should modify this string to be something appropriate
  68. // such as the name of your company or organization.
  69. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  70. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  71. // Register the application's document templates.  Document templates
  72. //  serve as the connection between documents, frame windows and views.
  73. m_pDocTemplate = new CMultiDocTemplate(
  74. IDR_PROPTYPE,
  75. RUNTIME_CLASS(CPropDoc),
  76. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  77. RUNTIME_CLASS(CPropView));
  78. m_pDocTemplate->SetContainerInfo(IDR_PROPTYPE_CNTR_IP);
  79. m_qDocTemplate = new CMultiDocTemplate(
  80. IDR_PROPTYPE,
  81. RUNTIME_CLASS(CPtreeDoc),
  82. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  83. RUNTIME_CLASS(CPtreeView));
  84. m_sDocTemplate = new CMultiDocTemplate(
  85. IDR_PROPTYPE,
  86. RUNTIME_CLASS(CSlstDoc),
  87. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  88. RUNTIME_CLASS(CSlstView));
  89. AddDocTemplate(m_pDocTemplate);
  90. AddDocTemplate(m_qDocTemplate);
  91. AddDocTemplate(m_sDocTemplate);
  92. // create main MDI Frame window
  93. CMainFrame* pMainFrame = new CMainFrame;
  94. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  95. return FALSE;
  96. m_pMainWnd = pMainFrame;
  97. // Parse command line for standard shell commands, DDE, file open
  98. CCommandLineInfo cmdInfo;
  99. ParseCommandLine(cmdInfo);
  100. // Dispatch commands specified on the command line
  101. if (!ProcessShellCommand(cmdInfo))
  102. return FALSE;
  103. // The main window has been initialized, so show and update it.
  104. pMainFrame->ShowWindow(m_nCmdShow);
  105. pMainFrame->UpdateWindow();
  106. return TRUE;
  107. }
  108. /////////////////////////////////////////////////////////////////////////////
  109. // CAboutDlg dialog used for App About
  110. class CAboutDlg : public CDialog
  111. {
  112. public:
  113. CAboutDlg();
  114. // Dialog Data
  115. //{{AFX_DATA(CAboutDlg)
  116. enum { IDD = IDD_ABOUTBOX };
  117. //}}AFX_DATA
  118. // ClassWizard generated virtual function overrides
  119. //{{AFX_VIRTUAL(CAboutDlg)
  120. protected:
  121. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  122. //}}AFX_VIRTUAL
  123. // Implementation
  124. protected:
  125. //{{AFX_MSG(CAboutDlg)
  126. // No message handlers
  127. //}}AFX_MSG
  128. DECLARE_MESSAGE_MAP()
  129. };
  130. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  131. {
  132. //{{AFX_DATA_INIT(CAboutDlg)
  133. //}}AFX_DATA_INIT
  134. }
  135. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  136. {
  137. CDialog::DoDataExchange(pDX);
  138. //{{AFX_DATA_MAP(CAboutDlg)
  139. //}}AFX_DATA_MAP
  140. }
  141. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  142. //{{AFX_MSG_MAP(CAboutDlg)
  143. // No message handlers
  144. //}}AFX_MSG_MAP
  145. END_MESSAGE_MAP()
  146. // App command to run the dialog
  147. void CPropApp::OnAppAbout()
  148. {
  149. CAboutDlg aboutDlg;
  150. aboutDlg.DoModal();
  151. }
  152. /////////////////////////////////////////////////////////////////////////////
  153. // CPropApp message handlers
  154. extern execmd(char *cmdline);
  155. void CPropApp::ExecCmd(CString cmd)
  156. {
  157. char *szCmd=cmd.GetBuffer(10);
  158. POSITION propDocPos=m_pDocTemplate->GetFirstDocPosition();
  159. if (propDocPos){
  160. CPropDoc *pDoc=(CPropDoc *)theApp.m_pDocTemplate->GetNextDoc(propDocPos);
  161. POSITION propViewPos=pDoc->GetFirstViewPosition();
  162. if (propViewPos){
  163. CPropView *pView = (CPropView *) pDoc->GetNextView(propViewPos);
  164. CChildFrame* pChildFrame = (CChildFrame*)pView->GetParent ();
  165. ((CMainFrame *)m_pMainWnd)->MDIActivate (pChildFrame);
  166. }
  167. }
  168. DoWaitCursor (1);
  169. execmd(szCmd);
  170. DoWaitCursor (-1);
  171. }
  172. void CPropApp::OnGrammarLoad() 
  173. {
  174. // TODO: Add your command handler code here
  175. int retVal=m_gDlg.DoModal();
  176. if (retVal==IDOK){
  177. DispCmd("build "+m_gDlg.m_curg);
  178. // ExecCmd("build "+m_gDlg.m_curg);
  179. }
  180. }
  181. void CPropApp::DispCmd(CString cmd)
  182. {
  183. ((CMainFrame *)m_pMainWnd)->m_wndInputBar.m_comboBox.m_strInput=cmd;
  184. ((CMainFrame *)m_pMainWnd)->m_wndInputBar.m_comboBox.UpdateInput();
  185. }
  186. void CPropApp::OnParseLoad() 
  187. {
  188. // TODO: Add your command handler code here
  189. int retVal=m_sDlg.DoModal();
  190. if (retVal==IDOK){
  191. DispCmd("parse "+m_sDlg.m_curg);
  192. // ExecCmd("parse "+m_sDlg.m_curg);
  193. }
  194. }
  195. void CPropApp::OnFileNew() 
  196. {
  197. // TODO: Add your command handler code here
  198. //CWinApp::OnFileNew();
  199. if (!m_pDocTemplate->GetFirstDocPosition())
  200. m_pDocTemplate->OpenDocumentFile(NULL);
  201. if (!m_qDocTemplate->GetFirstDocPosition())
  202. m_qDocTemplate->OpenDocumentFile(NULL);
  203. if (!m_sDocTemplate->GetFirstDocPosition())
  204. m_sDocTemplate->OpenDocumentFile(NULL);
  205. return;
  206. // if returns NULL, the user has already been alerted
  207. }
  208. void CPropApp::OnExecute() 
  209. {
  210. // TODO: Add your command handler code here
  211. ((CMainFrame *)m_pMainWnd)->m_wndInputBar.m_comboBox.OnCmd();
  212. }