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

对话框与窗口

开发平台:

Visual C++

  1. // TrayIconDlg.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 "TrayIconDlg.h"
  22. #include "TrayIconDlgDlg.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CTrayIconDlgApp
  30. BEGIN_MESSAGE_MAP(CTrayIconDlgApp, CWinApp)
  31. //{{AFX_MSG_MAP(CTrayIconDlgApp)
  32. //}}AFX_MSG_MAP
  33. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CTrayIconDlgApp construction
  37. CTrayIconDlgApp::CTrayIconDlgApp()
  38. {
  39. // TODO: add construction code here,
  40. // Place all significant initialization in InitInstance
  41. }
  42. /////////////////////////////////////////////////////////////////////////////
  43. // The one and only CTrayIconDlgApp object
  44. CTrayIconDlgApp theApp;
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CTrayIconDlgApp initialization
  47. BOOL CTrayIconDlgApp::InitInstance()
  48. {
  49. AfxEnableControlContainer();
  50. CXTPWinDwmWrapper().SetProcessDPIAware();
  51. // Standard initialization
  52. // If you are not using these features and wish to reduce the size
  53. //  of your final executable, you should remove from the following
  54. //  the specific initialization routines you do not need.
  55. #if _MSC_VER <= 1200 // MFC 6.0 or earlier
  56. #ifdef _AFXDLL
  57. Enable3dControls();         // Call this when using MFC in a shared DLL
  58. #else
  59. Enable3dControlsStatic();   // Call this when linking to MFC statically
  60. #endif
  61. #endif // MFC 6.0 or earlier
  62. // Change the registry key under which our settings are stored.
  63. // TODO: You should modify this string to be something appropriate
  64. // such as the name of your company or organization.
  65. SetRegistryKey(_T("Codejock Software Sample Applications"));
  66. CTrayIconDlgDlg dlg;
  67. m_pMainWnd = &dlg;
  68. int nResponse = (int)dlg.DoModal();
  69. if (nResponse == IDOK)
  70. {
  71. // TODO: Place code here to handle when the dialog is
  72. //  dismissed with OK
  73. }
  74. else if (nResponse == IDCANCEL)
  75. {
  76. // TODO: Place code here to handle when the dialog is
  77. //  dismissed with Cancel
  78. }
  79. // Since the dialog has been closed, return FALSE so that we exit the
  80. //  application, rather than start the application's message pump.
  81. return FALSE;
  82. }