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