Htmlview.h
上传用户:shadai888
上传日期:2007-01-03
资源大小:20k
文件大小:2k
源码类别:

Internet/IE编程

开发平台:

Visual C++

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