AviFrames.cpp
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. // AviFrames.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "AviFrames.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. // CAviFramesApp
  13. BEGIN_MESSAGE_MAP(CAviFramesApp, CWinApp)
  14. //{{AFX_MSG_MAP(CAviFramesApp)
  15. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  16. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code!
  18. //}}AFX_MSG_MAP
  19. END_MESSAGE_MAP()
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CAviFramesApp construction
  22. CAviFramesApp::CAviFramesApp()
  23. {
  24. // TODO: add construction code here,
  25. // Place all significant initialization in InitInstance
  26. }
  27. /////////////////////////////////////////////////////////////////////////////
  28. // The one and only CAviFramesApp object
  29. CAviFramesApp theApp;
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CAviFramesApp initialization
  32. BOOL CAviFramesApp::InitInstance()
  33. {
  34. InitCommonControls();
  35. #if (!defined __EXT_MFC_NO_CUSTOMIZE)
  36. if( ! ::AfxOleInit() )
  37. {
  38. ASSERT( FALSE );
  39. return FALSE;
  40. }
  41. #endif // (!defined __EXT_MFC_NO_CUSTOMIZE)
  42. AfxEnableControlContainer();
  43. SetRegistryKey( _T("Foss") );
  44. CMainFrame* pFrame = new CMainFrame;
  45. m_pMainWnd = pFrame;
  46. if( ! pFrame->LoadFrame(
  47. IDR_MAINFRAME,
  48. WS_OVERLAPPEDWINDOW | FWS_ADDTOTITLE,
  49. NULL,
  50. NULL
  51. )
  52. )
  53. {
  54. m_pMainWnd = NULL;
  55. ASSERT( FALSE );
  56. return FALSE;
  57. }
  58. pFrame->ActivateFrame( SW_SHOW );
  59. pFrame->SendMessage(WM_COMMAND, ID_FILE_OPEN);
  60. return TRUE;
  61. }
  62. /////////////////////////////////////////////////////////////////////////////
  63. // CAviFramesApp message handlers
  64. void CAviFramesApp::OnAppAbout()
  65. {
  66. #ifndef __EXT_MFC_NO_PROF_UIS_ABOUT_DIALOG
  67. VERIFY( ProfUISAbout() );
  68. #endif // #ifndef __EXT_MFC_NO_PROF_UIS_ABOUT_DIALOG
  69. }