diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/FbTk/Color.hh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/FbTk/Color.hh b/src/FbTk/Color.hh index e54512c..f9c1600 100644 --- a/src/FbTk/Color.hh +++ b/src/FbTk/Color.hh | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Color.hh,v 1.3 2003/02/23 01:09:02 fluxgen Exp $ | 25 | // $Id: Color.hh,v 1.4 2003/05/10 13:29:13 fluxgen Exp $ |
26 | 26 | ||
27 | #ifndef FBTK_COLOR_HH | 27 | #ifndef FBTK_COLOR_HH |
28 | #define FBTK_COLOR_HH | 28 | #define FBTK_COLOR_HH |
@@ -30,18 +30,19 @@ | |||
30 | #include "NotCopyable.hh" | 30 | #include "NotCopyable.hh" |
31 | 31 | ||
32 | namespace FbTk { | 32 | namespace FbTk { |
33 | /** | 33 | |
34 | Holds rgb color and pixel value | 34 | /// Allocates rgb color and pixel value |
35 | */ | ||
36 | class Color { | 35 | class Color { |
37 | public: | 36 | public: |
38 | Color(); | 37 | Color(); |
39 | explicit Color(unsigned long pixel); | 38 | explicit Color(unsigned long pixel); |
40 | Color(const Color &col_copy); | 39 | Color(const Color &col_copy); |
41 | Color(unsigned short red, unsigned short green, unsigned short blue, int screen); | 40 | Color(unsigned short red, unsigned short green, unsigned short blue, int screen); |
41 | /// parses and sets rgb and pixel value from a string | ||
42 | Color(const char *color_string, int screen); | 42 | Color(const char *color_string, int screen); |
43 | ~Color(); | 43 | ~Color(); |
44 | 44 | ||
45 | /// parses and sets rgb and pixel value from a string | ||
45 | bool setFromString(const char *color_string, int screen); | 46 | bool setFromString(const char *color_string, int screen); |
46 | /// TODO don't like this | 47 | /// TODO don't like this |
47 | void setPixel(unsigned long pixel) { m_pixel = pixel; } | 48 | void setPixel(unsigned long pixel) { m_pixel = pixel; } |