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

对话框与窗口

开发平台:

Visual C++

  1. // TipOfTheDay.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 "TipOfTheDay.h"
  22. #include "MainFrm.h"
  23. #include "ChildFrm.h"
  24. #include "TipOfTheDayDoc.h"
  25. #include "TipOfTheDayView.h"
  26. #include "AboutDlg.h"
  27. #include "SplitPath.h"
  28. #ifdef _DEBUG
  29. #define new DEBUG_NEW
  30. #undef THIS_FILE
  31. static char THIS_FILE[] = __FILE__;
  32. #endif
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CTipOfTheDayApp
  35. BEGIN_MESSAGE_MAP(CTipOfTheDayApp, CWinApp)
  36. //{{AFX_MSG_MAP(CTipOfTheDayApp)
  37. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  38. ON_COMMAND(IDC_TIPOFTHEDAY, OnTipoftheday)
  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. // CTipOfTheDayApp construction
  48. CTipOfTheDayApp::CTipOfTheDayApp()
  49. {
  50. // TODO: add construction code here,
  51. // Place all significant initialization in InitInstance
  52. }
  53. /////////////////////////////////////////////////////////////////////////////
  54. // The one and only CTipOfTheDayApp object
  55. CTipOfTheDayApp theApp;
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CTipOfTheDayApp initialization
  58. BOOL CTipOfTheDayApp::InitInstance()
  59. {
  60. AfxEnableControlContainer();
  61. CXTPWinDwmWrapper().SetProcessDPIAware();
  62. // Standard initialization
  63. // If you are not using these features and wish to reduce the size
  64. //  of your final executable, you should remove from the following
  65. //  the specific initialization routines you do not need.
  66. #if _MSC_VER <= 1200 // MFC 6.0 or earlier
  67. #ifdef _AFXDLL
  68. Enable3dControls();         // Call this when using MFC in a shared DLL
  69. #else
  70. Enable3dControlsStatic();   // Call this when linking to MFC statically
  71. #endif
  72. #endif // MFC 6.0 or earlier
  73. // Change the registry key under which our settings are stored.
  74. // TODO: You should modify this string to be something appropriate
  75. // such as the name of your company or organization.
  76. SetRegistryKey(_T("Codejock Software Sample Applications"));
  77. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  78. // Register the application's document templates.  Document templates
  79. //  serve as the connection between documents, frame windows and views.
  80. CMultiDocTemplate* pDocTemplate;
  81. pDocTemplate = new CMultiDocTemplate(
  82. IDR_TIPOFTTYPE,
  83. RUNTIME_CLASS(CTipOfTheDayDoc),
  84. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  85. RUNTIME_CLASS(CTipOfTheDayView));
  86. AddDocTemplate(pDocTemplate);
  87. // create main MDI Frame window
  88. CMainFrame* pMainFrame = new CMainFrame;
  89. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  90. return FALSE;
  91. m_pMainWnd = pMainFrame;
  92. // Parse command line for standard shell commands, DDE, file open
  93. CCommandLineInfo cmdInfo;
  94. ParseCommandLine(cmdInfo);
  95. // Dispatch commands specified on the command line
  96. if (!ProcessShellCommand(cmdInfo))
  97. return FALSE;
  98. // The main window has been initialized, so show and update it.
  99. pMainFrame->ShowWindow(m_nCmdShow);
  100. pMainFrame->UpdateWindow();
  101. // This method handles the 'Tip of the Day' component.
  102. ShowTipAtStartup();
  103. return TRUE;
  104. }
  105. // App command to run the dialog
  106. void CTipOfTheDayApp::OnAppAbout()
  107. {
  108. CAboutDlg aboutDlg;
  109. aboutDlg.DoModal();
  110. }
  111. /////////////////////////////////////////////////////////////////////////////
  112. // CTipOfTheDayApp message handlers
  113. void CTipOfTheDayApp::FindTipsFile(LPCTSTR lpszTipsFile)
  114. {
  115. // if the tips.txt file does not exist, create one...
  116. if (!FILEEXISTS_S(lpszTipsFile))
  117. {
  118. TRY
  119. {
  120. CStdioFile file(lpszTipsFile,
  121. CFile::modeCreate | CFile::modeWrite | CFile::typeText);
  122. file.WriteString(_T("Technical support is just a phone call away, feel free to contact us at anytime with your support or sales questions, we are always here to help! (517) 625-5729n"));
  123. file.WriteString(_T("You can easily change the appearance of your application to look like Office XP with a single line of code.  Choose "View" then "Office XP Theme" to see this in action!n"));
  124. file.WriteString(_T("You can save thousands of hours in development time by using the many excellent controls found in the Xtreme Toolkit!n"));
  125. file.Close();
  126. }
  127. CATCH( CFileException, e )
  128. {
  129. #ifdef _DEBUG
  130. afxDump << "File could not be opened " << e->m_cause << "n";
  131. #endif
  132. }
  133. END_CATCH
  134. }
  135. }
  136. void CTipOfTheDayApp::ShowTipAtStartup()
  137. {
  138. // This method handles the 'Tip of the Day' component.
  139. CCommandLineInfo cmdInfo;
  140. ParseCommandLine(cmdInfo);
  141. if (cmdInfo.m_bShowSplash)
  142. {
  143. CXTTipOfTheDay dlg;
  144. if (dlg.m_bStartup) {
  145. OnTipoftheday();
  146. }
  147. }
  148. }
  149. void CTipOfTheDayApp::OnTipoftheday()
  150. {
  151. // construct the name of our tips file.  This is the file that will contain
  152. // our tip of the day messages.
  153. CSplitPath sp(m_pszHelpFilePath);
  154. CString strTipsFile;
  155. strTipsFile.Format(_T("%s%stips.txt"), sp.GetDrive(), sp.GetDir());
  156. FindTipsFile(strTipsFile);
  157. CXTTipOfTheDay dlg(strTipsFile);
  158. dlg.DoModal();
  159. }