]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/carbon/colour.h
optimizing for multiple Realize calls in sequence, moving EventHandler push to toolba...
[wxWidgets.git] / include / wx / mac / carbon / colour.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: colour.h
3 // Purpose: wxColour class
4 // Author: Stefan Csomor
5 // Modified by:
6 // Created: 1998-01-01
7 // RCS-ID: $Id$
8 // Copyright: (c) Stefan Csomor
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 #include "wx/string.h"
21
22 // Colour
23 class WXDLLEXPORT wxColour: public wxObject
24 {
25 public:
26 // ctors
27 // default
28 wxColour() { Init(); }
29 // from RGB
30 wxColour( unsigned char red, unsigned char green, unsigned char blue )
31 { Set(red, green, blue); }
32 wxColour( unsigned long colRGB )
33 { Set(colRGB); }
34
35 // implicit conversion from the colour name
36 wxColour( const wxString &colourName )
37 { InitFromName(colourName); }
38 wxColour( const wxChar *colourName )
39 { InitFromName(colourName); }
40
41 // copy ctors and assignment operators
42 wxColour( const wxColour& col );
43 wxColour& operator = ( const wxColour& col );
44
45 // dtor
46 ~wxColour();
47
48 // Set() functions
49 void Set( unsigned char red, unsigned char green, unsigned char blue );
50 void Set( unsigned long colRGB )
51 {
52 // we don't need to know sizeof(long) here because we assume that the three
53 // least significant bytes contain the R, G and B values
54 Set((unsigned char)colRGB,
55 (unsigned char)(colRGB >> 8),
56 (unsigned char)(colRGB >> 16));
57 }
58
59 // accessors
60 bool Ok() const {return m_isInit; }
61
62 unsigned char Red() const { return m_red; }
63 unsigned char Green() const { return m_green; }
64 unsigned char Blue() const { return m_blue; }
65
66 // comparison
67 bool operator == (const wxColour& colour) const
68 {
69 return (m_isInit == colour.m_isInit
70 && m_red == colour.m_red
71 && m_green == colour.m_green
72 && m_blue == colour.m_blue);
73 }
74 bool operator != (const wxColour& colour) const { return !(*this == colour); }
75
76 const WXCOLORREF& GetPixel() const { return m_pixel; };
77
78 void InitFromName(const wxString& col);
79
80 protected :
81
82 // Helper function
83 void Init();
84
85 private:
86 bool m_isInit;
87 unsigned char m_red;
88 unsigned char m_blue;
89 unsigned char m_green;
90
91 public:
92 WXCOLORREF m_pixel ;
93 void Set( const WXCOLORREF* color ) ;
94
95 private:
96 DECLARE_DYNAMIC_CLASS(wxColour)
97 };
98
99 #endif
100 // _WX_COLOUR_H_