home *** CD-ROM | disk | FTP | other *** search
/ Looney Tunes Photo Fun / LooneyTunesPhotoFun.iso / Daosdk / DISK4 / DAOSDK.1 / daoemp.cpp < prev    next >
C/C++ Source or Header  |  1998-04-06  |  4KB  |  142 lines

  1. // DAOEMP.cpp : Defines the class behaviors for the application.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "DAOEMP.h"
  6.  
  7. #include "mainfrm.h"
  8. #include "DAOEMdoc.h"
  9. #include "DAOEMvw.h"
  10.  
  11. #ifdef _DEBUG
  12. #undef THIS_FILE
  13. static char BASED_CODE THIS_FILE[] = __FILE__;
  14. #endif
  15.  
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CDAOEMPApp
  18.  
  19. BEGIN_MESSAGE_MAP(CDAOEMPApp, CWinApp)
  20.     //{{AFX_MSG_MAP(CDAOEMPApp)
  21.     ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  22.         // NOTE - the ClassWizard will add and remove mapping macros here.
  23.         //    DO NOT EDIT what you see in these blocks of generated code!
  24.     //}}AFX_MSG_MAP
  25.     // Standard file based document commands
  26.     ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  27.     ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  28. END_MESSAGE_MAP()
  29.  
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CDAOEMPApp construction
  32.  
  33. CDAOEMPApp::CDAOEMPApp()
  34. {
  35.     // TODO: add construction code here,
  36.     // Place all significant initialization in InitInstance
  37. }
  38.  
  39. /////////////////////////////////////////////////////////////////////////////
  40. // The one and only CDAOEMPApp object
  41.  
  42. CDAOEMPApp theApp;
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CDAOEMPApp initialization
  46.  
  47. BOOL CDAOEMPApp::InitInstance()
  48. {
  49.     // Initialize OLE libraries
  50.     if (!AfxOleInit())
  51.     {
  52.         AfxMessageBox(IDP_OLE_INIT_FAILED);
  53.         return FALSE;
  54.     }
  55.  
  56.     // Standard initialization
  57.     // If you are not using these features and wish to reduce the size
  58.     //  of your final executable, you should remove from the following
  59.     //  the specific initialization routines you do not need.
  60.  
  61. #ifdef _AFXDLL
  62.     Enable3dControls();            // Call this when using MFC in a shared DLL
  63. #else
  64.     Enable3dControlsStatic();    // Call this when linking to MFC statically
  65. #endif
  66.  
  67.     LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  68.  
  69.     // Register the application's document templates.  Document templates
  70.     //  serve as the connection between documents, frame windows and views.
  71.  
  72.     CSingleDocTemplate* pDocTemplate;
  73.     pDocTemplate = new CSingleDocTemplate(
  74.         IDR_MAINFRAME,
  75.         RUNTIME_CLASS(CDAOEMPDoc),
  76.         RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  77.         RUNTIME_CLASS(CDAOEMPView));
  78.     pDocTemplate->SetContainerInfo(IDR_CONTRTYPE_CNTR_IP);
  79.     AddDocTemplate(pDocTemplate);
  80.  
  81.     // Parse command line for standard shell commands, DDE, file open
  82.     CCommandLineInfo cmdInfo;
  83.     ParseCommandLine(cmdInfo);
  84.  
  85.     // Dispatch commands specified on the command line
  86.     if (!ProcessShellCommand(cmdInfo))
  87.         return FALSE;
  88.  
  89.     return TRUE;
  90. }
  91.  
  92. /////////////////////////////////////////////////////////////////////////////
  93. // CAboutDlg dialog used for App About
  94.  
  95. class CAboutDlg : public CDialog
  96. {
  97. public:
  98.     CAboutDlg();
  99.  
  100. // Dialog Data
  101.     //{{AFX_DATA(CAboutDlg)
  102.     enum { IDD = IDD_ABOUTBOX };
  103.     //}}AFX_DATA
  104.  
  105. // Implementation
  106. protected:
  107.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  108.     //{{AFX_MSG(CAboutDlg)
  109.         // No message handlers
  110.     //}}AFX_MSG
  111.     DECLARE_MESSAGE_MAP()
  112. };
  113.  
  114. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  115. {
  116.     //{{AFX_DATA_INIT(CAboutDlg)
  117.     //}}AFX_DATA_INIT
  118. }
  119.  
  120. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  121. {
  122.     CDialog::DoDataExchange(pDX);
  123.     //{{AFX_DATA_MAP(CAboutDlg)
  124.     //}}AFX_DATA_MAP
  125. }
  126.  
  127. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  128.     //{{AFX_MSG_MAP(CAboutDlg)
  129.         // No message handlers
  130.     //}}AFX_MSG_MAP
  131. END_MESSAGE_MAP()
  132.  
  133. // App command to run the dialog
  134. void CDAOEMPApp::OnAppAbout()
  135. {
  136.     CAboutDlg aboutDlg;
  137.     aboutDlg.DoModal();
  138. }
  139.  
  140. /////////////////////////////////////////////////////////////////////////////
  141. // CDAOEMPApp commands
  142.