drawcli.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:4k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // drawcli.cpp : Defines the class behaviors for the application.
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #include "stdafx.h"
  21. #include "drawcli.h"
  22. #include "mainfrm.h"
  23. #include "drawobj.h"
  24. #include "drawdoc.h"
  25. #include "drawvw.h"
  26. #include "splitfrm.h"
  27. #include "AboutDlg.h"
  28. #ifdef _DEBUG
  29. #undef THIS_FILE
  30. static char BASED_CODE THIS_FILE[] = __FILE__;
  31. #endif
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CDrawApp
  34. BEGIN_MESSAGE_MAP(CDrawApp, CWinApp)
  35. //{{AFX_MSG_MAP(CDrawApp)
  36. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  37. // NOTE - the ClassWizard will add and remove mapping macros here.
  38. //    DO NOT EDIT what you see in these blocks of generated code!
  39. //}}AFX_MSG_MAP
  40. // Standard file based document commands
  41. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  42. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  43. // Standard print setup command
  44. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  45. END_MESSAGE_MAP()
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CDrawApp construction
  48. CDrawApp::CDrawApp()
  49. {
  50. // TODO: add construction code here,
  51. // Place all significant initialization in InitInstance
  52. }
  53. /////////////////////////////////////////////////////////////////////////////
  54. // The one and only CDrawApp object
  55. CDrawApp theApp;
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CDrawApp initialization
  58. BOOL CDrawApp::InitInstance()
  59. {
  60. SetRegistryKey(_T("Codejock Software Sample Applications"));
  61. // Initialize OLE libraries
  62. if (!AfxOleInit())
  63. {
  64. AfxMessageBox(IDP_OLE_INIT_FAILED);
  65. return FALSE;
  66. }
  67. // Standard initialization
  68. // If you are not using these features and wish to reduce the size
  69. //  of your final executable, you should remove from the following
  70. //  the specific initialization routines you do not need.
  71. #if _MSC_VER <= 1200 // MFC 6.0 or earlier
  72. #ifdef _AFXDLL
  73. Enable3dControls();         // Call this when using MFC in a shared DLL
  74. #else
  75. Enable3dControlsStatic();   // Call this when linking to MFC statically
  76. #endif
  77. #endif // MFC 6.0 or earlier
  78. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  79. // Register the application's document templates.  Document templates
  80. //  serve as the connection between documents, frame windows and views.
  81. CMultiDocTemplate* pDocTemplate;
  82. pDocTemplate = new CMultiDocTemplate(
  83. IDR_DRAWCLTYPE,
  84. RUNTIME_CLASS(CDrawDoc),
  85. RUNTIME_CLASS(CSplitFrame),
  86. RUNTIME_CLASS(CDrawView));
  87. pDocTemplate->SetContainerInfo(IDR_DRAWCLTYPE_CNTR_IP);
  88. AddDocTemplate(pDocTemplate);
  89. // create main MDI Frame window
  90. CMainFrame* pMainFrame = new CMainFrame;
  91. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  92. return FALSE;
  93. m_pMainWnd = pMainFrame;
  94. // Enable DDE Execute open
  95. EnableShellOpen();
  96. RegisterShellFileTypes(TRUE);
  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. // Enable drag/drop open
  104. m_pMainWnd->DragAcceptFiles();
  105. // The main window has been initialized, so show and update it.
  106. pMainFrame->ShowWindow(m_nCmdShow);
  107. pMainFrame->UpdateWindow();
  108. return TRUE;
  109. }
  110. // App command to run the dialog
  111. void CDrawApp::OnAppAbout()
  112. {
  113. CAboutDlg dlgAbout;
  114. dlgAbout.DoModal();
  115. }
  116. /////////////////////////////////////////////////////////////////////////////
  117. // CDrawApp commands