IEView.h
资源名称:视频会议系统.rar [点击查看]
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:2k
源码类别:
IP电话/视频会议
开发平台:
Visual C++
- #if !defined(AFX_IEVIEW_H__A48EF714_8E10_43F9_BE92_4864C2EAC761__INCLUDED_)
- #define AFX_IEVIEW_H__A48EF714_8E10_43F9_BE92_4864C2EAC761__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // IEView.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // CIEView html view
- #ifndef __AFXEXT_H__
- #include <afxext.h>
- #endif
- #include <afxhtml.h>
- class CMainFrame;
- class CIEView : public CHtmlView
- {
- public:
- CIEView( );
- virtual ~CIEView( );
- CTabCtrl * tab;
- //tab标签的索引
- int index;
- CString username;
- int ieid;
- BOOL m_bNotify;
- protected:
- //取得主框架的窗口
- CMainFrame * GetFrame( void )
- {
- if( ! this->tab )
- return NULL;
- return ( CMainFrame * )this->tab->GetParent( )->GetParent( );
- }
- //{{AFX_VIRTUAL(CIEView)
- virtual void OnNewWindow2(LPDISPATCH* ppDisp, BOOL* Cancel);
- virtual void OnTitleChange(LPCTSTR lpszText);
- virtual void OnNavigateComplete2(LPCTSTR strURL);
- virtual void OnStatusTextChange(LPCTSTR lpszText);
- virtual void OnProgressChange(long nProgress, long nProgressMax);
- virtual void OnBeforeNavigate2(LPCTSTR lpszURL, DWORD nFlags, LPCTSTR lpszTargetFrameName, CByteArray& baPostedData, LPCTSTR lpszHeaders, BOOL* pbCancel);
- //}}AFX_VIRTUAL
- //{{AFX_MSG(CIEView)
- afx_msg void OnParentNotify(UINT message, LPARAM lParam);
- afx_msg void OnTimer(UINT nIDEvent);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP( )
- private:
- CString curURL;
- bool advise;
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_IEVIEW_H__A48EF714_8E10_43F9_BE92_4864C2EAC761__INCLUDED_)