ColorBtn.h
上传用户:oy0519
上传日期:2008-01-20
资源大小:124k
文件大小:1k
源码类别:

绘图程序

开发平台:

Visual C++

  1. #if !defined(AFX_COLORBUTTIN_H__1E43DD81_D920_11D1_A1F0_0000E8D50680__INCLUDED_)
  2. #define AFX_COLORBUTTIN_H__1E43DD81_D920_11D1_A1F0_0000E8D50680__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // ColorBtn.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CColorButton window
  10. class CColorButton : public CButton
  11. {
  12. // Construction
  13. public:
  14. CColorButton();
  15. // Attributes
  16. public:
  17. COLORREF color;
  18. void SetColor(COLORREF clr) { color = clr; Invalidate(); } 
  19. COLORREF GetColor() { return color; }
  20. // Operations
  21. public:
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CColorButton)
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. public:
  28. virtual ~CColorButton();
  29. // Generated message map functions
  30. protected:
  31. //{{AFX_MSG(CColorButton)
  32. afx_msg void OnPaint();
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. };
  36. /////////////////////////////////////////////////////////////////////////////
  37. //{{AFX_INSERT_LOCATION}}
  38. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  39. #endif // !defined(AFX_COLORBUTTIN_H__1E43DD81_D920_11D1_A1F0_0000E8D50680__INCLUDED_)