home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / source / Chap04 / npChap04.cpp next >
Encoding:
C/C++ Source or Header  |  1996-09-10  |  2.4 KB  |  99 lines

  1. // npChap04.cpp : Defines the class behaviors for the application.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "npChap04.h"
  6. #include "npChap04Dlg.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CNpChap04App
  16.  
  17. BEGIN_MESSAGE_MAP(CNpChap04App, CWinApp)
  18.     //{{AFX_MSG_MAP(CNpChap04App)
  19.         // NOTE - the ClassWizard will add and remove mapping macros here.
  20.         //    DO NOT EDIT what you see in these blocks of generated code!
  21.     //}}AFX_MSG
  22.     ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  23. END_MESSAGE_MAP()
  24.  
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CNpChap04App construction
  27.  
  28. CNpChap04App::CNpChap04App()
  29. {
  30.     // TODO: add construction code here,
  31.     // Place all significant initialization in InitInstance
  32. }
  33.  
  34. /////////////////////////////////////////////////////////////////////////////
  35. // The one and only CNpChap04App object
  36. #ifndef _PLUG_IN
  37. CNpChap04App theApp;
  38. #endif
  39. /////////////////////////////////////////////////////////////////////////////
  40.  
  41. // PreparePlugin()
  42. void CNpChap04App::PreparePlugin(HWND hwndPluginWindow)
  43. {
  44.     dlg.m_hWnd = (HWND)NULL;
  45.     ASSERT(dlg.m_hWnd == (HWND)NULL);
  46.  
  47.     if (!(dlg.SubclassWindow(hwndPluginWindow)))
  48.     {
  49.         MessageBox(NULL,"SubclassWindow Failed","Error",MB_OK);
  50.     }
  51.     else
  52.     {
  53.         dlg.PrepareDialog();
  54.         dlg.Invalidate(TRUE);
  55.         dlg.UpdateWindow();
  56.     }
  57. }
  58.  
  59. // EatPlugin()
  60. void CNpChap04App::EatPlugin()
  61. {
  62.     dlg.EatDialog();
  63.     dlg.UnSubclassWindow();
  64. }
  65.  
  66.  
  67. // CNpChap04App initialization
  68.  
  69. BOOL CNpChap04App::InitInstance()
  70. {
  71. #ifdef _PLUG_IN
  72.     return CWinApp::InitInstance();
  73. #else
  74.     // Standard initialization
  75.     // If you are not using these features and wish to reduce the size
  76.     //  of your final executable, you should remove from the following
  77.     //  the specific initialization routines you do not need.
  78.  
  79.     CNpChap04Dlg dlg;
  80.     m_pMainWnd = &dlg;
  81.     int nResponse = dlg.DoModal();
  82.     if (nResponse == IDOK)
  83.     {
  84.         // TODO: Place code here to handle when the dialog is
  85.         //  dismissed with OK
  86.     }
  87.     else if (nResponse == IDCANCEL)
  88.     {
  89.         // TODO: Place code here to handle when the dialog is
  90.         //  dismissed with Cancel
  91.     }
  92.  
  93.     // Since the dialog has been closed, return FALSE so that we exit the
  94.     //  application, rather than start the application's message pump.
  95.     return FALSE;
  96. #endif
  97. }
  98.  
  99.