ImageProcessing.cpp
上传用户:xjt2008yy
上传日期:2010-01-18
资源大小:272k
文件大小:5k
源码类别:

生物技术

开发平台:

Visual C++

  1. // ImageProcessing.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "ImageProcessing.h"
  5. #include "MainFrm.h"
  6. #include "ChildFrm.h"
  7. #include "ImageProcessingDoc.h"
  8. #include "ImageProcessingView.h"
  9. #ifdef _DEBUG
  10. #define new DEBUG_NEW
  11. #undef THIS_FILE
  12. static char THIS_FILE[] = __FILE__;
  13. #endif
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CImageProcessingApp
  16. BEGIN_MESSAGE_MAP(CImageProcessingApp, CWinApp)
  17. //{{AFX_MSG_MAP(CImageProcessingApp)
  18. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  19. ON_COMMAND(ID_FILE_OPEN, OnFileOpen)
  20. //}}AFX_MSG_MAP
  21. // Standard file based document commands
  22. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  23. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  24. // Standard print setup command
  25. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  26. END_MESSAGE_MAP()
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CImageProcessingApp construction
  29. CImageProcessingApp::CImageProcessingApp()
  30. {
  31. // TODO: add construction code here,
  32. // Place all significant initialization in InitInstance
  33. }
  34. /////////////////////////////////////////////////////////////////////////////
  35. // The one and only CImageProcessingApp object
  36. CImageProcessingApp theApp;
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CImageProcessingApp initialization
  39. BOOL CImageProcessingApp::InitInstance()
  40. {
  41. AfxEnableControlContainer();
  42. // Standard initialization
  43. // If you are not using these features and wish to reduce the size
  44. //  of your final executable, you should remove from the following
  45. //  the specific initialization routines you do not need.
  46. #ifdef _AFXDLL
  47. Enable3dControls(); // Call this when using MFC in a shared DLL
  48. #else
  49. Enable3dControlsStatic(); // Call this when linking to MFC statically
  50. #endif
  51. // Change the registry key under which our settings are stored.
  52. // TODO: You should modify this string to be something appropriate
  53. // such as the name of your company or organization.
  54. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  55. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  56. // Register the application's document templates.  Document templates
  57. //  serve as the connection between documents, frame windows and views.
  58. CMultiDocTemplate* pDocTemplate;
  59. pDocTemplate = new CMultiDocTemplate(
  60. IDR_IMAGEPTYPE,
  61. RUNTIME_CLASS(CImageProcessingDoc),
  62. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  63. RUNTIME_CLASS(CImageProcessingView));
  64. AddDocTemplate(pDocTemplate);
  65. // create main MDI Frame window
  66. CMainFrame* pMainFrame = new CMainFrame;
  67. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  68. return FALSE;
  69. m_pMainWnd = pMainFrame;
  70. // Parse command line for standard shell commands, DDE, file open
  71. CCommandLineInfo cmdInfo;
  72. ParseCommandLine(cmdInfo);
  73. // 启动时不自动打开一个空文档 
  74. cmdInfo.m_nShellCommand = CCommandLineInfo::FileNothing;
  75. // Dispatch commands specified on the command line
  76. if (!ProcessShellCommand(cmdInfo))
  77. return FALSE;
  78. // The main window has been initialized, so show and update it.
  79. pMainFrame->ShowWindow(m_nCmdShow);
  80. pMainFrame->UpdateWindow();
  81. return TRUE;
  82. }
  83. /////////////////////////////////////////////////////////////////////////////
  84. // CAboutDlg dialog used for App About
  85. class CAboutDlg : public CDialog
  86. {
  87. public:
  88. CAboutDlg();
  89. // Dialog Data
  90. //{{AFX_DATA(CAboutDlg)
  91. enum { IDD = IDD_ABOUTBOX };
  92. //}}AFX_DATA
  93. // ClassWizard generated virtual function overrides
  94. //{{AFX_VIRTUAL(CAboutDlg)
  95. protected:
  96. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  97. //}}AFX_VIRTUAL
  98. // Implementation
  99. protected:
  100. //{{AFX_MSG(CAboutDlg)
  101. // No message handlers
  102. //}}AFX_MSG
  103. DECLARE_MESSAGE_MAP()
  104. };
  105. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  106. {
  107. //{{AFX_DATA_INIT(CAboutDlg)
  108. //}}AFX_DATA_INIT
  109. }
  110. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  111. {
  112. CDialog::DoDataExchange(pDX);
  113. //{{AFX_DATA_MAP(CAboutDlg)
  114. //}}AFX_DATA_MAP
  115. }
  116. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  117. //{{AFX_MSG_MAP(CAboutDlg)
  118. // No message handlers
  119. //}}AFX_MSG_MAP
  120. END_MESSAGE_MAP()
  121. // App command to run the dialog
  122. void CImageProcessingApp::OnAppAbout()
  123. {
  124. CAboutDlg aboutDlg;
  125. aboutDlg.DoModal();
  126. }
  127. /////////////////////////////////////////////////////////////////////////////
  128. // CImageProcessingApp message handlers
  129. void CImageProcessingApp::OnFileOpen() 
  130. {
  131. // TODO: Add your command handler code here
  132. CString strOpenFileType = "位图文件 (*.bmp;*.dib)|*.bmp; *.dib|All Files (*.*)|*.*||";
  133. CFileDialog FileDlg(TRUE, "*.bmp", NULL, OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, strOpenFileType);
  134. if (FileDlg.DoModal() == IDOK)
  135. OpenDocumentFile(FileDlg.m_ofn.lpstrFile);
  136. }