home *** CD-ROM | disk | FTP | other *** search
/ The Best of Select: Windows 95 Special 1 / WINDOWS95_1.bin / internet / vogon / links.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-29  |  933 b   |  41 lines

  1. // links.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CHyperlinkDlg dialog
  6.  
  7. class CHyperlinkDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CHyperlinkDlg(_DWebster* pWebsterDispatch, CWnd* pParent = NULL);
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CHyperlinkDlg)
  15.     enum { IDD = IDD_DIALOG_HYPERLINKS };
  16.     CStatic    m_staticLinkCount;
  17.     CListBox    m_listboxLinks;
  18.     CEdit    m_editLink;
  19.     CString    m_stringLink;
  20.     //}}AFX_DATA
  21.  
  22.  
  23. // Overrides
  24.     // ClassWizard generated virtual function overrides
  25.     //{{AFX_VIRTUAL(CHyperlinkDlg)
  26.     protected:
  27.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  28.     //}}AFX_VIRTUAL
  29.  
  30. // Implementation
  31. protected:
  32.    _DWebster* m_pWebsterDispatch;
  33.  
  34.     // Generated message map functions
  35.     //{{AFX_MSG(CHyperlinkDlg)
  36.     virtual BOOL OnInitDialog();
  37.     afx_msg void OnSelchangeListLinks();
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40. };
  41.