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

界面编程

开发平台:

Visual C++

  1. // HelpNotes.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "HelpNotes.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. : m_hWndLastPopup( NULL )
  24. {
  25. // TODO: add construction code here,
  26. // Place all significant initialization in InitInstance
  27. }
  28. /////////////////////////////////////////////////////////////////////////////
  29. // The one and only CApp object
  30. CApp theApp;
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CApp initialization
  33. BOOL CApp::InitInstance()
  34. {
  35. VERIFY( ::AfxOleInit() );
  36. ::InitCommonControls();
  37. ::AfxEnableControlContainer();
  38. VERIFY( ::AfxInitRichEdit() );
  39. SetRegistryKey( _T("Foss") );
  40. CMainFrame* pFrame = new CMainFrame;
  41. m_pMainWnd = pFrame;
  42. VERIFY(
  43. pFrame->LoadFrame(
  44. IDR_MAINFRAME,
  45. WS_OVERLAPPEDWINDOW|FWS_ADDTOTITLE,
  46. NULL,
  47. NULL
  48. )
  49. );
  50. pFrame->ActivateFrame( SW_SHOW );
  51. return TRUE;
  52. }
  53. /////////////////////////////////////////////////////////////////////////////
  54. // CApp message handlers
  55. // App command to run the dialog
  56. void CApp::OnAppAbout()
  57. {
  58. #ifndef __EXT_MFC_NO_PROF_UIS_ABOUT_DIALOG
  59. VERIFY( ProfUISAbout() );
  60. #endif // #ifndef __EXT_MFC_NO_PROF_UIS_ABOUT_DIALOG
  61. }
  62. BOOL CApp::PreTranslateMessage( MSG * pMsg ) 
  63. {
  64. if( pMsg->hwnd != NULL
  65. && pMsg->hwnd == m_hWndLastPopup
  66. )
  67. return FALSE;
  68. return CWinApp::PreTranslateMessage( pMsg );
  69. }