DataHider.cpp
上传用户:ynjin1970
上传日期:2014-10-13
资源大小:6438k
文件大小:3k
源码类别:

中间件编程

开发平台:

Visual C++

  1. // DataHider.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "DataHider.h"
  5. #include "MainFrm.h"
  6. #include "DataHiderDoc.h"
  7. #include "DataHiderView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CDataHiderApp
  15. BEGIN_MESSAGE_MAP(CDataHiderApp, CWinApp)
  16. //{{AFX_MSG_MAP(CDataHiderApp)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code!
  19. //}}AFX_MSG_MAP
  20. // Standard file based document commands
  21. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  22. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CDataHiderApp construction
  26. CDataHiderApp::CDataHiderApp()
  27. {
  28. // TODO: add construction code here,
  29. // Place all significant initialization in InitInstance
  30. }
  31. /////////////////////////////////////////////////////////////////////////////
  32. // The one and only CDataHiderApp object
  33. CDataHiderApp theApp;
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CDataHiderApp initialization
  36. BOOL CDataHiderApp::InitInstance()
  37. {
  38. AfxEnableControlContainer();
  39. // Standard initialization
  40. // If you are not using these features and wish to reduce the size
  41. //  of your final executable, you should remove from the following
  42. //  the specific initialization routines you do not need.
  43. #ifdef _AFXDLL
  44. Enable3dControls(); // Call this when using MFC in a shared DLL
  45. #else
  46. Enable3dControlsStatic(); // Call this when linking to MFC statically
  47. #endif
  48. // Change the registry key under which our settings are stored.
  49. // TODO: You should modify this string to be something appropriate
  50. // such as the name of your company or organization.
  51. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  52. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  53. // Register the application's document templates.  Document templates
  54. //  serve as the connection between documents, frame windows and views.
  55. CSingleDocTemplate* pDocTemplate;
  56. pDocTemplate = new CSingleDocTemplate(
  57. IDR_MAINFRAME,
  58. RUNTIME_CLASS(CDataHiderDoc),
  59. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  60. RUNTIME_CLASS(CDataHiderView));
  61. AddDocTemplate(pDocTemplate);
  62. // Parse command line for standard shell commands, DDE, file open
  63. CCommandLineInfo cmdInfo;
  64. ParseCommandLine(cmdInfo);
  65. // Dispatch commands specified on the command line
  66. if (!ProcessShellCommand(cmdInfo))
  67. return FALSE;
  68. // The one and only window has been initialized, so show and update it.
  69. m_pMainWnd->ShowWindow(SW_SHOW);
  70. m_pMainWnd->SetWindowText("数据图像隐藏软件");
  71. m_pMainWnd->UpdateWindow();
  72. return TRUE;
  73. }