]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/colour.h
Compilation fixes for wxUSE_STL == 1 and for wxUSE_UNICODE == 1.
[wxWidgets.git] / include / wx / mac / colour.h
CommitLineData
0dbd6262
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: colour.h
3// Purpose: wxColour class
a31a5f85 4// Author: Stefan Csomor
0dbd6262 5// Modified by:
a31a5f85 6// Created: 1998-01-01
0dbd6262 7// RCS-ID: $Id$
a31a5f85 8// Copyright: (c) Stefan Csomor
0dbd6262
SC
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_COLOUR_H_
13#define _WX_COLOUR_H_
14
12028905 15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
0dbd6262
SC
16#pragma interface "colour.h"
17#endif
18
19#include "wx/object.h"
20#include "wx/string.h"
21
22// Colour
23class WXDLLEXPORT wxColour: public wxObject
24{
25public:
26 // ctors
27 // default
564a150b 28 wxColour() { Init(); }
0dbd6262 29 // from RGB
564a150b
VZ
30 wxColour( unsigned char red, unsigned char green, unsigned char blue )
31 { Set(red, green, blue); }
d84afea9 32 wxColour( unsigned long colRGB )
d84afea9 33 { Set(colRGB); }
a789c01d 34
0dbd6262 35 // implicit conversion from the colour name
d84afea9 36 wxColour( const wxString &colourName )
d84afea9 37 { InitFromName(colourName); }
c4e41ce3 38 wxColour( const wxChar *colourName )
d84afea9 39 { InitFromName(colourName); }
0dbd6262
SC
40
41 // copy ctors and assignment operators
42 wxColour( const wxColour& col );
43 wxColour( const wxColour* col );
44 wxColour& operator = ( const wxColour& col );
45
46 // dtor
47 ~wxColour();
48
49 // Set() functions
50 void Set( unsigned char red, unsigned char green, unsigned char blue );
51 void Set( unsigned long colRGB )
52 {
53 // we don't need to know sizeof(long) here because we assume that the three
54 // least significant bytes contain the R, G and B values
55 Set((unsigned char)colRGB,
56 (unsigned char)(colRGB >> 8),
57 (unsigned char)(colRGB >> 16));
58 }
59
60 // accessors
61 bool Ok() const {return m_isInit; }
62
0dbd6262
SC
63 unsigned char Red() const { return m_red; }
64 unsigned char Green() const { return m_green; }
65 unsigned char Blue() const { return m_blue; }
66
67 // comparison
e7549107 68 bool operator == (const wxColour& colour) const
0dbd6262 69 {
318fa698
SC
70 return (m_isInit == colour.m_isInit &&
71 m_red == colour.m_red &&
0dbd6262
SC
72 m_green == colour.m_green &&
73 m_blue == colour.m_blue);
74 }
f8169ce7 75 bool operator != (const wxColour& colour) const { return !(*this == colour); }
0dbd6262
SC
76
77 void InitFromName(const wxString& col);
78
642163b5 79 const WXCOLORREF& GetPixel() const { return m_pixel; };
0dbd6262
SC
80
81private:
82 bool m_isInit;
83 unsigned char m_red;
84 unsigned char m_blue;
85 unsigned char m_green;
86
564a150b
VZ
87 void Init();
88
0dbd6262 89public:
519cb848 90 WXCOLORREF m_pixel ;
5273bf2f 91 void Set( const WXCOLORREF* color ) ;
0dbd6262
SC
92
93private:
94 DECLARE_DYNAMIC_CLASS(wxColour)
95};
96
97#endif
98 // _WX_COLOUR_H_