MainFrame.h
资源名称:视频会议系统.rar [点击查看]
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:
IP电话/视频会议
开发平台:
Visual C++
- #if !defined(AFX_MAINFRAME_H__2DC9EF05_BD83_4A2A_86B0_5AE1F79D35B1__INCLUDED_)
- #define AFX_MAINFRAME_H__2DC9EF05_BD83_4A2A_86B0_5AE1F79D35B1__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // MainFrame.h : header file
- //
- #include "MainView.h"
- /////////////////////////////////////////////////////////////////////////////
- // CMainFrame frame
- class CMainFrame : public CFrameWnd
- {
- DECLARE_DYNAMIC( CMainFrame )
- public:
- CMainFrame();
- virtual ~CMainFrame();
- CMainView * GetView( void ){ return this->view; }
- CToolBar & GetToolBar( void ){ return this->toolBar; }
- bool ( * OnShare )( void * pContext , CWnd * pShareWnd , char * buffer , int size );
- void * pContext;
- CString userName;
- CString controlName;
- protected:
- //{{AFX_VIRTUAL(CMainFrame)
- //}}AFX_VIRTUAL
- //{{AFX_MSG(CMainFrame)
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- afx_msg void OnStartShare();
- afx_msg void OnStopShare();
- afx_msg void OnControl();
- afx_msg void OnFullscreen();
- afx_msg void OnClientFullscreen();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP( )
- private:
- CReBar reBar;
- CToolBar toolBar;
- CMainView * view;
- bool fullScreen;
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_MAINFRAME_H__2DC9EF05_BD83_4A2A_86B0_5AE1F79D35B1__INCLUDED_)