1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/x11/palette.cpp
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 * When constructed with the default constructor, we start from
16 * the wxApp::GetMainColormap, allocating additional read-only cells
17 * in Create(). The cells are freed on the next call to Create()
18 * or when the destructor is called.
21 /* Wolfram Gloger <u7y22ab@sunmail.lrz-muenchen.de>
22 I have implemented basic colormap support for the X11 versions of
23 wxWidgets, notably wxPalette::Create(). The way I did it is to
24 allocate additional read-only color cells in the default colormap. In
25 general you will get arbitrary pixel values assigned to these new
26 cells and therefore I added a method wxPalette::TransferBitmap()
27 which maps the pixel values 0..n to the real ones obtained with
28 Create(). This is only implemented for the popular case of 8-bit
31 Allocating read-write color cells would involve installing a private
32 X11 colormap for a particular window, and AFAIK this is not
33 recommended; only the window manager should do this... Also, it is
34 not the functionality that wxPalette::Create() aims to provide.
37 // for compilers that support precompilation, includes "wx.h".
38 #include "wx/wxprec.h"
40 #include "wx/palette.h"
45 #include "wx/window.h"
49 #pragma message disable nosimpint
53 #pragma message enable nosimpint
55 #include "wx/x11/private.h"
57 IMPLEMENT_DYNAMIC_CLASS(wxPalette
, wxGDIObject
)
58 IMPLEMENT_DYNAMIC_CLASS(wxXPalette
, wxObject
)
65 wxXPalette::wxXPalette()
67 m_cmap
= (WXColormap
) 0;
69 m_pix_array
= (unsigned long*) 0;
70 m_display
= (WXDisplay
*) 0;
71 m_destroyable
= false;
74 wxPaletteRefData::wxPaletteRefData()
78 wxPaletteRefData::~wxPaletteRefData()
80 Display
*display
= (Display
*) NULL
;
82 wxList::compatibility_iterator node
, next
;
84 for (node
= m_palettes
.GetFirst(); node
; node
= next
) {
85 wxXPalette
*c
= (wxXPalette
*)node
->GetData();
86 unsigned long *pix_array
= c
->m_pix_array
;
87 Colormap cmap
= (Colormap
) c
->m_cmap
;
88 bool destroyable
= c
->m_destroyable
;
89 int pix_array_n
= c
->m_pix_array_n
;
90 display
= (Display
*) c
->m_display
;
95 // XFreeColors(display, cmap, pix_array, pix_array_n, 0);
96 // Be careful not to free '0' pixels...
98 for(i
=j
=0; i
<pix_array_n
; i
=j
) {
99 while(j
<pix_array_n
&& pix_array
[j
]!=0) j
++;
100 if(j
> i
) XFreeColors(display
, cmap
, &pix_array
[i
], j
-i
, 0);
101 while(j
<pix_array_n
&& pix_array
[j
]==0) j
++;
108 XFreeColormap(display
, cmap
);
110 next
= node
->GetNext();
111 m_palettes
.Erase(node
);
116 wxPalette::wxPalette()
120 wxPalette::wxPalette(int n
, const unsigned char *red
, const unsigned char *green
, const unsigned char *blue
)
122 Create(n
, red
, green
, blue
);
125 wxPalette::~wxPalette()
129 bool wxPalette::Create(int n
, const unsigned char *red
, const unsigned char *green
, const unsigned char *blue
)
137 m_refData
= new wxPaletteRefData
;
140 Display
* display
= (Display
*) wxGetDisplay();
142 unsigned long *pix_array
;
146 cmap
= (Colormap
) wxTheApp
->GetMainColormap(display
);
148 pix_array
= new unsigned long[n
];
153 xcol
.flags
= DoRed
| DoGreen
| DoBlue
;
154 for(int i
= 0; i
< n
; i
++) {
155 xcol
.red
= (unsigned short)red
[i
] << 8;
156 xcol
.green
= (unsigned short)green
[i
] << 8;
157 xcol
.blue
= (unsigned short)blue
[i
] << 8;
158 pix_array
[i
] = (XAllocColor(display
, cmap
, &xcol
) == 0) ? 0 : xcol
.pixel
;
161 wxXPalette
*c
= new wxXPalette
;
163 c
->m_pix_array_n
= pix_array_n
;
164 c
->m_pix_array
= pix_array
;
165 c
->m_cmap
= (WXColormap
) cmap
;
166 c
->m_display
= (WXDisplay
*) display
;
167 c
->m_destroyable
= false;
168 M_PALETTEDATA
->m_palettes
.Append(c
);
173 int wxPalette::GetPixel(unsigned char red
, unsigned char green
, unsigned char blue
) const
182 bool wxPalette::GetRGB(int index
, unsigned char *WXUNUSED(red
), unsigned char *WXUNUSED(green
), unsigned char *WXUNUSED(blue
)) const
187 if (index
< 0 || index
> 255)
194 WXColormap
wxPalette::GetXColormap(WXDisplay
* display
) const
196 if (!M_PALETTEDATA
|| (M_PALETTEDATA
->m_palettes
.GetCount() == 0))
197 return wxTheApp
->GetMainColormap(display
);
199 wxList::compatibility_iterator node
= M_PALETTEDATA
->m_palettes
.GetFirst();
200 if (!display
&& node
)
202 wxXPalette
* p
= (wxXPalette
*) node
->GetData();
207 wxXPalette
* p
= (wxXPalette
*) node
->GetData();
208 if (p
->m_display
== display
)
211 node
= node
->GetNext();
214 /* Make a new one: */
215 wxXPalette
*c
= new wxXPalette
;
216 wxXPalette
*first
= (wxXPalette
*)M_PALETTEDATA
->m_palettes
.GetFirst()->GetData();
218 int pix_array_n
= first
->m_pix_array_n
;
220 c
->m_pix_array_n
= pix_array_n
;
221 c
->m_pix_array
= new unsigned long[pix_array_n
];
222 c
->m_display
= display
;
223 c
->m_cmap
= wxTheApp
->GetMainColormap(display
);
224 c
->m_destroyable
= false;
226 xcol
.flags
= DoRed
| DoGreen
| DoBlue
;
228 for (i
= 0; i
< pix_array_n
; i
++)
230 xcol
.pixel
= first
->m_pix_array
[i
];
231 XQueryColor((Display
*) first
->m_display
, (Colormap
) first
->m_cmap
, &xcol
);
233 (XAllocColor((Display
*) display
, (Colormap
) c
->m_cmap
, &xcol
) == 0) ? 0 : xcol
.pixel
;
236 // wxPalette* nonConstThis = (wxPalette*) this;
238 M_PALETTEDATA
->m_palettes
.Append(c
);
243 bool wxPalette::TransferBitmap(void *data
, int depth
, int size
)
248 unsigned char *uptr
= (unsigned char *)data
;
250 unsigned long *pix_array
= GetXPixArray((Display
*) wxGetDisplay(), &pix_array_n
);
253 if((int)*uptr
< pix_array_n
)
254 *uptr
= (unsigned char)pix_array
[*uptr
];
265 bool wxPalette::TransferBitmap8(unsigned char *data
, unsigned long sz
,
266 void *dest
, unsigned int bpp
)
269 unsigned long *pix_array
= GetXPixArray((Display
*) wxGetDisplay(), &pix_array_n
);
272 unsigned char *dptr
= (unsigned char *)dest
;
274 if((int)*data
< pix_array_n
)
275 *dptr
= (unsigned char)pix_array
[*data
];
282 unsigned short *dptr
= (unsigned short *)dest
;
284 if((int)*data
< pix_array_n
)
285 *dptr
= (unsigned short)pix_array
[*data
];
292 struct rgb24
{ unsigned char r
, g
, b
; } *dptr
= (struct rgb24
*)dest
;
294 if((int)*data
< pix_array_n
) {
295 dptr
->r
= pix_array
[*data
] & 0xFF;
296 dptr
->g
= (pix_array
[*data
] >> 8) & 0xFF;
297 dptr
->b
= (pix_array
[*data
] >> 16) & 0xFF;
305 unsigned long *dptr
= (unsigned long *)dest
;
307 if((int)*data
< pix_array_n
)
308 *dptr
= pix_array
[*data
];
320 unsigned long *wxPalette::GetXPixArray(WXDisplay
*display
, int *n
)
323 return (unsigned long*) 0;
324 wxList::compatibility_iterator node
;
326 for (node
= M_PALETTEDATA
->m_palettes
.GetFirst(); node
; node
= node
->GetNext())
328 wxXPalette
*c
= (wxXPalette
*)node
->GetData();
329 if (c
->m_display
== display
)
332 *n
= c
->m_pix_array_n
;
333 return c
->m_pix_array
;
337 /* Not found; call GetXColormap, which will create it, then this again */
338 if (GetXColormap(display
))
339 return GetXPixArray(display
, n
);
341 return (unsigned long*) 0;
344 void wxPalette::PutXColormap(WXDisplay
* display
, WXColormap cm
, bool dp
)
348 m_refData
= new wxPaletteRefData
;
350 wxXPalette
*c
= new wxXPalette
;
352 c
->m_pix_array_n
= 0;
353 c
->m_pix_array
= (unsigned long*) NULL
;
354 c
->m_display
= display
;
356 c
->m_destroyable
= dp
;
358 M_PALETTEDATA
->m_palettes
.Append(c
);