home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / source / Chap17 / Ch17.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-24  |  3.9 KB  |  156 lines

  1. // Ch17.cpp : Defines the class behaviors for the application.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "Ch17.h"
  6.  
  7. #include "MainFrm.h"
  8. #include "Ch17Doc.h"
  9. #include "Ch17View.h"
  10. #include "Ch17Dialog.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. // CCh17App
  20.  
  21. BEGIN_MESSAGE_MAP(CCh17App, CWinApp)
  22.     //{{AFX_MSG_MAP(CCh17App)
  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.     // Standard print setup command
  31.     ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  32. END_MESSAGE_MAP()
  33.  
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CCh17App construction
  36.  
  37. CCh17App::CCh17App()
  38. {
  39.     // TODO: add construction code here,
  40.     // Place all significant initialization in InitInstance
  41. }
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44. // The one and only CCh17App object
  45.  
  46. CCh17App theApp;
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CCh17App initialization
  50.  
  51. BOOL CCh17App::InitInstance()
  52. {
  53.     // Standard initialization
  54.     // If you are not using these features and wish to reduce the size
  55.     //  of your final executable, you should remove from the following
  56.     //  the specific initialization routines you do not need.
  57.  
  58.     LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  59.  
  60.     // Register the application's document templates.  Document templates
  61.     //  serve as the connection between documents, frame windows and views.
  62.  
  63.     CSingleDocTemplate* pDocTemplate;
  64.     pDocTemplate = new CSingleDocTemplate(
  65.         IDR_MAINFRAME,
  66.         RUNTIME_CLASS(CCh17Doc),
  67.         RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  68.         RUNTIME_CLASS(CCh17View));
  69.     AddDocTemplate(pDocTemplate);
  70.  
  71.     // Parse command line for standard shell commands, DDE, file open
  72.     CCommandLineInfo cmdInfo;
  73.     ParseCommandLine(cmdInfo);
  74.  
  75.     // Dispatch commands specified on the command line
  76.     if (!ProcessShellCommand(cmdInfo))
  77.         return FALSE;
  78.  
  79.     CCh17Dialog* dlg = new CCh17Dialog();
  80.     int theResponse = dlg->DoModal();
  81.     if (IDOK == theResponse)
  82.     {
  83.         char buffer[80];
  84.         char theStatus[80];
  85.         if (TRUE == dlg->m_checkbox)
  86.             sprintf(theStatus, "checked");
  87.         else
  88.             sprintf(theStatus, "not checked");
  89.         sprintf(buffer, "Checkbox is %s. Int is %d.", theStatus, dlg->m_int); 
  90.         AfxMessageBox( buffer, MB_OK );
  91.     
  92.     }
  93.     else
  94.     {
  95.         // user dismissed dialog with IDCANCEL
  96.     }
  97.  
  98.     return TRUE;
  99. }
  100.  
  101. /////////////////////////////////////////////////////////////////////////////
  102. // CAboutDlg dialog used for App About
  103.  
  104. class CAboutDlg : public CDialog
  105. {
  106. public:
  107.     CAboutDlg();
  108.  
  109. // Dialog Data
  110.     //{{AFX_DATA(CAboutDlg)
  111.     enum { IDD = IDD_ABOUTBOX };
  112.     //}}AFX_DATA
  113.  
  114.     // ClassWizard generated virtual function overrides
  115.     //{{AFX_VIRTUAL(CAboutDlg)
  116.     protected:
  117.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  118.     //}}AFX_VIRTUAL
  119.  
  120. // Implementation
  121. protected:
  122.     //{{AFX_MSG(CAboutDlg)
  123.         // No message handlers
  124.     //}}AFX_MSG
  125.     DECLARE_MESSAGE_MAP()
  126. };
  127.  
  128. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  129. {
  130.     //{{AFX_DATA_INIT(CAboutDlg)
  131.     //}}AFX_DATA_INIT
  132. }
  133.  
  134. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  135. {
  136.     CDialog::DoDataExchange(pDX);
  137.     //{{AFX_DATA_MAP(CAboutDlg)
  138.     //}}AFX_DATA_MAP
  139. }
  140.  
  141. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  142.     //{{AFX_MSG_MAP(CAboutDlg)
  143.         // No message handlers
  144.     //}}AFX_MSG_MAP
  145. END_MESSAGE_MAP()
  146.  
  147. // App command to run the dialog
  148. void CCh17App::OnAppAbout()
  149. {
  150.     CAboutDlg aboutDlg;
  151.     aboutDlg.DoModal();
  152. }
  153.  
  154. /////////////////////////////////////////////////////////////////////////////
  155. // CCh17App commands
  156.