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

对话框与窗口

开发平台:

Visual C++

  1. // SearchOptions.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 "SearchOptions.h"
  22. #include "MainFrm.h"
  23. #include "SearchOptionsDoc.h"
  24. #include "SearchOptionsPane.h"
  25. #include "AboutDlg.h"
  26. #ifdef _DEBUG
  27. #define new DEBUG_NEW
  28. #undef THIS_FILE
  29. static char THIS_FILE[] = __FILE__;
  30. #endif
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CSearchOptionsApp
  33. BEGIN_MESSAGE_MAP(CSearchOptionsApp, CWinApp)
  34. //{{AFX_MSG_MAP(CSearchOptionsApp)
  35. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  36. // NOTE - the ClassWizard will add and remove mapping macros here.
  37. //    DO NOT EDIT what you see in these blocks of generated code!
  38. //}}AFX_MSG_MAP
  39. // Standard file based document commands
  40. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  41. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  42. // Standard print setup command
  43. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  44. END_MESSAGE_MAP()
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CSearchOptionsApp construction
  47. CSearchOptionsApp::CSearchOptionsApp()
  48. {
  49. // TODO: add construction code here,
  50. // Place all significant initialization in InitInstance
  51. }
  52. /////////////////////////////////////////////////////////////////////////////
  53. // The one and only CSearchOptionsApp object
  54. CSearchOptionsApp theApp;
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CSearchOptionsApp initialization
  57. BOOL CSearchOptionsApp::InitInstance()
  58. {
  59. AfxEnableControlContainer();
  60. CXTPWinDwmWrapper().SetProcessDPIAware();
  61. // Standard initialization
  62. // If you are not using these features and wish to reduce the size
  63. //  of your final executable, you should remove from the following
  64. //  the specific initialization routines you do not need.
  65. #if _MSC_VER <= 1200 // MFC 6.0 or earlier
  66. #ifdef _AFXDLL
  67. Enable3dControls();         // Call this when using MFC in a shared DLL
  68. #else
  69. Enable3dControlsStatic();   // Call this when linking to MFC statically
  70. #endif
  71. #endif // MFC 6.0 or earlier
  72. // Change the registry key under which our settings are stored.
  73. // TODO: You should modify this string to be something appropriate
  74. // such as the name of your company or organization.
  75. SetRegistryKey(_T("Codejock Software Sample Applications"));
  76. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  77. // Register the application's document templates.  Document templates
  78. //  serve as the connection between documents, frame windows and views.
  79. CSingleDocTemplate* pDocTemplate;
  80. pDocTemplate = new CSingleDocTemplate(
  81. IDR_MAINFRAME,
  82. RUNTIME_CLASS(CSearchOptionsDoc),
  83. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  84. RUNTIME_CLASS(CSearchOptionsPane));
  85. AddDocTemplate(pDocTemplate);
  86. // Parse command line for standard shell commands, DDE, file open
  87. CCommandLineInfo cmdInfo;
  88. ParseCommandLine(cmdInfo);
  89. // Dispatch commands specified on the command line
  90. if (!ProcessShellCommand(cmdInfo))
  91. return FALSE;
  92. // The one and only window has been initialized, so show and update it.
  93. m_pMainWnd->ShowWindow(SW_SHOW);
  94. m_pMainWnd->UpdateWindow();
  95. return TRUE;
  96. }
  97. // App command to run the dialog
  98. void CSearchOptionsApp::OnAppAbout()
  99. {
  100. CAboutDlg aboutDlg;
  101. aboutDlg.DoModal();
  102. }
  103. /////////////////////////////////////////////////////////////////////////////
  104. // CSearchOptionsApp message handlers