home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / labs / c11 / lab02 / baseline / urldialog.h < prev   
Encoding:
C/C++ Source or Header  |  1997-02-20  |  883 b   |  42 lines

  1. // URLDialog.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CUrlDialog dialog
  6.  
  7. class CUrlDialog : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CUrlDialog(CWnd* pParent = NULL);   // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CUrlDialog)
  15.     enum { IDD = IDD_URL_DIALOG };
  16.     //}}AFX_DATA
  17.  
  18.     CString    m_Server;
  19.     CString    m_Object;
  20.     DWORD m_ServerType;
  21.     INTERNET_PORT m_Port;
  22.  
  23.  
  24. // Overrides
  25.     // ClassWizard generated virtual function overrides
  26.     //{{AFX_VIRTUAL(CUrlDialog)
  27.     protected:
  28.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  29.     //}}AFX_VIRTUAL
  30.  
  31. // Implementation
  32. protected:
  33.  
  34.     // Generated message map functions
  35.     //{{AFX_MSG(CUrlDialog)
  36.     afx_msg void OnParse();
  37.     virtual BOOL OnInitDialog();
  38.     afx_msg void OnChangeEditUrl();
  39.     //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41. };
  42.