RevMDIChildWnd.cpp
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:1k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. // RevMDIChildWnd.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "mtmdi.h"
  5. #include "RevMDIChildWnd.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CRevMDIChildWnd
  13. IMPLEMENT_DYNCREATE(CRevMDIChildWnd, CMDIChildWnd)
  14. CRevMDIChildWnd::CRevMDIChildWnd()
  15. {
  16. }
  17. CRevMDIChildWnd::~CRevMDIChildWnd()
  18. {
  19. }
  20. BEGIN_MESSAGE_MAP(CRevMDIChildWnd, CMDIChildWnd)
  21. //{{AFX_MSG_MAP(CRevMDIChildWnd)
  22. // NOTE - the ClassWizard will add and remove mapping macros here.
  23. //}}AFX_MSG_MAP
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CRevMDIChildWnd message handlers
  27. BOOL CRevMDIChildWnd::Create(LPCTSTR szTitle, const RECT &rect)
  28. {
  29.    if (menu.m_hMenu == NULL)
  30. menu.LoadMenu(IDR_CHILDFRAME);
  31. m_hMenuShared = menu.m_hMenu;
  32. if (!CMDIChildWnd::Create(NULL, szTitle, WS_CHILD | WS_VISIBLE | WS_OVERLAPPEDWINDOW, rect))
  33. return FALSE;
  34. CRevPlayThread* pRevPlayThread = new CRevPlayThread(m_hWnd);
  35. pRevPlayThread->CreateThread();
  36. return TRUE;
  37. }