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

搜索引擎

开发平台:

Visual C++

  1. // SpiderList.h : interface of the CSpiderList class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #include <afxcview.h>
  5. #if !defined SpiderList_H
  6. #define SpiderList_H
  7. #if _MSC_VER >= 1000
  8. #pragma once
  9. #endif // _MSC_VER >= 1000
  10. class CSpiderList : public CListView
  11. {
  12. protected: // create from serialization only
  13. CSpiderList();
  14. DECLARE_DYNCREATE(CSpiderList)
  15. // Attributes
  16. public:
  17. CSpiderDoc* GetDocument();
  18. static CSpiderList *GetView();
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CSpiderList)
  24. public:
  25. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  26. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  27. virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
  28. virtual void OnInitialUpdate();
  29. protected:
  30. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  31. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  32. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. public:
  36. virtual ~CSpiderList();
  37. #ifdef _DEBUG
  38. virtual void AssertValid() const;
  39. virtual void Dump(CDumpContext& dc) const;
  40. #endif
  41. protected:
  42. // Generated message map functions
  43. protected:
  44. //{{AFX_MSG(CSpiderList)
  45. //}}AFX_MSG
  46. LRESULT OnUpDateURL(WPARAM wParam,LPARAM lParam);
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. #ifndef _DEBUG  // debug version in SpiderList.cpp
  50. inline CSpiderDoc* CSpiderList::GetDocument()
  51.    { return (CSpiderDoc*)m_pDocument; }
  52. #endif
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  56. #endif