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

对话框与窗口

开发平台:

Visual C++

  1. // ExcelTab.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "ExcelTab.h"
  5. #include "MainFrm.h"
  6. #include "ExcelTabDoc.h"
  7. #include "ExcelTabView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CExcelTabApp
  15. BEGIN_MESSAGE_MAP(CExcelTabApp, CWinApp)
  16. //{{AFX_MSG_MAP(CExcelTabApp)
  17. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  18. // NOTE - the ClassWizard will add and remove mapping macros here.
  19. //    DO NOT EDIT what you see in these blocks of generated code!
  20. //}}AFX_MSG_MAP
  21. // Standard file based document commands
  22. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  23. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  24. // Standard print setup command
  25. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  26. END_MESSAGE_MAP()
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CExcelTabApp construction
  29. CExcelTabApp::CExcelTabApp()
  30. {
  31. // TODO: add construction code here,
  32. // Place all significant initialization in InitInstance
  33. }
  34. /////////////////////////////////////////////////////////////////////////////
  35. // The one and only CExcelTabApp object
  36. CExcelTabApp theApp;
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CExcelTabApp initialization
  39. BOOL CExcelTabApp::InitInstance()
  40. {
  41. AfxEnableControlContainer();
  42. CXTPWinDwmWrapper().SetProcessDPIAware();
  43. // Standard initialization
  44. // If you are not using these features and wish to reduce the size
  45. //  of your final executable, you should remove from the following
  46. //  the specific initialization routines you do not need.
  47. #if _MSC_VER <= 1200 // MFC 6.0 or earlier
  48. #ifdef _AFXDLL
  49. Enable3dControls();         // Call this when using MFC in a shared DLL
  50. #else
  51. Enable3dControlsStatic();   // Call this when linking to MFC statically
  52. #endif
  53. #endif // MFC 6.0 or earlier
  54. // Change the registry key under which our settings are stored.
  55. // TODO: You should modify this string to be something appropriate
  56. // such as the name of your company or organization.
  57. SetRegistryKey(_T("Codejock Software Sample 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. CSingleDocTemplate* pDocTemplate;
  62. pDocTemplate = new CSingleDocTemplate(
  63. IDR_MAINFRAME,
  64. RUNTIME_CLASS(CExcelTabDoc),
  65. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  66. RUNTIME_CLASS(CExcelTabView));
  67. AddDocTemplate(pDocTemplate);
  68. // Parse command line for standard shell commands, DDE, file open
  69. CCommandLineInfo cmdInfo;
  70. ParseCommandLine(cmdInfo);
  71. // Dispatch commands specified on the command line
  72. if (!ProcessShellCommand(cmdInfo))
  73. return FALSE;
  74. // The one and only window has been initialized, so show and update it.
  75. m_pMainWnd->ShowWindow(SW_SHOW);
  76. m_pMainWnd->UpdateWindow();
  77. return TRUE;
  78. }
  79. // App command to run the dialog
  80. void CExcelTabApp::OnAppAbout()
  81. {
  82. CAboutDlg aboutDlg;
  83. aboutDlg.DoModal();
  84. }
  85. /////////////////////////////////////////////////////////////////////////////
  86. // CExcelTabApp message handlers