BTNCOVW.CPP
上传用户:xyjtyn
上传日期:2007-01-01
资源大小:85k
文件大小:2k
源码类别:

按钮控件

开发平台:

Visual C++

  1. // btncovw.cpp : implementation of the CBtncolorView class
  2. //
  3. #include "stdafx.h"
  4. #include "btncolor.h"
  5. #include "btncodoc.h"
  6. #include "btncovw.h"
  7. #ifdef _DEBUG
  8. #undef THIS_FILE
  9. static char BASED_CODE THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CBtncolorView
  13. IMPLEMENT_DYNCREATE(CBtncolorView, CView)
  14. BEGIN_MESSAGE_MAP(CBtncolorView, CView)
  15. //{{AFX_MSG_MAP(CBtncolorView)
  16. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code!
  18. //}}AFX_MSG_MAP
  19. END_MESSAGE_MAP()
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CBtncolorView construction/destruction
  22. CBtncolorView::CBtncolorView()
  23. {
  24. // TODO: add construction code here
  25. }
  26. CBtncolorView::~CBtncolorView()
  27. {
  28. }
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CBtncolorView drawing
  31. void CBtncolorView::OnDraw(CDC* pDC)
  32. {
  33. CBtncolorDoc* pDoc = GetDocument();
  34. ASSERT_VALID(pDoc);
  35. // TODO: add draw code for native data here
  36. }
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CBtncolorView diagnostics
  39. #ifdef _DEBUG
  40. void CBtncolorView::AssertValid() const
  41. {
  42. CView::AssertValid();
  43. }
  44. void CBtncolorView::Dump(CDumpContext& dc) const
  45. {
  46. CView::Dump(dc);
  47. }
  48. CBtncolorDoc* CBtncolorView::GetDocument() // non-debug version is inline
  49. {
  50. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CBtncolorDoc)));
  51. return (CBtncolorDoc*)m_pDocument;
  52. }
  53. #endif //_DEBUG
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CBtncolorView message handlers