- wxColour *the_colour = wxTheColourDatabase->FindColour(colour);
- if(the_colour) {
- GLboolean b;
- glGetBooleanv(GL_RGBA_MODE, &b);
- if(b) {
- glColor3ub(the_colour->Red(),
- the_colour->Green(),
- the_colour->Blue());
- } else {
- GLint pix = (GLint)the_colour->m_pixel;
- if(pix == -1) {
- XColor exact_def;
- exact_def.red = (unsigned short)the_colour->Red() << 8;
- exact_def.green = (unsigned short)the_colour->Green() << 8;
- exact_def.blue = (unsigned short)the_colour->Blue() << 8;
- exact_def.flags = DoRed | DoGreen | DoBlue;
- if(!XAllocColor((Display*) m_window->GetXDisplay(),
- (Colormap) wxTheApp->GetMainColormap(m_window->GetXDisplay()),
- &exact_def)) {
- wxDebugMsg("wxGLCanvas: cannot allocate color\n");
- return;
- }
- pix = the_colour->m_pixel = exact_def.pixel;
- }
- glIndexi(pix);
- }
+ wxColour the_colour = wxTheColourDatabase->Find(colour);
+ if(the_colour.Ok())
+ {
+ GLboolean b;
+ glGetBooleanv(GL_RGBA_MODE, &b);
+ if(b)
+ {
+ glColor3ub(the_colour.Red(),
+ the_colour.Green(),
+ the_colour.Blue());
+ }
+ else
+ {
+#ifdef __WXMOTIF__
+ the_colour.AllocColour(m_window->GetXDisplay());
+#else
+ the_colour.CalcPixel(wxTheApp->GetMainColormap(wxGetDisplay()));
+#endif
+ GLint pix = (GLint)the_colour.GetPixel();
+ if(pix == -1)
+ {
+ wxLogError(wxT("wxGLCanvas: cannot allocate color\n"));
+ return;
+ }
+ glIndexi(pix);
+ }