Playdlg.cpp
上传用户:connie527
上传日期:2022-04-15
资源大小:4326k
文件大小:2k
源码类别:

行业应用

开发平台:

Visual C++

  1. // Playdlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "capture.h"
  5. #include "Playdlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CPlaydlg dialog
  13. CPlaydlg::CPlaydlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CPlaydlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CPlaydlg)
  17. //}}AFX_DATA_INIT
  18. }
  19. void CPlaydlg::DoDataExchange(CDataExchange* pDX)
  20. {
  21. CDialog::DoDataExchange(pDX);
  22. //{{AFX_DATA_MAP(CPlaydlg)
  23. DDX_Control(pDX, IDC_PATH, m_Path);
  24. DDX_Control(pDX, IDC_MEDIAPLAYER1, m_MediaPlay);
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(CPlaydlg, CDialog)
  28. //{{AFX_MSG_MAP(CPlaydlg)
  29. ON_BN_CLICKED(IDC_PLAY, OnPlay)
  30. ON_WM_CLOSE()
  31. //}}AFX_MSG_MAP
  32. END_MESSAGE_MAP()
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CPlaydlg message handlers
  35. void CPlaydlg::OnPlay() 
  36. {
  37. // TODO: Add your control notification handler code here
  38. CFileDialog fDlg(TRUE,"","",OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,"AVI|*.avi",this);
  39. if(fDlg.DoModal()==IDOK)
  40. {
  41. CString path = fDlg.GetPathName();
  42. m_Path.SetWindowText(path);
  43. m_MediaPlay.Open(path);
  44. CTime m_LogTime = CTime::GetCurrentTime();
  45. CString strText;
  46. strText.Format("%st%st录像回放rn",m_UserName,
  47. m_LogTime.Format("%y-%m-%d %H:%M:%S"));
  48. CFile file;
  49. file.Open(m_LogPath,CFile::modeWrite);
  50. file.SeekToEnd();
  51. file.Write(strText,strText.GetLength());
  52. file.Close();
  53. }
  54. }
  55. void CPlaydlg::OnOK()
  56. {
  57. }
  58. void CPlaydlg::OnClose() 
  59. {
  60. // TODO: Add your message handler code here and/or call default
  61. m_MediaPlay.Stop();
  62. CDialog::OnClose();
  63. }