| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: wx/palmos/colour.h |
| 3 | // Purpose: wxColour class |
| 4 | // Author: William Osborne - minimal working wxPalmOS port |
| 5 | // Modified by: |
| 6 | // Created: 10/13/04 |
| 7 | // RCS-ID: $Id$ |
| 8 | // Copyright: (c) William Osborne |
| 9 | // Licence: wxWindows licence |
| 10 | ///////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | #ifndef _WX_COLOUR_H_ |
| 13 | #define _WX_COLOUR_H_ |
| 14 | |
| 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
| 16 | #pragma interface "colour.h" |
| 17 | #endif |
| 18 | |
| 19 | #include "wx/object.h" |
| 20 | |
| 21 | // ---------------------------------------------------------------------------- |
| 22 | // Colour |
| 23 | // ---------------------------------------------------------------------------- |
| 24 | |
| 25 | class WXDLLEXPORT wxColour : public wxObject |
| 26 | { |
| 27 | public: |
| 28 | // constructors |
| 29 | // ------------ |
| 30 | |
| 31 | // default |
| 32 | wxColour() { Init(); } |
| 33 | |
| 34 | // from separate RGB |
| 35 | wxColour( unsigned char red, unsigned char green, unsigned char blue ) |
| 36 | { Set(red, green, blue); } |
| 37 | |
| 38 | // from packed RGB |
| 39 | wxColour( unsigned long colRGB ) { Set(colRGB); } |
| 40 | |
| 41 | // implicit conversion from the colour name |
| 42 | wxColour(const wxString &colourName) { InitFromName(colourName); } |
| 43 | wxColour(const wxChar *colourName) { InitFromName(colourName); } |
| 44 | |
| 45 | |
| 46 | // copy ctors and assignment operators |
| 47 | wxColour(const wxColour& col); |
| 48 | wxColour& operator=( const wxColour& col); |
| 49 | |
| 50 | // dtor |
| 51 | ~wxColour(); |
| 52 | |
| 53 | |
| 54 | // other methods |
| 55 | // ------------- |
| 56 | |
| 57 | // to have the matching Create also for this class |
| 58 | void Create( unsigned char red, unsigned char green, unsigned char blue ) |
| 59 | { Set(red, green, blue); } |
| 60 | |
| 61 | // Set() functions |
| 62 | void Set(unsigned char red, unsigned char green, unsigned char blue); |
| 63 | void Set(unsigned long colRGB) |
| 64 | { |
| 65 | // we don't need to know sizeof(long) here because we assume that the three |
| 66 | // least significant bytes contain the R, G and B values |
| 67 | Set((unsigned char)colRGB, |
| 68 | (unsigned char)(colRGB >> 8), |
| 69 | (unsigned char)(colRGB >> 16)); |
| 70 | } |
| 71 | |
| 72 | // accessors |
| 73 | // --------- |
| 74 | |
| 75 | bool Ok() const { return m_isInit; } |
| 76 | |
| 77 | unsigned char Red() const { return m_red; } |
| 78 | unsigned char Green() const { return m_green; } |
| 79 | unsigned char Blue() const { return m_blue; } |
| 80 | |
| 81 | // comparison |
| 82 | bool operator==(const wxColour& colour) const |
| 83 | { |
| 84 | return m_isInit == colour.m_isInit |
| 85 | && m_red == colour.m_red |
| 86 | && m_green == colour.m_green |
| 87 | && m_blue == colour.m_blue; |
| 88 | } |
| 89 | |
| 90 | bool operator != (const wxColour& colour) const { return !(*this == colour); } |
| 91 | |
| 92 | WXCOLORREF GetPixel() const { return m_pixel; }; |
| 93 | |
| 94 | void InitFromName(const wxString& colourName); |
| 95 | |
| 96 | public: |
| 97 | WXCOLORREF m_pixel; |
| 98 | |
| 99 | protected: |
| 100 | // Helper function |
| 101 | void Init(); |
| 102 | |
| 103 | private: |
| 104 | bool m_isInit; |
| 105 | unsigned char m_red; |
| 106 | unsigned char m_blue; |
| 107 | unsigned char m_green; |
| 108 | |
| 109 | private: |
| 110 | DECLARE_DYNAMIC_CLASS(wxColour) |
| 111 | }; |
| 112 | |
| 113 | #endif |
| 114 | // _WX_COLOUR_H_ |