IMAGEVIEW.CPP
上传用户:alisonmail
上传日期:2013-02-28
资源大小:500k
文件大小:4k
源码类别:

图片显示

开发平台:

Visual C++

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