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

  1. // npChap04Dlg.cpp : implementation file
  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. // CAboutDlg dialog used for App About
  16.  
  17. class CAboutDlg : public CDialog
  18. {
  19. public:
  20.     CAboutDlg();
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(CAboutDlg)
  24.     enum { IDD = IDD_ABOUTBOX };
  25.     //}}AFX_DATA
  26.  
  27.     // ClassWizard generated virtual function overrides
  28.     //{{AFX_VIRTUAL(CAboutDlg)
  29.     protected:
  30.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  31.     //}}AFX_VIRTUAL
  32.  
  33. // Implementation
  34. protected:
  35.     //{{AFX_MSG(CAboutDlg)
  36.     //}}AFX_MSG
  37.     DECLARE_MESSAGE_MAP()
  38. };
  39.  
  40. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  41. {
  42.     //{{AFX_DATA_INIT(CAboutDlg)
  43.     //}}AFX_DATA_INIT
  44. }
  45.  
  46. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  47. {
  48.     CDialog::DoDataExchange(pDX);
  49.     //{{AFX_DATA_MAP(CAboutDlg)
  50.     //}}AFX_DATA_MAP
  51. }
  52.  
  53. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  54.     //{{AFX_MSG_MAP(CAboutDlg)
  55.         // No message handlers
  56.     //}}AFX_MSG_MAP
  57. END_MESSAGE_MAP()
  58.  
  59. /////////////////////////////////////////////////////////////////////////////
  60. // CNpChap04Dlg dialog
  61.  
  62. CNpChap04Dlg::CNpChap04Dlg(CWnd* pParent /*=NULL*/)
  63.     : CDialog(CNpChap04Dlg::IDD, pParent)
  64. {
  65.     //{{AFX_DATA_INIT(CNpChap04Dlg)
  66.         // NOTE: the ClassWizard will add member initialization here
  67.     //}}AFX_DATA_INIT
  68.     // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  69. #ifdef _PLUG_IN
  70.     m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  71. #endif
  72. }
  73.  
  74. void CNpChap04Dlg::PrepareDialog()
  75. {
  76.     CRect rectTmp(10,10,80,50);
  77.  
  78.     cbExample = new CButton();
  79.     cbExample->Create("OK",BS_PUSHBUTTON | WS_VISIBLE,
  80.             rectTmp,this,IDOK);
  81.  
  82.     rectTmp.SetRect(100,10,180,50);
  83.     cbCancel = new CButton;
  84.     cbCancel->Create("Cancel",BS_PUSHBUTTON | WS_VISIBLE,
  85.             rectTmp,this,IDCANCEL);
  86. }
  87.  
  88. void CNpChap04Dlg::EatDialog()
  89. {
  90.     ASSERT(cbExample != NULL);
  91.     delete cbExample;
  92.     ASSERT(cbExample != NULL);
  93.     delete cbCancel;
  94. }
  95.  
  96. void CNpChap04Dlg::UnSubclassWindow()
  97. {
  98.     // restore original Netscape WNDPROC
  99.     WNDPROC* lplpfn = GetSuperWndProcAddr();
  100.     if ( !*lplpfn )
  101.     {
  102.         ASSERT(0);
  103.         return;
  104.     }
  105.  
  106.     // Set the original window procedure using Windows AFI function
  107.     (WNDPROC)::SetWindowLong(m_hWnd, GWL_WNDPROC, (LONG) *lplpfn );
  108. }
  109.  
  110. void CNpChap04Dlg::DoDataExchange(CDataExchange* pDX)
  111. {
  112.     CDialog::DoDataExchange(pDX);
  113.     //{{AFX_DATA_MAP(CNpChap04Dlg)
  114.         // NOTE: the ClassWizard will add DDX and DDV calls here
  115.     //}}AFX_DATA_MAP
  116. }
  117.  
  118. BEGIN_MESSAGE_MAP(CNpChap04Dlg, CDialog)
  119.     //{{AFX_MSG_MAP(CNpChap04Dlg)
  120.     ON_WM_SYSCOMMAND()
  121.     ON_WM_PAINT()
  122.     ON_WM_QUERYDRAGICON()
  123.     //}}AFX_MSG_MAP
  124. END_MESSAGE_MAP()
  125.  
  126. /////////////////////////////////////////////////////////////////////////////
  127. // CNpChap04Dlg message handlers
  128.  
  129. BOOL CNpChap04Dlg::OnInitDialog()
  130. {
  131.     CDialog::OnInitDialog();
  132.  
  133.     // Add "About..." menu item to system menu.
  134.  
  135.     // IDM_ABOUTBOX must be in the system command range.
  136.     ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  137.     ASSERT(IDM_ABOUTBOX < 0xF000);
  138.  
  139.     CMenu* pSysMenu = GetSystemMenu(FALSE);
  140.     CString strAboutMenu;
  141.     strAboutMenu.LoadString(IDS_ABOUTBOX);
  142.     if (!strAboutMenu.IsEmpty())
  143.     {
  144.         pSysMenu->AppendMenu(MF_SEPARATOR);
  145.         pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  146.     }
  147.  
  148.     // Set the icon for this dialog.  The framework does this automatically
  149.     //  when the application's main window is not a dialog
  150.     SetIcon(m_hIcon, TRUE);            // Set big icon
  151.     SetIcon(m_hIcon, FALSE);        // Set small icon
  152.     
  153.     // TODO: Add extra initialization here
  154.     
  155.     return TRUE;  // return TRUE  unless you set the focus to a control
  156. }
  157.  
  158. void CNpChap04Dlg::OnSysCommand(UINT nID, LPARAM lParam)
  159. {
  160.     if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  161.     {
  162.         CAboutDlg dlgAbout;
  163.         dlgAbout.DoModal();
  164.     }
  165.     else
  166.     {
  167.         CDialog::OnSysCommand(nID, lParam);
  168.     }
  169. }
  170.  
  171. // If you add a minimize button to your dialog, you will need the code below
  172. //  to draw the icon.  For MFC applications using the document/view model,
  173. //  this is automatically done for you by the framework.
  174.  
  175. void CNpChap04Dlg::OnPaint() 
  176. {
  177. #ifdef _PLUG_IN
  178.     Cstring s = "Hello, world!";
  179.     
  180.     Crect rect;
  181.     CPaintDC dcTmp(This);
  182.     GetClientRect(rect);
  183.  
  184.     dcTmp.SetTextAlign(TA_BASELINE | TA_CENTER);
  185.     dcTmp.SetTextColor(::GetSysColor(COLOR_WINDOWTEXT));
  186.     dcTmp.SetBkMode(TRANSPARENT);
  187.     dcTmp.TextOut((rect.right / 2), (rect.bottom / 2), s);
  188. #else
  189.     if (IsIconic())
  190.     {
  191.         CPaintDC dc(this); // device context for painting
  192.  
  193.         SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  194.  
  195.         // Center icon in client rectangle
  196.         int cxIcon = GetSystemMetrics(SM_CXICON);
  197.         int cyIcon = GetSystemMetrics(SM_CYICON);
  198.         CRect rect;
  199.         GetClientRect(&rect);
  200.         int x = (rect.Width() - cxIcon + 1) / 2;
  201.         int y = (rect.Height() - cyIcon + 1) / 2;
  202.  
  203.         // Draw the icon
  204.         dc.DrawIcon(x, y, m_hIcon);
  205.     }
  206.     else
  207.     {
  208. #endif
  209.         CDialog::OnPaint();
  210. #ifndef _PLUG_IN
  211.     }
  212. #endif
  213. }
  214.  
  215. // The system calls this to obtain the cursor to display while the user drags
  216. //  the minimized window.
  217. HCURSOR CNpChap04Dlg::OnQueryDragIcon()
  218. {
  219.     return (HCURSOR) m_hIcon;
  220. }
  221.  
  222. void CNpChap04Dlg::OnCancel() 
  223. {
  224.     // TODO: Add extra cleanup here
  225.     
  226.     CDialog::OnCancel();
  227. }
  228.  
  229. void CNpChap04Dlg::OnOK() 
  230. {
  231.     // TODO: Add extra validation here
  232.     
  233.     CDialog::OnOK();
  234. }
  235.  
  236.