ProgressDemoView.cpp
上传用户:xp758258
上传日期:2007-01-02
资源大小:40k
文件大小:2k
源码类别:

状态条

开发平台:

Visual C++

  1. // ProgressDemoView.cpp : implementation of the CProgressDemoView class
  2. //
  3. #include "stdafx.h"
  4. #include "ProgressDemo.h"
  5. #include "ProgressDemoDoc.h"
  6. #include "ProgressDemoView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CProgressDemoView
  14. IMPLEMENT_DYNCREATE(CProgressDemoView, CView)
  15. BEGIN_MESSAGE_MAP(CProgressDemoView, CView)
  16. //{{AFX_MSG_MAP(CProgressDemoView)
  17. //}}AFX_MSG_MAP
  18. END_MESSAGE_MAP()
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CProgressDemoView construction/destruction
  21. CProgressDemoView::CProgressDemoView()
  22. {
  23. }
  24. CProgressDemoView::~CProgressDemoView()
  25. {
  26. }
  27. BOOL CProgressDemoView::PreCreateWindow(CREATESTRUCT& cs)
  28. {
  29. return CView::PreCreateWindow(cs);
  30. }
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CProgressDemoView drawing
  33. void CProgressDemoView::OnDraw(CDC* pDC)
  34. {
  35. CProgressDemoDoc* pDoc = GetDocument();
  36. ASSERT_VALID(pDoc);
  37. }
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CProgressDemoView diagnostics
  40. #ifdef _DEBUG
  41. void CProgressDemoView::AssertValid() const
  42. {
  43. CView::AssertValid();
  44. }
  45. void CProgressDemoView::Dump(CDumpContext& dc) const
  46. {
  47. CView::Dump(dc);
  48. }
  49. CProgressDemoDoc* CProgressDemoView::GetDocument() // non-debug version is inline
  50. {
  51. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CProgressDemoDoc)));
  52. return (CProgressDemoDoc*)m_pDocument;
  53. }
  54. #endif //_DEBUG
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CProgressDemoView message handlers