scribble.cpp
上传用户:biuytresa
上传日期:2007-12-07
资源大小:721k
文件大小:6k
源码类别:

DNA

开发平台:

Visual C++

  1. // Scribble.cpp : Defines the class behaviors for the application.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "Scribble.h"
  14. #include "MainFrm.h"
  15. #include "ChildFrm.h"
  16. #include "IpFrame.h"
  17. #include "ScribDoc.h"
  18. #include "ScribVw.h"
  19. #ifdef _DEBUG
  20. #define new DEBUG_NEW
  21. #undef THIS_FILE
  22. static char THIS_FILE[] = __FILE__;
  23. #endif
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CScribbleApp
  26. BEGIN_MESSAGE_MAP(CScribbleApp, CWinApp)
  27. //{{AFX_MSG_MAP(CScribbleApp)
  28. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  29. // NOTE - the ClassWizard will add and remove mapping macros here.
  30. //    DO NOT EDIT what you see in these blocks of generated code!
  31. //}}AFX_MSG_MAP
  32. // Standard file based document commands
  33. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  34. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  35. // Standard print setup command
  36. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CScribbleApp construction
  40. CScribbleApp::CScribbleApp()
  41. {
  42. // TODO: add construction code here,
  43. // Place all significant initialization in InitInstance
  44. }
  45. /////////////////////////////////////////////////////////////////////////////
  46. // The one and only CScribbleApp object
  47. CScribbleApp theApp;
  48. // This identifier was generated to be statistically unique for your app.
  49. // You may change it if you prefer to choose a specific identifier.
  50. // {7559FD90-9B93-11CE-B0F0-00AA006C28B3}
  51. static const CLSID clsid =
  52. { 0x7559fd90, 0x9b93, 0x11ce, { 0xb0, 0xf0, 0x0, 0xaa, 0x0, 0x6c, 0x28, 0xb3 } };
  53. /////////////////////////////////////////////////////////////////////////////
  54. // CScribbleApp initialization
  55. BOOL CScribbleApp::InitInstance()
  56. {
  57. // Initialize OLE libraries
  58. if (!AfxOleInit())
  59. {
  60. AfxMessageBox(IDP_OLE_INIT_FAILED);
  61. return FALSE;
  62. }
  63. // Standard initialization
  64. // If you are not using these features and wish to reduce the size
  65. //  of your final executable, you should remove from the following
  66. //  the specific initialization routines you do not need.
  67. #ifdef _AFXDLL
  68. Enable3dControls();                     // Call this when using MFC in a shared DLL
  69. #else
  70. Enable3dControlsStatic();       // Call this when linking to MFC statically
  71. #endif
  72. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  73. // Register the application's document templates.  Document templates
  74. //  serve as the connection between documents, frame windows and views.
  75. CMultiDocTemplate* pDocTemplate;
  76. pDocTemplate = new CMultiDocTemplate(
  77. IDR_SCRIBBTYPE,
  78. RUNTIME_CLASS(CScribbleDoc),
  79. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  80. RUNTIME_CLASS(CScribbleView));
  81. pDocTemplate->SetServerInfo(
  82. IDR_SCRIBBTYPE_SRVR_EMB, IDR_SCRIBBTYPE_SRVR_IP,
  83. RUNTIME_CLASS(CInPlaceFrame));
  84. AddDocTemplate(pDocTemplate);
  85. // Connect the COleTemplateServer to the document template.
  86. //  The COleTemplateServer creates new documents on behalf
  87. //  of requesting OLE containers by using information
  88. //  specified in the document template.
  89. m_server.ConnectTemplate(clsid, pDocTemplate, FALSE);
  90. // Register all OLE server factories as running.  This enables the
  91. //  OLE libraries to create objects from other applications.
  92. COleTemplateServer::RegisterAll();
  93. // Note: MDI applications register all server objects without regard
  94. //  to the /Embedding or /Automation on the command line.
  95. // create main MDI Frame window
  96. CMainFrame* pMainFrame = new CMainFrame;
  97. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  98. return FALSE;
  99. m_pMainWnd = pMainFrame;
  100. // Enable drag/drop open.  We don't call this in Win32, since a
  101. //  document file extension wasn't chosen while running AppWizard.
  102. m_pMainWnd->DragAcceptFiles();
  103. // Parse command line for standard shell commands, DDE, file open
  104. CCommandLineInfo cmdInfo;
  105. ParseCommandLine(cmdInfo);
  106. // Check to see if launched as OLE server
  107. if (cmdInfo.m_bRunEmbedded || cmdInfo.m_bRunAutomated)
  108. {
  109. // Application was run with /Embedding or /Automation.  Don't show the
  110. //  main window in this case.
  111. return TRUE;
  112. }
  113. // When a server application is launched stand-alone, it is a good idea
  114. //  to update the system registry in case it has been damaged.
  115. m_server.UpdateRegistry(OAT_INPLACE_SERVER);
  116. // Dispatch commands specified on the command line
  117. if (!ProcessShellCommand(cmdInfo))
  118. return FALSE;
  119. // The main window has been initialized, so show and update it.
  120. pMainFrame->ShowWindow(m_nCmdShow);
  121. pMainFrame->UpdateWindow();
  122. return TRUE;
  123. }
  124. /////////////////////////////////////////////////////////////////////////////
  125. // CAboutDlg dialog used for App About
  126. class CAboutDlg : public CDialog
  127. {
  128. public:
  129. CAboutDlg();
  130. // Dialog Data
  131. //{{AFX_DATA(CAboutDlg)
  132. enum { IDD = IDD_ABOUTBOX };
  133. //}}AFX_DATA
  134. // ClassWizard generated virtual function overrides
  135. //{{AFX_VIRTUAL(CAboutDlg)
  136. protected:
  137. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  138. //}}AFX_VIRTUAL
  139. // Implementation
  140. protected:
  141. //{{AFX_MSG(CAboutDlg)
  142. // No message handlers
  143. //}}AFX_MSG
  144. DECLARE_MESSAGE_MAP()
  145. };
  146. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  147. {
  148. //{{AFX_DATA_INIT(CAboutDlg)
  149. //}}AFX_DATA_INIT
  150. }
  151. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  152. {
  153. CDialog::DoDataExchange(pDX);
  154. //{{AFX_DATA_MAP(CAboutDlg)
  155. //}}AFX_DATA_MAP
  156. }
  157. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  158. //{{AFX_MSG_MAP(CAboutDlg)
  159. // No message handlers
  160. //}}AFX_MSG_MAP
  161. END_MESSAGE_MAP()
  162. // App command to run the dialog
  163. void CScribbleApp::OnAppAbout()
  164. {
  165. CAboutDlg aboutDlg;
  166. aboutDlg.DoModal();
  167. }
  168. /////////////////////////////////////////////////////////////////////////////
  169. // CScribbleApp commands