]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/gtk/colour.cpp
compile fix for Mac
[wxWidgets.git] / src / gtk / colour.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/gtk/colour.cpp
3// Purpose:
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10// For compilers that support precompilation, includes "wx.h".
11#include "wx/wxprec.h"
12
13#include "wx/colour.h"
14
15#include "wx/gtk/private.h"
16
17#include <gdk/gdk.h>
18
19//-----------------------------------------------------------------------------
20// wxColour
21//-----------------------------------------------------------------------------
22
23class wxColourRefData: public wxObjectRefData
24{
25public:
26 wxColourRefData(guint16 red, guint16 green, guint16 blue)
27 {
28 m_color.red =
29 m_red = red;
30 m_color.green =
31 m_green = green;
32 m_color.blue =
33 m_blue = blue;
34 m_color.pixel = 0;
35 m_colormap = NULL;
36 }
37
38 virtual ~wxColourRefData()
39 {
40 FreeColour();
41 }
42
43 void FreeColour();
44 void AllocColour( GdkColormap* cmap );
45
46 GdkColor m_color;
47 GdkColormap *m_colormap;
48 // gdk_colormap_alloc_color may change the RGB values in m_color, so we need separate copies
49 guint16 m_red;
50 guint16 m_green;
51 guint16 m_blue;
52
53 DECLARE_NO_COPY_CLASS(wxColourRefData)
54};
55
56void wxColourRefData::FreeColour()
57{
58 if (m_colormap)
59 {
60 gdk_colormap_free_colors(m_colormap, &m_color, 1);
61 m_colormap = NULL;
62 m_color.pixel = 0;
63 }
64}
65
66void wxColourRefData::AllocColour( GdkColormap *cmap )
67{
68 if (m_colormap != cmap)
69 {
70 FreeColour();
71
72 m_color.red = m_red;
73 m_color.green = m_green;
74 m_color.blue = m_blue;
75 if (gdk_colormap_alloc_color(cmap, &m_color, FALSE, TRUE))
76 {
77 m_colormap = cmap;
78 }
79 }
80}
81
82//-----------------------------------------------------------------------------
83
84#define M_COLDATA wx_static_cast(wxColourRefData*, m_refData)
85
86// GDK's values are in 0..65535 range, ours are in 0..255
87#define SHIFT 8
88
89IMPLEMENT_DYNAMIC_CLASS(wxColour,wxGDIObject)
90
91wxColour::wxColour(const GdkColor& gdkColor)
92{
93 m_refData = new wxColourRefData(gdkColor.red, gdkColor.green, gdkColor.blue);
94}
95
96wxColour::~wxColour()
97{
98}
99
100bool wxColour::operator == ( const wxColour& col ) const
101{
102 if (m_refData == col.m_refData)
103 return true;
104
105 if (!m_refData || !col.m_refData)
106 return false;
107
108 wxColourRefData* refData = M_COLDATA;
109 wxColourRefData* that_refData = wx_static_cast(wxColourRefData*, col.m_refData);
110 return refData->m_red == that_refData->m_red &&
111 refData->m_green == that_refData->m_green &&
112 refData->m_blue == that_refData->m_blue;
113}
114
115void wxColour::InitRGBA(unsigned char red, unsigned char green, unsigned char blue,
116 unsigned char WXUNUSED(alpha))
117{
118 UnRef();
119
120 m_refData = new wxColourRefData(
121 (guint16(red) << SHIFT) + red,
122 (guint16(green) << SHIFT) + green,
123 (guint16(blue) << SHIFT) + blue);
124}
125
126unsigned char wxColour::Red() const
127{
128 wxCHECK_MSG( Ok(), 0, wxT("invalid colour") );
129
130 return wxByte(M_COLDATA->m_red >> SHIFT);
131}
132
133unsigned char wxColour::Green() const
134{
135 wxCHECK_MSG( Ok(), 0, wxT("invalid colour") );
136
137 return wxByte(M_COLDATA->m_green >> SHIFT);
138}
139
140unsigned char wxColour::Blue() const
141{
142 wxCHECK_MSG( Ok(), 0, wxT("invalid colour") );
143
144 return wxByte(M_COLDATA->m_blue >> SHIFT);
145}
146
147void wxColour::CalcPixel( GdkColormap *cmap )
148{
149 if (!Ok()) return;
150
151 M_COLDATA->AllocColour( cmap );
152}
153
154int wxColour::GetPixel() const
155{
156 wxCHECK_MSG( Ok(), 0, wxT("invalid colour") );
157
158 return M_COLDATA->m_color.pixel;
159}
160
161#ifdef __WXGTK24__
162const GdkColor *wxColour::GetColor() const
163#else
164 GdkColor *wxColour::GetColor() const
165#endif
166{
167 wxCHECK_MSG( Ok(), NULL, wxT("invalid colour") );
168
169 return &M_COLDATA->m_color;
170}
171
172bool wxColour::FromString(const wxChar *str)
173{
174 GdkColor colGDK;
175 if ( gdk_color_parse( wxGTK_CONV_SYS( str ), &colGDK ) )
176 {
177 *this = wxColour(colGDK);
178 return true;
179 }
180
181 return wxColourBase::FromString(str);
182}