IEView.h
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. #if !defined(AFX_IEVIEW_H__A48EF714_8E10_43F9_BE92_4864C2EAC761__INCLUDED_)
  2. #define AFX_IEVIEW_H__A48EF714_8E10_43F9_BE92_4864C2EAC761__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // IEView.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CIEView html view
  10. #ifndef __AFXEXT_H__
  11. #include <afxext.h>
  12. #endif
  13. #include <afxhtml.h>
  14. class CMainFrame;
  15. class CIEView : public CHtmlView
  16. {
  17. public:
  18.          CIEView( );
  19.     virtual ~CIEView( );
  20.    
  21.     CTabCtrl * tab;
  22.     //tab标签的索引
  23. int        index;
  24.     
  25. CString    username;
  26. int        ieid;
  27. BOOL       m_bNotify;
  28. protected:
  29. //取得主框架的窗口
  30. CMainFrame * GetFrame( void )
  31. {
  32. if( ! this->tab )
  33. return NULL;
  34. return ( CMainFrame * )this->tab->GetParent( )->GetParent( );
  35. }
  36.     //{{AFX_VIRTUAL(CIEView)
  37. virtual void OnNewWindow2(LPDISPATCH* ppDisp, BOOL* Cancel);
  38. virtual void OnTitleChange(LPCTSTR lpszText);
  39. virtual void OnNavigateComplete2(LPCTSTR strURL);
  40. virtual void OnStatusTextChange(LPCTSTR lpszText);
  41. virtual void OnProgressChange(long nProgress, long nProgressMax);
  42. virtual void OnBeforeNavigate2(LPCTSTR lpszURL, DWORD nFlags, LPCTSTR lpszTargetFrameName, CByteArray& baPostedData, LPCTSTR lpszHeaders, BOOL* pbCancel);
  43. //}}AFX_VIRTUAL
  44. //{{AFX_MSG(CIEView)
  45. afx_msg void OnParentNotify(UINT message, LPARAM lParam);
  46. afx_msg void OnTimer(UINT nIDEvent);
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP( )
  49. private:
  50. CString   curURL;
  51. bool      advise;
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_IEVIEW_H__A48EF714_8E10_43F9_BE92_4864C2EAC761__INCLUDED_)