]> git.saurik.com Git - wxWidgets.git/blame - src/msw/bitmap.cpp
wxListCtrl custom drawing seems to work
[wxWidgets.git] / src / msw / bitmap.cpp
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: bitmap.cpp
3// Purpose: wxBitmap
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
1d792928 9// Licence: wxWindows license
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
10fcf31a
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
2bda0e17 20#ifdef __GNUG__
10fcf31a 21 #pragma implementation "bitmap.h"
2bda0e17
KB
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
10fcf31a 28 #pragma hdrstop
2bda0e17
KB
29#endif
30
31#ifndef WX_PRECOMP
10fcf31a
VZ
32 #include <stdio.h>
33
34 #include "wx/list.h"
35 #include "wx/utils.h"
36 #include "wx/app.h"
37 #include "wx/palette.h"
38 #include "wx/dcmemory.h"
39 #include "wx/bitmap.h"
40 #include "wx/icon.h"
2bda0e17
KB
41#endif
42
43#include "wx/msw/private.h"
1d792928
VZ
44#include "wx/log.h"
45
2bda0e17 46#include "wx/msw/dib.h"
b75dd496 47#include "wx/image.h"
2bda0e17 48
10fcf31a
VZ
49// ----------------------------------------------------------------------------
50// macros
51// ----------------------------------------------------------------------------
52
2bda0e17 53#if !USE_SHARED_LIBRARIES
10fcf31a
VZ
54 IMPLEMENT_DYNAMIC_CLASS(wxBitmap, wxGDIObject)
55 IMPLEMENT_DYNAMIC_CLASS(wxMask, wxObject)
6d167489
VZ
56
57 IMPLEMENT_DYNAMIC_CLASS(wxBitmapHandler, wxObject)
2bda0e17
KB
58#endif
59
10fcf31a
VZ
60// ============================================================================
61// implementation
62// ============================================================================
63
64// ----------------------------------------------------------------------------
65// wxBitmapRefData
66// ----------------------------------------------------------------------------
67
68wxBitmapRefData::wxBitmapRefData()
2bda0e17 69{
6d167489
VZ
70 m_quality = 0;
71 m_selectedInto = NULL;
72 m_numColors = 0;
73 m_bitmapMask = NULL;
2bda0e17
KB
74}
75
6d167489 76void wxBitmapRefData::Free()
2bda0e17 77{
d59ceba5
VZ
78 wxASSERT_MSG( !m_selectedInto,
79 wxT("deleting bitmap still selected into wxMemoryDC") );
2bda0e17 80
d59ceba5 81 if ( m_hBitmap)
6d167489
VZ
82 {
83 if ( !::DeleteObject((HBITMAP)m_hBitmap) )
84 {
85 wxLogLastError("DeleteObject(hbitmap)");
86 }
87 }
e7003166 88
6d167489
VZ
89 delete m_bitmapMask;
90 m_bitmapMask = NULL;
2bda0e17
KB
91}
92
10fcf31a 93// ----------------------------------------------------------------------------
6d167489 94// wxBitmap creation
10fcf31a
VZ
95// ----------------------------------------------------------------------------
96
4fe5383d
VZ
97// this function should be called from all wxBitmap ctors
98void wxBitmap::Init()
2bda0e17 99{
4fe5383d 100 // m_refData = NULL; done in the base class ctor
2bda0e17 101
07cf98cb
VZ
102 if ( wxTheBitmapList )
103 wxTheBitmapList->AddBitmap(this);
4fe5383d
VZ
104}
105
6d167489
VZ
106#ifdef __WIN32__
107
108bool wxBitmap::CopyFromIconOrCursor(const wxGDIImage& icon)
109{
110 // it may be either HICON or HCURSOR
111 HICON hicon = (HICON)icon.GetHandle();
112
113 ICONINFO iconInfo;
114 if ( !::GetIconInfo(hicon, &iconInfo) )
115 {
116 wxLogLastError("GetIconInfo");
117
118 return FALSE;
119 }
120
121 wxBitmapRefData *refData = new wxBitmapRefData;
122 m_refData = refData;
123
124 refData->m_width = icon.GetWidth();
125 refData->m_height = icon.GetHeight();
126 refData->m_depth = wxDisplayDepth();
127
128 refData->m_hBitmap = (WXHBITMAP)iconInfo.hbmColor;
129 refData->m_bitmapMask = new wxMask((WXHBITMAP)iconInfo.hbmMask);
130
131#if WXWIN_COMPATIBILITY_2
132 refData->m_ok = TRUE;
133#endif // WXWIN_COMPATIBILITY_2
134
135 return TRUE;
136}
137
138#endif // Win32
139
140bool wxBitmap::CopyFromCursor(const wxCursor& cursor)
4fe5383d
VZ
141{
142 UnRef();
07cf98cb 143
6d167489 144 if ( !cursor.Ok() )
4fe5383d 145 return FALSE;
07cf98cb 146
6d167489
VZ
147#ifdef __WIN16__
148 wxFAIL_MSG( _T("don't know how to convert cursor to bitmap") );
149
150 return FALSE;
151#endif // Win16
152
153 return CopyFromIconOrCursor(cursor);
154}
155
156bool wxBitmap::CopyFromIcon(const wxIcon& icon)
157{
158 UnRef();
07cf98cb 159
6d167489
VZ
160 if ( !icon.Ok() )
161 return FALSE;
4fe5383d
VZ
162
163 // GetIconInfo() doesn't exist under Win16 and I don't know any other way
164 // to create a bitmap from icon there - but using this way we won't have
165 // the mask (FIXME)
166#ifdef __WIN16__
6d167489
VZ
167 int width = icon.GetWidth(),
168 height = icon.GetHeight();
169
4fe5383d 170 // copy the icon to the bitmap
6d167489 171 ScreenHDC hdcScreen;
4fe5383d
VZ
172 HDC hdc = ::CreateCompatibleDC(hdcScreen);
173 HBITMAP hbitmap = ::CreateCompatibleBitmap(hdcScreen, width, height);
07cf98cb
VZ
174 HBITMAP hbmpOld = (HBITMAP)::SelectObject(hdc, hbitmap);
175
6d167489 176 ::DrawIcon(hdc, 0, 0, GetHiconOf(icon));
07cf98cb
VZ
177
178 ::SelectObject(hdc, hbmpOld);
179 ::DeleteDC(hdc);
4fe5383d 180
6d167489
VZ
181 wxBitmapRefData *refData = new wxBitmapRefData;
182 m_refData = refData;
4fe5383d 183
6d167489
VZ
184 refData->m_width = width;
185 refData->m_height = height;
186 refData->m_depth = wxDisplayDepth();
07cf98cb 187
6d167489 188 refData->m_hBitmap = (WXHBITMAP)hbitmap;
07cf98cb 189
6d167489
VZ
190#if WXWIN_COMPATIBILITY_2
191 refData->m_ok = TRUE;
192#endif // WXWIN_COMPATIBILITY_2
222594ea 193
4fe5383d 194 return TRUE;
6d167489
VZ
195#else // Win32
196 return CopyFromIconOrCursor(icon);
197#endif // Win16/Win32
10fcf31a
VZ
198}
199
200wxBitmap::~wxBitmap()
2bda0e17
KB
201{
202 if (wxTheBitmapList)
203 wxTheBitmapList->DeleteObject(this);
204}
205
debe6624 206wxBitmap::wxBitmap(const char bits[], int the_width, int the_height, int no_bits)
2bda0e17 207{
4fe5383d 208 Init();
2bda0e17 209
6d167489
VZ
210 wxBitmapRefData *refData = new wxBitmapRefData;
211 m_refData = refData;
2bda0e17 212
6d167489
VZ
213 refData->m_width = the_width;
214 refData->m_height = the_height;
215 refData->m_depth = no_bits;
216 refData->m_numColors = 0;
217 refData->m_selectedInto = NULL;
2bda0e17 218
6d167489
VZ
219 HBITMAP hbmp = ::CreateBitmap(the_width, the_height, 1, no_bits, bits);
220 if ( !hbmp )
221 {
222 wxLogLastError("CreateBitmap");
223 }
2bda0e17 224
6d167489 225 SetHBITMAP((WXHBITMAP)hbmp);
2bda0e17
KB
226}
227
2fd284a4 228// Create from XPM data
03ab016d 229wxBitmap::wxBitmap(char **data, wxControl *WXUNUSED(anItem))
2fd284a4 230{
4fe5383d
VZ
231 Init();
232
233 (void)Create((void *)data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0);
2fd284a4
JS
234}
235
debe6624 236wxBitmap::wxBitmap(int w, int h, int d)
2bda0e17 237{
4fe5383d 238 Init();
2bda0e17 239
4fe5383d 240 (void)Create(w, h, d);
2bda0e17
KB
241}
242
debe6624 243wxBitmap::wxBitmap(void *data, long type, int width, int height, int depth)
2bda0e17 244{
4fe5383d 245 Init();
2bda0e17 246
6d167489 247 (void)Create(data, type, width, height, depth);
2bda0e17
KB
248}
249
debe6624 250wxBitmap::wxBitmap(const wxString& filename, long type)
2bda0e17 251{
4fe5383d 252 Init();
2bda0e17 253
4fe5383d 254 LoadFile(filename, (int)type);
2bda0e17
KB
255}
256
debe6624 257bool wxBitmap::Create(int w, int h, int d)
2bda0e17 258{
6d167489
VZ
259 UnRef();
260
261 m_refData = new wxBitmapRefData;
262
263 GetBitmapData()->m_width = w;
264 GetBitmapData()->m_height = h;
265 GetBitmapData()->m_depth = d;
266
267 HBITMAP hbmp;
268
269 if ( d > 0 )
270 {
271 hbmp = ::CreateBitmap(w, h, 1, d, NULL);
272 if ( !hbmp )
273 {
274 wxLogLastError("CreateBitmap");
275 }
276 }
277 else
278 {
279 ScreenHDC dc;
280 hbmp = ::CreateCompatibleBitmap(dc, w, h);
281 if ( !hbmp )
282 {
283 wxLogLastError("CreateCompatibleBitmap");
284 }
285
286 GetBitmapData()->m_depth = wxDisplayDepth();
287 }
2bda0e17 288
6d167489 289 SetHBITMAP((WXHBITMAP)hbmp);
2bda0e17 290
6d167489
VZ
291#if WXWIN_COMPATIBILITY_2
292 GetBitmapData()->m_ok = hbmp != 0;
293#endif // WXWIN_COMPATIBILITY_2
2bda0e17 294
6d167489 295 return Ok();
2bda0e17
KB
296}
297
debe6624 298bool wxBitmap::LoadFile(const wxString& filename, long type)
2bda0e17 299{
6d167489 300 UnRef();
2bda0e17 301
6d167489 302 wxBitmapHandler *handler = wxDynamicCast(FindHandler(type), wxBitmapHandler);
2bda0e17 303
6d167489
VZ
304 if ( handler )
305 {
306 m_refData = new wxBitmapRefData;
2bda0e17 307
6d167489
VZ
308 return handler->LoadFile(this, filename, type, -1, -1);
309 }
310 else
b75dd496 311 {
6d167489
VZ
312 wxImage image;
313 if ( !image.LoadFile( filename, type ) || !image.Ok() )
314 return FALSE;
315
b75dd496 316 *this = image.ConvertToBitmap();
6d167489 317
b75dd496
VS
318 return TRUE;
319 }
2bda0e17
KB
320}
321
debe6624 322bool wxBitmap::Create(void *data, long type, int width, int height, int depth)
2bda0e17 323{
6d167489 324 UnRef();
2bda0e17 325
6d167489 326 wxBitmapHandler *handler = wxDynamicCast(FindHandler(type), wxBitmapHandler);
2bda0e17 327
6d167489
VZ
328 if ( !handler )
329 {
330 wxLogDebug(wxT("Failed to create bitmap: no bitmap handler for "
331 "type %d defined."), type);
2bda0e17 332
6d167489
VZ
333 return FALSE;
334 }
1d792928 335
6d167489 336 m_refData = new wxBitmapRefData;
1d792928 337
6d167489 338 return handler->Create(this, data, type, width, height, depth);
2bda0e17
KB
339}
340
debe6624 341bool wxBitmap::SaveFile(const wxString& filename, int type, const wxPalette *palette)
2bda0e17 342{
6d167489 343 wxBitmapHandler *handler = wxDynamicCast(FindHandler(type), wxBitmapHandler);
2bda0e17 344
6d167489
VZ
345 if ( handler )
346 {
347 return handler->SaveFile(this, filename, type, palette);
348 }
349 else
350 {
351 // FIXME what about palette? shouldn't we use it?
352 wxImage image( *this );
353 if (!image.Ok())
354 return FALSE;
2bda0e17 355
6d167489
VZ
356 return image.SaveFile( filename, type );
357 }
2bda0e17
KB
358}
359
6d167489
VZ
360// ----------------------------------------------------------------------------
361// wxBitmap accessors
362// ----------------------------------------------------------------------------
2bda0e17
KB
363
364void wxBitmap::SetQuality(int q)
365{
6d167489 366 EnsureHasData();
2bda0e17 367
6d167489 368 GetBitmapData()->m_quality = q;
2bda0e17
KB
369}
370
6d167489 371#if WXWIN_COMPATIBILITY_2
2bda0e17
KB
372void wxBitmap::SetOk(bool isOk)
373{
6d167489 374 EnsureHasData();
2bda0e17 375
6d167489 376 GetBitmapData()->m_ok = isOk;
2bda0e17 377}
6d167489 378#endif // WXWIN_COMPATIBILITY_2
2bda0e17
KB
379
380void wxBitmap::SetPalette(const wxPalette& palette)
381{
6d167489 382 EnsureHasData();
2bda0e17 383
6d167489 384 GetBitmapData()->m_bitmapPalette = palette;
2bda0e17
KB
385}
386
387void wxBitmap::SetMask(wxMask *mask)
388{
6d167489 389 EnsureHasData();
2bda0e17 390
6d167489 391 GetBitmapData()->m_bitmapMask = mask;
2bda0e17
KB
392}
393
7b46ecac
JS
394// Creates a bitmap that matches the device context, from
395// an arbitray bitmap. At present, the original bitmap must have an
396// associated palette. TODO: use a default palette if no palette exists.
397// Contributed by Frederic Villeneuve <frederic.villeneuve@natinst.com>
398wxBitmap wxBitmap::GetBitmapForDC(wxDC& dc) const
399{
400 wxMemoryDC memDC;
401 wxBitmap tmpBitmap(this->GetWidth(), this->GetHeight(), dc.GetDepth());
57c208c5 402 HPALETTE hPal = (HPALETTE) NULL;
7b46ecac 403 LPBITMAPINFO lpDib;
57c208c5 404 void *lpBits = (void*) NULL;
7b46ecac 405
6d167489 406 if( GetPalette() && GetPalette()->Ok() )
a367b9b3 407 {
6d167489 408 tmpBitmap.SetPalette(*GetPalette());
a367b9b3 409 memDC.SelectObject(tmpBitmap);
6d167489
VZ
410 memDC.SetPalette(*GetPalette());
411 hPal = (HPALETTE)GetPalette()->GetHPALETTE();
a367b9b3
JS
412 }
413 else
414 {
415 hPal = (HPALETTE) ::GetStockObject(DEFAULT_PALETTE);
416 wxPalette palette;
417 palette.SetHPALETTE( (WXHPALETTE)hPal );
418 tmpBitmap.SetPalette( palette );
419 memDC.SelectObject(tmpBitmap);
420 memDC.SetPalette( palette );
421 }
7b46ecac 422
6d167489
VZ
423 // set the height negative because in a DIB the order of the lines is
424 // reversed
425 if ( !wxCreateDIB(GetWidth(), -GetHeight(), GetDepth(), hPal, &lpDib) )
426 {
427 return wxNullBitmap;
428 }
7b46ecac
JS
429
430 lpBits = malloc(lpDib->bmiHeader.biSizeImage);
431
6d167489 432 ::GetBitmapBits(GetHbitmap(), lpDib->bmiHeader.biSizeImage, lpBits);
7b46ecac 433
6d167489
VZ
434 ::SetDIBitsToDevice(GetHdcOf(memDC), 0, 0,
435 GetWidth(), GetHeight(),
436 0, 0, 0, GetHeight(),
437 lpBits, lpDib, DIB_RGB_COLORS);
7b46ecac
JS
438
439 free(lpBits);
440
6d167489
VZ
441 wxFreeDIB(lpDib);
442
443 return tmpBitmap;
7b46ecac
JS
444}
445
6d167489
VZ
446// ----------------------------------------------------------------------------
447// wxMask
448// ----------------------------------------------------------------------------
2bda0e17 449
10fcf31a 450wxMask::wxMask()
2bda0e17
KB
451{
452 m_maskBitmap = 0;
453}
454
455// Construct a mask from a bitmap and a colour indicating
456// the transparent area
457wxMask::wxMask(const wxBitmap& bitmap, const wxColour& colour)
458{
459 m_maskBitmap = 0;
6d167489 460 Create(bitmap, colour);
2bda0e17
KB
461}
462
463// Construct a mask from a bitmap and a palette index indicating
464// the transparent area
debe6624 465wxMask::wxMask(const wxBitmap& bitmap, int paletteIndex)
2bda0e17
KB
466{
467 m_maskBitmap = 0;
6d167489 468 Create(bitmap, paletteIndex);
2bda0e17
KB
469}
470
471// Construct a mask from a mono bitmap (copies the bitmap).
472wxMask::wxMask(const wxBitmap& bitmap)
473{
474 m_maskBitmap = 0;
6d167489 475 Create(bitmap);
2bda0e17
KB
476}
477
10fcf31a 478wxMask::~wxMask()
2bda0e17
KB
479{
480 if ( m_maskBitmap )
481 ::DeleteObject((HBITMAP) m_maskBitmap);
482}
483
484// Create a mask from a mono bitmap (copies the bitmap).
485bool wxMask::Create(const wxBitmap& bitmap)
486{
487 if ( m_maskBitmap )
6d167489
VZ
488 {
489 ::DeleteObject((HBITMAP) m_maskBitmap);
490 m_maskBitmap = 0;
491 }
492 if (!bitmap.Ok() || bitmap.GetDepth() != 1)
493 {
494 return FALSE;
495 }
496 m_maskBitmap = (WXHBITMAP) CreateBitmap(
497 bitmap.GetWidth(),
498 bitmap.GetHeight(),
499 1, 1, 0
500 );
501 HDC srcDC = CreateCompatibleDC(0);
502 SelectObject(srcDC, (HBITMAP) bitmap.GetHBITMAP());
503 HDC destDC = CreateCompatibleDC(0);
504 SelectObject(destDC, (HBITMAP) m_maskBitmap);
505 BitBlt(destDC, 0, 0, bitmap.GetWidth(), bitmap.GetHeight(), srcDC, 0, 0, SRCCOPY);
506 SelectObject(srcDC, 0);
507 DeleteDC(srcDC);
508 SelectObject(destDC, 0);
509 DeleteDC(destDC);
510 return TRUE;
2bda0e17
KB
511}
512
513// Create a mask from a bitmap and a palette index indicating
514// the transparent area
debe6624 515bool wxMask::Create(const wxBitmap& bitmap, int paletteIndex)
2bda0e17
KB
516{
517 if ( m_maskBitmap )
1d792928 518 {
6d167489
VZ
519 ::DeleteObject((HBITMAP) m_maskBitmap);
520 m_maskBitmap = 0;
1d792928 521 }
6d167489
VZ
522 if (bitmap.Ok() && bitmap.GetPalette()->Ok())
523 {
524 unsigned char red, green, blue;
525 if (bitmap.GetPalette()->GetRGB(paletteIndex, &red, &green, &blue))
526 {
527 wxColour transparentColour(red, green, blue);
528 return Create(bitmap, transparentColour);
529 }
530 }
531 return FALSE;
2bda0e17
KB
532}
533
534// Create a mask from a bitmap and a colour indicating
535// the transparent area
536bool wxMask::Create(const wxBitmap& bitmap, const wxColour& colour)
537{
538 if ( m_maskBitmap )
1d792928 539 {
6d167489
VZ
540 ::DeleteObject((HBITMAP) m_maskBitmap);
541 m_maskBitmap = 0;
542 }
543 if (!bitmap.Ok())
544 {
545 return FALSE;
1d792928 546 }
2bda0e17 547
6d167489
VZ
548 // scan the bitmap for the transparent colour and set
549 // the corresponding pixels in the mask to BLACK and
550 // the rest to WHITE
551 COLORREF maskColour = RGB(colour.Red(), colour.Green(), colour.Blue());
552 m_maskBitmap = (WXHBITMAP) ::CreateBitmap(
553 bitmap.GetWidth(),
554 bitmap.GetHeight(),
555 1, 1, 0
556 );
557 HDC srcDC = ::CreateCompatibleDC(0);
558 ::SelectObject(srcDC, (HBITMAP) bitmap.GetHBITMAP());
559 HDC destDC = ::CreateCompatibleDC(0);
560 ::SelectObject(destDC, (HBITMAP) m_maskBitmap);
561
562 // this is not very efficient, but I can't think
563 // of a better way of doing it
564 for (int w = 0; w < bitmap.GetWidth(); w++)
2bda0e17 565 {
6d167489 566 for (int h = 0; h < bitmap.GetHeight(); h++)
c793fa87 567 {
6d167489
VZ
568 COLORREF col = GetPixel(srcDC, w, h);
569 if (col == maskColour)
570 {
571 ::SetPixel(destDC, w, h, RGB(0, 0, 0));
572 }
573 else
574 {
575 ::SetPixel(destDC, w, h, RGB(255, 255, 255));
576 }
c793fa87 577 }
2bda0e17 578 }
6d167489
VZ
579 ::SelectObject(srcDC, 0);
580 ::DeleteDC(srcDC);
581 ::SelectObject(destDC, 0);
582 ::DeleteDC(destDC);
583 return TRUE;
584}
585
586// ----------------------------------------------------------------------------
587// wxBitmapHandler
588// ----------------------------------------------------------------------------
1d792928 589
6d167489
VZ
590bool wxBitmapHandler::Create(wxGDIImage *image,
591 void *data,
592 long flags,
593 int width, int height, int depth)
594{
595 wxBitmap *bitmap = wxDynamicCast(image, wxBitmap);
1d792928 596
6d167489 597 return bitmap ? Create(bitmap, data, width, height, depth) : FALSE;
2bda0e17
KB
598}
599
6d167489
VZ
600bool wxBitmapHandler::Load(wxGDIImage *image,
601 const wxString& name,
602 long flags,
603 int width, int height)
2bda0e17 604{
6d167489 605 wxBitmap *bitmap = wxDynamicCast(image, wxBitmap);
2bda0e17 606
6d167489
VZ
607 return bitmap ? LoadFile(bitmap, name, flags, width, height) : FALSE;
608}
2bda0e17 609
6d167489
VZ
610bool wxBitmapHandler::Save(wxGDIImage *image,
611 const wxString& name,
612 int type)
2bda0e17 613{
6d167489
VZ
614 wxBitmap *bitmap = wxDynamicCast(image, wxBitmap);
615
616 return bitmap ? SaveFile(bitmap, name, type) : FALSE;
2bda0e17
KB
617}
618
6d167489
VZ
619bool wxBitmapHandler::Create(wxBitmap *WXUNUSED(bitmap),
620 void *WXUNUSED(data),
621 long WXUNUSED(type),
622 int WXUNUSED(width),
623 int WXUNUSED(height),
624 int WXUNUSED(depth))
2bda0e17 625{
6d167489 626 return FALSE;
2bda0e17
KB
627}
628
6d167489
VZ
629bool wxBitmapHandler::LoadFile(wxBitmap *WXUNUSED(bitmap),
630 const wxString& WXUNUSED(name),
631 long WXUNUSED(type),
632 int WXUNUSED(desiredWidth),
633 int WXUNUSED(desiredHeight))
2bda0e17 634{
6d167489 635 return FALSE;
2bda0e17
KB
636}
637
6d167489
VZ
638bool wxBitmapHandler::SaveFile(wxBitmap *WXUNUSED(bitmap),
639 const wxString& WXUNUSED(name),
640 int WXUNUSED(type),
641 const wxPalette *WXUNUSED(palette))
2bda0e17 642{
6d167489 643 return FALSE;
7b46ecac
JS
644}
645
6d167489
VZ
646// ----------------------------------------------------------------------------
647// DIB functions
648// ----------------------------------------------------------------------------
649
650bool wxCreateDIB(long xSize, long ySize, long bitsPerPixel,
651 HPALETTE hPal, LPBITMAPINFO* lpDIBHeader)
7b46ecac
JS
652{
653 unsigned long i, headerSize;
654 LPBITMAPINFO lpDIBheader = NULL;
655 LPPALETTEENTRY lpPe = NULL;
656
657
658 // Allocate space for a DIB header
659 headerSize = (sizeof(BITMAPINFOHEADER) + (256 * sizeof(PALETTEENTRY)));
660 lpDIBheader = (BITMAPINFO *) malloc(headerSize);
661 lpPe = (PALETTEENTRY *)((BYTE*)lpDIBheader + sizeof(BITMAPINFOHEADER));
662
663 GetPaletteEntries(hPal, 0, 256, lpPe);
664
7b46ecac
JS
665 memset(lpDIBheader, 0x00, sizeof(BITMAPINFOHEADER));
666
7b46ecac
JS
667 // Fill in the static parts of the DIB header
668 lpDIBheader->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
669 lpDIBheader->bmiHeader.biWidth = xSize;
670 lpDIBheader->bmiHeader.biHeight = ySize;
671 lpDIBheader->bmiHeader.biPlanes = 1;
672
673 // this value must be 1, 4, 8 or 24 so PixelDepth can only be
674 lpDIBheader->bmiHeader.biBitCount = (WORD)(bitsPerPixel);
675 lpDIBheader->bmiHeader.biCompression = BI_RGB;
6d167489 676 lpDIBheader->bmiHeader.biSizeImage = xSize * abs(ySize) * bitsPerPixel >> 3;
7b46ecac
JS
677 lpDIBheader->bmiHeader.biClrUsed = 256;
678
679
680 // Initialize the DIB palette
681 for (i = 0; i < 256; i++) {
682 lpDIBheader->bmiColors[i].rgbReserved = lpPe[i].peFlags;
683 lpDIBheader->bmiColors[i].rgbRed = lpPe[i].peRed;
684 lpDIBheader->bmiColors[i].rgbGreen = lpPe[i].peGreen;
685 lpDIBheader->bmiColors[i].rgbBlue = lpPe[i].peBlue;
686 }
687
688 *lpDIBHeader = lpDIBheader;
689
6d167489 690 return TRUE;
7b46ecac
JS
691}
692
6d167489 693void wxFreeDIB(LPBITMAPINFO lpDIBHeader)
7b46ecac 694{
6d167489 695 free(lpDIBHeader);
7b46ecac
JS
696}
697
698