home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / samples / c05 / dlgbars / dlgbars.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  3.9 KB  |  149 lines

  1. // DlgBars.cpp : Defines the class behaviors for the application.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "DlgBars.h"
  6.  
  7. #include "MainFrm.h"
  8. #include "DlgBarsDoc.h"
  9. #include "DlgBarsView.h"
  10. #include <locale.h>
  11.  
  12. #ifdef _DEBUG
  13. #define new DEBUG_NEW
  14. #undef THIS_FILE
  15. static char THIS_FILE[] = __FILE__;
  16. #endif
  17.  
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CDlgBarsApp
  20.  
  21. BEGIN_MESSAGE_MAP(CDlgBarsApp, CWinApp)
  22.     //{{AFX_MSG_MAP(CDlgBarsApp)
  23.     ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  24.         // NOTE - the ClassWizard will add and remove mapping macros here.
  25.         //    DO NOT EDIT what you see in these blocks of generated code!
  26.     //}}AFX_MSG_MAP
  27.     // Standard file based document commands
  28.     ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  29.     ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  30. END_MESSAGE_MAP()
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CDlgBarsApp construction
  34.  
  35. CDlgBarsApp::CDlgBarsApp()
  36. {
  37. }
  38.  
  39. /////////////////////////////////////////////////////////////////////////////
  40. // The one and only CDlgBarsApp object
  41.  
  42. CDlgBarsApp theApp;
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CDlgBarsApp initialization
  46.  
  47. BOOL CDlgBarsApp::InitInstance()
  48. {
  49.     // Standard initialization
  50.     // If you are not using these features and wish to reduce the size
  51.     //  of your final executable, you should remove from the following
  52.     //  the specific initialization routines you do not need.
  53.  
  54. #ifdef _AFXDLL
  55.     Enable3dControls();            // Call this when using MFC in a shared DLL
  56. #else
  57.     Enable3dControlsStatic();    // Call this when linking to MFC statically
  58. #endif
  59.  
  60.     // Change the registry key under which our settings are stored.
  61.     // You should modify this string to be something appropriate
  62.     // such as the name of your company or organization.
  63.     SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  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(CDlgBarsDoc),
  74.         RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  75.         RUNTIME_CLASS(CDlgBarsView));
  76.     AddDocTemplate(pDocTemplate);
  77.  
  78.     // Parse command line for standard shell commands, DDE, file open
  79.     CCommandLineInfo cmdInfo;
  80.     ParseCommandLine(cmdInfo);
  81.  
  82.     // Dispatch commands specified on the command line
  83.     if (!ProcessShellCommand(cmdInfo))
  84.         return FALSE;
  85.  
  86.     // The one and only window has been initialized, so show and update it.
  87.     m_nCmdShow = SW_SHOW;
  88.     m_pMainWnd->ShowWindow(m_nCmdShow);
  89.     m_pMainWnd->UpdateWindow();
  90.  
  91.     return TRUE;
  92. }
  93.  
  94. /////////////////////////////////////////////////////////////////////////////
  95. // CAboutDlg dialog used for App About
  96.  
  97. class CAboutDlg : public CDialog
  98. {
  99. public:
  100.     CAboutDlg();
  101.  
  102. // Dialog Data
  103.     //{{AFX_DATA(CAboutDlg)
  104.     enum { IDD = IDD_ABOUTBOX };
  105.     //}}AFX_DATA
  106.  
  107.     // ClassWizard generated virtual function overrides
  108.     //{{AFX_VIRTUAL(CAboutDlg)
  109.     protected:
  110.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  111.     //}}AFX_VIRTUAL
  112.  
  113. // Implementation
  114. protected:
  115.     //{{AFX_MSG(CAboutDlg)
  116.         // No message handlers
  117.     //}}AFX_MSG
  118.     DECLARE_MESSAGE_MAP()
  119. };
  120.  
  121. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  122. {
  123.     //{{AFX_DATA_INIT(CAboutDlg)
  124.     //}}AFX_DATA_INIT
  125. }
  126.  
  127. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  128. {
  129.     CDialog::DoDataExchange(pDX);
  130.     //{{AFX_DATA_MAP(CAboutDlg)
  131.     //}}AFX_DATA_MAP
  132. }
  133.  
  134. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  135.     //{{AFX_MSG_MAP(CAboutDlg)
  136.         // No message handlers
  137.     //}}AFX_MSG_MAP
  138. END_MESSAGE_MAP()
  139.  
  140. // App command to run the dialog
  141. void CDlgBarsApp::OnAppAbout()
  142. {
  143.     CAboutDlg aboutDlg;
  144.     aboutDlg.DoModal();
  145. }
  146.  
  147. /////////////////////////////////////////////////////////////////////////////
  148. // CDlgBarsApp commands
  149.