MainFrm.cpp
上传用户:sztlpcb
上传日期:2007-06-09
资源大小:741k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3. #include "stdafx.h"
  4. #include "StreamPlayer.h"
  5. #include "MainFrm.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMainFrame
  13. IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
  14. BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
  15. //{{AFX_MSG_MAP(CMainFrame)
  16. ON_WM_CREATE()
  17. //}}AFX_MSG_MAP
  18. END_MESSAGE_MAP()
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CMainFrame construction/destruction
  21. CMainFrame::CMainFrame()
  22. {
  23. // TODO: add member initialization code here
  24. }
  25. CMainFrame::~CMainFrame()
  26. {
  27. }
  28. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  29. {
  30. //////////////////////////////////////////
  31. /// 90.10.15 generated by youngway
  32. ///**************************************
  33. /// Set window size
  34. /////////////////////////////////////////
  35. //cs.x=100;
  36. //cs.y=100;
  37. if( !CFrameWnd::PreCreateWindow(cs) )
  38. return FALSE;
  39. // TODO: Modify the Window class or styles here by modifying
  40. //  the CREATESTRUCT cs
  41. return TRUE;
  42. }
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CMainFrame diagnostics
  45. #ifdef _DEBUG
  46. void CMainFrame::AssertValid() const
  47. {
  48. CFrameWnd::AssertValid();
  49. }
  50. void CMainFrame::Dump(CDumpContext& dc) const
  51. {
  52. CFrameWnd::Dump(dc);
  53. }
  54. #endif //_DEBUG
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CMainFrame message handlers
  57. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  58. {
  59. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  60. return -1;
  61. // TODO: Add your specialized creation code here
  62. if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
  63. | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
  64. !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  65. {
  66. TRACE0("Failed to create toolbarn");
  67. return -1;      // fail to create
  68. }
  69. return 0;
  70. }