HelpContext.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:5k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // HelpContext.cpp : Defines the class behaviors for the application.
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #include "stdafx.h"
  21. #include "HelpContext.h"
  22. #include "MainFrm.h"
  23. #include "ChildFrm.h"
  24. #include "HelpContextDoc.h"
  25. #include "HelpContextView.h"
  26. #include "AboutDlg.h"
  27. #ifdef _DEBUG
  28. #define new DEBUG_NEW
  29. #undef THIS_FILE
  30. static char THIS_FILE[] = __FILE__;
  31. #endif
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CHelpContextApp
  34. BEGIN_MESSAGE_MAP(CHelpContextApp, CWinApp)
  35. //{{AFX_MSG_MAP(CHelpContextApp)
  36. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  37. // NOTE - the ClassWizard will add and remove mapping macros here.
  38. //    DO NOT EDIT what you see in these blocks of generated code!
  39. //}}AFX_MSG_MAP
  40. // Standard file based document commands
  41. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  42. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  43. // Standard print setup command
  44. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  45. END_MESSAGE_MAP()
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CHelpContextApp construction
  48. CHelpContextApp::CHelpContextApp()
  49. {
  50. #if (_MSC_VER >= 1300)
  51. EnableHtmlHelp();
  52. #endif
  53. // get path of executable
  54. TCHAR szBuff[_MAX_PATH];
  55. VERIFY(::GetModuleFileName(NULL, szBuff, _MAX_PATH));
  56. LPTSTR lpszFolder = _tcsrchr(szBuff, _T('\'));
  57. lpszFolder = lpszFolder == NULL ? szBuff : lpszFolder + 1;
  58. // get path of .HLP file
  59. if (m_pszHelpFilePath == NULL && lpszFolder)
  60. {
  61. #if (_MSC_VER >= 1300)
  62. lstrcpy(lpszFolder, _T("HelpContext.chm"));
  63. #else
  64. lstrcpy(lpszFolder, _T("HelpContext.hlp"));
  65. #endif
  66. m_pszHelpFilePath = _tcsdup(szBuff);
  67. }
  68. }
  69. /////////////////////////////////////////////////////////////////////////////
  70. // The one and only CHelpContextApp object
  71. CHelpContextApp theApp;
  72. /////////////////////////////////////////////////////////////////////////////
  73. // CHelpContextApp initialization
  74. BOOL CHelpContextApp::InitInstance()
  75. {
  76. // Initialize OLE libraries
  77. if (!AfxOleInit())
  78. {
  79. AfxMessageBox(IDP_OLE_INIT_FAILED);
  80. return FALSE;
  81. }
  82. AfxEnableControlContainer();
  83. CXTPWinDwmWrapper().SetProcessDPIAware();
  84. // Standard initialization
  85. // If you are not using these features and wish to reduce the size
  86. //  of your final executable, you should remove from the following
  87. //  the specific initialization routines you do not need.
  88. #if _MSC_VER <= 1200 // MFC 6.0 or earlier
  89. #ifdef _AFXDLL
  90. Enable3dControls();         // Call this when using MFC in a shared DLL
  91. #else
  92. Enable3dControlsStatic();   // Call this when linking to MFC statically
  93. #endif
  94. #endif // MFC 6.0 or earlier
  95. // Change the registry key under which our settings are stored.
  96. // TODO: You should modify this string to be something appropriate
  97. // such as the name of your company or organization.
  98. SetRegistryKey(_T("Codejock Software Sample Applications"));
  99. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  100. // Register the application's document templates.  Document templates
  101. //  serve as the connection between documents, frame windows and views.
  102. CMultiDocTemplate* pDocTemplate;
  103. pDocTemplate = new CMultiDocTemplate(
  104. IDR_HELPCOTYPE,
  105. RUNTIME_CLASS(CHelpContextDoc),
  106. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  107. RUNTIME_CLASS(CHelpContextView));
  108. AddDocTemplate(pDocTemplate);
  109. // create main MDI Frame window
  110. CMainFrame* pMainFrame = new CMainFrame;
  111. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  112. return FALSE;
  113. m_pMainWnd = pMainFrame;
  114. // Parse command line for standard shell commands, DDE, file open
  115. CCommandLineInfo cmdInfo;
  116. ParseCommandLine(cmdInfo);
  117. // Dispatch commands specified on the command line
  118. if (!ProcessShellCommand(cmdInfo))
  119. return FALSE;
  120. // The main window has been initialized, so show and update it.
  121. pMainFrame->ShowWindow(m_nCmdShow);
  122. pMainFrame->UpdateWindow();
  123. return TRUE;
  124. }
  125. // App command to run the dialog
  126. void CHelpContextApp::OnAppAbout()
  127. {
  128. CAboutDlg dlgAbout;
  129. dlgAbout.DoModal();
  130. }
  131. /////////////////////////////////////////////////////////////////////////////
  132. // CHelpContextApp message handlers