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

Internet/IE编程

开发平台:

Visual C++

  1. // HtmlView.cpp : implementation of the CHtmlView class
  2. //
  3. #include "stdafx.h"
  4. #include "Html.h"
  5. #include "HtmlDoc.h"
  6. #include "HtmlView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /* EAB22AC1-30C1-11CF-A7EB-0000C05BAE0B */
  13. IID const IID_IWebBrowser={0xEAB22AC1, 0x30C1, 0x11CF, 0xA7, 0xEB,
  14. 0x00, 0x00, 0xC0, 0x5B, 0xAE, 0x0B};
  15. /* 8856F961-340A-11D0-A96B-00C04FD705A2 */
  16. CLSID const CLSID_WebBrowser={0x8856F961, 0x340A, 0x11D0, 0xA9, 0x6B,
  17. 0x00, 0xC0, 0x4F, 0xD7, 0x05, 0xA2};
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CHtmlView
  20. IMPLEMENT_DYNCREATE(CHtmlView, CView)
  21. BEGIN_MESSAGE_MAP(CHtmlView, CView)
  22. //{{AFX_MSG_MAP(CHtmlView)
  23. ON_WM_SIZE()
  24. ON_WM_PAINT()
  25. //}}AFX_MSG_MAP
  26. // Standard printing commands
  27. ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
  28. ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
  29. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  30. END_MESSAGE_MAP()
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CHtmlView construction/destruction
  33. CHtmlView::CHtmlView()
  34. {
  35. }
  36. CHtmlView::~CHtmlView()
  37. {
  38. }
  39. BOOL CHtmlView::PreCreateWindow(CREATESTRUCT& cs)
  40. {
  41. return CView::PreCreateWindow(cs);
  42. }
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CHtmlView drawing
  45. void CHtmlView::OnDraw(CDC* pDC)
  46. {
  47. CHtmlDoc* pDoc = GetDocument();
  48. ASSERT_VALID(pDoc);
  49. }
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CHtmlView printing
  52. BOOL CHtmlView::OnPreparePrinting(CPrintInfo* pInfo)
  53. {
  54. // default preparation
  55. return DoPreparePrinting(pInfo);
  56. }
  57. void CHtmlView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  58. {
  59. }
  60. void CHtmlView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  61. {
  62. }
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CHtmlView diagnostics
  65. #ifdef _DEBUG
  66. void CHtmlView::AssertValid() const
  67. {
  68. CView::AssertValid();
  69. }
  70. void CHtmlView::Dump(CDumpContext& dc) const
  71. {
  72. CView::Dump(dc);
  73. }
  74. CHtmlDoc* CHtmlView::GetDocument() // non-debug version is inline
  75. {
  76. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CHtmlDoc)));
  77. return (CHtmlDoc*)m_pDocument;
  78. }
  79. #endif //_DEBUG
  80. /////////////////////////////////////////////////////////////////////////////
  81. // CHtmlView message handlers
  82. BOOL CHtmlView::Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext) 
  83. {
  84. if (!CView::Create(lpszClassName, lpszWindowName, dwStyle, 
  85. rect, pParentWnd, nID, pContext))
  86. {
  87. TRACE("Can't create view.n");
  88. return FALSE;
  89. }
  90. CRect client;
  91. GetClientRect(&client);
  92. if (!m_wndBrowser.CreateControl(CLSID_WebBrowser, lpszWindowName, 
  93. WS_VISIBLE|WS_CHILD, rect, this, AFX_IDW_PANE_FIRST))
  94. {
  95. TRACE("Can't create Web Browser control window.n");
  96. return FALSE;
  97. }
  98. IUnknown *pUnk=m_wndBrowser.GetControlUnknown();
  99. ASSERT(pUnk);
  100. IWebBrowser *pBrowser;
  101. HRESULT hr=pUnk->QueryInterface(IID_IWebBrowser, (void **)&pBrowser);
  102. if (!SUCCEEDED(hr))
  103. {
  104. TRACE("WebBrowser interface not supported.n");
  105. return FALSE;
  106. }
  107. CString url("http://www.microsoft.com/");
  108. BSTR bUrl=url.AllocSysString();
  109. hr=pBrowser->Navigate(bUrl, &COleVariant((long)0, VT_I4),
  110. &COleVariant((LPCTSTR)NULL, VT_BSTR), NULL, &COleVariant((LPCTSTR)NULL, VT_BSTR));
  111. if (!SUCCEEDED(hr))
  112. {
  113. AfxMessageBox("can't browse!!");
  114. return FALSE;
  115. }
  116. return TRUE;
  117. }
  118. void CHtmlView::OnSize(UINT nType, int cx, int cy) 
  119. {
  120. CView::OnSize(nType, cx, cy);
  121. if (::IsWindow(m_wndBrowser.m_hWnd))
  122. {
  123. CRect client;
  124. GetClientRect(&client);
  125. m_wndBrowser.SetWindowPos(NULL, 0, 0, client.right, client.bottom, 
  126. SWP_NOACTIVATE|SWP_NOZORDER);
  127. }
  128. }
  129. void CHtmlView::OnPaint() 
  130. {
  131. Default();
  132. }