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

Internet/IE编程

开发平台:

Visual C++

  1. // browserView.h : interface of the CBrowserView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_BROWSERVIEW_H__FB8B0E0F_F15A_11D1_BE66_080042010BFF__INCLUDED_)
  5. #define AFX_BROWSERVIEW_H__FB8B0E0F_F15A_11D1_BE66_080042010BFF__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. #include "webbrowser2.h"
  10. class CBrowserView : public CView
  11. {
  12. public: // create from serialization only
  13. CBrowserView();
  14. DECLARE_DYNCREATE(CBrowserView)
  15. // Attributes
  16. public:
  17. CWebBrowser2 m_WebBrowser2;
  18. CBrowserDoc* GetDocument();
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CBrowserView)
  24. public:
  25. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  26. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  27. virtual void OnInitialUpdate();
  28. protected:
  29. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  30. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  31. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. public:
  35. void NavigateURL(LPCTSTR lpszName);
  36. virtual ~CBrowserView();
  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(CBrowserView)
  45. // NOTE - the ClassWizard will add and remove member functions here.
  46. //    DO NOT EDIT what you see in these blocks of generated code !
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. #ifndef _DEBUG  // debug version in browserView.cpp
  51. inline CBrowserDoc* CBrowserView::GetDocument()
  52.    { return (CBrowserDoc*)m_pDocument; }
  53. #endif
  54. /////////////////////////////////////////////////////////////////////////////
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  57. #endif // !defined(AFX_BROWSERVIEW_H__FB8B0E0F_F15A_11D1_BE66_080042010BFF__INCLUDED_)