1997-02-02 20:01:52 +01:00
|
|
|
/*
|
1998-10-28 10:53:53 +01:00
|
|
|
* X11DRV bitmap objects
|
1997-02-02 20:01:52 +01:00
|
|
|
*
|
|
|
|
* Copyright 1993 Alexandre Julliard
|
1999-09-20 17:42:47 +02:00
|
|
|
* 1999 Noel Borthwick
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1997-02-02 20:01:52 +01:00
|
|
|
*/
|
|
|
|
|
1999-02-04 12:11:01 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2005-04-13 17:23:15 +02:00
|
|
|
#include "windef.h"
|
|
|
|
#include "wingdi.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
1998-10-28 10:53:53 +01:00
|
|
|
#include "x11drv.h"
|
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(x11drv);
|
1999-04-19 16:56:29 +02:00
|
|
|
|
1998-10-28 10:53:53 +01:00
|
|
|
/* GCs used for B&W and color bitmap operations */
|
|
|
|
GC BITMAP_monoGC = 0, BITMAP_colorGC = 0;
|
2005-04-12 13:59:48 +02:00
|
|
|
X_PHYSBITMAP BITMAP_stock_phys_bitmap = { 0 }; /* phys bitmap for the default stock bitmap */
|
1998-10-28 10:53:53 +01:00
|
|
|
|
2005-04-13 17:23:15 +02:00
|
|
|
static XContext bitmap_context; /* X context to associate a phys bitmap to a handle */
|
|
|
|
|
1997-02-02 20:01:52 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* X11DRV_BITMAP_Init
|
|
|
|
*/
|
2004-07-13 05:49:52 +02:00
|
|
|
void X11DRV_BITMAP_Init(void)
|
1997-02-02 20:01:52 +01:00
|
|
|
{
|
|
|
|
Pixmap tmpPixmap;
|
2001-05-11 02:17:47 +02:00
|
|
|
|
1997-02-02 20:01:52 +01:00
|
|
|
/* Create the necessary GCs */
|
2001-05-11 02:17:47 +02:00
|
|
|
|
|
|
|
wine_tsx11_lock();
|
2005-04-13 17:23:15 +02:00
|
|
|
bitmap_context = XUniqueContext();
|
2005-04-12 13:59:48 +02:00
|
|
|
BITMAP_stock_phys_bitmap.pixmap_depth = 1;
|
|
|
|
BITMAP_stock_phys_bitmap.pixmap = XCreatePixmap( gdi_display, root_window, 1, 1, 1 );
|
|
|
|
BITMAP_monoGC = XCreateGC( gdi_display, BITMAP_stock_phys_bitmap.pixmap, 0, NULL );
|
2002-05-31 20:43:22 +02:00
|
|
|
XSetGraphicsExposures( gdi_display, BITMAP_monoGC, False );
|
|
|
|
XSetSubwindowMode( gdi_display, BITMAP_monoGC, IncludeInferiors );
|
1997-02-02 20:01:52 +01:00
|
|
|
|
2001-05-11 02:17:47 +02:00
|
|
|
if (screen_depth != 1)
|
1997-02-02 20:01:52 +01:00
|
|
|
{
|
2001-05-11 02:17:47 +02:00
|
|
|
if ((tmpPixmap = XCreatePixmap( gdi_display, root_window, 1, 1, screen_depth )))
|
|
|
|
{
|
|
|
|
BITMAP_colorGC = XCreateGC( gdi_display, tmpPixmap, 0, NULL );
|
|
|
|
XSetGraphicsExposures( gdi_display, BITMAP_colorGC, False );
|
2001-06-04 23:55:17 +02:00
|
|
|
XSetSubwindowMode( gdi_display, BITMAP_colorGC, IncludeInferiors );
|
2001-05-11 02:17:47 +02:00
|
|
|
XFreePixmap( gdi_display, tmpPixmap );
|
|
|
|
}
|
1997-02-02 20:01:52 +01:00
|
|
|
}
|
2001-05-11 02:17:47 +02:00
|
|
|
wine_tsx11_unlock();
|
1997-02-02 20:01:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2002-04-03 04:37:09 +02:00
|
|
|
* SelectBitmap (X11DRV.@)
|
1997-02-02 20:01:52 +01:00
|
|
|
*/
|
2002-03-28 23:22:05 +01:00
|
|
|
HBITMAP X11DRV_SelectBitmap( X11DRV_PDEVICE *physDev, HBITMAP hbitmap )
|
1997-02-02 20:01:52 +01:00
|
|
|
{
|
2005-04-12 13:59:48 +02:00
|
|
|
X_PHYSBITMAP *physBitmap;
|
2001-08-16 21:13:52 +02:00
|
|
|
|
2002-11-14 23:31:34 +01:00
|
|
|
if(physDev->xrender)
|
|
|
|
X11DRV_XRender_UpdateDrawable( physDev );
|
|
|
|
|
2005-04-12 13:59:48 +02:00
|
|
|
if (hbitmap == BITMAP_stock_phys_bitmap.hbitmap) physBitmap = &BITMAP_stock_phys_bitmap;
|
|
|
|
else if (!(physBitmap = X11DRV_get_phys_bitmap( hbitmap ))) return 0;
|
|
|
|
|
|
|
|
physDev->bitmap = physBitmap;
|
|
|
|
physDev->drawable = physBitmap->pixmap;
|
2000-08-19 23:38:55 +02:00
|
|
|
|
1997-02-02 20:01:52 +01:00
|
|
|
/* Change GC depth if needed */
|
|
|
|
|
2005-04-12 13:59:48 +02:00
|
|
|
if (physDev->depth != physBitmap->pixmap_depth)
|
1997-02-02 20:01:52 +01:00
|
|
|
{
|
2005-04-12 13:59:48 +02:00
|
|
|
physDev->depth = physBitmap->pixmap_depth;
|
2001-05-11 02:17:47 +02:00
|
|
|
wine_tsx11_lock();
|
|
|
|
XFreeGC( gdi_display, physDev->gc );
|
|
|
|
physDev->gc = XCreateGC( gdi_display, physDev->drawable, 0, NULL );
|
|
|
|
XSetGraphicsExposures( gdi_display, physDev->gc, False );
|
2001-06-04 23:55:17 +02:00
|
|
|
XSetSubwindowMode( gdi_display, physDev->gc, IncludeInferiors );
|
|
|
|
XFlush( gdi_display );
|
2001-05-11 02:17:47 +02:00
|
|
|
wine_tsx11_unlock();
|
1997-02-02 20:01:52 +01:00
|
|
|
}
|
2002-03-28 23:22:05 +01:00
|
|
|
return hbitmap;
|
1997-02-02 20:01:52 +01:00
|
|
|
}
|
1998-10-28 10:53:53 +01:00
|
|
|
|
|
|
|
|
|
|
|
/****************************************************************************
|
2002-05-31 20:43:22 +02:00
|
|
|
* CreateBitmap (X11DRV.@)
|
1998-10-28 10:53:53 +01:00
|
|
|
*
|
|
|
|
* Create a device dependent X11 bitmap
|
|
|
|
*
|
|
|
|
* Returns TRUE on success else FALSE
|
|
|
|
*/
|
2002-05-31 20:43:22 +02:00
|
|
|
BOOL X11DRV_CreateBitmap( X11DRV_PDEVICE *physDev, HBITMAP hbitmap )
|
1998-10-28 10:53:53 +01:00
|
|
|
{
|
2005-03-31 21:13:03 +02:00
|
|
|
X_PHYSBITMAP *physBitmap;
|
2005-04-13 17:23:15 +02:00
|
|
|
BITMAP bitmap;
|
1998-10-28 10:53:53 +01:00
|
|
|
|
2005-04-13 17:23:15 +02:00
|
|
|
if (!GetObjectW( hbitmap, sizeof(bitmap), &bitmap )) return FALSE;
|
1998-10-28 10:53:53 +01:00
|
|
|
|
|
|
|
/* Check parameters */
|
2005-04-13 17:23:15 +02:00
|
|
|
if (bitmap.bmPlanes != 1) return FALSE;
|
2005-03-31 21:13:03 +02:00
|
|
|
|
2005-04-13 17:23:15 +02:00
|
|
|
if ((bitmap.bmBitsPixel != 1) && (bitmap.bmBitsPixel != screen_depth))
|
2000-03-25 15:05:06 +01:00
|
|
|
{
|
1999-06-26 21:09:08 +02:00
|
|
|
ERR("Trying to make bitmap with planes=%d, bpp=%d\n",
|
2005-04-13 17:23:15 +02:00
|
|
|
bitmap.bmPlanes, bitmap.bmBitsPixel);
|
|
|
|
return FALSE;
|
1998-10-28 10:53:53 +01:00
|
|
|
}
|
2005-04-12 13:59:48 +02:00
|
|
|
if (hbitmap == BITMAP_stock_phys_bitmap.hbitmap)
|
2002-05-31 20:43:22 +02:00
|
|
|
{
|
|
|
|
ERR( "called for stock bitmap, please report\n" );
|
2005-04-13 17:23:15 +02:00
|
|
|
return FALSE;
|
2002-05-31 20:43:22 +02:00
|
|
|
}
|
1998-10-28 10:53:53 +01:00
|
|
|
|
2005-04-13 17:23:15 +02:00
|
|
|
TRACE("(%p) %dx%d %d bpp\n", hbitmap, bitmap.bmWidth, bitmap.bmHeight, bitmap.bmBitsPixel);
|
1998-11-01 17:35:42 +01:00
|
|
|
|
2005-04-13 17:23:15 +02:00
|
|
|
if (!(physBitmap = X11DRV_init_phys_bitmap( hbitmap ))) return FALSE;
|
2005-03-31 21:13:03 +02:00
|
|
|
|
1998-10-28 10:53:53 +01:00
|
|
|
/* Create the pixmap */
|
2003-11-21 01:17:33 +01:00
|
|
|
wine_tsx11_lock();
|
2005-04-13 17:23:15 +02:00
|
|
|
physBitmap->pixmap_depth = bitmap.bmBitsPixel;
|
2005-03-31 21:13:03 +02:00
|
|
|
physBitmap->pixmap = XCreatePixmap(gdi_display, root_window,
|
2005-04-13 17:23:15 +02:00
|
|
|
bitmap.bmWidth, bitmap.bmHeight, bitmap.bmBitsPixel);
|
2003-11-21 01:17:33 +01:00
|
|
|
wine_tsx11_unlock();
|
2005-03-31 21:13:03 +02:00
|
|
|
if (!physBitmap->pixmap)
|
2000-03-28 15:37:50 +02:00
|
|
|
{
|
1999-06-26 21:09:08 +02:00
|
|
|
WARN("Can't create Pixmap\n");
|
2005-03-31 21:13:03 +02:00
|
|
|
HeapFree( GetProcessHeap(), 0, physBitmap );
|
2005-04-13 17:23:15 +02:00
|
|
|
return FALSE;
|
1998-10-28 10:53:53 +01:00
|
|
|
}
|
|
|
|
|
2005-04-13 17:23:15 +02:00
|
|
|
if (bitmap.bmBits) /* Set bitmap bits */
|
|
|
|
X11DRV_SetBitmapBits( hbitmap, bitmap.bmBits, bitmap.bmHeight * bitmap.bmWidthBytes );
|
|
|
|
return TRUE;
|
1998-10-28 10:53:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2002-05-31 20:43:22 +02:00
|
|
|
* GetBitmapBits (X11DRV.@)
|
2002-06-01 01:06:46 +02:00
|
|
|
*
|
1998-10-28 10:53:53 +01:00
|
|
|
* RETURNS
|
|
|
|
* Success: Number of bytes copied
|
|
|
|
* Failure: 0
|
|
|
|
*/
|
2002-05-31 20:43:22 +02:00
|
|
|
LONG X11DRV_GetBitmapBits( HBITMAP hbitmap, void *buffer, LONG count )
|
1998-10-28 10:53:53 +01:00
|
|
|
{
|
2005-04-11 20:54:30 +02:00
|
|
|
BITMAP bitmap;
|
|
|
|
X_PHYSBITMAP *physBitmap = X11DRV_get_phys_bitmap( hbitmap );
|
1998-10-28 10:53:53 +01:00
|
|
|
LONG old_height, height;
|
|
|
|
XImage *image;
|
1999-03-27 16:59:12 +01:00
|
|
|
LPBYTE tbuf, startline;
|
|
|
|
int h, w;
|
1998-10-28 10:53:53 +01:00
|
|
|
|
2005-04-11 20:54:30 +02:00
|
|
|
if (!physBitmap || !GetObjectW( hbitmap, sizeof(bitmap), &bitmap )) return 0;
|
|
|
|
|
|
|
|
TRACE("(bmp=%p, buffer=%p, count=0x%lx)\n", hbitmap, buffer, count);
|
1998-11-01 17:35:42 +01:00
|
|
|
|
2001-01-15 23:30:50 +01:00
|
|
|
wine_tsx11_lock();
|
1998-10-28 10:53:53 +01:00
|
|
|
|
|
|
|
/* Hack: change the bitmap height temporarily to avoid */
|
|
|
|
/* getting unnecessary bitmap rows. */
|
|
|
|
|
2005-04-11 20:54:30 +02:00
|
|
|
old_height = bitmap.bmHeight;
|
|
|
|
height = bitmap.bmHeight = count / bitmap.bmWidthBytes;
|
1998-10-28 10:53:53 +01:00
|
|
|
|
2005-04-11 20:54:30 +02:00
|
|
|
image = XGetImage( gdi_display, physBitmap->pixmap, 0, 0,
|
|
|
|
bitmap.bmWidth, bitmap.bmHeight, AllPlanes, ZPixmap );
|
|
|
|
bitmap.bmHeight = old_height;
|
1998-10-28 10:53:53 +01:00
|
|
|
|
|
|
|
/* copy XImage to 16 bit padded image buffer with real bitsperpixel */
|
|
|
|
|
1999-03-27 16:59:12 +01:00
|
|
|
startline = buffer;
|
2005-04-11 20:54:30 +02:00
|
|
|
switch (physBitmap->pixmap_depth)
|
1998-10-28 10:53:53 +01:00
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
for (h=0;h<height;h++)
|
|
|
|
{
|
1999-03-27 16:59:12 +01:00
|
|
|
tbuf = startline;
|
1998-10-28 10:53:53 +01:00
|
|
|
*tbuf = 0;
|
2005-04-11 20:54:30 +02:00
|
|
|
for (w=0;w<bitmap.bmWidth;w++)
|
1998-10-28 10:53:53 +01:00
|
|
|
{
|
|
|
|
if ((w%8) == 0)
|
|
|
|
*tbuf = 0;
|
|
|
|
*tbuf |= XGetPixel(image,w,h)<<(7-(w&7));
|
|
|
|
if ((w&7) == 7) ++tbuf;
|
|
|
|
}
|
2005-04-11 20:54:30 +02:00
|
|
|
startline += bitmap.bmWidthBytes;
|
1998-10-28 10:53:53 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
for (h=0;h<height;h++)
|
|
|
|
{
|
1999-03-27 16:59:12 +01:00
|
|
|
tbuf = startline;
|
2005-04-11 20:54:30 +02:00
|
|
|
for (w=0;w<bitmap.bmWidth;w++)
|
1998-10-28 10:53:53 +01:00
|
|
|
{
|
|
|
|
if (!(w & 1)) *tbuf = XGetPixel( image, w, h) << 4;
|
|
|
|
else *tbuf++ |= XGetPixel( image, w, h) & 0x0f;
|
|
|
|
}
|
2005-04-11 20:54:30 +02:00
|
|
|
startline += bitmap.bmWidthBytes;
|
1998-10-28 10:53:53 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
for (h=0;h<height;h++)
|
|
|
|
{
|
1999-03-27 16:59:12 +01:00
|
|
|
tbuf = startline;
|
2005-04-11 20:54:30 +02:00
|
|
|
for (w=0;w<bitmap.bmWidth;w++)
|
1998-10-28 10:53:53 +01:00
|
|
|
*tbuf++ = XGetPixel(image,w,h);
|
2005-04-11 20:54:30 +02:00
|
|
|
startline += bitmap.bmWidthBytes;
|
1998-10-28 10:53:53 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 15:
|
|
|
|
case 16:
|
|
|
|
for (h=0;h<height;h++)
|
|
|
|
{
|
1999-03-27 16:59:12 +01:00
|
|
|
tbuf = startline;
|
2005-04-11 20:54:30 +02:00
|
|
|
for (w=0;w<bitmap.bmWidth;w++)
|
1998-10-28 10:53:53 +01:00
|
|
|
{
|
|
|
|
long pixel = XGetPixel(image,w,h);
|
|
|
|
|
|
|
|
*tbuf++ = pixel & 0xff;
|
|
|
|
*tbuf++ = (pixel>>8) & 0xff;
|
|
|
|
}
|
2005-04-11 20:54:30 +02:00
|
|
|
startline += bitmap.bmWidthBytes;
|
1998-10-28 10:53:53 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 24:
|
|
|
|
for (h=0;h<height;h++)
|
|
|
|
{
|
1999-03-27 16:59:12 +01:00
|
|
|
tbuf = startline;
|
2005-04-11 20:54:30 +02:00
|
|
|
for (w=0;w<bitmap.bmWidth;w++)
|
1998-10-28 10:53:53 +01:00
|
|
|
{
|
|
|
|
long pixel = XGetPixel(image,w,h);
|
|
|
|
|
|
|
|
*tbuf++ = pixel & 0xff;
|
|
|
|
*tbuf++ = (pixel>> 8) & 0xff;
|
|
|
|
*tbuf++ = (pixel>>16) & 0xff;
|
|
|
|
}
|
2005-04-11 20:54:30 +02:00
|
|
|
startline += bitmap.bmWidthBytes;
|
1998-10-28 10:53:53 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 32:
|
|
|
|
for (h=0;h<height;h++)
|
|
|
|
{
|
1999-03-27 16:59:12 +01:00
|
|
|
tbuf = startline;
|
2005-04-11 20:54:30 +02:00
|
|
|
for (w=0;w<bitmap.bmWidth;w++)
|
1998-10-28 10:53:53 +01:00
|
|
|
{
|
|
|
|
long pixel = XGetPixel(image,w,h);
|
|
|
|
|
|
|
|
*tbuf++ = pixel & 0xff;
|
|
|
|
*tbuf++ = (pixel>> 8) & 0xff;
|
|
|
|
*tbuf++ = (pixel>>16) & 0xff;
|
|
|
|
*tbuf++ = (pixel>>24) & 0xff;
|
|
|
|
}
|
2005-04-11 20:54:30 +02:00
|
|
|
startline += bitmap.bmWidthBytes;
|
1998-10-28 10:53:53 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2005-04-11 20:54:30 +02:00
|
|
|
FIXME("Unhandled bits:%d\n", physBitmap->pixmap_depth);
|
1998-10-28 10:53:53 +01:00
|
|
|
}
|
|
|
|
XDestroyImage( image );
|
2001-01-15 23:30:50 +01:00
|
|
|
wine_tsx11_unlock();
|
1998-10-28 10:53:53 +01:00
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************
|
2002-05-31 20:43:22 +02:00
|
|
|
* SetBitmapBits (X11DRV.@)
|
1998-10-28 10:53:53 +01:00
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: Number of bytes used in setting the bitmap bits
|
|
|
|
* Failure: 0
|
|
|
|
*/
|
2002-05-31 20:43:22 +02:00
|
|
|
LONG X11DRV_SetBitmapBits( HBITMAP hbitmap, const void *bits, LONG count )
|
1998-10-28 10:53:53 +01:00
|
|
|
{
|
2005-04-11 20:54:30 +02:00
|
|
|
BITMAP bitmap;
|
|
|
|
X_PHYSBITMAP *physBitmap = X11DRV_get_phys_bitmap( hbitmap );
|
1998-10-28 10:53:53 +01:00
|
|
|
LONG height;
|
|
|
|
XImage *image;
|
2002-05-31 20:43:22 +02:00
|
|
|
const BYTE *sbuf, *startline;
|
1999-03-27 16:59:12 +01:00
|
|
|
int w, h;
|
1998-11-01 16:13:53 +01:00
|
|
|
|
2005-04-11 20:54:30 +02:00
|
|
|
if (!physBitmap || !GetObjectW( hbitmap, sizeof(bitmap), &bitmap )) return 0;
|
|
|
|
|
|
|
|
TRACE("(bmp=%p, bits=%p, count=0x%lx)\n", hbitmap, bits, count);
|
2002-05-31 20:43:22 +02:00
|
|
|
|
2005-04-11 20:54:30 +02:00
|
|
|
height = count / bitmap.bmWidthBytes;
|
1998-11-01 16:13:53 +01:00
|
|
|
|
2001-01-15 23:30:50 +01:00
|
|
|
wine_tsx11_lock();
|
2005-04-11 20:54:30 +02:00
|
|
|
image = XCreateImage( gdi_display, visual, physBitmap->pixmap_depth, ZPixmap, 0, NULL,
|
|
|
|
bitmap.bmWidth, height, 32, 0 );
|
|
|
|
if (!(image->data = malloc(image->bytes_per_line * height)))
|
2000-04-09 20:41:15 +02:00
|
|
|
{
|
|
|
|
WARN("No memory to create image data.\n");
|
|
|
|
XDestroyImage( image );
|
2001-01-15 23:30:50 +01:00
|
|
|
wine_tsx11_unlock();
|
2000-04-09 20:41:15 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1998-10-28 10:53:53 +01:00
|
|
|
/* copy 16 bit padded image buffer with real bitsperpixel to XImage */
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-03-27 16:59:12 +01:00
|
|
|
startline = bits;
|
|
|
|
|
2005-04-11 20:54:30 +02:00
|
|
|
switch (physBitmap->pixmap_depth)
|
1998-10-28 10:53:53 +01:00
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
for (h=0;h<height;h++)
|
|
|
|
{
|
1999-03-27 16:59:12 +01:00
|
|
|
sbuf = startline;
|
2005-04-11 20:54:30 +02:00
|
|
|
for (w=0;w<bitmap.bmWidth;w++)
|
1998-10-28 10:53:53 +01:00
|
|
|
{
|
|
|
|
XPutPixel(image,w,h,(sbuf[0]>>(7-(w&7))) & 1);
|
|
|
|
if ((w&7) == 7)
|
|
|
|
sbuf++;
|
|
|
|
}
|
2005-04-11 20:54:30 +02:00
|
|
|
startline += bitmap.bmWidthBytes;
|
1998-10-28 10:53:53 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
for (h=0;h<height;h++)
|
|
|
|
{
|
1999-03-27 16:59:12 +01:00
|
|
|
sbuf = startline;
|
2005-04-11 20:54:30 +02:00
|
|
|
for (w=0;w<bitmap.bmWidth;w++)
|
1998-10-28 10:53:53 +01:00
|
|
|
{
|
|
|
|
if (!(w & 1)) XPutPixel( image, w, h, *sbuf >> 4 );
|
|
|
|
else XPutPixel( image, w, h, *sbuf++ & 0xf );
|
|
|
|
}
|
2005-04-11 20:54:30 +02:00
|
|
|
startline += bitmap.bmWidthBytes;
|
1998-10-28 10:53:53 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
for (h=0;h<height;h++)
|
|
|
|
{
|
1999-03-27 16:59:12 +01:00
|
|
|
sbuf = startline;
|
2005-04-11 20:54:30 +02:00
|
|
|
for (w=0;w<bitmap.bmWidth;w++)
|
1998-10-28 10:53:53 +01:00
|
|
|
XPutPixel(image,w,h,*sbuf++);
|
2005-04-11 20:54:30 +02:00
|
|
|
startline += bitmap.bmWidthBytes;
|
1998-10-28 10:53:53 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 15:
|
|
|
|
case 16:
|
|
|
|
for (h=0;h<height;h++)
|
|
|
|
{
|
1999-03-27 16:59:12 +01:00
|
|
|
sbuf = startline;
|
2005-04-11 20:54:30 +02:00
|
|
|
for (w=0;w<bitmap.bmWidth;w++)
|
1998-10-28 10:53:53 +01:00
|
|
|
{
|
|
|
|
XPutPixel(image,w,h,sbuf[1]*256+sbuf[0]);
|
|
|
|
sbuf+=2;
|
|
|
|
}
|
2005-04-11 20:54:30 +02:00
|
|
|
startline += bitmap.bmWidthBytes;
|
1998-10-28 10:53:53 +01:00
|
|
|
}
|
|
|
|
break;
|
1999-03-27 16:59:12 +01:00
|
|
|
case 24:
|
1998-10-28 10:53:53 +01:00
|
|
|
for (h=0;h<height;h++)
|
|
|
|
{
|
1999-03-27 16:59:12 +01:00
|
|
|
sbuf = startline;
|
2005-04-11 20:54:30 +02:00
|
|
|
for (w=0;w<bitmap.bmWidth;w++)
|
1998-10-28 10:53:53 +01:00
|
|
|
{
|
|
|
|
XPutPixel(image,w,h,(sbuf[2]<<16)+(sbuf[1]<<8)+sbuf[0]);
|
|
|
|
sbuf += 3;
|
|
|
|
}
|
2005-04-11 20:54:30 +02:00
|
|
|
startline += bitmap.bmWidthBytes;
|
1998-10-28 10:53:53 +01:00
|
|
|
}
|
|
|
|
break;
|
2002-06-01 01:06:46 +02:00
|
|
|
case 32:
|
1998-10-28 10:53:53 +01:00
|
|
|
for (h=0;h<height;h++)
|
|
|
|
{
|
1999-03-27 16:59:12 +01:00
|
|
|
sbuf = startline;
|
2005-04-11 20:54:30 +02:00
|
|
|
for (w=0;w<bitmap.bmWidth;w++)
|
1998-10-28 10:53:53 +01:00
|
|
|
{
|
|
|
|
XPutPixel(image,w,h,(sbuf[3]<<24)+(sbuf[2]<<16)+(sbuf[1]<<8)+sbuf[0]);
|
|
|
|
sbuf += 4;
|
|
|
|
}
|
2005-04-11 20:54:30 +02:00
|
|
|
startline += bitmap.bmWidthBytes;
|
1998-10-28 10:53:53 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2005-04-11 20:54:30 +02:00
|
|
|
FIXME("Unhandled bits:%d\n", physBitmap->pixmap_depth);
|
1998-10-28 10:53:53 +01:00
|
|
|
|
|
|
|
}
|
2005-04-11 20:54:30 +02:00
|
|
|
XPutImage( gdi_display, physBitmap->pixmap, BITMAP_GC(physBitmap),
|
|
|
|
image, 0, 0, 0, 0, bitmap.bmWidth, height );
|
1998-11-01 17:35:42 +01:00
|
|
|
XDestroyImage( image ); /* frees image->data too */
|
2001-01-15 23:30:50 +01:00
|
|
|
wine_tsx11_unlock();
|
2002-05-31 20:43:22 +02:00
|
|
|
return count;
|
1998-10-28 10:53:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2002-05-31 20:43:22 +02:00
|
|
|
* DeleteBitmap (X11DRV.@)
|
1998-10-28 10:53:53 +01:00
|
|
|
*/
|
2002-05-31 20:43:22 +02:00
|
|
|
BOOL X11DRV_DeleteBitmap( HBITMAP hbitmap )
|
1998-10-28 10:53:53 +01:00
|
|
|
{
|
2005-04-13 17:23:15 +02:00
|
|
|
X_PHYSBITMAP *physBitmap = X11DRV_get_phys_bitmap( hbitmap );
|
2005-03-31 21:13:03 +02:00
|
|
|
|
2005-04-13 17:23:15 +02:00
|
|
|
if (physBitmap)
|
|
|
|
{
|
|
|
|
DIBSECTION dib;
|
2005-04-13 13:23:24 +02:00
|
|
|
|
2005-04-13 17:23:15 +02:00
|
|
|
if (GetObjectW( hbitmap, sizeof(dib), &dib ) == sizeof(dib))
|
|
|
|
X11DRV_DIB_DeleteDIBSection( physBitmap, &dib );
|
2005-04-13 13:23:24 +02:00
|
|
|
|
2005-04-13 17:23:15 +02:00
|
|
|
wine_tsx11_lock();
|
|
|
|
if (physBitmap->pixmap) XFreePixmap( gdi_display, physBitmap->pixmap );
|
|
|
|
XDeleteContext( gdi_display, (XID)hbitmap, bitmap_context );
|
|
|
|
wine_tsx11_unlock();
|
|
|
|
HeapFree( GetProcessHeap(), 0, physBitmap );
|
2001-08-16 21:13:52 +02:00
|
|
|
}
|
1998-10-28 10:53:53 +01:00
|
|
|
return TRUE;
|
|
|
|
}
|
1999-02-04 12:11:01 +01:00
|
|
|
|
1999-09-20 17:42:47 +02:00
|
|
|
|
2005-03-31 21:13:03 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* X11DRV_get_phys_bitmap
|
|
|
|
*
|
|
|
|
* Retrieve the X physical bitmap info.
|
|
|
|
*/
|
|
|
|
X_PHYSBITMAP *X11DRV_get_phys_bitmap( HBITMAP hbitmap )
|
|
|
|
{
|
2005-04-13 17:23:15 +02:00
|
|
|
X_PHYSBITMAP *ret;
|
|
|
|
|
|
|
|
wine_tsx11_lock();
|
|
|
|
if (XFindContext( gdi_display, (XID)hbitmap, bitmap_context, (char **)&ret )) ret = NULL;
|
|
|
|
wine_tsx11_unlock();
|
2005-03-31 21:13:03 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-04-01 14:03:52 +02:00
|
|
|
/***********************************************************************
|
2005-04-11 20:54:30 +02:00
|
|
|
* X11DRV_init_phys_bitmap
|
1999-04-01 14:03:52 +02:00
|
|
|
*
|
2005-04-13 17:23:15 +02:00
|
|
|
* Initialize the X physical bitmap info.
|
1999-04-01 14:03:52 +02:00
|
|
|
*/
|
2005-04-11 20:54:30 +02:00
|
|
|
X_PHYSBITMAP *X11DRV_init_phys_bitmap( HBITMAP hbitmap )
|
1999-04-01 14:03:52 +02:00
|
|
|
{
|
2005-04-13 17:23:15 +02:00
|
|
|
X_PHYSBITMAP *ret;
|
|
|
|
|
|
|
|
if ((ret = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*ret) )) != NULL)
|
2005-03-27 20:30:51 +02:00
|
|
|
{
|
2005-04-13 17:23:15 +02:00
|
|
|
ret->hbitmap = hbitmap;
|
|
|
|
wine_tsx11_lock();
|
|
|
|
XSaveContext( gdi_display, (XID)hbitmap, bitmap_context, (char *)ret );
|
|
|
|
wine_tsx11_unlock();
|
2001-09-07 17:28:10 +02:00
|
|
|
}
|
2005-03-27 20:30:51 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* X11DRV_get_pixmap
|
|
|
|
*
|
|
|
|
* Retrieve the pixmap associated to a bitmap.
|
|
|
|
*/
|
|
|
|
Pixmap X11DRV_get_pixmap( HBITMAP hbitmap )
|
|
|
|
{
|
2005-03-31 21:13:03 +02:00
|
|
|
X_PHYSBITMAP *physBitmap = X11DRV_get_phys_bitmap( hbitmap );
|
|
|
|
|
|
|
|
if (!physBitmap) return 0;
|
|
|
|
return physBitmap->pixmap;
|
1999-04-01 14:03:52 +02:00
|
|
|
}
|