MyBrowserView.h
上传用户:huahan
上传日期:2007-01-04
资源大小:59k
文件大小:2k
源码类别:

浏览器

开发平台:

Visual C++

  1. // MyBrowserView.h : interface of the CMyBrowserView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MYBROWSERVIEW_H__7A739621_F300_11D1_9F48_C49E4E07811D__INCLUDED_)
  5. #define AFX_MYBROWSERVIEW_H__7A739621_F300_11D1_9F48_C49E4E07811D__INCLUDED_
  6. #include "webbrowser.h" // Added by ClassView
  7. #if _MSC_VER >= 1000
  8. #pragma once
  9. #endif // _MSC_VER >= 1000
  10. class CMyBrowserView : public CView
  11. {
  12. protected: // create from serialization only
  13. CMyBrowserView();
  14. DECLARE_DYNCREATE(CMyBrowserView)
  15. // Attributes
  16. public:
  17. CMyBrowserDoc* GetDocument();
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CMyBrowserView)
  23. public:
  24. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. protected:
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. public:
  30. CWebBrowser m_Browser;
  31. virtual ~CMyBrowserView();
  32. #ifdef _DEBUG
  33. virtual void AssertValid() const;
  34. virtual void Dump(CDumpContext& dc) const;
  35. #endif
  36. protected:
  37. // Generated message map functions
  38. protected:
  39. //{{AFX_MSG(CMyBrowserView)
  40. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  41. afx_msg void OnSize(UINT nType, int cx, int cy);
  42. afx_msg void OnReload();
  43. afx_msg void OnForward();
  44. afx_msg void OnBack();
  45. afx_msg void OnStop();
  46. afx_msg void OnUrl();
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. #ifndef _DEBUG  // debug version in MyBrowserView.cpp
  51. inline CMyBrowserDoc* CMyBrowserView::GetDocument()
  52.    { return (CMyBrowserDoc*)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_MYBROWSERVIEW_H__7A739621_F300_11D1_9F48_C49E4E07811D__INCLUDED_)