TPS_Demo.cpp
上传用户:qifu0001
上传日期:2007-01-02
资源大小:52k
文件大小:4k
源码类别:

TreeView控件

开发平台:

Visual C++

  1. // TPS_Demo.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "TPS_Demo.h"
  5. #include "MainFrm.h"
  6. #include "TPS_DemoDoc.h"
  7. #include "TPS_DemoView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CTPS_DemoApp
  15. BEGIN_MESSAGE_MAP(CTPS_DemoApp, CWinApp)
  16. //{{AFX_MSG_MAP(CTPS_DemoApp)
  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. // CTPS_DemoApp construction
  29. CTPS_DemoApp::CTPS_DemoApp()
  30. {
  31. // TODO: add construction code here,
  32. // Place all significant initialization in InitInstance
  33. }
  34. /////////////////////////////////////////////////////////////////////////////
  35. // The one and only CTPS_DemoApp object
  36. CTPS_DemoApp theApp;
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CTPS_DemoApp initialization
  39. BOOL CTPS_DemoApp::InitInstance()
  40. {
  41. // Standard initialization
  42. // If you are not using these features and wish to reduce the size
  43. //  of your final executable, you should remove from the following
  44. //  the specific initialization routines you do not need.
  45. #ifdef _AFXDLL
  46. Enable3dControls(); // Call this when using MFC in a shared DLL
  47. #else
  48. Enable3dControlsStatic(); // Call this when linking to MFC statically
  49. #endif
  50. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  51. // Register the application's document templates.  Document templates
  52. //  serve as the connection between documents, frame windows and views.
  53. CSingleDocTemplate* pDocTemplate;
  54. pDocTemplate = new CSingleDocTemplate(
  55. IDR_MAINFRAME,
  56. RUNTIME_CLASS(CTPS_DemoDoc),
  57. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  58. RUNTIME_CLASS(CTPS_DemoView));
  59. AddDocTemplate(pDocTemplate);
  60. // Parse command line for standard shell commands, DDE, file open
  61. CCommandLineInfo cmdInfo;
  62. ParseCommandLine(cmdInfo);
  63. // Dispatch commands specified on the command line
  64. if (!ProcessShellCommand(cmdInfo))
  65. return FALSE;
  66. return TRUE;
  67. }
  68. /////////////////////////////////////////////////////////////////////////////
  69. // CAboutDlg dialog used for App About
  70. class CAboutDlg : public CDialog
  71. {
  72. public:
  73. CAboutDlg();
  74. // Dialog Data
  75. //{{AFX_DATA(CAboutDlg)
  76. enum { IDD = IDD_ABOUTBOX };
  77. //}}AFX_DATA
  78. // ClassWizard generated virtual function overrides
  79. //{{AFX_VIRTUAL(CAboutDlg)
  80. protected:
  81. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  82. //}}AFX_VIRTUAL
  83. // Implementation
  84. protected:
  85. //{{AFX_MSG(CAboutDlg)
  86. // No message handlers
  87. //}}AFX_MSG
  88. DECLARE_MESSAGE_MAP()
  89. };
  90. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  91. {
  92. //{{AFX_DATA_INIT(CAboutDlg)
  93. //}}AFX_DATA_INIT
  94. }
  95. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  96. {
  97. CDialog::DoDataExchange(pDX);
  98. //{{AFX_DATA_MAP(CAboutDlg)
  99. //}}AFX_DATA_MAP
  100. }
  101. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  102. //{{AFX_MSG_MAP(CAboutDlg)
  103. // No message handlers
  104. //}}AFX_MSG_MAP
  105. END_MESSAGE_MAP()
  106. // App command to run the dialog
  107. void CTPS_DemoApp::OnAppAbout()
  108. {
  109. CAboutDlg aboutDlg;
  110. aboutDlg.DoModal();
  111. }
  112. /////////////////////////////////////////////////////////////////////////////
  113. // CTPS_DemoApp commands