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

搜索引擎

开发平台:

Visual C++

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