mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
a396029270
standard Windows names.
82 lines
2.2 KiB
C
82 lines
2.2 KiB
C
/*
|
|
* GDI bitmap definitions
|
|
*
|
|
* Copyright 1993, 1994 Alexandre Julliard
|
|
*/
|
|
|
|
#ifndef __WINE_BITMAP_H
|
|
#define __WINE_BITMAP_H
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include "gdi.h"
|
|
|
|
/* Additional info for DIB section objects */
|
|
typedef struct
|
|
{
|
|
/* Windows DIB section */
|
|
DIBSECTION dibSection;
|
|
|
|
/* Mapping status */
|
|
enum { DIB_NoHandler, DIB_InSync, DIB_AppMod, DIB_GdiMod } status;
|
|
|
|
/* Color map info */
|
|
int nColorMap;
|
|
int *colorMap;
|
|
|
|
/* Cached XImage */
|
|
XImage *image;
|
|
|
|
/* Selector for 16-bit access to bits */
|
|
WORD selector;
|
|
|
|
} DIBSECTIONOBJ;
|
|
|
|
/* Flags used for BitmapBits. We only use the first two at the moment */
|
|
|
|
#define DDB_SET 1
|
|
#define DDB_GET 2
|
|
#define DDB_COPY 4
|
|
#define DDB_SETWITHFILLER 8
|
|
|
|
typedef struct {
|
|
const struct tagDC_FUNCS *funcs; /* DC function table */
|
|
void *physBitmap; /* ptr to device specific data */
|
|
} DDBITMAP;
|
|
|
|
/* GDI logical bitmap object */
|
|
typedef struct tagBITMAPOBJ
|
|
{
|
|
GDIOBJHDR header;
|
|
BITMAP bitmap;
|
|
SIZE size; /* For SetBitmapDimension() */
|
|
|
|
DDBITMAP *DDBitmap;
|
|
|
|
/* For device-independent bitmaps: */
|
|
DIBSECTIONOBJ *dib;
|
|
|
|
} BITMAPOBJ;
|
|
|
|
/* objects/bitmap.c */
|
|
extern INT16 BITMAP_GetObject16( BITMAPOBJ * bmp, INT16 count, LPVOID buffer );
|
|
extern INT BITMAP_GetObject( BITMAPOBJ * bmp, INT count, LPVOID buffer );
|
|
extern BOOL BITMAP_DeleteObject( HBITMAP16 hbitmap, BITMAPOBJ * bitmap );
|
|
extern INT BITMAP_GetPadding( INT width, INT depth );
|
|
extern INT BITMAP_GetWidthBytes( INT width, INT depth );
|
|
extern HBITMAP BITMAP_LoadBitmapW(HINSTANCE instance,LPCWSTR name,
|
|
UINT loadflags);
|
|
extern HBITMAP BITMAP_CopyBitmap( HBITMAP hbitmap );
|
|
|
|
/* objects/dib.c */
|
|
extern int DIB_GetDIBWidthBytes( int width, int depth );
|
|
extern int DIB_BitmapInfoSize( BITMAPINFO * info, WORD coloruse );
|
|
extern int DIB_GetBitmapInfo( const BITMAPINFOHEADER *header, DWORD *width,
|
|
int *height, WORD *bpp, WORD *compr );
|
|
extern void DIB_UpdateDIBSection( DC *dc, BOOL toDIB );
|
|
extern void DIB_DeleteDIBSection( BITMAPOBJ *bmp );
|
|
extern void DIB_SelectDIBSection( DC *dc, BITMAPOBJ *bmp );
|
|
extern void DIB_FixColorsToLoadflags(BITMAPINFO * bmi, UINT loadflags,
|
|
BYTE pix);
|
|
|
|
#endif /* __WINE_BITMAP_H */
|