Tab.cpp
上传用户:sz86035077
上传日期:2013-02-27
资源大小:40k
文件大小:4k
源码类别:

Tab控件

开发平台:

Visual C++

  1. // Tab.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "Tab.h"
  5. #include "MainFrm.h"
  6. #include "TabDoc.h"
  7. #include "TabView.h"
  8. #include "DownloadView.h"
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CTabApp
  16. BEGIN_MESSAGE_MAP(CTabApp, CWinApp)
  17. //{{AFX_MSG_MAP(CTabApp)
  18. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  19. // NOTE - the ClassWizard will add and remove mapping macros here.
  20. //    DO NOT EDIT what you see in these blocks of generated code!
  21. //}}AFX_MSG_MAP
  22. // Standard file based document commands
  23. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  24. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  25. // Standard print setup command
  26. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  27. END_MESSAGE_MAP()
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CTabApp construction
  30. CTabApp::CTabApp()
  31. {
  32. // TODO: add construction code here,
  33. // Place all significant initialization in InitInstance
  34. }
  35. /////////////////////////////////////////////////////////////////////////////
  36. // The one and only CTabApp object
  37. CTabApp theApp;
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CTabApp initialization
  40. BOOL CTabApp::InitInstance()
  41. {
  42. AfxEnableControlContainer();
  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. #ifdef _AFXDLL
  48. Enable3dControls(); // Call this when using MFC in a shared DLL
  49. #else
  50. Enable3dControlsStatic(); // Call this when linking to MFC statically
  51. #endif
  52. // Change the registry key under which our settings are stored.
  53. // TODO: You should modify this string to be something appropriate
  54. // such as the name of your company or organization.
  55. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  56. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  57. // Register the application's document templates.  Document templates
  58. //  serve as the connection between documents, frame windows and views.
  59. CSingleDocTemplate* pDocTemplate;
  60. pDocTemplate = new CSingleDocTemplate(
  61. IDR_MAINFRAME,
  62. RUNTIME_CLASS(CTabDoc),
  63. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  64. //RUNTIME_CLASS(CDownloadView));
  65. RUNTIME_CLASS(CTabView));
  66. AddDocTemplate(pDocTemplate);
  67. // Parse command line for standard shell commands, DDE, file open
  68. CCommandLineInfo cmdInfo;
  69. ParseCommandLine(cmdInfo);
  70. // Dispatch commands specified on the command line
  71. if (!ProcessShellCommand(cmdInfo))
  72. return FALSE;
  73. // The one and only window has been initialized, so show and update it.
  74. m_pMainWnd->ShowWindow(SW_SHOW);
  75. m_pMainWnd->UpdateWindow();
  76. return TRUE;
  77. }
  78. /////////////////////////////////////////////////////////////////////////////
  79. // CAboutDlg dialog used for App About
  80. class CAboutDlg : public CDialog
  81. {
  82. public:
  83. CAboutDlg();
  84. // Dialog Data
  85. //{{AFX_DATA(CAboutDlg)
  86. enum { IDD = IDD_ABOUTBOX };
  87. //}}AFX_DATA
  88. // ClassWizard generated virtual function overrides
  89. //{{AFX_VIRTUAL(CAboutDlg)
  90. protected:
  91. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  92. //}}AFX_VIRTUAL
  93. // Implementation
  94. protected:
  95. //{{AFX_MSG(CAboutDlg)
  96. // No message handlers
  97. //}}AFX_MSG
  98. DECLARE_MESSAGE_MAP()
  99. };
  100. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  101. {
  102. //{{AFX_DATA_INIT(CAboutDlg)
  103. //}}AFX_DATA_INIT
  104. }
  105. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  106. {
  107. CDialog::DoDataExchange(pDX);
  108. //{{AFX_DATA_MAP(CAboutDlg)
  109. //}}AFX_DATA_MAP
  110. }
  111. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  112. //{{AFX_MSG_MAP(CAboutDlg)
  113. // No message handlers
  114. //}}AFX_MSG_MAP
  115. END_MESSAGE_MAP()
  116. // App command to run the dialog
  117. void CTabApp::OnAppAbout()
  118. {
  119. CAboutDlg aboutDlg;
  120. aboutDlg.DoModal();
  121. }
  122. /////////////////////////////////////////////////////////////////////////////
  123. // CTabApp message handlers