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

  1. // propdlg.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 "propdlg.h"
  15.  
  16. #include "shapeobj.h"
  17. #include "colorpge.h"
  18. #include "stylepge.h"
  19. #include "preview.h"
  20. #include "propsht.h"
  21. #include "propsht2.h"
  22. #include "minifrm.h"
  23. #include "mainfrm.h"
  24. #include "shapedoc.h"
  25. #include "shapesvw.h"
  26.  
  27. #ifdef _DEBUG
  28. #undef THIS_FILE
  29. static char BASED_CODE THIS_FILE[] = __FILE__;
  30. #endif
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CPropDlgApp
  34.  
  35. BEGIN_MESSAGE_MAP(CPropDlgApp, CWinApp)
  36.     //{{AFX_MSG_MAP(CPropDlgApp)
  37.     ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  38.     //}}AFX_MSG_MAP
  39.     // Standard file based document commands
  40.     ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  41.     ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  42.     // Standard print setup command
  43.     ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  44. END_MESSAGE_MAP()
  45.  
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CPropDlgApp construction
  48.  
  49. CPropDlgApp::CPropDlgApp()
  50. {
  51. }
  52.  
  53. /////////////////////////////////////////////////////////////////////////////
  54. // The one and only CPropDlgApp object
  55.  
  56. CPropDlgApp theApp;
  57.  
  58. /////////////////////////////////////////////////////////////////////////////
  59. // CPropDlgApp initialization
  60.  
  61. BOOL CPropDlgApp::InitInstance()
  62. {
  63.     // It is very important to have consistent gray dialogs in this
  64.     //  application.  If CTL3D32.DLL cannot be loaded, then non-3d
  65.     //  gray dialogs are used instead.
  66.  
  67.     if (!Enable3dControls())
  68.         SetDialogBkColor();
  69.  
  70.     LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  71.  
  72.     // Register document templates
  73.  
  74.     CMultiDocTemplate* pDocTemplate;
  75.     pDocTemplate = new CMultiDocTemplate(
  76.         IDR_SHAPESTYPE,
  77.         RUNTIME_CLASS(CShapesDoc),
  78.         RUNTIME_CLASS(CMDIChildWnd),          // standard MDI child frame
  79.         RUNTIME_CLASS(CShapesView));
  80.     AddDocTemplate(pDocTemplate);
  81.  
  82.     // create main MDI Frame window
  83.     CMainFrame* pMainFrame = new CMainFrame;
  84.     if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  85.         return FALSE;
  86.     m_pMainWnd = pMainFrame;
  87.  
  88.     // enable file manager drag/drop and DDE Execute open
  89.     EnableShellOpen();
  90.     RegisterShellFileTypes(TRUE);
  91.  
  92.     // Parse command line for standard shell commands, DDE, file open
  93.     CCommandLineInfo cmdInfo;
  94.     ParseCommandLine(cmdInfo);
  95.  
  96.     // Dispatch commands specified on the command line
  97.     if (!ProcessShellCommand(cmdInfo))
  98.         return FALSE;
  99.  
  100.     m_pMainWnd->DragAcceptFiles();
  101.     pMainFrame->ShowWindow(m_nCmdShow);
  102.     pMainFrame->UpdateWindow();
  103.  
  104.     return TRUE;
  105. }
  106.  
  107. /////////////////////////////////////////////////////////////////////////////
  108. // CAboutDlg dialog used for App About
  109.  
  110. class CAboutDlg : public CDialog
  111. {
  112. public:
  113.     CAboutDlg();
  114.  
  115. // Dialog Data
  116.     //{{AFX_DATA(CAboutDlg)
  117.     enum { IDD = IDD_ABOUTBOX };
  118.     //}}AFX_DATA
  119.  
  120. // Implementation
  121. protected:
  122.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  123.     //{{AFX_MSG(CAboutDlg)
  124.         // No message handlers
  125.     //}}AFX_MSG
  126.     DECLARE_MESSAGE_MAP()
  127. };
  128.  
  129. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  130. {
  131.     //{{AFX_DATA_INIT(CAboutDlg)
  132.     //}}AFX_DATA_INIT
  133. }
  134.  
  135. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  136. {
  137.     CDialog::DoDataExchange(pDX);
  138.     //{{AFX_DATA_MAP(CAboutDlg)
  139.     //}}AFX_DATA_MAP
  140. }
  141.  
  142. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  143.     //{{AFX_MSG_MAP(CAboutDlg)
  144.         // No message handlers
  145.     //}}AFX_MSG_MAP
  146. END_MESSAGE_MAP()
  147.  
  148. // App command to run the dialog
  149. void CPropDlgApp::OnAppAbout()
  150. {
  151.     CAboutDlg aboutDlg;
  152.     aboutDlg.DoModal();
  153. }
  154.  
  155. /////////////////////////////////////////////////////////////////////////////
  156. // CPropDlgApp commands
  157.