FileChangeView.cpp
上传用户:lqt88888
上传日期:2009-12-14
资源大小:905k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // FileChangeView.cpp : implementation of the CFileChangeView class
  2. //
  3. #include "stdafx.h"
  4. #include "FileChange.h"
  5. #include "FileChangeDoc.h"
  6. #include "FileChangeView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CFileChangeView
  14. IMPLEMENT_DYNCREATE(CFileChangeView, CEditView)
  15. BEGIN_MESSAGE_MAP(CFileChangeView, CEditView)
  16. //{{AFX_MSG_MAP(CFileChangeView)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code!
  19. //}}AFX_MSG_MAP
  20. END_MESSAGE_MAP()
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CFileChangeView construction/destruction
  23. CFileChangeView::CFileChangeView()
  24. {
  25. // TODO: add construction code here
  26. }
  27. CFileChangeView::~CFileChangeView()
  28. {
  29. }
  30. BOOL CFileChangeView::PreCreateWindow(CREATESTRUCT& cs)
  31. {
  32. // TODO: Modify the Window class or styles here by modifying
  33. //  the CREATESTRUCT cs
  34. BOOL bPreCreated = CEditView::PreCreateWindow(cs);
  35. cs.style &= ~(ES_AUTOHSCROLL|WS_HSCROLL); // Enable word-wrapping
  36. return bPreCreated;
  37. }
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CFileChangeView drawing
  40. void CFileChangeView::OnDraw(CDC* pDC)
  41. {
  42. CFileChangeDoc* pDoc = GetDocument();
  43. ASSERT_VALID(pDoc);
  44. // TODO: add draw code for native data here
  45. }
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CFileChangeView diagnostics
  48. #ifdef _DEBUG
  49. void CFileChangeView::AssertValid() const
  50. {
  51. CEditView::AssertValid();
  52. }
  53. void CFileChangeView::Dump(CDumpContext& dc) const
  54. {
  55. CEditView::Dump(dc);
  56. }
  57. CFileChangeDoc* CFileChangeView::GetDocument() // non-debug version is inline
  58. {
  59. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CFileChangeDoc)));
  60. return (CFileChangeDoc*)m_pDocument;
  61. }
  62. #endif //_DEBUG
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CFileChangeView message handlers