]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/classic/colour.h
reset g_SelectionBeforePopup sooner in gtk_popup_hide_callback() to ensure that GetSe...
[wxWidgets.git] / include / wx / mac / classic / colour.h
CommitLineData
52479aef 1/////////////////////////////////////////////////////////////////////////////
edc536d3 2// Name: wx/mac/classic/colour.h
52479aef
SC
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
65571936 9// Licence: wxWindows licence
52479aef
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_COLOUR_H_
13#define _WX_COLOUR_H_
14
52479aef
SC
15#include "wx/object.h"
16#include "wx/string.h"
17
18// Colour
19class WXDLLEXPORT wxColour: public wxObject
20{
21public:
edc536d3
WS
22 // constructors
23 // ------------
24
52479aef 25 // default
edc536d3
WS
26 wxColour() { Init(); }
27
28 // from separate RGB
29 wxColour( unsigned char red, unsigned char green, unsigned char blue )
30 { Set(red, green, blue); }
31
32 // from packed RGB
33 wxColour( unsigned long colRGB )
34 { Set(colRGB); }
52479aef
SC
35
36 // implicit conversion from the colour name
edc536d3
WS
37 wxColour( const wxString &colourName )
38 { InitFromName(colourName); }
39 wxColour( const wxChar *colourName )
40 { InitFromName(colourName); }
52479aef
SC
41
42 // copy ctors and assignment operators
edc536d3
WS
43 wxColour( const wxColour& col );
44 wxColour( const wxColour* col );
45 wxColour& operator = ( const wxColour& col );
52479aef
SC
46
47 // dtor
edc536d3
WS
48 ~wxColour();
49
50 // Set() functions
51 void Set( unsigned char red, unsigned char green, unsigned char blue );
52 void Set( unsigned long colRGB )
53 {
54 // we don't need to know sizeof(long) here because we assume that the three
55 // least significant bytes contain the R, G and B values
56 Set((unsigned char)colRGB,
57 (unsigned char)(colRGB >> 8),
58 (unsigned char)(colRGB >> 16));
59 }
60
61 // accessors
62 bool Ok() const {return m_isInit; }
63
64 unsigned char Red() const { return m_red; }
65 unsigned char Green() const { return m_green; }
66 unsigned char Blue() const { return m_blue; }
67
68 // comparison
69 bool operator == (const wxColour& colour) const
70 {
71 return (m_isInit == colour.m_isInit
72 && m_red == colour.m_red
73 && m_green == colour.m_green
74 && m_blue == colour.m_blue);
75 }
76 bool operator != (const wxColour& colour) const { return !(*this == colour); }
77
78 const WXCOLORREF& GetPixel() const { return m_pixel; };
52479aef
SC
79
80 void InitFromName(const wxString& col);
81
82protected :
83
84 // Helper function
85 void Init();
86
87private:
edc536d3
WS
88 bool m_isInit;
89 unsigned char m_red;
90 unsigned char m_blue;
91 unsigned char m_green;
52479aef
SC
92
93public:
edc536d3
WS
94 WXCOLORREF m_pixel ;
95 void Set( const WXCOLORREF* color ) ;
52479aef
SC
96
97private:
edc536d3 98 DECLARE_DYNAMIC_CLASS(wxColour)
52479aef
SC
99};
100
101#endif
102 // _WX_COLOUR_H_