]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/colour.h
removed WXWIN_COMPATIBILITY and WXWIN_COMPATIBILITY_2
[wxWidgets.git] / include / wx / mac / 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();
29 // from RGB
30 wxColour( unsigned char red, unsigned char green, unsigned char blue );
31 wxColour( unsigned long colRGB )
32 : m_isInit(FALSE), m_red(0), m_blue(0), m_green(0)
33 { Set(colRGB); }
34
35 // implicit conversion from the colour name
36 wxColour( const wxString &colourName )
37 : m_isInit(FALSE), m_red(0), m_blue(0), m_green(0)
38 { InitFromName(colourName); }
39 wxColour( const wxChar *colourName )
40 : m_isInit(FALSE), m_red(0), m_blue(0), m_green(0)
41 { InitFromName(colourName); }
42
43 // copy ctors and assignment operators
44 wxColour( const wxColour& col );
45 wxColour( const wxColour* col );
46 wxColour& operator = ( const wxColour& col );
47
48 // dtor
49 ~wxColour();
50
51 // Set() functions
52 void Set( unsigned char red, unsigned char green, unsigned char blue );
53 void Set( unsigned long colRGB )
54 {
55 // we don't need to know sizeof(long) here because we assume that the three
56 // least significant bytes contain the R, G and B values
57 Set((unsigned char)colRGB,
58 (unsigned char)(colRGB >> 8),
59 (unsigned char)(colRGB >> 16));
60 }
61
62 // accessors
63 bool Ok() const {return m_isInit; }
64
65 unsigned char Red() const { return m_red; }
66 unsigned char Green() const { return m_green; }
67 unsigned char Blue() const { return m_blue; }
68
69 // comparison
70 bool operator == (const wxColour& colour) const
71 {
72 return (m_isInit == colour.m_isInit &&
73 m_red == colour.m_red &&
74 m_green == colour.m_green &&
75 m_blue == colour.m_blue);
76 }
77 bool operator != (const wxColour& colour) const { return !(*this == colour); }
78
79 void InitFromName(const wxString& col);
80
81 const WXCOLORREF& GetPixel() const { return m_pixel; };
82
83 private:
84 bool m_isInit;
85 unsigned char m_red;
86 unsigned char m_blue;
87 unsigned char m_green;
88
89 public:
90 WXCOLORREF m_pixel ;
91 void Set( const WXCOLORREF* color ) ;
92
93 private:
94 DECLARE_DYNAMIC_CLASS(wxColour)
95 };
96
97 #endif
98 // _WX_COLOUR_H_