UIHtmlView.h
上传用户:yatsl7111
上传日期:2007-01-08
资源大小:1433k
文件大小:5k
源码类别:

图形图象

开发平台:

Visual C++

  1. //*******************************************************************************
  2. // COPYRIGHT NOTES
  3. // ---------------
  4. // You may use this source code, compile or redistribute it as part of your application 
  5. // for free. You cannot redistribute it as a part of a software development 
  6. // library without the agreement of the author. If the sources are 
  7. // distributed along with the application, you should leave the original 
  8. // copyright notes in the source code without any changes.
  9. // This code can be used WITHOUT ANY WARRANTIES at your own risk.
  10. // 
  11. // For the latest updates to this code, check this site:
  12. // http://www.masmex.com 
  13. // after Sept 2000
  14. // 
  15. // Copyright(C) 2000 Philip Oldaker <email: philip@masmex.com>
  16. //*******************************************************************************
  17. #if !defined(AFX_HTMLMSGVIEW_H__4A8E5045_F2AC_47AE_A24D_584CB7D9D084__INCLUDED_)
  18. #define AFX_HTMLMSGVIEW_H__4A8E5045_F2AC_47AE_A24D_584CB7D9D084__INCLUDED_
  19. #if _MSC_VER > 1000
  20. #pragma once
  21. #endif // _MSC_VER > 1000
  22. // HtmlMsgView.h : header file
  23. //
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CUIHtmlView html view
  26. interface IHTMLDocument2;
  27. interface IHTMLElement;
  28. interface IHTMLImgElement;
  29. interface IHTMLObjectElement;
  30. #ifndef __AFXEXT_H__
  31. #include <afxext.h>
  32. #endif
  33. #include <afxhtml.h>
  34. #include <comdef.h>
  35. class CTRL_EXT_CLASS CUIHtmlView : public CHtmlView
  36. {
  37. protected:
  38. CUIHtmlView();           // protected constructor used by dynamic creation
  39. DECLARE_DYNAMIC(CUIHtmlView)
  40. // html Data
  41. public:
  42. //{{AFX_DATA(CUIHtmlView)
  43. // NOTE: the ClassWizard will add data members here
  44. //}}AFX_DATA
  45. // Attributes
  46. public:
  47. void SetNotifyWnd(HWND hwnd);
  48. bool IsWorking() { return m_pHTMLDocument2 == NULL; }
  49. IHTMLDocument2 *GetHTMLDocument();
  50. void GetElement(LPCTSTR pszID,IHTMLElement **pElement);
  51. CString GetBodyText();
  52. // Operations
  53. public:
  54. virtual bool ExecScript(LPCTSTR pszScript,LPCTSTR pszLang=NULL,_variant_t *pvt=NULL);
  55. virtual bool SetElementText(LPCTSTR pszElemID,LPCTSTR pszText);
  56. virtual bool SetElementHTML(LPCTSTR pszElemID,LPCTSTR pszText);
  57. virtual bool SetElementValue(LPCTSTR pszElemID,LPCTSTR pszText);
  58. virtual bool SetImageSource(LPCTSTR pszElemID,LPCTSTR pszText);
  59. virtual bool AddOptionString(LPCTSTR pszElemID,LPCTSTR pszText,LPCTSTR pszValue,bool bSelect=false);
  60. virtual bool SetOptionString(LPCTSTR pszElemID,LPCTSTR pszText);
  61. virtual bool GetOptionString(LPCTSTR pszElemID,CString &sText,CString &sValue);
  62. virtual CString GetElementText(LPCTSTR pszElemID);
  63. virtual CString GetElementHTML(LPCTSTR pszElemID);
  64. virtual CString GetElementValue(LPCTSTR pszElemID);
  65. virtual void ParseDocument();
  66. protected:
  67. virtual void DocumentReady();
  68. virtual void ActiveXControl(IHTMLObjectElement *pObj);
  69. virtual void ImageElement(IHTMLImgElement *pImg);
  70. virtual void Element(IHTMLElement *pElement);
  71. // Overrides
  72. // ClassWizard generated virtual function overrides
  73. //{{AFX_VIRTUAL(CUIHtmlView)
  74. public:
  75. virtual void OnBeforeNavigate2(LPCTSTR lpszURL, DWORD nFlags, LPCTSTR lpszTargetFrameName, CByteArray& baPostedData, LPCTSTR lpszHeaders, BOOL* pbCancel);
  76. virtual void OnCommandStateChange(long nCommand, BOOL bEnable);
  77. protected:
  78. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  79. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  80. virtual void DocumentComplete(LPDISPATCH pDisp, VARIANT* URL);
  81. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  82. virtual void OnActivateView(BOOL bActivate, CView* pActivateView, CView* pDeactiveView);
  83. virtual void OnTitleChange(LPCTSTR lpszText);
  84. virtual void OnDocumentComplete(LPCTSTR lpszUrl);
  85. //}}AFX_VIRTUAL
  86. // Implementation
  87. protected:
  88. void ReleaseDocument();
  89. virtual ~CUIHtmlView();
  90. #ifdef _DEBUG
  91. virtual void AssertValid() const;
  92. virtual void Dump(CDumpContext& dc) const;
  93. #endif
  94. // Generated message map functions
  95. //{{AFX_MSG(CUIHtmlView)
  96. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  97. afx_msg void OnBrowserGoBack();
  98. afx_msg void OnBrowserGoForward();
  99. afx_msg void OnBrowserGoHome();
  100. afx_msg void OnBrowserRefresh();
  101. afx_msg void OnBrowserStop();
  102. afx_msg void OnUpdateBrowserGoBack(CCmdUI *pUI);
  103. afx_msg void OnUpdateBrowserGoForward(CCmdUI *pUI);
  104. //}}AFX_MSG
  105. DECLARE_MESSAGE_MAP()
  106. private:
  107. IHTMLDocument2 *m_pHTMLDocument2;
  108. BOOL m_bDocumentComplete;
  109. BOOL m_bGoBack;
  110. BOOL m_bGoForward;
  111. HWND m_hNotifyWnd;
  112. bool m_bSetCursor;
  113. };
  114. inline void CUIHtmlView::SetNotifyWnd(HWND hwnd)
  115. {
  116. m_hNotifyWnd = hwnd;
  117. }
  118. inline IHTMLDocument2 *CUIHtmlView::GetHTMLDocument()
  119. {
  120. ASSERT(m_pHTMLDocument2);
  121. return m_pHTMLDocument2;
  122. }
  123. /////////////////////////////////////////////////////////////////////////////
  124. //{{AFX_INSERT_LOCATION}}
  125. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  126. #endif // !defined(AFX_HTMLMSGVIEW_H__4A8E5045_F2AC_47AE_A24D_584CB7D9D084__INCLUDED_)