PrintFormEditor.cpp
上传用户:wujian85
上传日期:2010-04-08
资源大小:227k
文件大小:4k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // PrintFormEditor.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "PrintFormEditor.h"
  5. #include "infodlg.h"
  6. #include "MainFrm.h"
  7. #include "ChildFrm.h"
  8. #include "Doc.h"
  9. #include "View.h"
  10. #ifdef _DEBUG
  11. #define new DEBUG_NEW
  12. #undef THIS_FILE
  13. static char THIS_FILE[] = __FILE__;
  14. #endif
  15. /////////////////////////////////////////////////////////////////////////////
  16. // App
  17. IMPLEMENT_DYNCREATE(SECExtBar, SECCustomToolBar)
  18. BEGIN_MESSAGE_MAP(App, CWinApp)
  19. //{{AFX_MSG_MAP(App)
  20. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  21. // NOTE - the ClassWizard will add and remove mapping macros here.
  22. //    DO NOT EDIT what you see in these blocks of generated code!
  23. //}}AFX_MSG_MAP
  24. // Standard file based document commands
  25. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  26. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  27. // Standard print setup command
  28. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  29. END_MESSAGE_MAP()
  30. /////////////////////////////////////////////////////////////////////////////
  31. // App construction
  32. App::App()
  33. {
  34. // TODO: add construction code here,
  35. // Place all significant initialization in InitInstance
  36. }
  37. /////////////////////////////////////////////////////////////////////////////
  38. // The one and only App object
  39. App theApp;
  40. /////////////////////////////////////////////////////////////////////////////
  41. // App initialization
  42. BOOL App::InitInstance()
  43. {
  44. AfxEnableControlContainer();
  45. // Standard initialization
  46. // If you are not using these features and wish to reduce the size
  47. //  of your final executable, you should remove from the following
  48. //  the specific initialization routines you do not need.
  49. #ifdef _AFXDLL
  50. Enable3dControls(); // Call this when using MFC in a shared DLL
  51. #else
  52. Enable3dControlsStatic(); // Call this when linking to MFC statically
  53. #endif
  54. // Change the registry key under which our settings are stored.
  55. // You should modify this string to be something appropriate
  56. // such as the name of your company or organization.
  57. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  58. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  59. // Register the application's document templates.  Document templates
  60. //  serve as the connection between documents, frame windows and views.
  61. CMultiDocTemplate* pDocTemplate;
  62. pDocTemplate = new CMultiDocTemplate(
  63. IDR_PRINTFTYPE,
  64. RUNTIME_CLASS(Doc),
  65. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  66. RUNTIME_CLASS(View));
  67. AddDocTemplate(pDocTemplate);
  68. // create main MDI Frame window
  69. CMainFrame* pMainFrame = new CMainFrame;
  70. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  71. return FALSE;
  72. m_pMainWnd = pMainFrame;
  73. // Enable drag/drop open
  74. m_pMainWnd->DragAcceptFiles();
  75. // Enable DDE Execute open
  76. EnableShellOpen();
  77. RegisterShellFileTypes(TRUE);
  78. // Parse command line for standard shell commands, DDE, file open
  79. CCommandLineInfo cmdInfo;
  80. ParseCommandLine(cmdInfo);
  81. // Dispatch commands specified on the command line
  82. if (!ProcessShellCommand(cmdInfo))
  83. return FALSE;
  84. // The main window has been initialized, so show and update it.
  85. pMainFrame->ShowWindow(SW_SHOWMAXIMIZED);
  86. pMainFrame->UpdateWindow();
  87. return TRUE;
  88. }
  89. // App command to run the dialog
  90. void App::OnAppAbout()
  91. {
  92. CInfoDlg aboutDlg;
  93. aboutDlg.DoModal();
  94. }
  95. /////////////////////////////////////////////////////////////////////////////
  96. // App commands
  97. int App::ExitInstance() 
  98. {
  99. if (iClipFormObj > 0)
  100. {
  101. for (int t = 0; t < iClipFormObj; t++)
  102. {
  103. delete ppClipObjs[t];
  104. }
  105. GlobalFree((HGLOBAL)ppClipObjs);
  106. }
  107. return CWinApp::ExitInstance();
  108. }