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

界面编程

开发平台:

Visual C++

  1. // ZoomScrollBar.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "ZoomScrollBar.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. // CApp
  13. BEGIN_MESSAGE_MAP(CApp, CWinApp)
  14. //{{AFX_MSG_MAP(CApp)
  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. // CApp construction
  22. CApp::CApp()
  23. {
  24. // TODO: add construction code here,
  25. // Place all significant initialization in InitInstance
  26. }
  27. /////////////////////////////////////////////////////////////////////////////
  28. // The one and only CApp object
  29. CApp theApp;
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CApp initialization
  32. BOOL CApp::InitInstance()
  33. {
  34. srand( (unsigned)time( NULL ) );
  35. InitCommonControls();
  36. VERIFY( ::AfxOleInit() );
  37. AfxEnableControlContainer();
  38. // Change the registry key under which our settings are stored.
  39. // TODO: You should modify this string to be something appropriate
  40. // such as the name of your company or organization.
  41. SetRegistryKey( _T("Foss") );
  42. // To create the main window, this code creates a new frame window
  43. // object and then sets it as the application's main window object.
  44. CMainFrame* pFrame = new CMainFrame;
  45. m_pMainWnd = pFrame;
  46. // create and load the frame with its resources
  47. if( ! pFrame->LoadFrame(
  48. IDR_MAINFRAME,
  49. WS_OVERLAPPEDWINDOW | FWS_ADDTOTITLE,
  50. NULL,
  51. NULL
  52. )
  53. )
  54. {
  55. m_pMainWnd = NULL;
  56. ASSERT( FALSE );
  57. return FALSE;
  58. }
  59. // window placement persistence
  60. pFrame->ActivateFrame( SW_SHOWMAXIMIZED );
  61. return TRUE;
  62. }
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CApp message handlers
  65. // App command to run the dialog
  66. void CApp::OnAppAbout()
  67. {
  68. #ifndef __EXT_MFC_NO_PROF_UIS_ABOUT_DIALOG
  69. VERIFY( ProfUISAbout() );
  70. #endif // #ifndef __EXT_MFC_NO_PROF_UIS_ABOUT_DIALOG
  71. }
  72. /////////////////////////////////////////////////////////////////////////////
  73. // CApp message handlers