]>
git.saurik.com Git - wxWidgets.git/blob - src/x11/colour.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxColour class
4 // Author: Julian Smart, Robert Roebling
8 // Copyright: (c) Julian Smart, Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
14 #pragma implementation "colour.h"
17 #include "wx/gdicmn.h"
20 #include "wx/x11/private.h"
22 //-----------------------------------------------------------------------------
24 //-----------------------------------------------------------------------------
26 class wxColourRefData
: public wxObjectRefData
35 m_colormap
= (WXColormap
*) NULL
;
44 bool operator == (const wxColourRefData
& data
) const
46 return (m_colormap
== data
.m_colormap
&&
47 m_hasPixel
== data
.m_hasPixel
&&
48 m_color
.red
== data
.m_color
.red
&&
49 m_color
.green
== data
.m_color
.green
&&
50 m_color
.blue
== data
.m_color
.blue
&&
51 m_color
.pixel
== data
.m_color
.pixel
);
55 void AllocColour( WXColormap cmap
);
58 WXColormap m_colormap
;
61 friend class wxColour
;
63 // reference counter for systems with <= 8-Bit display
64 static unsigned short colMapAllocCounter
[ 256 ];
67 unsigned short wxColourRefData::colMapAllocCounter
[ 256 ] =
69 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
70 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
71 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
72 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
73 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
74 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
75 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
76 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
77 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
78 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
79 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
80 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
81 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
84 void wxColourRefData::FreeColour()
89 Colormap cm
= (Colormap
)m_colormap
;
91 GdkColormapPrivate
*private_colormap
= (GdkColormapPrivate
*) m_colormap
;
92 if ((private_colormap
->visual
->type
== GDK_VISUAL_GRAYSCALE
) ||
93 (private_colormap
->visual
->type
== GDK_VISUAL_PSEUDO_COLOR
))
95 int idx
= m_color
.pixel
;
96 colMapAllocCounter
[ idx
] = colMapAllocCounter
[ idx
] - 1;
98 if (colMapAllocCounter
[ idx
] == 0)
99 gdk_colormap_free_colors( m_colormap
, &m_color
, 1 );
105 void wxColourRefData::AllocColour( WXColormap cmap
)
107 if (m_hasPixel
&& (m_colormap
== cmap
))
113 GdkColormapPrivate
*private_colormap
= (GdkColormapPrivate
*) cmap
;
114 if ((private_colormap
->visual
->type
== GDK_VISUAL_GRAYSCALE
) ||
115 (private_colormap
->visual
->type
== GDK_VISUAL_PSEUDO_COLOR
))
117 m_hasPixel
= gdk_colormap_alloc_color( cmap
, &m_color
, FALSE
, TRUE
);
118 int idx
= m_color
.pixel
;
119 colMapAllocCounter
[ idx
] = colMapAllocCounter
[ idx
] + 1;
124 m_hasPixel
= XAllocColor( wxGlobalDisplay(), (Colormap
) cmap
, &m_color
);
129 //-----------------------------------------------------------------------------
131 #define M_COLDATA ((wxColourRefData *)m_refData)
133 #define SHIFT (8*(sizeof(short int)-sizeof(char)))
135 IMPLEMENT_DYNAMIC_CLASS(wxColour
,wxGDIObject
)
137 wxColour::wxColour( unsigned char red
, unsigned char green
, unsigned char blue
)
139 m_refData
= new wxColourRefData();
140 M_COLDATA
->m_color
.red
= ((unsigned short)red
) << SHIFT
;
141 M_COLDATA
->m_color
.green
= ((unsigned short)green
) << SHIFT
;
142 M_COLDATA
->m_color
.blue
= ((unsigned short)blue
) << SHIFT
;
143 M_COLDATA
->m_color
.pixel
= 0;
146 void wxColour::InitFromName( const wxString
&colourName
)
148 wxNode
*node
= (wxNode
*) NULL
;
149 if ( (wxTheColourDatabase
) && (node
= wxTheColourDatabase
->Find(colourName
)) )
151 wxColour
*col
= (wxColour
*)node
->Data();
153 if (col
) Ref( *col
);
157 m_refData
= new wxColourRefData();
159 M_COLDATA
->m_colormap
= wxTheApp
->GetMainColormap( wxGlobalDisplay() );
161 if (!XParseColor( wxGlobalDisplay(), (Colormap
) M_COLDATA
->m_colormap
, colourName
.mb_str(), &M_COLDATA
->m_color
))
163 // VZ: asserts are good in general but this one is triggered by
164 // calling wxColourDatabase::FindColour() with an
165 // unrecognized colour name and this can't be avoided from the
166 // user code, so don't give it here
168 // a better solution would be to changed code in FindColour()
170 //wxFAIL_MSG( wxT("wxColour: couldn't find colour") );
173 m_refData
= (wxObjectRefData
*) NULL
;
178 wxColour::~wxColour()
182 bool wxColour::operator == ( const wxColour
& col
) const
184 if (m_refData
== col
.m_refData
) return TRUE
;
186 if (!m_refData
|| !col
.m_refData
) return FALSE
;
188 XColor
*own
= &(((wxColourRefData
*)m_refData
)->m_color
);
189 XColor
*other
= &(((wxColourRefData
*)col
.m_refData
)->m_color
);
190 if (own
->red
!= other
->red
) return FALSE
;
191 if (own
->blue
!= other
->blue
) return FALSE
;
192 if (own
->green
!= other
->green
) return FALSE
;
197 wxObjectRefData
*wxColour::CreateRefData() const
199 return new wxColourRefData
;
202 wxObjectRefData
*wxColour::CloneRefData(const wxObjectRefData
*data
) const
204 return new wxColourRefData(*(wxColourRefData
*)data
);
207 void wxColour::Set( unsigned char red
, unsigned char green
, unsigned char blue
)
211 m_refData
= new wxColourRefData();
212 M_COLDATA
->m_color
.red
= ((unsigned short)red
) << SHIFT
;
213 M_COLDATA
->m_color
.green
= ((unsigned short)green
) << SHIFT
;
214 M_COLDATA
->m_color
.blue
= ((unsigned short)blue
) << SHIFT
;
215 M_COLDATA
->m_color
.pixel
= 0;
218 unsigned char wxColour::Red() const
220 wxCHECK_MSG( Ok(), 0, wxT("invalid colour") );
222 return (unsigned char)(M_COLDATA
->m_color
.red
>> SHIFT
);
225 unsigned char wxColour::Green() const
227 wxCHECK_MSG( Ok(), 0, wxT("invalid colour") );
229 return (unsigned char)(M_COLDATA
->m_color
.green
>> SHIFT
);
232 unsigned char wxColour::Blue() const
234 wxCHECK_MSG( Ok(), 0, wxT("invalid colour") );
236 return (unsigned char)(M_COLDATA
->m_color
.blue
>> SHIFT
);
239 void wxColour::CalcPixel( WXColormap cmap
)
241 wxCHECK_RET( Ok(), wxT("invalid colour") );
243 wxCHECK_RET( cmap
, wxT("invalid colormap") );
245 M_COLDATA
->AllocColour( cmap
);
248 unsigned long wxColour::GetPixel() const
250 wxCHECK_MSG( Ok(), 0, wxT("invalid colour") );
252 return M_COLDATA
->m_color
.pixel
;
255 WXColor
*wxColour::GetColor() const
257 wxCHECK_MSG( Ok(), (WXColor
*) NULL
, wxT("invalid colour") );
259 return (WXColor
*) &M_COLDATA
->m_color
;