mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 06:30:37 +00:00
2d159fb707
Thu Jul 14 17:50:45 1994 Bob Amstadt (bob@pooh) * [Configure] Autodetects Linux version (if running Linux). * [loader/signal.c] New signals for Linux. * [loader/ldtlib.c] New structure field in sys call. Sun Jul 10 19:31:34 1994 Olaf Flebbe (olaf@dragon) * [load/resource.c] fixed Memory (Resource) Leak. * [load/main.c] fixed a printf. Tue Jul 12 18:50:34 1994 Alexandre Julliard (julliard@lamisun.epfl.ch) * [controls/desktop.c] Implemented desktop wallpaper (only 16 colors for now). * [controls/menu.c] [windows/nonclient.c] Preliminary work to allow multi-line menus. * [misc/main.c] No backing store on desktop window (not useful). * [objects/text.c] A few fixes to DrawText() to make underlines under mnemonic letters to look better. * [windows/graphics.c] More fixes to GRAPH_DrawArc(), and some fixes to Polygon(). Implemented PolyPolygon() (partially working). * [windows/winpos.c] New function WINPOS_SendNCCalcSize(). Cleaned up SetWindowPos() and added preliminary support for multi-line menus. Mon Jul 11 19:15:51 1994 Miguel de Icaza (miguel@sphinx) * [controls/edit.c] Changes to work as a library. * [if1632/callback.c] Ifdefed module. * [if1632/relay.c] Changes to allow linking with WineLib. * [include/windows.h] Added macro WINELIB_UNIMP * [loader/library.c] When compiling WineLib, GetProcAddress is not implemented yet. * [loader/main.c] Added empty InitDLL when using WineLib. * [loader/ne_image.c] Some parts of the loader are needed for WineLib, ifdefed correctly * [misc/{audio.c,mcicda.c,mmaux.c,mmsystem.c] Disable compilation of module when compiling WineLib. * [toolkit/heap.c] Fixed small bug. When passed an invalid handle WineLib would crash, now return NULL. * [toolkit/winmain.c] Call CreateNewTask in _WinMain. Sun Jul 10 09:08:02 1994 David Metcalfe <david@prism.demon.co.uk> * [controls/edit.c] [controls/widget.c] More changes to improve compatibility with Windows' edit control. Finished off tab stop support. Mon Jul 11 21:05:02 MET DST 1994 Erik Bos <erik@hacktic.nl> * [if1632/relay.c] # of ordinals in shell.dll changed to 103. * [loader/signal.c] sti, cli will now be ignored. * [objects/brush.c] Added stub for GetSysColorBrush().
306 lines
8.1 KiB
C
306 lines
8.1 KiB
C
/*
|
|
* GDI brush objects
|
|
*
|
|
* Copyright 1993 Alexandre Julliard
|
|
*/
|
|
|
|
static char Copyright[] = "Copyright Alexandre Julliard, 1993";
|
|
|
|
#include "gdi.h"
|
|
#include "bitmap.h"
|
|
#include "prototypes.h"
|
|
#include "metafile.h"
|
|
|
|
|
|
#define NB_HATCH_STYLES 6
|
|
|
|
static char HatchBrushes[NB_HATCH_STYLES][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 */
|
|
};
|
|
|
|
extern WORD COLOR_ToPhysical( DC *dc, COLORREF color );
|
|
|
|
|
|
/***********************************************************************
|
|
* CreateBrushIndirect (GDI.50)
|
|
*/
|
|
HBRUSH CreateBrushIndirect( LOGBRUSH * brush )
|
|
{
|
|
BRUSHOBJ * brushPtr;
|
|
HBRUSH hbrush = GDI_AllocObject( sizeof(BRUSHOBJ), BRUSH_MAGIC );
|
|
if (!hbrush) return 0;
|
|
brushPtr = (BRUSHOBJ *) GDI_HEAP_ADDR( hbrush );
|
|
memcpy( &brushPtr->logbrush, brush, sizeof(LOGBRUSH) );
|
|
return hbrush;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* CreateHatchBrush (GDI.58)
|
|
*/
|
|
HBRUSH CreateHatchBrush( short style, COLORREF color )
|
|
{
|
|
LOGBRUSH logbrush = { BS_HATCHED, color, style };
|
|
#ifdef DEBUG_GDI
|
|
printf( "CreateHatchBrush: %d %06x\n", style, color );
|
|
#endif
|
|
if ((style < 0) || (style >= NB_HATCH_STYLES)) return 0;
|
|
return CreateBrushIndirect( &logbrush );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* CreatePatternBrush (GDI.60)
|
|
*/
|
|
HBRUSH CreatePatternBrush( HBITMAP hbitmap )
|
|
{
|
|
LOGBRUSH logbrush = { BS_PATTERN, 0, 0 };
|
|
BITMAPOBJ *bmp, *newbmp;
|
|
|
|
#ifdef DEBUG_GDI
|
|
printf( "CreatePatternBrush: %d\n", hbitmap );
|
|
#endif
|
|
|
|
/* Make a copy of the bitmap */
|
|
|
|
if (!(bmp = (BITMAPOBJ *) GDI_GetObjPtr( hbitmap, BITMAP_MAGIC )))
|
|
return 0;
|
|
logbrush.lbHatch = CreateBitmapIndirect( &bmp->bitmap );
|
|
newbmp = (BITMAPOBJ *) GDI_GetObjPtr( logbrush.lbHatch, BITMAP_MAGIC );
|
|
if (!newbmp) return 0;
|
|
XCopyArea( display, bmp->pixmap, newbmp->pixmap, BITMAP_GC(bmp),
|
|
0, 0, bmp->bitmap.bmWidth, bmp->bitmap.bmHeight, 0, 0 );
|
|
return CreateBrushIndirect( &logbrush );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* CreateDIBPatternBrush (GDI.445)
|
|
*/
|
|
HBRUSH CreateDIBPatternBrush( HANDLE hbitmap, WORD coloruse )
|
|
{
|
|
LOGBRUSH logbrush = { BS_DIBPATTERN, coloruse, 0 };
|
|
BITMAPINFO *info, *newInfo;
|
|
int size;
|
|
|
|
#ifdef DEBUG_GDI
|
|
printf( "CreateDIBPatternBrush: %d\n", hbitmap );
|
|
#endif
|
|
|
|
/* Make a copy of the bitmap */
|
|
|
|
if (!(info = (BITMAPINFO *) GlobalLock( hbitmap ))) return 0;
|
|
|
|
size = info->bmiHeader.biSizeImage;
|
|
if (!size)
|
|
size = (info->bmiHeader.biWidth * info->bmiHeader.biBitCount + 31) / 32
|
|
* 8 * info->bmiHeader.biHeight;
|
|
size += DIB_BitmapInfoSize( info, coloruse );
|
|
|
|
if (!(logbrush.lbHatch = GlobalAlloc( GMEM_MOVEABLE, size )))
|
|
{
|
|
GlobalUnlock( hbitmap );
|
|
return 0;
|
|
}
|
|
newInfo = (BITMAPINFO *) GlobalLock( logbrush.lbHatch );
|
|
memcpy( newInfo, info, size );
|
|
GlobalUnlock( logbrush.lbHatch );
|
|
GlobalUnlock( hbitmap );
|
|
return CreateBrushIndirect( &logbrush );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* CreateSolidBrush (GDI.66)
|
|
*/
|
|
HBRUSH CreateSolidBrush( COLORREF color )
|
|
{
|
|
LOGBRUSH logbrush = { BS_SOLID, color, 0 };
|
|
#ifdef DEBUG_GDI
|
|
printf( "CreateSolidBrush: %06x\n", color );
|
|
#endif
|
|
return CreateBrushIndirect( &logbrush );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* SetBrushOrg (GDI.148)
|
|
*/
|
|
DWORD SetBrushOrg( HDC hdc, short x, short y )
|
|
{
|
|
DWORD retval;
|
|
DC * dc = (DC *) GDI_GetObjPtr( hdc, DC_MAGIC );
|
|
if (!dc) return FALSE;
|
|
retval = dc->w.brushOrgX | (dc->w.brushOrgY << 16);
|
|
dc->w.brushOrgX = x;
|
|
dc->w.brushOrgY = y;
|
|
return retval;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* GetSysColorBrush (USER.281)
|
|
*/
|
|
WORD GetSysColorBrush(WORD x)
|
|
{
|
|
return GetStockObject(GRAY_BRUSH);
|
|
}
|
|
|
|
/***********************************************************************
|
|
* BRUSH_DeleteObject
|
|
*/
|
|
BOOL BRUSH_DeleteObject( HBRUSH hbrush, BRUSHOBJ * brush )
|
|
{
|
|
switch(brush->logbrush.lbStyle)
|
|
{
|
|
case BS_PATTERN:
|
|
DeleteObject( brush->logbrush.lbHatch );
|
|
break;
|
|
case BS_DIBPATTERN:
|
|
GlobalFree( brush->logbrush.lbHatch );
|
|
break;
|
|
}
|
|
return GDI_FreeObject( hbrush );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* BRUSH_GetObject
|
|
*/
|
|
int BRUSH_GetObject( BRUSHOBJ * brush, int count, LPSTR buffer )
|
|
{
|
|
if (count > sizeof(LOGBRUSH)) count = sizeof(LOGBRUSH);
|
|
memcpy( buffer, &brush->logbrush, count );
|
|
return count;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* BRUSH_MakeSolidBrush
|
|
*/
|
|
static void BRUSH_SelectSolidBrush( DC *dc, COLORREF color )
|
|
{
|
|
if ((dc->w.bitsPerPixel > 1) && !COLOR_IsSolid( color ))
|
|
{
|
|
/* Dithered brush */
|
|
dc->u.x.brush.pixmap = DITHER_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 BOOL BRUSH_SelectPatternBrush( DC * dc, HBITMAP hbitmap )
|
|
{
|
|
BITMAPOBJ * bmp = (BITMAPOBJ *) GDI_GetObjPtr( hbitmap, BITMAP_MAGIC );
|
|
if (!bmp) return FALSE;
|
|
dc->u.x.brush.pixmap = XCreatePixmap( display, rootWindow,
|
|
8, 8, bmp->bitmap.bmBitsPixel );
|
|
XCopyArea( 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) */
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
* BRUSH_SelectObject
|
|
*/
|
|
HBRUSH BRUSH_SelectObject( HDC hdc, DC * dc, HBRUSH hbrush, BRUSHOBJ * brush )
|
|
{
|
|
HBITMAP hBitmap;
|
|
BITMAPINFO * bmpInfo;
|
|
HBRUSH prevHandle = dc->w.hBrush;
|
|
|
|
if (dc->header.wMagic == METAFILE_DC_MAGIC)
|
|
{
|
|
switch (brush->logbrush.lbStyle)
|
|
{
|
|
case BS_SOLID:
|
|
case BS_HATCHED:
|
|
case BS_HOLLOW:
|
|
if (!MF_CreateBrushIndirect(dc, hbrush, &(brush->logbrush)))
|
|
return 0;
|
|
break;
|
|
|
|
case BS_PATTERN:
|
|
case BS_DIBPATTERN:
|
|
if (!MF_CreatePatternBrush(dc, hbrush, &(brush->logbrush)))
|
|
return 0;
|
|
break;
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
dc->w.hBrush = hbrush;
|
|
|
|
if (dc->u.x.brush.pixmap)
|
|
{
|
|
XFreePixmap( 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:
|
|
break;
|
|
|
|
case BS_SOLID:
|
|
BRUSH_SelectSolidBrush( dc, brush->logbrush.lbColor );
|
|
break;
|
|
|
|
case BS_HATCHED:
|
|
dc->u.x.brush.pixel = COLOR_ToPhysical( dc, brush->logbrush.lbColor );
|
|
dc->u.x.brush.pixmap = XCreateBitmapFromData( display, rootWindow,
|
|
HatchBrushes[brush->logbrush.lbHatch], 8, 8 );
|
|
dc->u.x.brush.fillStyle = FillStippled;
|
|
break;
|
|
|
|
case BS_PATTERN:
|
|
BRUSH_SelectPatternBrush( dc, brush->logbrush.lbHatch );
|
|
break;
|
|
|
|
case BS_DIBPATTERN:
|
|
if ((bmpInfo = (BITMAPINFO *) GlobalLock( brush->logbrush.lbHatch )))
|
|
{
|
|
int size = DIB_BitmapInfoSize( bmpInfo, brush->logbrush.lbColor );
|
|
hBitmap = CreateDIBitmap( hdc, &bmpInfo->bmiHeader, CBM_INIT,
|
|
((char *)bmpInfo) + size, bmpInfo,
|
|
(WORD) brush->logbrush.lbColor );
|
|
BRUSH_SelectPatternBrush( dc, hBitmap );
|
|
DeleteObject( hBitmap );
|
|
GlobalUnlock( brush->logbrush.lbHatch );
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
return prevHandle;
|
|
}
|