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

IP电话/视频会议

开发平台:

Visual C++

  1. #if !defined(AFX_MAINFRAME_H__2DC9EF05_BD83_4A2A_86B0_5AE1F79D35B1__INCLUDED_)
  2. #define AFX_MAINFRAME_H__2DC9EF05_BD83_4A2A_86B0_5AE1F79D35B1__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MainFrame.h : header file
  7. //
  8. #include "MainView.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CMainFrame frame
  11. class CMainFrame : public CFrameWnd
  12. {
  13. DECLARE_DYNAMIC( CMainFrame )
  14. public:
  15.          CMainFrame();
  16.     virtual ~CMainFrame();
  17. CMainView * GetView( void ){ return this->view; }
  18. CToolBar  & GetToolBar( void ){ return this->toolBar; }
  19. bool ( * OnShare )( void * pContext , CWnd * pShareWnd , char * buffer , int size );
  20. void * pContext;
  21. CString userName;
  22. CString controlName;
  23. protected:
  24. //{{AFX_VIRTUAL(CMainFrame)
  25. //}}AFX_VIRTUAL
  26. //{{AFX_MSG(CMainFrame)
  27. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  28. afx_msg void OnStartShare();
  29. afx_msg void OnStopShare();
  30. afx_msg void OnControl();
  31. afx_msg void OnFullscreen();
  32. afx_msg void OnClientFullscreen();
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP( )
  35. private:
  36. CReBar  reBar;
  37. CToolBar toolBar;
  38. CMainView * view;
  39. bool     fullScreen;
  40. };
  41. /////////////////////////////////////////////////////////////////////////////
  42. //{{AFX_INSERT_LOCATION}}
  43. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  44. #endif // !defined(AFX_MAINFRAME_H__2DC9EF05_BD83_4A2A_86B0_5AE1F79D35B1__INCLUDED_)