mirror of
https://github.com/reactos/wine.git
synced 2024-12-02 08:46:29 +00:00
a69b88b2f2
Sun Mar 15 03:46:50 1998 Dimitrie O. Paun <dimi@mail.cs.toronto.edu> * [*/*] Fixed some dprintf_ such that there is one and only one new line for each dprintf and that new line occurs at the end. Transformed some fprintfs into proper debug statements. Removed much redundancy from most of the debug statements. The redundancy appeared because now the component and function name is output automatically. Most debug statements also used to output the name of the function. All these changes prepared the source to switch completely to the new debugging interface. For more info, refer to ./documentation/debug-msg Sat Mar 14 19:45:23 1997 Andreas Mohr <100.30936@germany.net> * [misc/shell.c] [if1632/kernel.spec] Changed parameters of FUNC004() to fix a crash. Not sure if this fix is correct (doc wanted). * [windows/user.c] [if1632/user.spec] [include/user.h] Implemented UserSeeUserDo. * [msdos/int21.c] [include/msdos.h] Added "GET LIST OF LISTS" (INT 21/52h). Sat Mar 14 15:48:02 1998 Douglas Ridgway <ridgway@gmcl.com> * [include/windows.h] [relay32/gdi32.spec] [objects/enhmetafile.c] Beginnings of enhanced metafile support. Fri Mar 13 20:53:09 1998 John Richardson <jrichard@zko.dec.com> * [win32/console.c] Restart interrupted console writes. Fri Mar 13 18:59:24 1998 Matthew Becker <mbecker@glasscity.net> * [*/*.c] Updated documentation for API manpages. * [windows/dce.c] ReleaseDC16: Fixed cast. * [include/windows.h] [memory/virtual.c] VirtualQuery{Ex} should return DWORD instead of BOOL32. Fri Mar 13 13:03:06 1998 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [README][documentation/status/] README updated, added lzexpand,version and multimedia status notes to new documentation/status directory. * [ole/*.c][if1632/typelib.spec] Added typelib stubs, several small additions and fixes. * [loader/pe_image.c] Fixed a small bug (fixup_imports got passed the wrong hModule in a remapcase). * [loader/signal.c][if1632/signal.c][misc/winsock_dns.c] [loader/module.c] Fixed some recursive debugger crashes (caused by invalid FS). * [misc/registry.c] Two bugs fixed. Fri Mar 13 04:55:01 1998 David Lee Lambert <lamber45@egr.msu.edu> * [include/winnt.h] [include/winnls.h] Moved LANG_xxx flags to winnls.h * [include/winnls.h] Added flags for GetDateFormat(); fixed validity of LOCALE_SYSTEM_DEFAULT. * [include/windows.h] Added GetTimeFormat() prototypes. * [ole/ole2nls.c] Implemented ASCII date- and time-functions, using an optimized common core; added stubs for Unicode versions; started work on a Unicode core. * [AUTHORS] Added my name. Mon Mar 9 20:10:15 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de> * [relay32/comctl32.spec] [include/imagelist.h] [include/commctrl.h] [misc/imagelist.c] [misc/Makefile.in] First attempt at implementing ImageLists. Sun Mar 8 20:19:49 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de> * [files/dos_fs.c] [configure.in] Try to get FileTimeToLocalFileTime,FileTimeToSystemTime and SystemTimeToFileTime right. Use timegm() where available. * [misc/lstr.c] Fix an off by one error in FormatMessage and handle the case when args = NULL (used by programs to get the length of the string). * [win32/console.c] Actual display a per-process Title string, better working attempt for WriteConsole32W and ReadConsole32W. Fri Mar 6 20:33:45 1998 Slaven Rezic <eserte@cs.tu-berlin.de> * [include/config.h.in][configure.in][multimedia/audio.c] [multimedia/dsound.c] Added check for FreeBSD sound system. Sun Mar 1 17:40:10 1998 Jason Schonberg <schon@mti.sgi.com> * [controls/edit.c] [include/ole.h] [include/shlobj.h] Removed final commas in enum types. Mon Feb 23 07:52:18 1998 Luiz Otavio L. Zorzella <zorzella@nr.conexware.com> * [multimedia/time.c] Workaround to avoid infinite recursion inside timeGetTime. * [multimedia/audio.c] WODM_GETNUMDEVS and WIDM_GETNUMDEVS only return 1 now if the SOUND_DEV can be opened, or if it's busy.
286 lines
8.2 KiB
C
286 lines
8.2 KiB
C
/*
|
|
* GDI brush objects
|
|
*
|
|
* Copyright 1993, 1994 Alexandre Julliard
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include "brush.h"
|
|
#include "bitmap.h"
|
|
#include "color.h"
|
|
#include "x11drv.h"
|
|
#include "debug.h"
|
|
|
|
static const char HatchBrushes[NB_HATCH_STYLES + 1][8] =
|
|
{
|
|
{ 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x00 }, /* HS_HORIZONTAL */
|
|
{ 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08, 0x08 }, /* HS_VERTICAL */
|
|
{ 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80 }, /* HS_FDIAGONAL */
|
|
{ 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 }, /* HS_BDIAGONAL */
|
|
{ 0x08, 0x08, 0x08, 0xff, 0x08, 0x08, 0x08, 0x08 }, /* HS_CROSS */
|
|
{ 0x81, 0x42, 0x24, 0x18, 0x18, 0x24, 0x42, 0x81 }, /* HS_DIAGCROSS */
|
|
{ 0xee, 0xbb, 0xee, 0xbb, 0xee, 0xbb, 0xee, 0xbb } /* Hack for DKGRAY */
|
|
};
|
|
|
|
/* Levels of each primary for dithering */
|
|
#define PRIMARY_LEVELS 3
|
|
#define TOTAL_LEVELS (PRIMARY_LEVELS*PRIMARY_LEVELS*PRIMARY_LEVELS)
|
|
|
|
/* Dithering matrix size */
|
|
#define MATRIX_SIZE 8
|
|
#define MATRIX_SIZE_2 (MATRIX_SIZE*MATRIX_SIZE)
|
|
|
|
/* Total number of possible levels for a dithered primary color */
|
|
#define DITHER_LEVELS (MATRIX_SIZE_2 * (PRIMARY_LEVELS-1) + 1)
|
|
|
|
/* Dithering matrix */
|
|
static const int dither_matrix[MATRIX_SIZE_2] =
|
|
{
|
|
0, 32, 8, 40, 2, 34, 10, 42,
|
|
48, 16, 56, 24, 50, 18, 58, 26,
|
|
12, 44, 4, 36, 14, 46, 6, 38,
|
|
60, 28, 52, 20, 62, 30, 54, 22,
|
|
3, 35, 11, 43, 1, 33, 9, 41,
|
|
51, 19, 59, 27, 49, 17, 57, 25,
|
|
15, 47, 7, 39, 13, 45, 5, 37,
|
|
63, 31, 55, 23, 61, 29, 53, 21
|
|
};
|
|
|
|
/* Mapping between (R,G,B) triples and EGA colors */
|
|
static const int EGAmapping[TOTAL_LEVELS] =
|
|
{
|
|
0, /* 000000 -> 000000 */
|
|
4, /* 00007f -> 000080 */
|
|
12, /* 0000ff -> 0000ff */
|
|
2, /* 007f00 -> 008000 */
|
|
6, /* 007f7f -> 008080 */
|
|
6, /* 007fff -> 008080 */
|
|
10, /* 00ff00 -> 00ff00 */
|
|
6, /* 00ff7f -> 008080 */
|
|
14, /* 00ffff -> 00ffff */
|
|
1, /* 7f0000 -> 800000 */
|
|
5, /* 7f007f -> 800080 */
|
|
5, /* 7f00ff -> 800080 */
|
|
3, /* 7f7f00 -> 808000 */
|
|
8, /* 7f7f7f -> 808080 */
|
|
7, /* 7f7fff -> c0c0c0 */
|
|
3, /* 7fff00 -> 808000 */
|
|
7, /* 7fff7f -> c0c0c0 */
|
|
7, /* 7fffff -> c0c0c0 */
|
|
9, /* ff0000 -> ff0000 */
|
|
5, /* ff007f -> 800080 */
|
|
13, /* ff00ff -> ff00ff */
|
|
3, /* ff7f00 -> 808000 */
|
|
7, /* ff7f7f -> c0c0c0 */
|
|
7, /* ff7fff -> c0c0c0 */
|
|
11, /* ffff00 -> ffff00 */
|
|
7, /* ffff7f -> c0c0c0 */
|
|
15 /* ffffff -> ffffff */
|
|
};
|
|
|
|
#define PIXEL_VALUE(r,g,b) \
|
|
COLOR_mapEGAPixel[EGAmapping[((r)*PRIMARY_LEVELS+(g))*PRIMARY_LEVELS+(b)]]
|
|
|
|
/* X image for building dithered pixmap */
|
|
static XImage *ditherImage = NULL;
|
|
|
|
|
|
/***********************************************************************
|
|
* BRUSH_Init
|
|
*
|
|
* Create the X image used for dithering.
|
|
*/
|
|
BOOL32 X11DRV_BRUSH_Init(void)
|
|
{
|
|
XCREATEIMAGE( ditherImage, MATRIX_SIZE, MATRIX_SIZE, screenDepth );
|
|
return (ditherImage != NULL);
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* BRUSH_DitherColor
|
|
*/
|
|
static Pixmap BRUSH_DitherColor( DC *dc, COLORREF color )
|
|
{
|
|
static COLORREF prevColor = 0xffffffff;
|
|
unsigned int x, y;
|
|
Pixmap pixmap;
|
|
|
|
EnterCriticalSection( &X11DRV_CritSection );
|
|
if (color != prevColor)
|
|
{
|
|
int r = GetRValue( color ) * DITHER_LEVELS;
|
|
int g = GetGValue( color ) * DITHER_LEVELS;
|
|
int b = GetBValue( color ) * DITHER_LEVELS;
|
|
const int *pmatrix = dither_matrix;
|
|
|
|
for (y = 0; y < MATRIX_SIZE; y++)
|
|
{
|
|
for (x = 0; x < MATRIX_SIZE; x++)
|
|
{
|
|
int d = *pmatrix++ * 256;
|
|
int dr = ((r + d) / MATRIX_SIZE_2) / 256;
|
|
int dg = ((g + d) / MATRIX_SIZE_2) / 256;
|
|
int db = ((b + d) / MATRIX_SIZE_2) / 256;
|
|
XPutPixel( ditherImage, x, y, PIXEL_VALUE(dr,dg,db) );
|
|
}
|
|
}
|
|
prevColor = color;
|
|
}
|
|
|
|
pixmap = XCreatePixmap( display, rootWindow,
|
|
MATRIX_SIZE, MATRIX_SIZE, screenDepth );
|
|
XPutImage( display, pixmap, BITMAP_colorGC, ditherImage, 0, 0,
|
|
0, 0, MATRIX_SIZE, MATRIX_SIZE );
|
|
LeaveCriticalSection( &X11DRV_CritSection );
|
|
return pixmap;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* BRUSH_SelectSolidBrush
|
|
*/
|
|
static void BRUSH_SelectSolidBrush( DC *dc, COLORREF color )
|
|
{
|
|
if ((dc->w.bitsPerPixel > 1) && (screenDepth <= 8) && !COLOR_IsSolid( color ))
|
|
{
|
|
/* Dithered brush */
|
|
dc->u.x.brush.pixmap = BRUSH_DitherColor( dc, color );
|
|
dc->u.x.brush.fillStyle = FillTiled;
|
|
dc->u.x.brush.pixel = 0;
|
|
}
|
|
else
|
|
{
|
|
/* Solid brush */
|
|
dc->u.x.brush.pixel = COLOR_ToPhysical( dc, color );
|
|
dc->u.x.brush.fillStyle = FillSolid;
|
|
}
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* BRUSH_SelectPatternBrush
|
|
*/
|
|
static BOOL32 BRUSH_SelectPatternBrush( DC * dc, HBITMAP32 hbitmap )
|
|
{
|
|
BITMAPOBJ * bmp = (BITMAPOBJ *) GDI_GetObjPtr( hbitmap, BITMAP_MAGIC );
|
|
if (!bmp) return FALSE;
|
|
|
|
if ((dc->w.bitsPerPixel == 1) && (bmp->bitmap.bmBitsPixel != 1))
|
|
{
|
|
/* Special case: a color pattern on a monochrome DC */
|
|
dc->u.x.brush.pixmap = TSXCreatePixmap( display, rootWindow, 8, 8, 1 );
|
|
/* FIXME: should probably convert to monochrome instead */
|
|
TSXCopyPlane( display, bmp->pixmap, dc->u.x.brush.pixmap,
|
|
BITMAP_monoGC, 0, 0, 8, 8, 0, 0, 1 );
|
|
}
|
|
else
|
|
{
|
|
dc->u.x.brush.pixmap = TSXCreatePixmap( display, rootWindow,
|
|
8, 8, bmp->bitmap.bmBitsPixel );
|
|
TSXCopyArea( display, bmp->pixmap, dc->u.x.brush.pixmap,
|
|
BITMAP_GC(bmp), 0, 0, 8, 8, 0, 0 );
|
|
}
|
|
|
|
if (bmp->bitmap.bmBitsPixel > 1)
|
|
{
|
|
dc->u.x.brush.fillStyle = FillTiled;
|
|
dc->u.x.brush.pixel = 0; /* Ignored */
|
|
}
|
|
else
|
|
{
|
|
dc->u.x.brush.fillStyle = FillOpaqueStippled;
|
|
dc->u.x.brush.pixel = -1; /* Special case (see DC_SetupGCForBrush) */
|
|
}
|
|
GDI_HEAP_UNLOCK( hbitmap );
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
* BRUSH_SelectObject
|
|
*/
|
|
HBRUSH32 X11DRV_BRUSH_SelectObject( DC * dc, HBRUSH32 hbrush, BRUSHOBJ * brush )
|
|
{
|
|
HBITMAP16 hBitmap;
|
|
BITMAPINFO * bmpInfo;
|
|
HBRUSH16 prevHandle = dc->w.hBrush;
|
|
|
|
TRACE(gdi, "hdc=%04x hbrush=%04x\n",
|
|
dc->hSelf,hbrush);
|
|
#ifdef NOTDEF
|
|
if (dc->header.wMagic == METAFILE_DC_MAGIC)
|
|
{
|
|
LOGBRUSH16 logbrush = { brush->logbrush.lbStyle,
|
|
brush->logbrush.lbColor,
|
|
brush->logbrush.lbHatch };
|
|
switch (brush->logbrush.lbStyle)
|
|
{
|
|
case BS_SOLID:
|
|
case BS_HATCHED:
|
|
case BS_HOLLOW:
|
|
if (!MF_CreateBrushIndirect( dc, hbrush, &logbrush )) return 0;
|
|
break;
|
|
case BS_PATTERN:
|
|
case BS_DIBPATTERN:
|
|
if (!MF_CreatePatternBrush( dc, hbrush, &logbrush )) return 0;
|
|
break;
|
|
}
|
|
return 1; /* FIXME? */
|
|
}
|
|
#endif
|
|
dc->w.hBrush = hbrush;
|
|
|
|
if (dc->u.x.brush.pixmap)
|
|
{
|
|
TSXFreePixmap( display, dc->u.x.brush.pixmap );
|
|
dc->u.x.brush.pixmap = 0;
|
|
}
|
|
dc->u.x.brush.style = brush->logbrush.lbStyle;
|
|
|
|
switch(brush->logbrush.lbStyle)
|
|
{
|
|
case BS_NULL:
|
|
TRACE(gdi,"BS_NULL\n" );
|
|
break;
|
|
|
|
case BS_SOLID:
|
|
TRACE(gdi,"BS_SOLID\n" );
|
|
BRUSH_SelectSolidBrush( dc, brush->logbrush.lbColor );
|
|
break;
|
|
|
|
case BS_HATCHED:
|
|
TRACE(gdi, "BS_HATCHED\n" );
|
|
dc->u.x.brush.pixel = COLOR_ToPhysical( dc, brush->logbrush.lbColor );
|
|
dc->u.x.brush.pixmap = TSXCreateBitmapFromData( display, rootWindow,
|
|
HatchBrushes[brush->logbrush.lbHatch], 8, 8 );
|
|
dc->u.x.brush.fillStyle = FillStippled;
|
|
break;
|
|
|
|
case BS_PATTERN:
|
|
TRACE(gdi, "BS_PATTERN\n");
|
|
BRUSH_SelectPatternBrush( dc, (HBRUSH16)brush->logbrush.lbHatch );
|
|
break;
|
|
|
|
case BS_DIBPATTERN:
|
|
TRACE(gdi, "BS_DIBPATTERN\n");
|
|
if ((bmpInfo = (BITMAPINFO *) GlobalLock16( (HGLOBAL16)brush->logbrush.lbHatch )))
|
|
{
|
|
int size = DIB_BitmapInfoSize( bmpInfo, brush->logbrush.lbColor );
|
|
hBitmap = CreateDIBitmap32( dc->hSelf, &bmpInfo->bmiHeader,
|
|
CBM_INIT, ((char *)bmpInfo) + size,
|
|
bmpInfo,
|
|
(WORD)brush->logbrush.lbColor );
|
|
BRUSH_SelectPatternBrush( dc, hBitmap );
|
|
DeleteObject16( hBitmap );
|
|
GlobalUnlock16( (HGLOBAL16)brush->logbrush.lbHatch );
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
return prevHandle;
|
|
}
|