myColor.h
资源名称:Shapes.zip [点击查看]
上传用户:wenshuihe
上传日期:2007-01-14
资源大小:10k
文件大小:1k
源码类别:
BREW编程
开发平台:
Visual C++
- // Color.h: interface for the CColor class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(_COLOR_H_)
- #define _COLOR_H_
- #include "AEEDisp.h"
- #define RED MAKE_RGB(255,0,0)
- #define GREEN MAKE_RGB(0,255,0)
- #define BLUE MAKE_RGB(0,0,255)
- #define YELLOW MAKE_RGB(255,255,0)
- #define BLACK MAKE_RGB(0,0,0)
- #define WHITE MAKE_RGB(255,255,255)
- #define TEST MAKE_RGB(64,128,196)
- class CColor
- {
- public:
- CColor(RGBVAL clr);
- void setColor(RGBVAL col);
- uint8 getb() const;
- uint8 getg() const;
- uint8 getr() const;
- CColor();
- ~CColor();
- private:
- RGBVAL m_nCol;
- };
- #endif // !defined(_COLOR_H_)