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

对话框与窗口

开发平台:

Visual C++

  1. // ReportCustomHeap.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "ReportCustomHeap.h"
  5. #include "MainFrm.h"
  6. #include "ChildFrm.h"
  7. #include "ReportCustomHeapDoc.h"
  8. #include "ReportCustomHeapView.h"
  9. #include "AllocationOptionsDlg.h"
  10. #ifdef _DEBUG
  11. #define new DEBUG_NEW
  12. #undef THIS_FILE
  13. static char THIS_FILE[] = __FILE__;
  14. #endif
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CReportCustomHeapApp
  17. BEGIN_MESSAGE_MAP(CReportCustomHeapApp, CWinApp)
  18. //{{AFX_MSG_MAP(CReportCustomHeapApp)
  19. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  20. // NOTE - the ClassWizard will add and remove mapping macros here.
  21. //    DO NOT EDIT what you see in these blocks of generated code!
  22. //}}AFX_MSG_MAP
  23. // Standard file based document commands
  24. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  25. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  26. // Standard print setup command
  27. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  28. END_MESSAGE_MAP()
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CReportCustomHeapApp construction
  31. CReportCustomHeapApp::CReportCustomHeapApp()
  32. {
  33. // TODO: add construction code here,
  34. // Place all significant initialization in InitInstance
  35. }
  36. /////////////////////////////////////////////////////////////////////////////
  37. // The one and only CReportCustomHeapApp object
  38. CReportCustomHeapApp theApp;
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CReportCustomHeapApp initialization
  41. BOOL CReportCustomHeapApp::InitInstance()
  42. {
  43. AfxOleInit();
  44. // Standard initialization
  45. // If you are not using these features and wish to reduce the size
  46. //  of your final executable, you should remove from the following
  47. //  the specific initialization routines you do not need.
  48. #if _MSC_VER <= 1200 //MFC 6.0 or earlier
  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. #endif
  55. //*******************************
  56. // Here is a good place to enable Report Custom Heap and Batch Allocation 
  57. // features, before any Report control created and data allocated.
  58. //
  59. // VERIFY(CXTPReportControl::UseReportCustomHeap());
  60. // VERIFY(CXTPReportControl::UseRowBatchAllocation());
  61. //*******************************
  62. // Change the registry key under which our settings are stored.
  63. // TODO: You should modify this string to be something appropriate
  64. // such as the name of your company or organization.
  65. SetRegistryKey(_T("Codejock Software Sample Applications"));
  66. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  67. // Register the application's document templates.  Document templates
  68. //  serve as the connection between documents, frame windows and views.
  69. CMultiDocTemplate* pDocTemplate;
  70. pDocTemplate = new CMultiDocTemplate(
  71. IDR_REPORTTYPE,
  72. RUNTIME_CLASS(CReportCustomHeapDoc),
  73. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  74. RUNTIME_CLASS(CReportCustomHeapView));
  75. AddDocTemplate(pDocTemplate);
  76. // create main MDI Frame window
  77. CMainFrame* pMainFrame = new CMainFrame;
  78. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  79. return FALSE;
  80. m_pMainWnd = pMainFrame;
  81. // just to show Allocation features options dialog when main frame already created,
  82. // but before creating any views which contains report control (and may this allocate data).
  83. //
  84. pMainFrame->ShowWindow(m_nCmdShow);
  85. CAllocationOptionsDlg dlgOpt(pMainFrame);
  86. dlgOpt.DoModal();
  87. // Parse command line for standard shell commands, DDE, file open
  88. CCommandLineInfo cmdInfo;
  89. ParseCommandLine(cmdInfo);
  90. // Dispatch commands specified on the command line
  91. if (!ProcessShellCommand(cmdInfo))
  92. return FALSE;
  93. // The main window has been initialized, so show and update it.
  94. pMainFrame->ShowWindow(m_nCmdShow);
  95. pMainFrame->UpdateWindow();
  96. return TRUE;
  97. }
  98. /////////////////////////////////////////////////////////////////////////////
  99. // CAboutDlg dialog used for App About
  100. //class CAboutDlg : public CDialog
  101. //{
  102. //public:
  103. // CAboutDlg();
  104. //
  105. //// Dialog Data
  106. // //{{AFX_DATA(CAboutDlg)
  107. // enum { IDD = IDD_ABOUTBOX };
  108. // //}}AFX_DATA
  109. //
  110. // // ClassWizard generated virtual function overrides
  111. // //{{AFX_VIRTUAL(CAboutDlg)
  112. // protected:
  113. // virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  114. // //}}AFX_VIRTUAL
  115. //
  116. //// Implementation
  117. //protected:
  118. // //{{AFX_MSG(CAboutDlg)
  119. // // No message handlers
  120. // //}}AFX_MSG
  121. // DECLARE_MESSAGE_MAP()
  122. //};
  123. //
  124. //CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  125. //{
  126. // //{{AFX_DATA_INIT(CAboutDlg)
  127. // //}}AFX_DATA_INIT
  128. //}
  129. //
  130. //void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  131. //{
  132. // CDialog::DoDataExchange(pDX);
  133. // //{{AFX_DATA_MAP(CAboutDlg)
  134. // //}}AFX_DATA_MAP
  135. //}
  136. //
  137. //BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  138. // //{{AFX_MSG_MAP(CAboutDlg)
  139. // // No message handlers
  140. // //}}AFX_MSG_MAP
  141. //END_MESSAGE_MAP()
  142. // App command to run the dialog
  143. void CReportCustomHeapApp::OnAppAbout()
  144. {
  145. CAboutDlg aboutDlg;
  146. aboutDlg.DoModal();
  147. }
  148. /////////////////////////////////////////////////////////////////////////////
  149. // CReportCustomHeapApp message handlers