- New implementation of GetDIBColorTable and SetDIBColorTable.

svn path=/trunk/; revision=9393
This commit is contained in:
Filip Navara 2004-05-15 08:52:25 +00:00
parent 1825cf4a15
commit 6952a5644f
3 changed files with 96 additions and 63 deletions

View file

@ -1,4 +1,4 @@
/* $Id: stubs.c,v 1.60 2004/04/25 20:05:30 weiden Exp $
/* $Id: stubs.c,v 1.61 2004/05/15 08:52:25 navaraf Exp $
*
* reactos/lib/gdi32/misc/stubs.c
*
@ -753,22 +753,6 @@ AngleArc(
}
/*
* @unimplemented
*/
UINT
STDCALL
GetDIBColorTable(
HDC hdc,
UINT a1,
UINT a2,
RGBQUAD *a3
)
{
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
/*
* @unimplemented
*/

View file

@ -807,6 +807,22 @@ CombineTransform(
return NtGdiCombineTransform(lpxformResult, (CONST PXFORM)lpxform1, (CONST PXFORM)lpxform2);
}
/*
* @implemented
*/
UINT
STDCALL
GetDIBColorTable(
HDC hdc,
UINT uStartIndex,
UINT cEntries,
RGBQUAD *pColors
)
{
DbgPrint("GetDIBColorTable\n");
return NtGdiGetDIBColorTable(hdc, uStartIndex, cEntries, pColors);
}
/*
* @implemented
*/

View file

@ -1,5 +1,5 @@
/*
* $Id: dib.c,v 1.46 2004/05/10 17:07:20 weiden Exp $
* $Id: dib.c,v 1.47 2004/05/15 08:52:25 navaraf Exp $
*
* ReactOS W32 Subsystem
* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 ReactOS Team
@ -20,51 +20,92 @@
*/
#include <w32k.h>
UINT STDCALL NtGdiSetDIBColorTable(HDC hDC,
UINT StartIndex,
UINT Entries,
CONST RGBQUAD *Colors)
UINT STDCALL
NtGdiSetDIBColorTable(HDC hDC, UINT StartIndex, UINT Entries, CONST RGBQUAD *Colors)
{
PDC dc;
PALETTEENTRY * palEntry;
PPALGDI palette;
const RGBQUAD *end;
PDC dc;
PBITMAPOBJ BitmapObj;
if (!(dc = DC_LockDc(hDC))) return 0;
if (!(dc = DC_LockDc(hDC))) return 0;
if (!(palette = PALETTE_LockPalette((ULONG)dc->DevInfo->hpalDefault)))
{
DC_UnlockDc(hDC);
return 0;
}
BitmapObj = BITMAPOBJ_LockBitmap(dc->w.hBitmap);
if (BitmapObj == NULL)
{
DC_UnlockDc(hDC);
SetLastWin32Error(ERROR_INVALID_PARAMETER);
return 0;
}
// Transfer color info
if (BitmapObj->dib == NULL)
{
BITMAPOBJ_UnlockBitmap(dc->w.hBitmap);
DC_UnlockDc(hDC);
SetLastWin32Error(ERROR_INVALID_PARAMETER);
return 0;
}
if (dc->w.bitsPerPixel <= 8)
{
palEntry = palette->IndexedColors + StartIndex;
if (StartIndex + Entries > (UINT) (1 << dc->w.bitsPerPixel))
Entries = (1 << dc->w.bitsPerPixel) - StartIndex;
if (BitmapObj->dib->dsBmih.biBitCount <= 8 &&
StartIndex > (1 << BitmapObj->dib->dsBmih.biBitCount))
{
if (StartIndex + Entries > (1 << BitmapObj->dib->dsBmih.biBitCount))
Entries = (1 << BitmapObj->dib->dsBmih.biBitCount) - StartIndex;
if (StartIndex + Entries > palette->NumColors)
Entries = palette->NumColors - StartIndex;
MmCopyFromCaller(BitmapObj->ColorMap + StartIndex, Colors, Entries * sizeof(RGBQUAD));
for (end = Colors + Entries; Colors < end; palEntry++, Colors++)
{
palEntry->peRed = Colors->rgbRed;
palEntry->peGreen = Colors->rgbGreen;
palEntry->peBlue = Colors->rgbBlue;
}
}
else
{
Entries = 0;
}
/* Rebuild the palette. */
NtGdiDeleteObject(dc->w.hPalette);
dc->w.hPalette = PALETTE_AllocPalette(PAL_INDEXED,
1 << BitmapObj->dib->dsBmih.biBitCount,
(PULONG)BitmapObj->ColorMap, 0, 0, 0);
}
else
Entries = 0;
PALETTE_UnlockPalette(dc->DevInfo->hpalDefault);
DC_UnlockDc(hDC);
BITMAPOBJ_UnlockBitmap(dc->w.hBitmap);
DC_UnlockDc(hDC);
return Entries;
return Entries;
}
UINT STDCALL
NtGdiGetDIBColorTable(HDC hDC, UINT StartIndex, UINT Entries, RGBQUAD *Colors)
{
PDC dc;
PBITMAPOBJ BitmapObj;
if (!(dc = DC_LockDc(hDC))) return 0;
BitmapObj = BITMAPOBJ_LockBitmap(dc->w.hBitmap);
if (BitmapObj == NULL)
{
DC_UnlockDc(hDC);
SetLastWin32Error(ERROR_INVALID_PARAMETER);
return 0;
}
if (BitmapObj->dib == NULL)
{
BITMAPOBJ_UnlockBitmap(dc->w.hBitmap);
DC_UnlockDc(hDC);
SetLastWin32Error(ERROR_INVALID_PARAMETER);
return 0;
}
if (BitmapObj->dib->dsBmih.biBitCount <= 8 &&
StartIndex > (1 << BitmapObj->dib->dsBmih.biBitCount))
{
if (StartIndex + Entries > (1 << BitmapObj->dib->dsBmih.biBitCount))
Entries = (1 << BitmapObj->dib->dsBmih.biBitCount) - StartIndex;
MmCopyToCaller(Colors, BitmapObj->ColorMap + StartIndex, Entries * sizeof(RGBQUAD));
}
else
Entries = 0;
BITMAPOBJ_UnlockBitmap(dc->w.hBitmap);
DC_UnlockDc(hDC);
return Entries;
}
// Converts a DIB to a device-dependent bitmap
@ -250,14 +291,6 @@ NtGdiSetDIBitsToDevice(
return 0;
}
UINT STDCALL NtGdiGetDIBColorTable(HDC hDC,
UINT StartIndex,
UINT Entries,
RGBQUAD *Colors)
{
UNIMPLEMENTED;
}
// Converts a device-dependent bitmap to a DIB
#if 0
INT STDCALL NtGdiGetDIBits(HDC hDC,
@ -1021,7 +1054,7 @@ DIB_CreateDIBSection(
UINT Entries = 0;
BITMAP bm;
DPRINT("format (%ld,%ld), planes %d, bpp %d, size %ld, colors %ld (%s)\n",
DPRINT1("format (%ld,%ld), planes %d, bpp %d, size %ld, colors %ld (%s)\n",
bi->biWidth, bi->biHeight, bi->biPlanes, bi->biBitCount,
bi->biSizeImage, bi->biClrUsed, usage == DIB_PAL_COLORS? "PAL" : "RGB");