SCRIBBLE.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:6k
源码类别:

Windows编程

开发平台:

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 "scribfrm.h"
  16. #include "ipframe.h"
  17. #include "scribdoc.h"
  18. #include "scribvw.h"
  19. #ifdef _DEBUG
  20. #undef THIS_FILE
  21. static char BASED_CODE THIS_FILE[] = __FILE__;
  22. #endif
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CScribbleApp
  25. BEGIN_MESSAGE_MAP(CScribbleApp, CWinApp)
  26. //{{AFX_MSG_MAP(CScribbleApp)
  27. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  28. // NOTE - the ClassWizard will add and remove mapping macros here.
  29. //    DO NOT EDIT what you see in these blocks of generated code !
  30. //}}AFX_MSG_MAP
  31. // Standard file based document commands
  32. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  33. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  34. // Standard print setup command
  35. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  36. END_MESSAGE_MAP()
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CScribbleApp construction
  39. CScribbleApp::CScribbleApp()
  40. {
  41. // TODO: add construction code here,
  42. // Place all significant initialization in InitInstance
  43. }
  44. /////////////////////////////////////////////////////////////////////////////
  45. // The one and only CScribbleApp object
  46. CScribbleApp theApp;
  47. // This identifier was generated to be statistically unique for your app.
  48. // You may change it if you prefer to choose a specific identifier.
  49. //This ID is different than the normal Scribble tutorial
  50. // to assure our uniqueness
  51. static const GUID BASED_CODE clsid =
  52.    { 0x9040eb00, 0x7c29, 0x11ce, { 0x94, 0x66, 0xf4, 0xc9, 0xcb, 0xe2, 0x16, 0x2c }};
  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_SCRIBTYPE,
  78. RUNTIME_CLASS(CScribDoc),
  79. RUNTIME_CLASS(CScribFrame),     // MDI child frame with splitter wnd
  80. RUNTIME_CLASS(CScribView));
  81. pDocTemplate->SetServerInfo(
  82. IDR_SCRIBTYPE_SRVR_EMB, IDR_SCRIBTYPE_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 DDE Execute open
  101. EnableShellOpen();
  102. RegisterShellFileTypes();
  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_DOC_OBJECT_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. // Implementation
  135. protected:
  136. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  137. //{{AFX_MSG(CAboutDlg)
  138. // No message handlers
  139. //}}AFX_MSG
  140. DECLARE_MESSAGE_MAP()
  141. };
  142. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  143. {
  144. //{{AFX_DATA_INIT(CAboutDlg)
  145. //}}AFX_DATA_INIT
  146. }
  147. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  148. {
  149. CDialog::DoDataExchange(pDX);
  150. //{{AFX_DATA_MAP(CAboutDlg)
  151. //}}AFX_DATA_MAP
  152. }
  153. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  154. //{{AFX_MSG_MAP(CAboutDlg)
  155. // No message handlers
  156. //}}AFX_MSG_MAP
  157. END_MESSAGE_MAP()
  158. // App command to run the dialog
  159. void CScribbleApp::OnAppAbout()
  160. {
  161. CAboutDlg aboutDlg;
  162. aboutDlg.DoModal();
  163. }
  164. /////////////////////////////////////////////////////////////////////////////
  165. // CScribbleApp commands