1 /////////////////////////////////////////////////////////////////////////////
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 wxColourMap::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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
38 #pragma implementation "palette.h"
41 // For compilers that support precompilation, includes "wx.h".
42 #include "wx/wxprec.h"
44 #include "wx/palette.h"
45 #include "wx/window.h"
50 #pragma message disable nosimpint
54 #pragma message enable nosimpint
56 #include "wx/motif/private.h"
58 IMPLEMENT_DYNAMIC_CLASS(wxPalette
, wxGDIObject
)
59 IMPLEMENT_DYNAMIC_CLASS(wxXPalette
, wxObject
)
66 wxXPalette::wxXPalette()
68 m_cmap
= (WXColormap
) 0;
70 m_pix_array
= (unsigned long*) 0;
71 m_display
= (WXDisplay
*) 0;
72 m_destroyable
= FALSE
;
75 wxPaletteRefData::wxPaletteRefData()
79 wxPaletteRefData::~wxPaletteRefData()
81 Display
*display
= (Display
*) NULL
;
83 wxList::compatibility_iterator node
, next
;
85 for (node
= m_palettes
.GetFirst(); node
; node
= next
) {
86 wxXPalette
*c
= (wxXPalette
*)node
->GetData();
87 unsigned long *pix_array
= c
->m_pix_array
;
88 Colormap cmap
= (Colormap
) c
->m_cmap
;
89 bool destroyable
= c
->m_destroyable
;
90 int pix_array_n
= c
->m_pix_array_n
;
91 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
++;
107 XFreeColormap(display
, cmap
);
109 next
= node
->GetNext();
110 m_palettes
.Erase(node
);
115 wxPalette::wxPalette()
119 wxPalette::wxPalette(int n
, const unsigned char *red
, const unsigned char *green
, const unsigned char *blue
)
121 Create(n
, red
, green
, blue
);
124 wxPalette::~wxPalette()
128 bool wxPalette::Create(int n
, const unsigned char *red
, const unsigned char *green
, const unsigned char *blue
)
136 m_refData
= new wxPaletteRefData
;
139 Display
* display
= (Display
*) wxGetDisplay();
141 unsigned long *pix_array
;
145 cmap
= (Colormap
) wxTheApp
->GetMainColormap(display
);
147 pix_array
= new unsigned long[n
];
152 xcol
.flags
= DoRed
| DoGreen
| DoBlue
;
153 for(int i
= 0; i
< n
; i
++) {
154 xcol
.red
= (unsigned short)red
[i
] << 8;
155 xcol
.green
= (unsigned short)green
[i
] << 8;
156 xcol
.blue
= (unsigned short)blue
[i
] << 8;
157 pix_array
[i
] = (XAllocColor(display
, cmap
, &xcol
) == 0) ? 0 : xcol
.pixel
;
160 wxXPalette
*c
= new wxXPalette
;
162 c
->m_pix_array_n
= pix_array_n
;
163 c
->m_pix_array
= pix_array
;
164 c
->m_cmap
= (WXColormap
) cmap
;
165 c
->m_display
= (WXDisplay
*) display
;
166 c
->m_destroyable
= FALSE
;
167 M_PALETTEDATA
->m_palettes
.Append(c
);
172 int wxPalette::GetPixel(const unsigned char red
, const unsigned char green
, const unsigned char blue
) const
181 bool wxPalette::GetRGB(int index
, unsigned char *WXUNUSED(red
), unsigned char *WXUNUSED(green
), unsigned char *WXUNUSED(blue
)) const
186 if (index
< 0 || index
> 255)
193 WXColormap
wxPalette::GetXColormap(WXDisplay
* display
) const
195 if (!M_PALETTEDATA
|| (M_PALETTEDATA
->m_palettes
.GetCount() == 0))
196 return wxTheApp
->GetMainColormap(display
);
198 wxList::compatibility_iterator node
= M_PALETTEDATA
->m_palettes
.GetFirst();
199 if (!display
&& node
)
201 wxXPalette
* p
= (wxXPalette
*) node
->GetData();
206 wxXPalette
* p
= (wxXPalette
*) node
->GetData();
207 if (p
->m_display
== display
)
210 node
= node
->GetNext();
213 /* Make a new one: */
214 wxXPalette
*c
= new wxXPalette
;
216 (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
,
232 (Colormap
) first
->m_cmap
, &xcol
);
234 (XAllocColor((Display
*) display
, (Colormap
) c
->m_cmap
, &xcol
) == 0)
238 // wxPalette* nonConstThis = (wxPalette*) this;
240 M_PALETTEDATA
->m_palettes
.Append(c
);
245 bool wxPalette::TransferBitmap(void *data
, int depth
, int size
)
250 unsigned char *uptr
= (unsigned char *)data
;
252 unsigned long *pix_array
= GetXPixArray((Display
*) wxGetDisplay(), &pix_array_n
);
255 if((int)*uptr
< pix_array_n
)
256 *uptr
= (unsigned char)pix_array
[*uptr
];
267 bool wxPalette::TransferBitmap8(unsigned char *data
, unsigned long sz
,
268 void *dest
, unsigned int bpp
)
271 unsigned long *pix_array
= GetXPixArray((Display
*) wxGetDisplay(), &pix_array_n
);
274 unsigned char *dptr
= (unsigned char *)dest
;
276 if((int)*data
< pix_array_n
)
277 *dptr
= (unsigned char)pix_array
[*data
];
284 unsigned short *dptr
= (unsigned short *)dest
;
286 if((int)*data
< pix_array_n
)
287 *dptr
= (unsigned short)pix_array
[*data
];
294 struct rgb24
{ unsigned char r
, g
, b
; } *dptr
= (struct rgb24
*)dest
;
296 if((int)*data
< pix_array_n
) {
297 dptr
->r
= pix_array
[*data
] & 0xFF;
298 dptr
->g
= (pix_array
[*data
] >> 8) & 0xFF;
299 dptr
->b
= (pix_array
[*data
] >> 16) & 0xFF;
307 unsigned long *dptr
= (unsigned long *)dest
;
309 if((int)*data
< pix_array_n
)
310 *dptr
= pix_array
[*data
];
322 unsigned long *wxPalette::GetXPixArray(WXDisplay
*display
, int *n
)
325 return (unsigned long*) 0;
326 wxList::compatibility_iterator node
;
328 for (node
= M_PALETTEDATA
->m_palettes
.GetFirst(); node
;
329 node
= node
->GetNext())
331 wxXPalette
*c
= (wxXPalette
*)node
->GetData();
332 if (c
->m_display
== display
)
335 *n
= c
->m_pix_array_n
;
336 return c
->m_pix_array
;
340 /* Not found; call GetXColormap, which will create it, then this again */
341 if (GetXColormap(display
))
342 return GetXPixArray(display
, n
);
344 return (unsigned long*) 0;
347 void wxPalette::PutXColormap(WXDisplay
* display
, WXColormap cm
, bool dp
)
351 m_refData
= new wxPaletteRefData
;
353 wxXPalette
*c
= new wxXPalette
;
355 c
->m_pix_array_n
= 0;
356 c
->m_pix_array
= (unsigned long*) NULL
;
357 c
->m_display
= display
;
359 c
->m_destroyable
= dp
;
361 M_PALETTEDATA
->m_palettes
.Append(c
);