MainFrame.h
资源名称:视频会议系统.rar [点击查看]
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:3k
源码类别:
IP电话/视频会议
开发平台:
Visual C++
- #if !defined(AFX_MAINFRAME_H__C1590C72_027B_4FF0_A54A_A50BC29980A8__INCLUDED_)
- #define AFX_MAINFRAME_H__C1590C72_027B_4FF0_A54A_A50BC29980A8__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // MainFrame.h : header file
- //
- #include "MainView.h"
- #include <afxadv.h>
- #include "SizeBarSizeCBar.h"
- #include "ConferenceDialog.h"
- #include "VideoDialog.h"
- #include "MyReBar.h"
- #include "BottomDialog.h"
- #define VIDEO_WND_NUMBER 5
- /////////////////////////////////////////////////////////////////////////////
- // CMainFrame frame
- class CMainFrame : public CFrameWnd
- {
- public:
- CMainFrame( );
- virtual ~CMainFrame( );
- //取得视图
- CMainView * GetView( void ){ return this->m_view ; }
- //取得视频窗口
- CWnd * GetCharentWnd( void );
- //取得本地图像
- CWnd * GetLocalVideo( void );
- //取得会议列表对话框
- CConferenceDialog & GetConferenceDialog( void ){ return this->dlgBar; }
- //2个按钮的消息相应函数
- afx_msg void OnCreateConferenceButton();
- afx_msg void OnJoinConferenceButton();
- protected:
- //申请发言回复
- bool OnSendAudioRES( void * package );
- //申请发言
- int OnSendAudioREQ( void * package );
- //在线用户回复
- void OnlineUser( void * package );
- //视频显示
- int OnVideoData( void * package );
- //加入会议请求
- bool OnJoinDataNodeREQ( void * package );
- //加入会议回复
- bool OnJoinDataNodeRES( void * package );
- //邀请用户
- const char * OnInviteUserREQ( void * package );
- //邀请用户回复
- void OnInviteUserRES( void * package );
- //{{AFX_VIRTUAL(CMainFrame)
- //}}AFX_VIRTUAL
- //数据包处理
- afx_msg int OnPackageMessage( WPARAM wParam , LPARAM lParam );
- afx_msg void OnConference( UINT nID );
- afx_msg void OnVideoWnd( UINT nID );
- afx_msg void OnTrace( WPARAM wParam , LPARAM lParam );
- afx_msg void OnAddUser( WPARAM wParam , LPARAM lParam );
- //{{AFX_MSG(CMainFrame)
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- afx_msg void OnWndConferenceList();
- afx_msg void OnWndConferenceRoom();
- afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
- afx_msg UINT OnNcHitTest(CPoint point);
- afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
- afx_msg void OnDestroy();
- afx_msg void OnTimer(UINT nIDEvent);
- afx_msg void OnClose();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- private:
- //大小可变的ControlBar
- CSizingControlBar sizeDlgBar;
- //会议状态对话框
- CConferenceDialog dlgBar;
- //视频窗口
- CSizingControlBar videoBar[ VIDEO_WND_NUMBER ];
- //视频窗口
- CVideoDialog videoDlg[ VIDEO_WND_NUMBER ];
- //视图
- CMainView * m_view;
- //底部的功能栏
- CMyReBar myBar;
- CBottomDialog btmdlg;
- //是否可以提示
- bool canTip;
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_MAINFRAME_H__C1590C72_027B_4FF0_A54A_A50BC29980A8__INCLUDED_)