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

  1. #ifndef _npChap04Dlg_H
  2. #define _npChap04Dlg_H
  3.  
  4. // npChap04Dlg.h : header file
  5. //
  6.  
  7. /////////////////////////////////////////////////////////////////////////////
  8. // CNpChap04Dlg dialog
  9.  
  10. class CNpChap04Dlg : public CDialog
  11. {
  12.     CButton* cbExample;
  13.     CButton* cbCancel;
  14.     HWND hwndButtonHandle;
  15.  
  16. // Construction
  17. public:
  18.     CNpChap04Dlg(CWnd* pParent = NULL);    // standard constructor
  19.     void PrepareDialog();
  20.     void EatDialog();
  21.     void UnSubclassWindow();
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CNpChap04Dlg)
  25.     enum { IDD = IDD_NPCHAP04_DIALOG };
  26.         // NOTE: the ClassWizard will add data members here
  27.     //}}AFX_DATA
  28.  
  29.     // ClassWizard generated virtual function overrides
  30.     //{{AFX_VIRTUAL(CNpChap04Dlg)
  31.     protected:
  32.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  33.     //}}AFX_VIRTUAL
  34.  
  35. // Implementation
  36. protected:
  37.     HICON m_hIcon;
  38.  
  39.     // Generated message map functions
  40.     //{{AFX_MSG(CNpChap04Dlg)
  41.     virtual BOOL OnInitDialog();
  42.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  43.     afx_msg void OnPaint();
  44.     afx_msg HCURSOR OnQueryDragIcon();
  45.     virtual void OnCancel();
  46.     virtual void OnOK();
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49. };
  50. #endif
  51.  
  52.