ex73View.cpp
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:3k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // ex73View.cpp : implementation of the CEx73View class
  2. //
  3. #include "stdafx.h"
  4. #include "ex73.h"
  5. #include "ex73Doc.h"
  6. #include "ex73View.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CEx73View
  14. IMPLEMENT_DYNCREATE(CEx73View, CView)
  15. BEGIN_MESSAGE_MAP(CEx73View, CView)
  16. //{{AFX_MSG_MAP(CEx73View)
  17. ON_COMMAND(ID_FILE_OPEN, OnFileOpen)
  18. ON_COMMAND(ID_FileDlg, OnFileDlg)
  19. //}}AFX_MSG_MAP
  20. // Standard printing commands
  21. ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
  22. ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
  23. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CEx73View construction/destruction
  27. CEx73View::CEx73View()
  28. {
  29. // TODO: add construction code here
  30. }
  31. CEx73View::~CEx73View()
  32. {
  33. }
  34. BOOL CEx73View::PreCreateWindow(CREATESTRUCT& cs)
  35. {
  36. // TODO: Modify the Window class or styles here by modifying
  37. //  the CREATESTRUCT cs
  38. return CView::PreCreateWindow(cs);
  39. }
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CEx73View drawing
  42. void CEx73View::OnDraw(CDC* pDC)
  43. {
  44. CEx73Doc* pDoc = GetDocument();
  45. ASSERT_VALID(pDoc);
  46. // TODO: add draw code for native data here
  47. }
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CEx73View printing
  50. BOOL CEx73View::OnPreparePrinting(CPrintInfo* pInfo)
  51. {
  52. // default preparation
  53. return DoPreparePrinting(pInfo);
  54. }
  55. void CEx73View::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  56. {
  57. // TODO: add extra initialization before printing
  58. }
  59. void CEx73View::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  60. {
  61. // TODO: add cleanup after printing
  62. }
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CEx73View diagnostics
  65. #ifdef _DEBUG
  66. void CEx73View::AssertValid() const
  67. {
  68. CView::AssertValid();
  69. }
  70. void CEx73View::Dump(CDumpContext& dc) const
  71. {
  72. CView::Dump(dc);
  73. }
  74. CEx73Doc* CEx73View::GetDocument() // non-debug version is inline
  75. {
  76. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CEx73Doc)));
  77. return (CEx73Doc*)m_pDocument;
  78. }
  79. #endif //_DEBUG
  80. /////////////////////////////////////////////////////////////////////////////
  81. // CEx73View message handlers
  82. void CEx73View::OnFileOpen() 
  83. {
  84. CString filter="TXT Files(*.txt)|*.txt||";
  85. CFileDialog mydialog(TRUE,0,0, OFN_OVERWRITEPROMPT|OFN_HIDEREADONLY, filter);
  86. if(mydialog.DoModal()==IDOK)
  87. {
  88. CString str=mydialog.GetPathName();
  89. MessageBox(str);
  90. }
  91. }
  92. void CEx73View::OnFileDlg() 
  93. {
  94. CString filter="TXT Files(*.txt)|*.txt||";
  95. CFileDialog mydialog (TRUE, 0, 0,  OFN_OVERWRITEPROMPT | OFN_HIDEREADONLY, filter);
  96. if(mydialog.DoModal()==IDOK)
  97. {
  98. CString str=mydialog.GetPathName();
  99. MessageBox(str); //显示用户选择的路径及全名
  100. }
  101. }