DSplitDoc.cpp
上传用户:hnhlzg
上传日期:2013-10-19
资源大小:289k
文件大小:2k
源码类别:

数学计算

开发平台:

Visual C++

  1. // DSplitDoc.cpp : implementation of the CDSplitDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "DSplit.h"
  5. #include "DSplitDoc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CDSplitDoc
  13. IMPLEMENT_DYNCREATE(CDSplitDoc, CDocument)
  14. BEGIN_MESSAGE_MAP(CDSplitDoc, CDocument)
  15. //{{AFX_MSG_MAP(CDSplitDoc)
  16. ON_COMMAND(ID_FILEOPEN, OnFileopen)
  17. //}}AFX_MSG_MAP
  18. END_MESSAGE_MAP()
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CDSplitDoc construction/destruction
  21. CDSplitDoc::CDSplitDoc()
  22. {
  23. // TODO: add one-time construction code here
  24. statedoc=0;
  25. }
  26. CDSplitDoc::~CDSplitDoc()
  27. {
  28. }
  29. BOOL CDSplitDoc::OnNewDocument()
  30. {
  31. if (!CDocument::OnNewDocument())
  32. return FALSE;
  33. // TODO: add reinitialization code here
  34. // (SDI documents will reuse this document)
  35. return TRUE;
  36. }
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CDSplitDoc serialization
  39. void CDSplitDoc::Serialize(CArchive& ar)
  40. {
  41. if (ar.IsStoring())
  42. {
  43. // TODO: add storing code here
  44. }
  45. else
  46. {
  47. // TODO: add loading code here
  48. }
  49. }
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CDSplitDoc diagnostics
  52. #ifdef _DEBUG
  53. void CDSplitDoc::AssertValid() const
  54. {
  55. CDocument::AssertValid();
  56. }
  57. void CDSplitDoc::Dump(CDumpContext& dc) const
  58. {
  59. CDocument::Dump(dc);
  60. }
  61. #endif //_DEBUG
  62. /////////////////////////////////////////////////////////////////////////////
  63. // CDSplitDoc commands
  64. void CDSplitDoc::OnFileopen() 
  65. {
  66. // TODO: Add your command handler code here
  67. CFileDialog dlg(TRUE,_T("BMP"),_T("*.BMP"),OFN_HIDEREADONLY|OFN_OVERWRITEPROMPT,_T("位图文件(*.BMP)|*.BMP|"));
  68.     if(IDOK==dlg.DoModal ())
  69.     filename.Format ("%s",dlg.GetPathName() );    
  70. CDib.LoadFile(filename);
  71.     CDibNew.LoadFile(filename);
  72. statedoc=1;
  73. }