AnimatBitmap.cpp
上传用户:gao_853
上传日期:2020-04-10
资源大小:362k
文件大小:4k
源码类别:

midi

开发平台:

Visual C++

  1. // AnimatBitmap.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "AnimatBitmap.h"
  5. #include "MainFrm.h"
  6. #include "AnimatBitmapDoc.h"
  7. #include "AnimatBitmapView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CAnimatBitmapApp
  15. BEGIN_MESSAGE_MAP(CAnimatBitmapApp, CWinApp)
  16. //{{AFX_MSG_MAP(CAnimatBitmapApp)
  17. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  18. // NOTE - the ClassWizard will add and remove mapping macros here.
  19. //    DO NOT EDIT what you see in these blocks of generated code!
  20. //}}AFX_MSG_MAP
  21. // Standard file based document commands
  22. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  23. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CAnimatBitmapApp construction
  27. CAnimatBitmapApp::CAnimatBitmapApp()
  28. {
  29. // TODO: add construction code here,
  30. // Place all significant initialization in InitInstance
  31. }
  32. /////////////////////////////////////////////////////////////////////////////
  33. // The one and only CAnimatBitmapApp object
  34. CAnimatBitmapApp theApp;
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CAnimatBitmapApp initialization
  37. BOOL CAnimatBitmapApp::InitInstance()
  38. {
  39. // Standard initialization
  40. // If you are not using these features and wish to reduce the size
  41. //  of your final executable, you should remove from the following
  42. //  the specific initialization routines you do not need.
  43. #ifdef _AFXDLL
  44. Enable3dControls(); // Call this when using MFC in a shared DLL
  45. #else
  46. Enable3dControlsStatic(); // Call this when linking to MFC statically
  47. #endif
  48. // Change the registry key under which our settings are stored.
  49. // TODO: You should modify this string to be something appropriate
  50. // such as the name of your company or organization.
  51. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  52. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  53. // Register the application's document templates.  Document templates
  54. //  serve as the connection between documents, frame windows and views.
  55. CSingleDocTemplate* pDocTemplate;
  56. pDocTemplate = new CSingleDocTemplate(
  57. IDR_MAINFRAME,
  58. RUNTIME_CLASS(CAnimatBitmapDoc),
  59. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  60. RUNTIME_CLASS(CAnimatBitmapView));
  61. AddDocTemplate(pDocTemplate);
  62. // Parse command line for standard shell commands, DDE, file open
  63. CCommandLineInfo cmdInfo;
  64. ParseCommandLine(cmdInfo);
  65. // Dispatch commands specified on the command line
  66. if (!ProcessShellCommand(cmdInfo)) return FALSE;
  67. m_pMainWnd->SetWindowText("Animation Bitmap par BORAN");
  68. m_pMainWnd->ShowWindow(SW_SHOWMAXIMIZED);
  69. m_pMainWnd->UpdateWindow();
  70. return TRUE;
  71. }
  72. /////////////////////////////////////////////////////////////////////////////
  73. // CAboutDlg dialog used for App About
  74. class CAboutDlg : public CDialog
  75. {
  76. public:
  77. CAboutDlg();
  78. // Dialog Data
  79. //{{AFX_DATA(CAboutDlg)
  80. enum { IDD = IDD_ABOUTBOX };
  81. //}}AFX_DATA
  82. // ClassWizard generated virtual function overrides
  83. //{{AFX_VIRTUAL(CAboutDlg)
  84. protected:
  85. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  86. //}}AFX_VIRTUAL
  87. // Implementation
  88. protected:
  89. //{{AFX_MSG(CAboutDlg)
  90. // No message handlers
  91. //}}AFX_MSG
  92. DECLARE_MESSAGE_MAP()
  93. };
  94. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  95. {
  96. //{{AFX_DATA_INIT(CAboutDlg)
  97. //}}AFX_DATA_INIT
  98. }
  99. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  100. {
  101. CDialog::DoDataExchange(pDX);
  102. //{{AFX_DATA_MAP(CAboutDlg)
  103. //}}AFX_DATA_MAP
  104. }
  105. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  106. //{{AFX_MSG_MAP(CAboutDlg)
  107. // No message handlers
  108. //}}AFX_MSG_MAP
  109. END_MESSAGE_MAP()
  110. // App command to run the dialog
  111. void CAnimatBitmapApp::OnAppAbout()
  112. {
  113. CAboutDlg aboutDlg;
  114. aboutDlg.DoModal();
  115. }
  116. /////////////////////////////////////////////////////////////////////////////
  117. // CAnimatBitmapApp message handlers