mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
f1aa3030a6
Sun Aug 4 18:18:48 1996 Alexandre Julliard <julliard@lrc.epfl.ch> * [controls/scroll.c] Attempted to implement undocumented scroll-bar messages. * [tools/build.c] [include/callback.h] [windows/winproc.c] CallTo16_* functions now get DS from the previous 16-bit stackframe. * [if1632/thunk.c] [include/callback.h] Added thunks to implement callbacks for the emulator. Now all the Enum* functions always take a real function pointer even in the emulator. * [loader/builtin.c] Removed binary search in BUILTIN_GetEntryPoint32(), as it didn't work with NULL entry points. Using linear search now. * [loader/module.c] Implemented IsSharedSelector(). * [loader/task.c] Changed SwitchStackTo/Back to use the instance data to store the previous stack instead of the TDB. Also copy the local variables onto the new stack. Added GetExeVersion() and SetTackSignalProc(). Implemented SetSigHandler(). Sat Aug 3 22:19:00 1996 Thomas Sandford <t.d.g.sandford@prds-grn.demon.co.uk> * [controls/menu.c] "Fixed" problem in deleting menus where win32 could get into an endless loop when it crashed. I think I've fixed the symptoms, not the original problem so it might be worth further investigation. * [debugger/registers.c] Added missing #ifdefs on FS_REG and GS_REG, needed for FreeBSD to compile wine properly. * [files/dos_fs.c] Made DOSFS_Hash and DOSFS_Match non-static so they can be called from win32/findfile.c (q.v.). * [if1632/gdi32.spec] Added SetMapMode (call existing function) * [if1632/kernel32.spec] Added FindFirstFileA and SetFileAttributesA. * [if1632/user32.spec] Added BringWindowToTop, CreatePopupMenu, GetKeyState, GetParent, IsDlgButtonChecked (call existing functions) and IsDialogMessageA, UnhookWindowsHookEx. * [win32/file.c] Added stub function SetFileAttributes32A. It's a stub because I can't really work out what this function should do with most attributes in a Unix environment. Anyone care to expand it? * [win32/findfile.c] New file. Initial stab at FindFirstFile. This doesn't work as specified yet, though a lot of the groundwork is there. I haven't time to work on this for the next month, so if anyone wants to pick it up and run with it please do. * [win32/memory.c] Removed malloc.h from includes (covered by stdlib.h include, and gets rid of a warning in FreeBSD). * [win32/newfns.c] UnhookWindowsHookEx32A stub added. * [win32/user32.c] Added implementation of IsDialogMessage32A. * [windows/dialog.c] IsDlgButtonChecked now calls SendDlgItemMessage32A instead of SendDlgItemMessage16. Sat Aug 3 18:00:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu> * [windows/graphics.c] Removed rectangle checking (conflicted with nonstandard mapping modes). * [windows/dialog.c] Added check for child-style dialogs to DS_ABSALIGN coordinate conversion. * [objects/color.c] Cleaned up misc. bits Thu Aug 1 10:51:45 1996 Andrew Lewycky <plewycky@oise.utoronto.ca> * [windows/focus.c] [windows/event.c] [windows/win.c] [windows/defdlg.c] Fixes to focusing and activation. * [windows/defdlg.c] Properly(?) handle DM_GETDEFID. * [controls/combo.c] Handle CB_FINDSTRINGEXACT, CB_SETEDITSEL, CB_GETEDITSEL. CBCheckSize: Adjust edit position. Tue Jul 30 09:46:36 1996 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [files/file.c] [include/file.h] [loader/module.c] [loader/ne_image.c] Pass HFILEs instead of unix-fds to self-loader code. Mon Jul 29 21:48:25 1996 Albrecht Kleine <kleine@ak.sax.de> * [include/metafile.h] [objects/metafile.c] [objects/text.c] Implemented handling of some new metafile records (META_...) in PlayMetaFileRecord(), rewrite of 'case META_EXTTEXTOUT'. Added functions like MF_StretchBlt() for usage in metafiles. Minor bugfix in CopyMetafile(). * [objects/bitmap.c][objects/dib.c] Added check for metafile-DC in Bitmap and DIB functions: CreateCompatibleBitmap() etc.
440 lines
13 KiB
C
440 lines
13 KiB
C
/*
|
|
* GDI palette objects
|
|
*
|
|
* Copyright 1993,1994 Alexandre Julliard
|
|
* Copyright 1996 Alex Korobka
|
|
*
|
|
*/
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <X11/Xlib.h>
|
|
|
|
#include "color.h"
|
|
#include "palette.h"
|
|
#include "stddebug.h"
|
|
/* #define DEBUG_PALETTE */
|
|
#include "debug.h"
|
|
|
|
extern int COLOR_LookupSystemPixel(COLORREF); /* lookup pixel among static entries
|
|
* of the system palette */
|
|
extern COLORREF COLOR_GetSystemPaletteEntry(BYTE);
|
|
|
|
static WORD SystemPaletteUse = SYSPAL_STATIC; /* currently not considered */
|
|
|
|
static HPALETTE16 hPrimaryPalette = 0; /* used for WM_PALETTECHANGED */
|
|
static HPALETTE16 hLastRealizedPalette = 0; /* UnrealizeObject() needs it */
|
|
|
|
|
|
/***********************************************************************
|
|
* PALETTE_ValidateFlags
|
|
*/
|
|
void PALETTE_ValidateFlags(PALETTEENTRY* lpPalE, int size)
|
|
{
|
|
int i = 0;
|
|
for( ; i<size ; i++ )
|
|
lpPalE[i].peFlags = PC_SYS_USED | (lpPalE[i].peFlags & 0x07);
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* CreatePalette (GDI.360)
|
|
*/
|
|
HPALETTE16 CreatePalette( const LOGPALETTE* palette )
|
|
{
|
|
PALETTEOBJ * palettePtr;
|
|
HPALETTE16 hpalette;
|
|
int size = sizeof(LOGPALETTE) + (palette->palNumEntries - 1) * sizeof(PALETTEENTRY);
|
|
|
|
dprintf_palette(stddeb,"CreatePalette: ");
|
|
|
|
dprintf_palette(stddeb,"%i entries, ", palette->palNumEntries);
|
|
|
|
hpalette = GDI_AllocObject( size + sizeof(int*) +sizeof(GDIOBJHDR) , PALETTE_MAGIC );
|
|
if (!hpalette) return 0;
|
|
|
|
palettePtr = (PALETTEOBJ *) GDI_HEAP_LIN_ADDR( hpalette );
|
|
memcpy( &palettePtr->logpalette, palette, size );
|
|
PALETTE_ValidateFlags(palettePtr->logpalette.palPalEntry,
|
|
palettePtr->logpalette.palNumEntries);
|
|
palettePtr->mapping = NULL;
|
|
|
|
dprintf_palette(stddeb,"returning %04x\n", hpalette);
|
|
return hpalette;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* GetPaletteEntries (GDI.363)
|
|
*/
|
|
WORD GetPaletteEntries( HPALETTE16 hpalette, WORD start, WORD count,
|
|
LPPALETTEENTRY entries )
|
|
{
|
|
PALETTEOBJ * palPtr;
|
|
int numEntries;
|
|
|
|
dprintf_palette(stddeb,"GetPaletteEntries: hpal = %04x, %i entries\n", hpalette, count);
|
|
|
|
palPtr = (PALETTEOBJ *) GDI_GetObjPtr( hpalette, PALETTE_MAGIC );
|
|
if (!palPtr) return 0;
|
|
|
|
numEntries = palPtr->logpalette.palNumEntries;
|
|
if (start >= numEntries) return 0;
|
|
if (start+count > numEntries) count = numEntries - start;
|
|
memcpy( entries, &palPtr->logpalette.palPalEntry[start],
|
|
count * sizeof(PALETTEENTRY) );
|
|
for( numEntries = 0; numEntries < count ; numEntries++ )
|
|
if( entries[numEntries].peFlags & 0xF0 ) entries[numEntries].peFlags = 0;
|
|
return count;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* SetPaletteEntries (GDI.364)
|
|
*/
|
|
WORD SetPaletteEntries( HPALETTE16 hpalette, WORD start, WORD count,
|
|
LPPALETTEENTRY entries )
|
|
{
|
|
PALETTEOBJ * palPtr;
|
|
int numEntries;
|
|
|
|
dprintf_palette(stddeb,"SetPaletteEntries: hpal = %04x, %i entries\n", hpalette, count);
|
|
|
|
palPtr = (PALETTEOBJ *) GDI_GetObjPtr( hpalette, PALETTE_MAGIC );
|
|
if (!palPtr) return 0;
|
|
|
|
numEntries = palPtr->logpalette.palNumEntries;
|
|
if (start >= numEntries) return 0;
|
|
if (start+count > numEntries) count = numEntries - start;
|
|
memcpy( &palPtr->logpalette.palPalEntry[start], entries,
|
|
count * sizeof(PALETTEENTRY) );
|
|
PALETTE_ValidateFlags(palPtr->logpalette.palPalEntry,
|
|
palPtr->logpalette.palNumEntries);
|
|
free(palPtr->mapping);
|
|
palPtr->mapping = NULL;
|
|
|
|
return count;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* ResizePalette (GDI.368)
|
|
*/
|
|
BOOL ResizePalette(HPALETTE16 hPal, UINT cEntries)
|
|
{
|
|
|
|
/* should simply realloc memory and zero out
|
|
* added entries, if any */
|
|
|
|
fprintf(stdnimp,"ResizePalette: empty stub! \n");
|
|
return FALSE;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* AnimatePalette (GDI.367)
|
|
*/
|
|
BOOL AnimatePalette(HPALETTE16 hPal, UINT StartIndex, UINT NumEntries,
|
|
LPPALETTEENTRY PaletteColors)
|
|
{
|
|
fprintf(stdnimp,"AnimatePalette: empty stub! \n");
|
|
return TRUE;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* SetSystemPaletteUse (GDI.373)
|
|
*/
|
|
WORD SetSystemPaletteUse( HDC hdc, WORD use)
|
|
{
|
|
WORD old=SystemPaletteUse;
|
|
fprintf(stdnimp,"SetSystemPaletteUse(%04x,%04x) // empty stub !!!\n", hdc, use);
|
|
SystemPaletteUse=use;
|
|
return old;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* GetSystemPaletteUse (GDI.374)
|
|
*/
|
|
WORD GetSystemPaletteUse( HDC hdc )
|
|
{
|
|
fprintf(stdnimp,"GetSystemPaletteUse(%04x) // empty stub !!!\n", hdc);
|
|
return SystemPaletteUse;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* GetSystemPaletteEntries (GDI.375)
|
|
*/
|
|
WORD GetSystemPaletteEntries( HDC hdc, WORD start, WORD count,
|
|
LPPALETTEENTRY entries )
|
|
{
|
|
WORD i;
|
|
DC *dc;
|
|
|
|
dprintf_palette(stddeb,"GetSystemPaletteEntries: hdc = %04x, cound = %i", hdc, count );
|
|
|
|
if (!(dc = (DC *) GDI_GetObjPtr( hdc, DC_MAGIC ))) return 0;
|
|
if (start >= dc->w.devCaps->sizePalette) return 0;
|
|
if (start+count >= dc->w.devCaps->sizePalette)
|
|
count = dc->w.devCaps->sizePalette - start;
|
|
for (i = 0; i < count; i++)
|
|
{
|
|
*(COLORREF*)(entries + i) = COLOR_GetSystemPaletteEntry((BYTE)(start + i));
|
|
|
|
dprintf_palette(stddeb,"\tidx(%02x) -> RGB(%08lx)\n", (unsigned char)(start + i),
|
|
*(COLORREF*)(entries + i) );
|
|
}
|
|
return count;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* GetNearestPaletteIndex (GDI.370)
|
|
*/
|
|
WORD GetNearestPaletteIndex( HPALETTE16 hpalette, COLORREF color )
|
|
{
|
|
PALETTEOBJ* palObj = (PALETTEOBJ*) GDI_GetObjPtr( hpalette, PALETTE_MAGIC );
|
|
WORD index = 0;
|
|
|
|
if( palObj )
|
|
index = COLOR_PaletteLookupPixel( palObj->logpalette.palPalEntry,
|
|
palObj->logpalette.palNumEntries, NULL,
|
|
color, FALSE );
|
|
|
|
dprintf_palette(stddeb,"GetNearestPaletteIndex(%04x,%06lx): returning %d\n",
|
|
hpalette, color, index );
|
|
return index;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* GetNearestColor (GDI.154)
|
|
*/
|
|
COLORREF GetNearestColor( HDC hdc, COLORREF color )
|
|
{
|
|
COLORREF nearest = 0xFADECAFE;
|
|
DC *dc;
|
|
PALETTEOBJ *palObj;
|
|
|
|
if ( (dc = (DC *) GDI_GetObjPtr( hdc, DC_MAGIC )) )
|
|
{
|
|
palObj = (PALETTEOBJ*)
|
|
GDI_GetObjPtr( (dc->w.hPalette)? dc->w.hPalette
|
|
: STOCK_DEFAULT_PALETTE, PALETTE_MAGIC );
|
|
|
|
nearest = COLOR_LookupNearestColor( palObj->logpalette.palPalEntry,
|
|
palObj->logpalette.palNumEntries, color );
|
|
}
|
|
|
|
dprintf_palette(stddeb,"GetNearestColor(%06lx): returning %06lx\n",
|
|
color, nearest );
|
|
return nearest;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* PALETTE_GetObject
|
|
*/
|
|
int PALETTE_GetObject( PALETTEOBJ * palette, int count, LPSTR buffer )
|
|
{
|
|
if (count > sizeof(WORD)) count = sizeof(WORD);
|
|
memcpy( buffer, &palette->logpalette.palNumEntries, count );
|
|
return count;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* PALETTE_UnrealizeObject
|
|
*/
|
|
BOOL PALETTE_UnrealizeObject( HPALETTE16 hpalette, PALETTEOBJ *palette )
|
|
{
|
|
if (palette->mapping)
|
|
{
|
|
free( palette->mapping );
|
|
palette->mapping = NULL;
|
|
}
|
|
if (hLastRealizedPalette == hpalette) hLastRealizedPalette = 0;
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* PALETTE_DeleteObject
|
|
*/
|
|
BOOL PALETTE_DeleteObject( HPALETTE16 hpalette, PALETTEOBJ *palette )
|
|
{
|
|
free( palette->mapping );
|
|
return GDI_FreeObject( hpalette );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* GDISelectPalette (GDI.361)
|
|
*/
|
|
HPALETTE16 GDISelectPalette( HDC hdc, HPALETTE16 hpal, WORD wBkg)
|
|
{
|
|
HPALETTE16 prev;
|
|
DC *dc;
|
|
|
|
dprintf_palette(stddeb, "GDISelectPalette: %04x %04x\n", hdc, hpal );
|
|
|
|
dc = (DC *) GDI_GetObjPtr( hdc, DC_MAGIC );
|
|
if (!dc)
|
|
{
|
|
dc = (DC *)GDI_GetObjPtr(hdc, METAFILE_DC_MAGIC);
|
|
if (!dc) return 0;
|
|
}
|
|
prev = dc->w.hPalette;
|
|
dc->w.hPalette = hpal;
|
|
if (!wBkg) hPrimaryPalette = hpal;
|
|
return prev;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* GDIRealizePalette (GDI.362)
|
|
*
|
|
*/
|
|
UINT GDIRealizePalette( HDC hdc )
|
|
{
|
|
PALETTEOBJ* palPtr;
|
|
int realized = 0;
|
|
DC* dc = (DC *) GDI_GetObjPtr( hdc, DC_MAGIC );
|
|
if (!dc)
|
|
{
|
|
dc = (DC *)GDI_GetObjPtr(hdc, METAFILE_DC_MAGIC);
|
|
if (!dc) return 0;
|
|
}
|
|
|
|
dprintf_palette(stddeb, "GDIRealizePalette: %04x...", hdc );
|
|
|
|
if( dc && dc->w.hPalette != hLastRealizedPalette )
|
|
{
|
|
if( dc->w.hPalette == STOCK_DEFAULT_PALETTE )
|
|
return RealizeDefaultPalette( hdc );
|
|
|
|
palPtr = (PALETTEOBJ *) GDI_GetObjPtr( dc->w.hPalette, PALETTE_MAGIC );
|
|
|
|
realized = COLOR_SetMapping(palPtr, dc->w.hPalette != hPrimaryPalette
|
|
|| dc->w.hPalette == STOCK_DEFAULT_PALETTE );
|
|
hLastRealizedPalette = dc->w.hPalette;
|
|
}
|
|
else dprintf_palette(stddeb, " skipping ");
|
|
|
|
dprintf_palette(stdnimp, " realized %i colors\n", realized );
|
|
return (UINT)realized;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* RealizeDefaultPalette (GDI.365)
|
|
*/
|
|
WORD RealizeDefaultPalette( HDC hdc )
|
|
{
|
|
DC *dc;
|
|
PALETTEOBJ* palPtr;
|
|
int i, index, realized = 0;
|
|
|
|
dprintf_palette(stddeb,"RealizeDefaultPalette: %04x\n", hdc );
|
|
|
|
dc = (DC *) GDI_GetObjPtr( hdc, DC_MAGIC );
|
|
if (!dc)
|
|
{
|
|
dc = (DC *)GDI_GetObjPtr(hdc, METAFILE_DC_MAGIC);
|
|
if (!dc) return 0;
|
|
}
|
|
|
|
if ( dc->w.flags & DC_MEMORY ) return 0;
|
|
|
|
hPrimaryPalette = STOCK_DEFAULT_PALETTE;
|
|
hLastRealizedPalette = STOCK_DEFAULT_PALETTE;
|
|
|
|
palPtr = (PALETTEOBJ*)GDI_GetObjPtr(STOCK_DEFAULT_PALETTE, PALETTE_MAGIC );
|
|
|
|
/* lookup is needed to account for SetSystemPaletteUse() stuff */
|
|
|
|
for( i = 0; i < 20; i++ )
|
|
{
|
|
index = COLOR_LookupSystemPixel(*(COLORREF*)(palPtr->logpalette.palPalEntry + i));
|
|
|
|
/* mapping is allocated in COLOR_InitPalette() */
|
|
|
|
if( index != palPtr->mapping[i] ) { palPtr->mapping[i]=index; realized++; }
|
|
}
|
|
return realized;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* IsDCCurrentPalette (GDI.412)
|
|
*/
|
|
BOOL IsDCCurrentPalette(HDC hDC)
|
|
{
|
|
DC* dc = (DC *)GDI_GetObjPtr( hDC, DC_MAGIC );
|
|
return (dc)?(dc->w.hPalette == hPrimaryPalette):FALSE;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* SelectPalette (USER.282)
|
|
*/
|
|
HPALETTE16 SelectPalette( HDC hDC, HPALETTE16 hPal, BOOL bForceBackground )
|
|
{
|
|
WORD wBkgPalette = 1;
|
|
PALETTEOBJ* lpt = (PALETTEOBJ*) GDI_GetObjPtr( hPal, PALETTE_MAGIC );
|
|
|
|
dprintf_palette(stddeb,"SelectPalette: dc %04x pal %04x, force=%i ",
|
|
hDC, hPal, bForceBackground);
|
|
if( !lpt ) return 0;
|
|
|
|
dprintf_palette(stddeb," entries = %d\n",
|
|
lpt->logpalette.palNumEntries);
|
|
|
|
if( hPal != STOCK_DEFAULT_PALETTE )
|
|
{
|
|
HWND hWnd = WindowFromDC( hDC );
|
|
HWND hActive = GetActiveWindow();
|
|
|
|
/* set primary palette if it's related to current active */
|
|
|
|
if((!hWnd || (hActive == hWnd || IsChild(hActive,hWnd))) &&
|
|
!bForceBackground )
|
|
wBkgPalette = 0;
|
|
}
|
|
return GDISelectPalette( hDC, hPal, wBkgPalette);
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* RealizePalette (USER.283) (GDI32.280)
|
|
*/
|
|
UINT16 RealizePalette( HDC32 hDC )
|
|
{
|
|
UINT16 realized = GDIRealizePalette( hDC );
|
|
|
|
/* do not send anything if no colors were changed */
|
|
|
|
if( IsDCCurrentPalette( hDC ) && realized &&
|
|
!(COLOR_GetSystemPaletteFlags() & COLOR_VIRTUAL) )
|
|
{
|
|
/* Send palette change notification */
|
|
|
|
HWND hWnd;
|
|
if( (hWnd = WindowFromDC( hDC )) )
|
|
SendMessage16( HWND_BROADCAST, WM_PALETTECHANGED, hWnd, 0L);
|
|
}
|
|
return realized;
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* UpdateColors (GDI.366)
|
|
*
|
|
*/
|
|
int UpdateColors( HDC hDC )
|
|
{
|
|
HWND hWnd = WindowFromDC( hDC );
|
|
|
|
/* Docs say that we have to remap current drawable pixel by pixel
|
|
* but it would take forever given the speed of XGet/PutPixel.
|
|
*/
|
|
if (hWnd && !(COLOR_GetSystemPaletteFlags() & COLOR_VIRTUAL) )
|
|
InvalidateRect16( hWnd, NULL, FALSE );
|
|
return 0x666;
|
|
}
|
|
|