UrlDlg.h
上传用户:st5609838
上传日期:2013-03-29
资源大小:66k
文件大小:2k
源码类别:

搜索引擎

开发平台:

Visual C++

  1. #if !defined(AFX_URLDLG_H__1C26A2A2_F3D6_11D1_8F58_EA8491322E38__INCLUDED_)
  2. #define AFX_URLDLG_H__1C26A2A2_F3D6_11D1_8F58_EA8491322E38__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // UrlDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CUrlDlg dialog
  10. class CUrlDlg : public CDialog
  11. {
  12. // Construction
  13. protected: // create from serialization only
  14. DECLARE_SERIAL(CUrlDlg)
  15. public:
  16. CUrlDlg(CWnd* pParent = NULL);   // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CUrlDlg)
  19. enum { IDD = IDD_GETURL };
  20. CComboBox m_comboBox;
  21. BOOL m_root;
  22. //}}AFX_DATA
  23. CStringList m_list;
  24. CString m_WebFileName;
  25. int m_select;
  26. int m_count;
  27. char buffer[260];
  28. BOOL SaveFile (LPCSTR lpszFileName);
  29. BOOL LoadFile (LPCSTR lpszFileName);
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CUrlDlg)
  33. public:
  34. virtual void Serialize(CArchive& ar);
  35. protected:
  36. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. protected:
  40. // Generated message map functions
  41. //{{AFX_MSG(CUrlDlg)
  42. virtual void OnOK();
  43. virtual BOOL OnInitDialog();
  44. afx_msg void OnSelchangeUrlcombo();
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_URLDLG_H__1C26A2A2_F3D6_11D1_8F58_EA8491322E38__INCLUDED_)