HTTPVIEW.H
上传用户:btxinjin
上传日期:2007-01-04
资源大小:83k
文件大小:3k
源码类别:

Web服务器

开发平台:

Visual C++

  1. // HttpView.h : interface of the CHttpSvrView class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1997-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #define C_COLUMNS       6
  13. #define COLUMN_FILE     0
  14. #define COLUMN_PATH     1
  15. #define COLUMN_HITS     2
  16. #define COLUMN_LAST     3
  17. #define COLUMN_CMD      4
  18. #define COLUMN_URL      5
  19. class CRequestSocket;
  20. class CHttpSvrView : public CListView
  21. {
  22. protected: // create from serialization only
  23. BOOL InsertHitDoc( CHitDoc* pHitDoc );
  24. CHitDoc* m_phdPopup;
  25. CHttpSvrView();
  26. DECLARE_DYNCREATE(CHttpSvrView)
  27. // Attributes
  28. public:
  29. CHttpSvrDoc* GetDocument();
  30. // Operations
  31. public:
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CHttpSvrView)
  35. public:
  36. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  37. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  38. virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
  39. protected:
  40. virtual void OnInitialUpdate(); // called first time after construct
  41. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  42. //}}AFX_VIRTUAL
  43. // Implementation
  44. public:
  45. virtual ~CHttpSvrView();
  46. #ifdef _DEBUG
  47. virtual void AssertValid() const;
  48. virtual void Dump(CDumpContext& dc) const;
  49. #endif
  50. protected:
  51. void SetListView( DWORD dwStyle );
  52. void RegisterHit( CListCtrl& list, CRequest* pRequest );
  53. int GetImage( CHitDoc* pHit );
  54. void DoContextMenu( const CPoint& point );
  55. CImageList m_ilLarge, m_ilSmall;
  56. // Generated message map functions
  57. protected:
  58. //{{AFX_MSG(CHttpSvrView)
  59. afx_msg void OnViewLarge();
  60. afx_msg void OnUpdateViewLarge(CCmdUI* pCmdUI);
  61. afx_msg void OnViewList();
  62. afx_msg void OnUpdateViewList(CCmdUI* pCmdUI);
  63. afx_msg void OnViewReport();
  64. afx_msg void OnUpdateViewReport(CCmdUI* pCmdUI);
  65. afx_msg void OnViewSmall();
  66. afx_msg void OnUpdateViewSmall(CCmdUI* pCmdUI);
  67. afx_msg void OnColumnclick(NMHDR* pNMHDR, LRESULT* pResult);
  68. afx_msg void OnGetDispInfo(NMHDR* pNMHDR, LRESULT* pResult);
  69. afx_msg void OnDeleteItem(NMHDR* pNMHDR, LRESULT* pResult);
  70. afx_msg void OnViewClear();
  71. //}}AFX_MSG
  72. afx_msg void OnDblclk(NMHDR* pNMHDR, LRESULT* pResult);
  73. afx_msg void OnRclick(NMHDR* pNMHDR, LRESULT* pResult);
  74. afx_msg void OnPopupClear();
  75. afx_msg void OnPopupEdit();
  76. afx_msg void OnPopupOpen();
  77. DECLARE_MESSAGE_MAP()
  78. };
  79. #ifndef _DEBUG  // debug version in HttpSvrView.cpp
  80. inline CHttpSvrDoc* CHttpSvrView::GetDocument()
  81.    { return (CHttpSvrDoc*)m_pDocument; }
  82. #endif
  83. /////////////////////////////////////////////////////////////////////////////