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

按钮控件

开发平台:

Visual C++

  1. // btncovw.h : interface of the CBtncolorView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. class CBtncolorView : public CView
  5. {
  6. protected: // create from serialization only
  7. CBtncolorView();
  8. DECLARE_DYNCREATE(CBtncolorView)
  9. // Attributes
  10. public:
  11. CBtncolorDoc* GetDocument();
  12. // Operations
  13. public:
  14. // Implementation
  15. public:
  16. virtual ~CBtncolorView();
  17. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  18. #ifdef _DEBUG
  19. virtual void AssertValid() const;
  20. virtual void Dump(CDumpContext& dc) const;
  21. #endif
  22. protected:
  23. // Generated message map functions
  24. protected:
  25. //{{AFX_MSG(CBtncolorView)
  26. // NOTE - the ClassWizard will add and remove member functions here.
  27. //    DO NOT EDIT what you see in these blocks of generated code !
  28. //}}AFX_MSG
  29. DECLARE_MESSAGE_MAP()
  30. };
  31. #ifndef _DEBUG  // debug version in btncovw.cpp
  32. inline CBtncolorDoc* CBtncolorView::GetDocument()
  33.    { return (CBtncolorDoc*)m_pDocument; }
  34. #endif
  35. /////////////////////////////////////////////////////////////////////////////