]> git.saurik.com Git - wxWidgets.git/blame - include/wx/motif/colour.h
Applied patch [ 1381895 ] remove circular include dependendcy in wxchar.h
[wxWidgets.git] / include / wx / motif / colour.h
CommitLineData
9b6dbb09 1/////////////////////////////////////////////////////////////////////////////
edc536d3 2// Name: wx/motif/colour.h
9b6dbb09
JS
3// Purpose: wxColour class
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
edc536d3 9// Licence: wxWindows licence
9b6dbb09
JS
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_COLOUR_H_
13#define _WX_COLOUR_H_
14
9b6dbb09
JS
15#include "wx/object.h"
16#include "wx/string.h"
17
18// Colour
e4a81a2e 19class WXDLLEXPORT wxColour : public wxObject
9b6dbb09 20{
83df96d6 21 DECLARE_DYNAMIC_CLASS(wxColour)
9b6dbb09 22public:
edc536d3
WS
23 // constructors
24 // ------------
25
e4a81a2e 26 // default
83df96d6 27 wxColour();
edc536d3
WS
28
29 // from separate RGB
564a150b
VZ
30 wxColour( unsigned char red, unsigned char green, unsigned char blue )
31 { Set(red, green, blue); }
edc536d3
WS
32
33 // from packed RGB
83df96d6 34 wxColour( unsigned long colRGB ) { Set(colRGB); }
aad6765c 35
e4a81a2e 36 // implicit conversion from the colour name
83df96d6
JS
37 wxColour( const wxString &colourName ) { InitFromName(colourName); }
38 wxColour( const char *colourName ) { InitFromName(colourName); }
aad6765c 39
e4a81a2e 40 // copy ctors and assignment operators
83df96d6
JS
41 wxColour( const wxColour& col );
42 wxColour& operator = ( const wxColour& col );
aad6765c 43
e4a81a2e 44 // dtor
83df96d6 45 ~wxColour();
aad6765c 46
83df96d6
JS
47 // Set() functions
48 void Set( unsigned char red, unsigned char green, unsigned char blue );
49 void Set( unsigned long colRGB )
50 {
51 // we don't need to know sizeof(long) here because we assume that the three
52 // least significant bytes contain the R, G and B values
53 Set((unsigned char)colRGB,
54 (unsigned char)(colRGB >> 8),
55 (unsigned char)(colRGB >> 16));
56 }
aad6765c 57
83df96d6
JS
58 // accessors
59 bool Ok() const {return m_isInit; }
60 unsigned char Red() const { return m_red; }
61 unsigned char Green() const { return m_green; }
62 unsigned char Blue() const { return m_blue; }
aad6765c 63
83df96d6 64 int GetPixel() const { return m_pixel; };
aad6765c
JS
65 void SetPixel(int pixel) { m_pixel = pixel; m_isInit = true; };
66
83df96d6 67 inline bool operator == (const wxColour& colour) const { return (m_red == colour.m_red && m_green == colour.m_green && m_blue == colour.m_blue); }
aad6765c 68
83df96d6 69 inline bool operator != (const wxColour& colour) const { return (!(m_red == colour.m_red && m_green == colour.m_green && m_blue == colour.m_blue)); }
c0a83c51
MB
70
71 // Get colour from name or wxNullColour
72 static wxColour CreateByName(const wxString& name);
73
83df96d6 74 // Allocate a colour, or nearest colour, using the given display.
aad6765c 75 // If realloc is true, ignore the existing pixel, otherwise just return
83df96d6
JS
76 // the existing one.
77 // Returns the allocated pixel.
aad6765c 78
83df96d6
JS
79 // TODO: can this handle mono displays? If not, we should have an extra
80 // flag to specify whether this should be black or white by default.
aad6765c
JS
81
82 int AllocColour(WXDisplay* display, bool realloc = false);
83
83df96d6 84 void InitFromName(const wxString& col);
aad6765c
JS
85
86protected:
87 // Helper function
88 void Init();
89
e4a81a2e 90private:
83df96d6
JS
91 bool m_isInit;
92 unsigned char m_red;
93 unsigned char m_blue;
94 unsigned char m_green;
aad6765c 95
e4a81a2e 96public:
83df96d6 97 int m_pixel;
9b6dbb09
JS
98};
99
9b6dbb09 100#endif
83df96d6 101// _WX_COLOUR_H_