brush.c 10.9 KB
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
1
/*
2
 * X11DRV brush objects
Alexandre Julliard's avatar
Alexandre Julliard committed
3 4
 *
 * Copyright 1993, 1994  Alexandre Julliard
5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliard's avatar
Alexandre Julliard committed
19 20
 */

Patrik Stridvall's avatar
Patrik Stridvall committed
21 22
#include "config.h"

Alexandre Julliard's avatar
Alexandre Julliard committed
23
#include <stdlib.h>
24

25
#include "wine/winbase16.h"
Alexandre Julliard's avatar
Alexandre Julliard committed
26
#include "x11drv.h"
27
#include "wine/debug.h"
Alexandre Julliard's avatar
Alexandre Julliard committed
28

29
WINE_DEFAULT_DEBUG_CHANNEL(gdi);
30

31
static const char HatchBrushes[][8] =
Alexandre Julliard's avatar
Alexandre Julliard committed
32 33 34 35 36 37
{
    { 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      */
Alexandre Julliard's avatar
Alexandre Julliard committed
38
    { 0x81, 0x42, 0x24, 0x18, 0x18, 0x24, 0x42, 0x81 }, /* HS_DIAGCROSS  */
Alexandre Julliard's avatar
Alexandre Julliard committed
39 40 41
};

  /* Levels of each primary for dithering */
42
#define PRIMARY_LEVELS  3
Alexandre Julliard's avatar
Alexandre Julliard committed
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
#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) \
98
    X11DRV_PALETTE_mapEGAPixel[EGAmapping[((r)*PRIMARY_LEVELS+(g))*PRIMARY_LEVELS+(b)]]
Alexandre Julliard's avatar
Alexandre Julliard committed
99

100 101
static const COLORREF BLACK = RGB(0, 0, 0);
static const COLORREF WHITE = RGB(0xff, 0xff, 0xff);
Alexandre Julliard's avatar
Alexandre Julliard committed
102 103 104 105

/***********************************************************************
 *           BRUSH_DitherColor
 */
106
static Pixmap BRUSH_DitherColor( COLORREF color, int depth)
Alexandre Julliard's avatar
Alexandre Julliard committed
107
{
108 109
    /* X image for building dithered pixmap */
    static XImage *ditherImage = NULL;
Alexandre Julliard's avatar
Alexandre Julliard committed
110 111 112
    static COLORREF prevColor = 0xffffffff;
    unsigned int x, y;
    Pixmap pixmap;
113
    GC gc = get_bitmap_gc(depth);
Alexandre Julliard's avatar
Alexandre Julliard committed
114

115 116
    if (!ditherImage)
    {
117
        ditherImage = X11DRV_DIB_CreateXImage( MATRIX_SIZE, MATRIX_SIZE, depth );
118 119 120 121 122
        if (!ditherImage) 
        {
            ERR("Could not create dither image\n");
            return 0;
        }
123 124
    }

125
    wine_tsx11_lock();
Alexandre Julliard's avatar
Alexandre Julliard committed
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
    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;
Alexandre Julliard's avatar
Alexandre Julliard committed
141
		XPutPixel( ditherImage, x, y, PIXEL_VALUE(dr,dg,db) );
Alexandre Julliard's avatar
Alexandre Julliard committed
142 143 144 145
	    }
	}
	prevColor = color;
    }
146

147
    pixmap = XCreatePixmap( gdi_display, root_window, MATRIX_SIZE, MATRIX_SIZE, depth );
148
    XPutImage( gdi_display, pixmap, gc, ditherImage, 0, 0,
149
    	       0, 0, MATRIX_SIZE, MATRIX_SIZE );
150
    wine_tsx11_unlock();
151

Alexandre Julliard's avatar
Alexandre Julliard committed
152 153 154 155
    return pixmap;
}


156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
/***********************************************************************
 *           BRUSH_DitherMono
 */
static Pixmap BRUSH_DitherMono( COLORREF color )
{
    /* This makes the spray work in Win 3.11 pbrush.exe */
    /* FIXME. Extend this basic selection of dither patterns */
    static const char gray_dither[][2] = {{ 0x1, 0x0 }, /* DKGRAY */
                                          { 0x2, 0x1 }, /* GRAY */
                                          { 0x1, 0x3 }, /* LTGRAY */
    };                                      
    int gray = (30 * GetRValue(color) + 59 * GetGValue(color) + 11 * GetBValue(color)) / 100;
    int idx = gray * (sizeof gray_dither/sizeof gray_dither[0] + 1)/256 - 1;
    Pixmap pixmap;

171
    TRACE("color=%06x -> gray=%x\n", color, gray);
172 173 174 175 176 177 178 179 180

    wine_tsx11_lock();
    pixmap = XCreateBitmapFromData( gdi_display, root_window, 
                                    gray_dither[idx],
                                    2, 2 );
    wine_tsx11_unlock();
    return pixmap;
}

Alexandre Julliard's avatar
Alexandre Julliard committed
181 182 183
/***********************************************************************
 *           BRUSH_SelectSolidBrush
 */
184
static void BRUSH_SelectSolidBrush( X11DRV_PDEVICE *physDev, COLORREF color )
Alexandre Julliard's avatar
Alexandre Julliard committed
185
{
186
    COLORREF colorRGB = X11DRV_PALETTE_GetColor( physDev, color );
187
    if ((physDev->depth > 1) && (screen_depth <= 8) && !X11DRV_IsSolidColor( color ))
Alexandre Julliard's avatar
Alexandre Julliard committed
188 189
    {
	  /* Dithered brush */
190
	physDev->brush.pixmap = BRUSH_DitherColor( colorRGB, physDev->depth );
191 192
	physDev->brush.fillStyle = FillTiled;
	physDev->brush.pixel = 0;
Alexandre Julliard's avatar
Alexandre Julliard committed
193
    }
194
    else if (physDev->depth == 1 && colorRGB != WHITE && colorRGB != BLACK)
195 196
    {
	physDev->brush.pixel = 0;
197
	physDev->brush.pixmap = BRUSH_DitherMono( colorRGB );
198 199
	physDev->brush.fillStyle = FillTiled;
    }
Alexandre Julliard's avatar
Alexandre Julliard committed
200 201 202
    else
    {
	  /* Solid brush */
203
	physDev->brush.pixel = X11DRV_PALETTE_ToPhysical( physDev, color );
204
	physDev->brush.fillStyle = FillSolid;
Alexandre Julliard's avatar
Alexandre Julliard committed
205 206 207 208 209 210 211
    }
}


/***********************************************************************
 *           BRUSH_SelectPatternBrush
 */
212
static BOOL BRUSH_SelectPatternBrush( X11DRV_PDEVICE *physDev, HBITMAP hbitmap )
Alexandre Julliard's avatar
Alexandre Julliard committed
213
{
214 215
    BITMAP bitmap;
    X_PHYSBITMAP *physBitmap = X11DRV_get_phys_bitmap( hbitmap );
Alexandre Julliard's avatar
Alexandre Julliard committed
216

217
    if (!physBitmap || !GetObjectW( hbitmap, sizeof(bitmap), &bitmap )) return FALSE;
218

219 220
    X11DRV_DIB_Lock( physBitmap, DIB_Status_GdiMod );

221
    if ((physDev->depth == 1) && (physBitmap->depth != 1))
Alexandre Julliard's avatar
Alexandre Julliard committed
222
    {
223
        wine_tsx11_lock();
Alexandre Julliard's avatar
Alexandre Julliard committed
224
        /* Special case: a color pattern on a monochrome DC */
225
        physDev->brush.pixmap = XCreatePixmap( gdi_display, root_window,
226
                                               bitmap.bmWidth, bitmap.bmHeight, 1);
Alexandre Julliard's avatar
Alexandre Julliard committed
227
        /* FIXME: should probably convert to monochrome instead */
228
        XCopyPlane( gdi_display, physBitmap->pixmap, physDev->brush.pixmap,
229
                    get_bitmap_gc(1), 0, 0, bitmap.bmWidth, bitmap.bmHeight, 0, 0, 1 );
230
        wine_tsx11_unlock();
Alexandre Julliard's avatar
Alexandre Julliard committed
231 232 233
    }
    else
    {
234 235
        /* XRender is needed because of possible depth conversion */
        X11DRV_XRender_CopyBrush(physDev, physBitmap, bitmap.bmWidth, bitmap.bmHeight);
Alexandre Julliard's avatar
Alexandre Julliard committed
236
    }
237

238 239
    X11DRV_DIB_Unlock( physBitmap, TRUE );

240
    if (physBitmap->depth > 1)
Alexandre Julliard's avatar
Alexandre Julliard committed
241
    {
242 243
	physDev->brush.fillStyle = FillTiled;
	physDev->brush.pixel = 0;  /* Ignored */
Alexandre Julliard's avatar
Alexandre Julliard committed
244 245 246
    }
    else
    {
247 248
	physDev->brush.fillStyle = FillOpaqueStippled;
	physDev->brush.pixel = -1;  /* Special case (see DC_SetupGCForBrush) */
Alexandre Julliard's avatar
Alexandre Julliard committed
249
    }
250
    return TRUE;
Alexandre Julliard's avatar
Alexandre Julliard committed
251 252 253
}


254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
/***********************************************************************
 *           BRUSH_SelectDIBPatternBrush
 */
static BOOL BRUSH_SelectDIBPatternBrush( X11DRV_PDEVICE *physDev, HGLOBAL mem )
{
    BOOL ret;
    HDC memdc;
    BITMAPINFO *info = GlobalLock( mem );
    HBITMAP bitmap = CreateDIBitmap( physDev->dev.hdc, &info->bmiHeader, CBM_INIT,
                                     (LPBYTE)info + bitmap_info_size( info, DIB_RGB_COLORS ),
                                     info, DIB_RGB_COLORS );

    /* make sure it's owned by x11drv */
    memdc = CreateCompatibleDC( physDev->dev.hdc );
    SelectObject( memdc, bitmap );
    DeleteDC( memdc );

    if ((ret = BRUSH_SelectPatternBrush( physDev, bitmap )))
    {
        X_PHYSBITMAP *physBitmap = X11DRV_get_phys_bitmap( bitmap );
        physBitmap->pixmap = 0;  /* so it doesn't get freed */
    }
    DeleteObject( bitmap );
    GlobalUnlock( mem );
    return ret;
}


Alexandre Julliard's avatar
Alexandre Julliard committed
282
/***********************************************************************
283
 *           SelectBrush   (X11DRV.@)
Alexandre Julliard's avatar
Alexandre Julliard committed
284
 */
285
HBRUSH X11DRV_SelectBrush( PHYSDEV dev, HBRUSH hbrush )
Alexandre Julliard's avatar
Alexandre Julliard committed
286
{
287
    X11DRV_PDEVICE *physDev = get_x11drv_dev( dev );
288 289 290 291
    LOGBRUSH logbrush;

    if (!GetObjectA( hbrush, sizeof(logbrush), &logbrush )) return 0;

292
    TRACE("hdc=%p hbrush=%p\n", dev->hdc, hbrush);
Alexandre Julliard's avatar
Alexandre Julliard committed
293

294
    if (physDev->brush.pixmap)
Alexandre Julliard's avatar
Alexandre Julliard committed
295
    {
296 297 298 299
        wine_tsx11_lock();
        XFreePixmap( gdi_display, physDev->brush.pixmap );
        wine_tsx11_unlock();
        physDev->brush.pixmap = 0;
Alexandre Julliard's avatar
Alexandre Julliard committed
300
    }
301
    physDev->brush.style = logbrush.lbStyle;
302
    if (hbrush == GetStockObject( DC_BRUSH ))
303
        logbrush.lbColor = GetDCBrushColor( dev->hdc );
304

305
    switch(logbrush.lbStyle)
Alexandre Julliard's avatar
Alexandre Julliard committed
306 307
    {
      case BS_NULL:
308
	TRACE("BS_NULL\n" );
Alexandre Julliard's avatar
Alexandre Julliard committed
309 310 311
	break;

      case BS_SOLID:
312
        TRACE("BS_SOLID\n" );
313
	BRUSH_SelectSolidBrush( physDev, logbrush.lbColor );
Alexandre Julliard's avatar
Alexandre Julliard committed
314
	break;
315

Alexandre Julliard's avatar
Alexandre Julliard committed
316
      case BS_HATCHED:
317
	TRACE("BS_HATCHED\n" );
318
	physDev->brush.pixel = X11DRV_PALETTE_ToPhysical( physDev, logbrush.lbColor );
319 320 321 322
        wine_tsx11_lock();
        physDev->brush.pixmap = XCreateBitmapFromData( gdi_display, root_window,
                                                       HatchBrushes[logbrush.lbHatch], 8, 8 );
        wine_tsx11_unlock();
323
	physDev->brush.fillStyle = FillStippled;
Alexandre Julliard's avatar
Alexandre Julliard committed
324
	break;
325

Alexandre Julliard's avatar
Alexandre Julliard committed
326
      case BS_PATTERN:
327
	TRACE("BS_PATTERN\n");
328
	if (!BRUSH_SelectPatternBrush( physDev, (HBITMAP)logbrush.lbHatch )) return 0;
Alexandre Julliard's avatar
Alexandre Julliard committed
329 330 331
	break;

      case BS_DIBPATTERN:
332
	TRACE("BS_DIBPATTERN\n");
333
	if (!BRUSH_SelectDIBPatternBrush( physDev, (HGLOBAL)logbrush.lbHatch )) return 0;
Alexandre Julliard's avatar
Alexandre Julliard committed
334 335
	break;
    }
336
    return hbrush;
Alexandre Julliard's avatar
Alexandre Julliard committed
337
}
338 339 340 341 342


/***********************************************************************
 *           SetDCBrushColor (X11DRV.@)
 */
343
COLORREF X11DRV_SetDCBrushColor( PHYSDEV dev, COLORREF crColor )
344
{
345 346
    X11DRV_PDEVICE *physDev = get_x11drv_dev( dev );

347
    if (GetCurrentObject(dev->hdc, OBJ_BRUSH) == GetStockObject( DC_BRUSH ))
348 349 350 351
        BRUSH_SelectSolidBrush( physDev, crColor );

    return crColor;
}