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

  1. // SnapVw.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 "SnapVw.h"
  15.  
  16. #include "MainFrm.h"
  17. #include "ChildFrm.h"
  18. #include "SnapDoc.h"
  19. #include "SnapView.h"
  20.  
  21. #ifdef _DEBUG
  22. #define new DEBUG_NEW
  23. #undef THIS_FILE
  24. static char THIS_FILE[] = __FILE__;
  25. #endif
  26.  
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CSnapApp
  29.  
  30. BEGIN_MESSAGE_MAP(CSnapApp, CWinApp)
  31.     //{{AFX_MSG_MAP(CSnapApp)
  32.     ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  33.         // NOTE - the ClassWizard will add and remove mapping macros here.
  34.         //    DO NOT EDIT what you see in these blocks of generated code!
  35.     //}}AFX_MSG_MAP
  36.     // Standard file based document commands
  37.     ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  38.     ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  39.     // Standard print setup command
  40.     ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  41. END_MESSAGE_MAP()
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CSnapApp construction
  45.  
  46. CSnapApp::CSnapApp()
  47. {
  48.     // TODO: add construction code here,
  49.     // Place all significant initialization in InitInstance
  50. }
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53. // The one and only CSnapApp object
  54.  
  55. CSnapApp theApp;
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58. // CSnapApp initialization
  59.  
  60. BOOL CSnapApp::InitInstance()
  61. {
  62.     // Standard initialization
  63.     // If you are not using these features and wish to reduce the size
  64.     // of your final executable, you should remove from the following
  65.     // the specific initialization routines you do not need.
  66.  
  67. #ifdef _AFXDLL
  68.     Enable3dControls();         // Call this when using MFC in a shared DLL
  69. #else
  70.     Enable3dControlsStatic();   // Call this when linking to MFC statically
  71. #endif
  72.  
  73.  
  74.     // Register the application's document templates.  Document templates
  75.     // serve as the connection between documents, frame windows and views.
  76.  
  77.     CMultiDocTemplate* pDocTemplate;
  78.     pDocTemplate = new CMultiDocTemplate(
  79.         IDR_SNAPTYPE,
  80.         RUNTIME_CLASS(CSnapDoc),
  81.         RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  82.         RUNTIME_CLASS(CSnapView));
  83.     AddDocTemplate(pDocTemplate);
  84.  
  85.     // create main MDI Frame window
  86.     CMainFrame* pMainFrame = new CMainFrame;
  87.     if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  88.         return FALSE;
  89.     m_pMainWnd = pMainFrame;
  90.  
  91.     // Parse command line for standard shell commands, DDE, file open
  92.     CCommandLineInfo cmdInfo;
  93.     ParseCommandLine(cmdInfo);
  94.  
  95.     // Dispatch commands specified on the command line
  96.     if (!ProcessShellCommand(cmdInfo))
  97.         return FALSE;
  98.  
  99.     // The main window has been initialized, so show and update it.
  100.     pMainFrame->ShowWindow(m_nCmdShow);
  101.     pMainFrame->UpdateWindow();
  102.  
  103.     return TRUE;
  104. }
  105.  
  106. /////////////////////////////////////////////////////////////////////////////
  107. // CAboutDlg dialog used for App About
  108.  
  109. class CAboutDlg : public CDialog
  110. {
  111. public:
  112.     CAboutDlg();
  113.  
  114. // Dialog Data
  115.     //{{AFX_DATA(CAboutDlg)
  116.     enum { IDD = IDD_ABOUTBOX };
  117.     //}}AFX_DATA
  118.  
  119.     // ClassWizard generated virtual function overrides
  120.     //{{AFX_VIRTUAL(CAboutDlg)
  121.     protected:
  122.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  123.     //}}AFX_VIRTUAL
  124.  
  125. // Implementation
  126. protected:
  127.     //{{AFX_MSG(CAboutDlg)
  128.         // No message handlers
  129.     //}}AFX_MSG
  130.     DECLARE_MESSAGE_MAP()
  131. };
  132.  
  133. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  134. {
  135.     //{{AFX_DATA_INIT(CAboutDlg)
  136.     //}}AFX_DATA_INIT
  137. }
  138.  
  139. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  140. {
  141.     CDialog::DoDataExchange(pDX);
  142.     //{{AFX_DATA_MAP(CAboutDlg)
  143.     //}}AFX_DATA_MAP
  144. }
  145.  
  146. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  147.     //{{AFX_MSG_MAP(CAboutDlg)
  148.         // No message handlers
  149.     //}}AFX_MSG_MAP
  150. END_MESSAGE_MAP()
  151.  
  152. // App command to run the dialog
  153. void CSnapApp::OnAppAbout()
  154. {
  155.     CAboutDlg aboutDlg;
  156.     aboutDlg.DoModal();
  157. }
  158.  
  159. /////////////////////////////////////////////////////////////////////////////
  160. // CSnapApp commands
  161.