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

对话框与窗口

开发平台:

Visual C++

  1. // ReportSample.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 "ReportSample.h"
  22. #include "MainFrm.h"
  23. #include "ReportSampleDoc.h"
  24. #include "ReportSampleView.h"
  25. #include "TaskListView.h"
  26. #include "AboutDlg.h"
  27. #ifdef _DEBUG
  28. #define new DEBUG_NEW
  29. #undef THIS_FILE
  30. static char THIS_FILE[] = __FILE__;
  31. #endif
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CReportSampleApp
  34. BEGIN_MESSAGE_MAP(CReportSampleApp, CWinApp)
  35. //{{AFX_MSG_MAP(CReportSampleApp)
  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. // CReportSampleApp construction
  48. CReportSampleApp::CReportSampleApp()
  49. {
  50. // TODO: add construction code here,
  51. // Place all significant initialization in InitInstance
  52. }
  53. /////////////////////////////////////////////////////////////////////////////
  54. // The one and only CReportSampleApp object
  55. CReportSampleApp theApp;
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CReportSampleApp initialization
  58. BOOL CReportSampleApp::InitInstance()
  59. {
  60. AfxEnableControlContainer();
  61. CXTPWinDwmWrapper().SetProcessDPIAware();
  62. AfxOleInit();
  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. #if _MSC_VER <= 1200 //MFC 6.0 or earlier
  68. #ifdef _AFXDLL
  69. Enable3dControls();         // Call this when using MFC in a shared DLL
  70. #else
  71. Enable3dControlsStatic();   // Call this when linking to MFC statically
  72. #endif
  73. #endif
  74. // Change the registry key under which our settings are stored.
  75. // TODO: You should modify this string to be something appropriate
  76. // such as the name of your company or organization.
  77. SetRegistryKey(_T("Codejock Software Sample Applications"));
  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. CSingleDocTemplate* pDocTemplate;
  82. pDocTemplate = new CSingleDocTemplate(
  83. IDR_MAINFRAME,
  84. RUNTIME_CLASS(CReportSampleDoc),
  85. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  86. RUNTIME_CLASS(CReportSampleView));
  87. //RUNTIME_CLASS(CTaskListView));
  88. AddDocTemplate(pDocTemplate);
  89. // Parse command line for standard shell commands, DDE, file open
  90. CCommandLineInfo cmdInfo;
  91. ParseCommandLine(cmdInfo);
  92. // Dispatch commands specified on the command line
  93. if (!ProcessShellCommand(cmdInfo))
  94. return FALSE;
  95. // The one and only window has been initialized, so show and update it.
  96. m_pMainWnd->ShowWindow(SW_SHOW);
  97. m_pMainWnd->UpdateWindow();
  98. return TRUE;
  99. }
  100. // App command to run the dialog
  101. void CReportSampleApp::OnAppAbout()
  102. {
  103. CAboutDlg dlgAbout;
  104. dlgAbout.DoModal();
  105. }
  106. /////////////////////////////////////////////////////////////////////////////
  107. // CReportSampleApp message handlers