home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / general / docktool / docktool.cpp < prev    next >
C/C++ Source or Header  |  1998-03-26  |  4KB  |  134 lines

  1. // docktool.cpp : Defines the class behaviors for the application.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "stdafx.h"
  14. #include "docktool.h"
  15.  
  16. #include "mainfrm.h"
  17. #include "dockdoc.h"
  18. #include "dockvw.h"
  19.  
  20. #ifdef _DEBUG
  21. #undef THIS_FILE
  22. static char BASED_CODE THIS_FILE[] = __FILE__;
  23. #endif
  24.  
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CDockApp
  27.  
  28. BEGIN_MESSAGE_MAP(CDockApp, CWinApp)
  29.     //{{AFX_MSG_MAP(CDockApp)
  30.     ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  31.         // NOTE - the ClassWizard will add and remove mapping macros here.
  32.         //    DO NOT EDIT what you see in these blocks of generated code!
  33.     //}}AFX_MSG_MAP
  34.     // Standard file based document commands
  35.     ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  36.     ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  37. END_MESSAGE_MAP()
  38.  
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CDockApp construction
  41.  
  42. CDockApp::CDockApp()
  43. {
  44.     // TODO: add construction code here,
  45.     // Place all significant initialization in InitInstance
  46. }
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49. // The one and only CDockApp object
  50.  
  51. CDockApp theApp;
  52.  
  53. /////////////////////////////////////////////////////////////////////////////
  54. // CDockApp initialization
  55.  
  56. BOOL CDockApp::InitInstance()
  57. {
  58.     // Standard initialization
  59.     // If you are not using these features and wish to reduce the size
  60.     //  of your final executable, you should remove from the following
  61.     //  the specific initialization routines you do not need.
  62.  
  63.     Enable3dControls();
  64.  
  65.     LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  66.  
  67.     // Register the application's document templates.  Document templates
  68.     //  serve as the connection between documents, frame windows and views.
  69.  
  70.     CSingleDocTemplate* pDocTemplate;
  71.     pDocTemplate = new CSingleDocTemplate(
  72.         IDR_MAINFRAME,
  73.         RUNTIME_CLASS(CDockDoc),
  74.         RUNTIME_CLASS(CMainFrame),          // standard MDI child frame
  75.         RUNTIME_CLASS(CDockView));
  76.     AddDocTemplate(pDocTemplate);
  77.  
  78.     // create a new (empty) document
  79.     OnFileNew();
  80.  
  81.     return TRUE;
  82. }
  83.  
  84. /////////////////////////////////////////////////////////////////////////////
  85. // CAboutDlg dialog used for App About
  86.  
  87. class CAboutDlg : public CDialog
  88. {
  89. public:
  90.     CAboutDlg();
  91.  
  92. // Dialog Data
  93.     //{{AFX_DATA(CAboutDlg)
  94.     enum { IDD = IDD_ABOUTBOX };
  95.     //}}AFX_DATA
  96.  
  97. // Implementation
  98. protected:
  99.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  100.     //{{AFX_MSG(CAboutDlg)
  101.         // No message handlers
  102.     //}}AFX_MSG
  103.     DECLARE_MESSAGE_MAP()
  104. };
  105.  
  106. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  107. {
  108.     //{{AFX_DATA_INIT(CAboutDlg)
  109.     //}}AFX_DATA_INIT
  110. }
  111.  
  112. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  113. {
  114.     CDialog::DoDataExchange(pDX);
  115.     //{{AFX_DATA_MAP(CAboutDlg)
  116.     //}}AFX_DATA_MAP
  117. }
  118.  
  119. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  120.     //{{AFX_MSG_MAP(CAboutDlg)
  121.         // No message handlers
  122.     //}}AFX_MSG_MAP
  123. END_MESSAGE_MAP()
  124.  
  125. // App command to run the dialog
  126. void CDockApp::OnAppAbout()
  127. {
  128.     CAboutDlg aboutDlg;
  129.     aboutDlg.DoModal();
  130. }
  131.  
  132. /////////////////////////////////////////////////////////////////////////////
  133. // CDockApp commands
  134.