Video Demo.cpp
上传用户:smdfuse
上传日期:2015-11-06
资源大小:98k
文件大小:5k
源码类别:

图形图象

开发平台:

Visual C++

  1. // Video Demo.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "Video Demo.h"
  5. #include "MainFrm.h"
  6. #include "Video DemoDoc.h"
  7. #include "Video DemoView.h"
  8. // 数据管理 MVC式中央数据驱动,全部抛弃MFC架构
  9. #include "DataManager.h"
  10. #include "MediaSource.h"
  11. #ifdef _DEBUG
  12. #define new DEBUG_NEW
  13. #undef THIS_FILE
  14. static char THIS_FILE[] = __FILE__;
  15. #endif
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CVideoDemoApp
  18. BEGIN_MESSAGE_MAP(CVideoDemoApp, CWinApp)
  19. //{{AFX_MSG_MAP(CVideoDemoApp)
  20. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  21. // NOTE - the ClassWizard will add and remove mapping macros here.
  22. //    DO NOT EDIT what you see in these blocks of generated code!
  23. //}}AFX_MSG_MAP
  24. // Standard file based document commands
  25. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  26. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  27. // Standard print setup command
  28. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  29. END_MESSAGE_MAP()
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CVideoDemoApp construction
  32. CVideoDemoApp::CVideoDemoApp()
  33. {
  34. // TODO: add construction code here,
  35. // Place all significant initialization in InitInstance
  36. }
  37. /////////////////////////////////////////////////////////////////////////////
  38. // The one and only CVideoDemoApp object
  39. CVideoDemoApp theApp;
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CVideoDemoApp initialization
  42. BOOL CVideoDemoApp::InitInstance()
  43. {
  44. AfxEnableControlContainer();
  45. // Standard initialization
  46. // If you are not using these features and wish to reduce the size
  47. //  of your final executable, you should remove from the following
  48. //  the specific initialization routines you do not need.
  49. #ifdef _AFXDLL
  50. Enable3dControls(); // Call this when using MFC in a shared DLL
  51. #else
  52. Enable3dControlsStatic(); // Call this when linking to MFC statically
  53. #endif
  54. // Change the registry key under which our settings are stored.
  55. // TODO: You should modify this string to be something appropriate
  56. // such as the name of your company or organization.
  57. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  58. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  59. // Register the application's document templates.  Document templates
  60. //  serve as the connection between documents, frame windows and views.
  61. CSingleDocTemplate* pDocTemplate;
  62. pDocTemplate = new CSingleDocTemplate(
  63. IDR_MAINFRAME,
  64. RUNTIME_CLASS(CVideoDemoDoc),
  65. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  66. RUNTIME_CLASS(CVideoDemoView));
  67. AddDocTemplate(pDocTemplate);
  68. // Parse command line for standard shell commands, DDE, file open
  69. CCommandLineInfo cmdInfo;
  70. ParseCommandLine(cmdInfo);
  71. // Dispatch commands specified on the command line
  72. if (!ProcessShellCommand(cmdInfo))
  73. return FALSE;
  74. // The one and only window has been initialized, so show and update it.
  75. m_pMainWnd->ShowWindow(SW_SHOW);
  76. m_pMainWnd->UpdateWindow();
  77. return TRUE;
  78. }
  79. /////////////////////////////////////////////////////////////////////////////
  80. // CAboutDlg dialog used for App About
  81. class CAboutDlg : public CDialog
  82. {
  83. public:
  84. CAboutDlg();
  85. // Dialog Data
  86. //{{AFX_DATA(CAboutDlg)
  87. enum { IDD = IDD_ABOUTBOX };
  88. //}}AFX_DATA
  89. // ClassWizard generated virtual function overrides
  90. //{{AFX_VIRTUAL(CAboutDlg)
  91. protected:
  92. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  93. //}}AFX_VIRTUAL
  94. // 非防护式公共设计
  95. public:
  96. DataManager dm;           // 数据管理器
  97. //ImageData *curImageData;  // 当前图像数据
  98. //ImageData *lastImageData; // 上一次选择的图像数据
  99. // 视频源数据
  100. VideoData *curVideo;      // 当前视频(目前版本不对视频进行管理,只打开视频)
  101. // Implementation
  102. protected:
  103. //{{AFX_MSG(CAboutDlg)
  104. // No message handlers
  105. //}}AFX_MSG
  106. DECLARE_MESSAGE_MAP()
  107. };
  108. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  109. {
  110. //{{AFX_DATA_INIT(CAboutDlg)
  111. //}}AFX_DATA_INIT
  112. }
  113. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  114. {
  115. CDialog::DoDataExchange(pDX);
  116. //{{AFX_DATA_MAP(CAboutDlg)
  117. //}}AFX_DATA_MAP
  118. }
  119. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  120. //{{AFX_MSG_MAP(CAboutDlg)
  121. // No message handlers
  122. //}}AFX_MSG_MAP
  123. END_MESSAGE_MAP()
  124. // App command to run the dialog
  125. void CVideoDemoApp::OnAppAbout()
  126. {
  127. CAboutDlg aboutDlg;
  128. aboutDlg.DoModal();
  129. }
  130. /////////////////////////////////////////////////////////////////////////////
  131. // CVideoDemoApp message handlers