2004-01-15 01:35:38 +01:00
|
|
|
/*
|
|
|
|
* GDI definitions
|
|
|
|
*
|
|
|
|
* Copyright 1993 Alexandre Julliard
|
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2004-01-15 01:35:38 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_GDI_PRIVATE_H
|
|
|
|
#define __WINE_GDI_PRIVATE_H
|
|
|
|
|
2012-04-10 16:04:39 +02:00
|
|
|
#include <limits.h>
|
2006-11-17 14:52:07 +01:00
|
|
|
#include <math.h>
|
2011-07-19 14:09:03 +02:00
|
|
|
#include <stdlib.h>
|
2009-12-05 11:45:31 +01:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "wingdi.h"
|
2011-07-07 12:43:51 +02:00
|
|
|
#include "wine/gdi_driver.h"
|
2006-11-17 14:52:07 +01:00
|
|
|
|
2004-01-15 01:35:38 +01:00
|
|
|
/* Metafile defines */
|
|
|
|
#define META_EOF 0x0000
|
|
|
|
/* values of mtType in METAHEADER. Note however that the disk image of a disk
|
|
|
|
based metafile has mtType == 1 */
|
|
|
|
#define METAFILE_MEMORY 1
|
|
|
|
#define METAFILE_DISK 2
|
2006-01-03 13:23:21 +01:00
|
|
|
#define MFHEADERSIZE (sizeof(METAHEADER))
|
|
|
|
#define MFVERSION 0x300
|
2004-01-15 01:35:38 +01:00
|
|
|
|
2006-01-03 13:16:59 +01:00
|
|
|
typedef struct {
|
|
|
|
EMR emr;
|
|
|
|
INT nBreakExtra;
|
|
|
|
INT nBreakCount;
|
|
|
|
} EMRSETTEXTJUSTIFICATION, *PEMRSETTEXTJUSTIFICATION;
|
|
|
|
|
2005-03-27 20:19:59 +02:00
|
|
|
/* extra stock object: default 1x1 bitmap for memory DCs */
|
|
|
|
#define DEFAULT_BITMAP (STOCK_LAST+1)
|
|
|
|
|
2004-01-15 01:35:38 +01:00
|
|
|
struct gdi_obj_funcs
|
|
|
|
{
|
2007-09-27 20:14:13 +02:00
|
|
|
HGDIOBJ (*pSelectObject)( HGDIOBJ handle, HDC hdc );
|
2009-01-27 16:30:43 +01:00
|
|
|
INT (*pGetObjectA)( HGDIOBJ handle, INT count, LPVOID buffer );
|
|
|
|
INT (*pGetObjectW)( HGDIOBJ handle, INT count, LPVOID buffer );
|
2009-01-27 16:26:35 +01:00
|
|
|
BOOL (*pUnrealizeObject)( HGDIOBJ handle );
|
2009-01-27 16:19:37 +01:00
|
|
|
BOOL (*pDeleteObject)( HGDIOBJ handle );
|
2004-01-15 01:35:38 +01:00
|
|
|
};
|
|
|
|
|
2004-03-04 21:41:12 +01:00
|
|
|
typedef struct tagDC
|
|
|
|
{
|
|
|
|
HDC hSelf; /* Handle to this DC */
|
2011-03-08 19:37:08 +01:00
|
|
|
struct gdi_physdev nulldrv; /* physdev for the null driver */
|
2011-09-07 23:47:31 +02:00
|
|
|
PHYSDEV physDev; /* current top of the physdev stack */
|
|
|
|
DWORD thread; /* thread owning the DC */
|
|
|
|
LONG refcount; /* thread refcount */
|
|
|
|
LONG dirty; /* dirty flag */
|
2004-03-04 21:41:12 +01:00
|
|
|
INT saveLevel;
|
2011-03-16 11:41:49 +01:00
|
|
|
struct tagDC *saved_dc;
|
2007-05-30 05:50:35 +02:00
|
|
|
DWORD_PTR dwHookData;
|
2009-09-26 13:32:47 +02:00
|
|
|
DCHOOKPROC hookProc; /* DC hook */
|
2012-10-22 15:05:54 +02:00
|
|
|
HMODULE module; /* module handle of the graphics driver */
|
2012-04-10 13:36:45 +02:00
|
|
|
BOOL bounds_enabled:1; /* bounds tracking is enabled */
|
|
|
|
BOOL path_open:1; /* path is currently open (only for saved DCs) */
|
|
|
|
|
2004-03-04 21:41:12 +01:00
|
|
|
INT wndOrgX; /* Window origin */
|
|
|
|
INT wndOrgY;
|
|
|
|
INT wndExtX; /* Window extent */
|
|
|
|
INT wndExtY;
|
|
|
|
INT vportOrgX; /* Viewport origin */
|
|
|
|
INT vportOrgY;
|
|
|
|
INT vportExtX; /* Viewport extent */
|
|
|
|
INT vportExtY;
|
2009-06-23 15:55:32 +02:00
|
|
|
SIZE virtual_res; /* Initially HORZRES,VERTRES. Changed by SetVirtualResolution */
|
|
|
|
SIZE virtual_size; /* Initially HORZSIZE,VERTSIZE. Changed by SetVirtualResolution */
|
2010-07-26 15:30:26 +02:00
|
|
|
RECT vis_rect; /* visible rectangle in screen coords */
|
2012-04-30 21:17:00 +02:00
|
|
|
RECT device_rect; /* rectangle for the whole device */
|
2012-07-26 20:47:31 +02:00
|
|
|
int pixel_format; /* pixel format (for memory DCs) */
|
2012-10-31 15:55:29 +01:00
|
|
|
UINT aa_flags; /* anti-aliasing flags to pass to GetGlyphOutline for current font */
|
2004-11-23 13:19:24 +01:00
|
|
|
FLOAT miterLimit;
|
2004-03-04 21:41:12 +01:00
|
|
|
|
|
|
|
int flags;
|
2005-01-10 13:30:18 +01:00
|
|
|
DWORD layout;
|
2011-12-06 13:08:19 +01:00
|
|
|
HRGN hClipRgn; /* Clip region */
|
|
|
|
HRGN hMetaRgn; /* Meta region */
|
|
|
|
HRGN hVisRgn; /* Visible region */
|
|
|
|
HRGN region; /* Total DC region (intersection of clip and visible) */
|
2004-03-04 21:41:12 +01:00
|
|
|
HPEN hPen;
|
|
|
|
HBRUSH hBrush;
|
|
|
|
HFONT hFont;
|
|
|
|
HBITMAP hBitmap;
|
|
|
|
HPALETTE hPalette;
|
|
|
|
|
2011-10-27 11:52:12 +02:00
|
|
|
struct gdi_path *path;
|
2004-03-04 21:41:12 +01:00
|
|
|
|
2009-04-06 10:16:40 +02:00
|
|
|
UINT font_code_page;
|
2004-03-04 21:41:12 +01:00
|
|
|
WORD ROPmode;
|
|
|
|
WORD polyFillMode;
|
|
|
|
WORD stretchBltMode;
|
|
|
|
WORD relAbsMode;
|
|
|
|
WORD backgroundMode;
|
|
|
|
COLORREF backgroundColor;
|
|
|
|
COLORREF textColor;
|
|
|
|
COLORREF dcBrushColor;
|
|
|
|
COLORREF dcPenColor;
|
|
|
|
short brushOrgX;
|
|
|
|
short brushOrgY;
|
|
|
|
|
2011-03-10 21:58:47 +01:00
|
|
|
DWORD mapperFlags; /* Font mapper flags */
|
2004-03-04 21:41:12 +01:00
|
|
|
WORD textAlign; /* Text alignment from SetTextAlign() */
|
|
|
|
INT charExtra; /* Spacing from SetTextCharacterExtra() */
|
|
|
|
INT breakExtra; /* breakTotalExtra / breakCount */
|
|
|
|
INT breakRem; /* breakTotalExtra % breakCount */
|
|
|
|
INT MapMode;
|
|
|
|
INT GraphicsMode; /* Graphics mode */
|
|
|
|
ABORTPROC pAbortProc; /* AbortProc for Printing */
|
|
|
|
INT CursPosX; /* Current position */
|
|
|
|
INT CursPosY;
|
|
|
|
INT ArcDirection;
|
|
|
|
XFORM xformWorld2Wnd; /* World-to-window transformation */
|
|
|
|
XFORM xformWorld2Vport; /* World-to-viewport transformation */
|
|
|
|
XFORM xformVport2World; /* Inverse of the above transformation */
|
|
|
|
BOOL vport2WorldValid; /* Is xformVport2World valid? */
|
2012-04-10 16:04:39 +02:00
|
|
|
RECT bounds; /* Current bounding rect */
|
2004-03-04 21:41:12 +01:00
|
|
|
} DC;
|
|
|
|
|
2004-01-15 01:35:38 +01:00
|
|
|
/* Certain functions will do no further processing if the driver returns this.
|
|
|
|
Used by mfdrv for example. */
|
|
|
|
#define GDI_NO_MORE_WORK 2
|
|
|
|
|
2004-03-04 21:41:12 +01:00
|
|
|
/* Rounds a floating point number to integer. The world-to-viewport
|
|
|
|
* transformation process is done in floating point internally. This function
|
|
|
|
* is then used to round these coordinates to integer values.
|
|
|
|
*/
|
2008-05-22 17:43:01 +02:00
|
|
|
static inline INT GDI_ROUND(double val)
|
2004-03-04 21:41:12 +01:00
|
|
|
{
|
|
|
|
return (int)floor(val + 0.5);
|
|
|
|
}
|
|
|
|
|
2011-07-06 17:35:17 +02:00
|
|
|
#define GET_DC_PHYSDEV(dc,func) \
|
|
|
|
get_physdev_entry_point( (dc)->physDev, FIELD_OFFSET(struct gdi_dc_funcs,func))
|
|
|
|
|
2012-08-21 12:59:18 +02:00
|
|
|
static inline PHYSDEV pop_dc_driver( DC *dc, const struct gdi_dc_funcs *funcs )
|
2012-05-08 12:16:05 +02:00
|
|
|
{
|
2012-08-21 12:59:18 +02:00
|
|
|
PHYSDEV dev, *pdev = &dc->physDev;
|
|
|
|
while (*pdev && (*pdev)->funcs != funcs) pdev = &(*pdev)->next;
|
2012-05-08 12:16:05 +02:00
|
|
|
if (!*pdev) return NULL;
|
2012-08-21 12:59:18 +02:00
|
|
|
dev = *pdev;
|
2012-05-08 12:16:05 +02:00
|
|
|
*pdev = dev->next;
|
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
|
2012-08-21 12:54:01 +02:00
|
|
|
static inline PHYSDEV find_dc_driver( DC *dc, const struct gdi_dc_funcs *funcs )
|
|
|
|
{
|
|
|
|
PHYSDEV dev;
|
|
|
|
|
|
|
|
for (dev = dc->physDev; dev; dev = dev->next) if (dev->funcs == funcs) return dev;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-04-13 18:11:18 +02:00
|
|
|
/* bitmap object */
|
|
|
|
|
|
|
|
typedef struct tagBITMAPOBJ
|
|
|
|
{
|
2012-01-10 16:04:17 +01:00
|
|
|
DIBSECTION dib;
|
2005-04-13 18:11:18 +02:00
|
|
|
SIZE size; /* For SetBitmapDimension() */
|
2011-12-09 20:00:36 +01:00
|
|
|
RGBQUAD *color_table; /* DIB color table if <= 8bpp (always 1 << bpp in size) */
|
2005-04-13 18:11:18 +02:00
|
|
|
} BITMAPOBJ;
|
|
|
|
|
2012-01-10 16:04:17 +01:00
|
|
|
static inline BOOL is_bitmapobj_dib( const BITMAPOBJ *bmp )
|
|
|
|
{
|
|
|
|
return bmp->dib.dsBmih.biSize != 0;
|
|
|
|
}
|
|
|
|
|
2004-01-15 01:35:38 +01:00
|
|
|
/* bidi.c */
|
|
|
|
|
|
|
|
/* Wine_GCPW Flags */
|
|
|
|
/* Directionality -
|
2007-09-27 10:41:58 +02:00
|
|
|
* LOOSE means taking the directionality of the first strong character, if there is found one.
|
|
|
|
* FORCE means the paragraph direction is forced. (RLE/LRE)
|
2004-01-15 01:35:38 +01:00
|
|
|
*/
|
|
|
|
#define WINE_GCPW_FORCE_LTR 0
|
|
|
|
#define WINE_GCPW_FORCE_RTL 1
|
|
|
|
#define WINE_GCPW_LOOSE_LTR 2
|
|
|
|
#define WINE_GCPW_LOOSE_RTL 3
|
|
|
|
#define WINE_GCPW_DIR_MASK 3
|
2007-09-27 10:41:58 +02:00
|
|
|
#define WINE_GCPW_LOOSE_MASK 2
|
|
|
|
|
2010-05-13 17:43:26 +02:00
|
|
|
extern BOOL BIDI_Reorder( HDC hDC, LPCWSTR lpString, INT uCount, DWORD dwFlags, DWORD dwWineGCP_Flags,
|
2010-05-21 22:11:34 +02:00
|
|
|
LPWSTR lpOutString, INT uCountOut, UINT *lpOrder, WORD **lpGlyphs, INT* cGlyphs ) DECLSPEC_HIDDEN;
|
2004-01-15 01:35:38 +01:00
|
|
|
|
2011-10-17 16:46:05 +02:00
|
|
|
/* bitblt.c */
|
2011-10-17 16:46:06 +02:00
|
|
|
extern DWORD convert_bits( const BITMAPINFO *src_info, struct bitblt_coords *src,
|
2012-10-10 17:19:42 +02:00
|
|
|
BITMAPINFO *dst_info, struct gdi_image_bits *bits ) DECLSPEC_HIDDEN;
|
2011-10-17 16:46:05 +02:00
|
|
|
extern BOOL intersect_vis_rectangles( struct bitblt_coords *dst, struct bitblt_coords *src ) DECLSPEC_HIDDEN;
|
2011-10-17 16:46:06 +02:00
|
|
|
extern DWORD stretch_bits( const BITMAPINFO *src_info, struct bitblt_coords *src,
|
|
|
|
BITMAPINFO *dst_info, struct bitblt_coords *dst,
|
|
|
|
struct gdi_image_bits *bits, int mode ) DECLSPEC_HIDDEN;
|
2011-10-17 16:46:05 +02:00
|
|
|
|
2011-11-07 22:21:37 +01:00
|
|
|
/* brush.c */
|
2011-12-29 16:17:44 +01:00
|
|
|
extern BOOL store_brush_pattern( LOGBRUSH *brush, struct brush_pattern *pattern ) DECLSPEC_HIDDEN;
|
|
|
|
extern void free_brush_pattern( struct brush_pattern *pattern ) DECLSPEC_HIDDEN;
|
2011-11-01 22:05:16 +01:00
|
|
|
extern BOOL get_brush_bitmap_info( HBRUSH handle, BITMAPINFO *info, void **bits, UINT *usage ) DECLSPEC_HIDDEN;
|
|
|
|
|
2004-01-15 01:35:38 +01:00
|
|
|
/* clipping.c */
|
2012-04-30 21:17:00 +02:00
|
|
|
extern BOOL clip_device_rect( DC *dc, RECT *dst, const RECT *src ) DECLSPEC_HIDDEN;
|
2011-12-06 12:57:30 +01:00
|
|
|
extern BOOL clip_visrect( DC *dc, RECT *dst, const RECT *src ) DECLSPEC_HIDDEN;
|
2011-12-07 17:09:11 +01:00
|
|
|
extern void update_dc_clipping( DC * dc ) DECLSPEC_HIDDEN;
|
2004-01-15 01:35:38 +01:00
|
|
|
|
2011-12-06 13:08:19 +01:00
|
|
|
/* Return the total DC region (if any) */
|
|
|
|
static inline HRGN get_dc_region( DC *dc )
|
|
|
|
{
|
2011-12-07 17:05:07 +01:00
|
|
|
if (dc->region) return dc->region;
|
|
|
|
if (dc->hVisRgn) return dc->hVisRgn;
|
2011-12-07 17:49:47 +01:00
|
|
|
if (dc->hClipRgn) return dc->hClipRgn;
|
|
|
|
return dc->hMetaRgn;
|
2011-12-06 13:08:19 +01:00
|
|
|
}
|
|
|
|
|
2004-01-15 01:35:38 +01:00
|
|
|
/* dc.c */
|
2011-03-16 21:45:39 +01:00
|
|
|
extern DC *alloc_dc_ptr( WORD magic ) DECLSPEC_HIDDEN;
|
2011-03-16 11:41:49 +01:00
|
|
|
extern void free_dc_ptr( DC *dc ) DECLSPEC_HIDDEN;
|
2007-11-07 17:50:57 +01:00
|
|
|
extern DC *get_dc_ptr( HDC hdc ) DECLSPEC_HIDDEN;
|
|
|
|
extern void release_dc_ptr( DC *dc ) DECLSPEC_HIDDEN;
|
|
|
|
extern void update_dc( DC *dc ) DECLSPEC_HIDDEN;
|
|
|
|
extern void DC_InitDC( DC * dc ) DECLSPEC_HIDDEN;
|
|
|
|
extern void DC_UpdateXforms( DC * dc ) DECLSPEC_HIDDEN;
|
2004-01-15 01:35:38 +01:00
|
|
|
|
2004-03-04 21:41:12 +01:00
|
|
|
/* dib.c */
|
2008-05-02 13:35:40 +02:00
|
|
|
extern int bitmap_info_size( const BITMAPINFO * info, WORD coloruse ) DECLSPEC_HIDDEN;
|
2011-12-09 16:48:28 +01:00
|
|
|
extern BOOL fill_color_table_from_pal_colors( BITMAPINFO *info, HDC hdc ) DECLSPEC_HIDDEN;
|
2011-12-08 17:03:28 +01:00
|
|
|
extern const RGBQUAD *get_default_color_table( int bpp ) DECLSPEC_HIDDEN;
|
2011-11-03 11:11:14 +01:00
|
|
|
extern void fill_default_color_table( BITMAPINFO *info ) DECLSPEC_HIDDEN;
|
|
|
|
extern void get_ddb_bitmapinfo( BITMAPOBJ *bmp, BITMAPINFO *info ) DECLSPEC_HIDDEN;
|
|
|
|
extern BITMAPINFO *copy_packed_dib( const BITMAPINFO *src_info, UINT usage ) DECLSPEC_HIDDEN;
|
2011-08-03 20:26:44 +02:00
|
|
|
extern DWORD convert_bitmapinfo( const BITMAPINFO *src_info, void *src_bits, struct bitblt_coords *src,
|
2012-10-10 17:19:42 +02:00
|
|
|
const BITMAPINFO *dst_info, void *dst_bits ) DECLSPEC_HIDDEN;
|
2011-07-18 16:27:43 +02:00
|
|
|
|
2011-09-14 11:17:02 +02:00
|
|
|
extern DWORD stretch_bitmapinfo( const BITMAPINFO *src_info, void *src_bits, struct bitblt_coords *src,
|
2011-09-27 17:13:37 +02:00
|
|
|
const BITMAPINFO *dst_info, void *dst_bits, struct bitblt_coords *dst,
|
2011-09-14 11:17:02 +02:00
|
|
|
INT mode ) DECLSPEC_HIDDEN;
|
2011-10-17 13:25:05 +02:00
|
|
|
extern DWORD blend_bitmapinfo( const BITMAPINFO *src_info, void *src_bits, struct bitblt_coords *src,
|
|
|
|
const BITMAPINFO *dst_info, void *dst_bits, struct bitblt_coords *dst,
|
|
|
|
BLENDFUNCTION blend ) DECLSPEC_HIDDEN;
|
2011-12-05 16:27:28 +01:00
|
|
|
extern DWORD gradient_bitmapinfo( const BITMAPINFO *info, void *bits, TRIVERTEX *vert_array, ULONG nvert,
|
|
|
|
void *grad_array, ULONG ngrad, ULONG mode, const POINT *dev_pts, HRGN rgn ) DECLSPEC_HIDDEN;
|
2011-12-12 20:53:50 +01:00
|
|
|
extern COLORREF get_pixel_bitmapinfo( const BITMAPINFO *info, void *bits, struct bitblt_coords *src ) DECLSPEC_HIDDEN;
|
2011-11-17 16:55:16 +01:00
|
|
|
extern BOOL render_aa_text_bitmapinfo( HDC hdc, BITMAPINFO *info, struct gdi_image_bits *bits,
|
|
|
|
struct bitblt_coords *src, INT x, INT y, UINT flags,
|
|
|
|
UINT aa_flags, LPCWSTR str, UINT count, const INT *dx ) DECLSPEC_HIDDEN;
|
2012-05-29 14:24:11 +02:00
|
|
|
extern DWORD get_image_from_bitmap( BITMAPOBJ *bmp, BITMAPINFO *info,
|
|
|
|
struct gdi_image_bits *bits, struct bitblt_coords *src ) DECLSPEC_HIDDEN;
|
2012-05-29 14:29:40 +02:00
|
|
|
extern DWORD put_image_into_bitmap( BITMAPOBJ *bmp, HRGN clip, BITMAPINFO *info,
|
|
|
|
const struct gdi_image_bits *bits, struct bitblt_coords *src,
|
|
|
|
struct bitblt_coords *dst ) DECLSPEC_HIDDEN;
|
2012-09-06 12:23:10 +02:00
|
|
|
extern void dibdrv_set_window_surface( DC *dc, struct window_surface *surface ) DECLSPEC_HIDDEN;
|
2004-03-04 21:41:12 +01:00
|
|
|
|
2004-01-15 01:35:38 +01:00
|
|
|
/* driver.c */
|
2011-10-17 20:39:54 +02:00
|
|
|
extern const struct gdi_dc_funcs null_driver DECLSPEC_HIDDEN;
|
|
|
|
extern const struct gdi_dc_funcs dib_driver DECLSPEC_HIDDEN;
|
2011-10-24 18:13:21 +02:00
|
|
|
extern const struct gdi_dc_funcs path_driver DECLSPEC_HIDDEN;
|
2011-10-18 11:43:23 +02:00
|
|
|
extern const struct gdi_dc_funcs *font_driver DECLSPEC_HIDDEN;
|
2012-10-22 15:05:54 +02:00
|
|
|
extern const struct gdi_dc_funcs *DRIVER_load_driver( LPCWSTR name, HMODULE *module ) DECLSPEC_HIDDEN;
|
2007-11-07 17:50:57 +01:00
|
|
|
extern BOOL DRIVER_GetDriverName( LPCWSTR device, LPWSTR driver, DWORD size ) DECLSPEC_HIDDEN;
|
2004-01-15 01:35:38 +01:00
|
|
|
|
|
|
|
/* enhmetafile.c */
|
2007-11-07 17:50:57 +01:00
|
|
|
extern HENHMETAFILE EMF_Create_HENHMETAFILE(ENHMETAHEADER *emh, BOOL on_disk ) DECLSPEC_HIDDEN;
|
2004-01-15 01:35:38 +01:00
|
|
|
|
|
|
|
/* freetype.c */
|
2008-07-31 17:47:22 +02:00
|
|
|
|
|
|
|
/* Undocumented structure filled in by GdiRealizationInfo */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
DWORD flags; /* 1 for bitmap fonts, 3 for scalable fonts */
|
|
|
|
DWORD cache_num; /* keeps incrementing - num of fonts that have been created allowing for caching?? */
|
|
|
|
DWORD unknown2; /* fixed for a given font - looks like it could be the order of the face in the font list or the order
|
|
|
|
in which the face was first rendered. */
|
|
|
|
} realization_info_t;
|
|
|
|
|
|
|
|
|
2007-11-07 17:50:57 +01:00
|
|
|
extern INT WineEngAddFontResourceEx(LPCWSTR, DWORD, PVOID) DECLSPEC_HIDDEN;
|
|
|
|
extern HANDLE WineEngAddFontMemResourceEx(PVOID, DWORD, PVOID, LPDWORD) DECLSPEC_HIDDEN;
|
2012-03-28 15:49:24 +02:00
|
|
|
extern BOOL WineEngCreateScalableFontResource(DWORD, LPCWSTR, LPCWSTR, LPCWSTR) DECLSPEC_HIDDEN;
|
2007-11-07 17:50:57 +01:00
|
|
|
extern BOOL WineEngInit(void) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL WineEngRemoveFontResourceEx(LPCWSTR, DWORD, PVOID) DECLSPEC_HIDDEN;
|
2004-01-15 01:35:38 +01:00
|
|
|
|
|
|
|
/* gdiobj.c */
|
2012-10-17 13:20:46 +02:00
|
|
|
extern HGDIOBJ alloc_gdi_handle( void *obj, WORD type, const struct gdi_obj_funcs *funcs ) DECLSPEC_HIDDEN;
|
2009-01-28 18:45:21 +01:00
|
|
|
extern void *free_gdi_handle( HGDIOBJ handle ) DECLSPEC_HIDDEN;
|
2012-10-16 16:58:28 +02:00
|
|
|
extern HGDIOBJ get_full_gdi_handle( HGDIOBJ handle ) DECLSPEC_HIDDEN;
|
2007-11-07 17:50:57 +01:00
|
|
|
extern void *GDI_GetObjPtr( HGDIOBJ, WORD ) DECLSPEC_HIDDEN;
|
|
|
|
extern void GDI_ReleaseObj( HGDIOBJ ) DECLSPEC_HIDDEN;
|
|
|
|
extern void GDI_CheckNotLock(void) DECLSPEC_HIDDEN;
|
2012-10-17 13:17:56 +02:00
|
|
|
extern UINT GDI_get_ref_count( HGDIOBJ handle ) DECLSPEC_HIDDEN;
|
2009-01-29 16:25:58 +01:00
|
|
|
extern HGDIOBJ GDI_inc_ref_count( HGDIOBJ handle ) DECLSPEC_HIDDEN;
|
2007-11-07 17:50:57 +01:00
|
|
|
extern BOOL GDI_dec_ref_count( HGDIOBJ handle ) DECLSPEC_HIDDEN;
|
2012-10-17 13:03:18 +02:00
|
|
|
extern void GDI_hdc_using_object(HGDIOBJ obj, HDC hdc) DECLSPEC_HIDDEN;
|
|
|
|
extern void GDI_hdc_not_using_object(HGDIOBJ obj, HDC hdc) DECLSPEC_HIDDEN;
|
2004-01-15 01:35:38 +01:00
|
|
|
|
|
|
|
/* metafile.c */
|
2007-11-07 17:50:57 +01:00
|
|
|
extern HMETAFILE MF_Create_HMETAFILE(METAHEADER *mh) DECLSPEC_HIDDEN;
|
|
|
|
extern METAHEADER *MF_CreateMetaHeaderDisk(METAHEADER *mr, LPCVOID filename, BOOL unicode ) DECLSPEC_HIDDEN;
|
2004-01-15 01:35:38 +01:00
|
|
|
|
|
|
|
/* path.c */
|
|
|
|
|
2011-10-27 11:52:12 +02:00
|
|
|
extern void free_gdi_path( struct gdi_path *path ) DECLSPEC_HIDDEN;
|
2011-10-24 18:13:21 +02:00
|
|
|
extern BOOL PATH_SavePath( DC *dst, DC *src ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL PATH_RestorePath( DC *dst, DC *src ) DECLSPEC_HIDDEN;
|
2004-01-15 01:35:38 +01:00
|
|
|
|
|
|
|
/* painting.c */
|
2007-11-07 17:50:57 +01:00
|
|
|
extern POINT *GDI_Bezier( const POINT *Points, INT count, INT *nPtsOut ) DECLSPEC_HIDDEN;
|
2004-01-15 01:35:38 +01:00
|
|
|
|
|
|
|
/* palette.c */
|
2011-04-21 10:25:40 +02:00
|
|
|
extern HPALETTE WINAPI GDISelectPalette( HDC hdc, HPALETTE hpal, WORD wBkg) DECLSPEC_HIDDEN;
|
|
|
|
extern UINT WINAPI GDIRealizePalette( HDC hdc ) DECLSPEC_HIDDEN;
|
2007-11-07 17:50:57 +01:00
|
|
|
extern HPALETTE PALETTE_Init(void) DECLSPEC_HIDDEN;
|
2004-01-15 01:35:38 +01:00
|
|
|
|
|
|
|
/* region.c */
|
2011-12-28 11:04:30 +01:00
|
|
|
extern BOOL add_rect_to_region( HRGN rgn, const RECT *rect ) DECLSPEC_HIDDEN;
|
2010-07-29 13:36:43 +02:00
|
|
|
extern INT mirror_region( HRGN dst, HRGN src, INT width ) DECLSPEC_HIDDEN;
|
2007-11-07 17:50:57 +01:00
|
|
|
extern BOOL REGION_FrameRgn( HRGN dest, HRGN src, INT x, INT y ) DECLSPEC_HIDDEN;
|
2004-01-15 01:35:38 +01:00
|
|
|
|
2011-04-15 14:14:34 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
INT size;
|
|
|
|
INT numRects;
|
|
|
|
RECT *rects;
|
|
|
|
RECT extents;
|
|
|
|
} WINEREGION;
|
2012-10-17 13:28:25 +02:00
|
|
|
|
|
|
|
/* return the region data without making a copy */
|
|
|
|
static inline const WINEREGION *get_wine_region(HRGN rgn)
|
|
|
|
{
|
|
|
|
return GDI_GetObjPtr( rgn, OBJ_REGION );
|
|
|
|
}
|
2011-04-15 14:14:34 +02:00
|
|
|
static inline void release_wine_region(HRGN rgn)
|
|
|
|
{
|
|
|
|
GDI_ReleaseObj(rgn);
|
|
|
|
}
|
|
|
|
|
2011-03-08 21:15:59 +01:00
|
|
|
/* null driver entry points */
|
2011-07-13 14:56:12 +02:00
|
|
|
extern BOOL nulldrv_AbortPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
|
2011-09-14 11:57:45 +02:00
|
|
|
extern BOOL nulldrv_AlphaBlend( PHYSDEV dst_dev, struct bitblt_coords *dst,
|
|
|
|
PHYSDEV src_dev, struct bitblt_coords *src, BLENDFUNCTION func) DECLSPEC_HIDDEN;
|
2011-07-13 14:56:12 +02:00
|
|
|
extern BOOL nulldrv_AngleArc( PHYSDEV dev, INT x, INT y, DWORD radius, FLOAT start, FLOAT sweep ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_ArcTo( PHYSDEV dev, INT left, INT top, INT right, INT bottom, INT xstart, INT ystart, INT xend, INT yend ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_BeginPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
|
2011-10-17 13:25:05 +02:00
|
|
|
extern DWORD nulldrv_BlendImage( PHYSDEV dev, BITMAPINFO *info, const struct gdi_image_bits *bits,
|
|
|
|
struct bitblt_coords *src, struct bitblt_coords *dst, BLENDFUNCTION func ) DECLSPEC_HIDDEN;
|
2011-07-13 14:56:12 +02:00
|
|
|
extern BOOL nulldrv_CloseFigure( PHYSDEV dev ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_EndPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
|
|
|
|
extern INT nulldrv_ExcludeClipRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN;
|
|
|
|
extern INT nulldrv_ExtSelectClipRgn( PHYSDEV dev, HRGN rgn, INT mode ) DECLSPEC_HIDDEN;
|
2011-11-17 11:57:53 +01:00
|
|
|
extern BOOL nulldrv_ExtTextOut( PHYSDEV dev, INT x, INT y, UINT flags, const RECT *rect,
|
|
|
|
LPCWSTR str, UINT count, const INT *dx ) DECLSPEC_HIDDEN;
|
2011-07-13 14:56:12 +02:00
|
|
|
extern BOOL nulldrv_FillPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_FillRgn( PHYSDEV dev, HRGN rgn, HBRUSH brush ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_FlattenPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_FrameRgn( PHYSDEV dev, HRGN rgn, HBRUSH brush, INT width, INT height ) DECLSPEC_HIDDEN;
|
|
|
|
extern LONG nulldrv_GetBitmapBits( HBITMAP bitmap, void *bits, LONG size ) DECLSPEC_HIDDEN;
|
|
|
|
extern COLORREF nulldrv_GetNearestColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
|
2011-12-12 20:53:50 +01:00
|
|
|
extern COLORREF nulldrv_GetPixel( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
|
2011-10-31 23:51:38 +01:00
|
|
|
extern BOOL nulldrv_GradientFill( PHYSDEV dev, TRIVERTEX *vert_array, ULONG nvert,
|
|
|
|
void * grad_array, ULONG ngrad, ULONG mode ) DECLSPEC_HIDDEN;
|
2011-07-13 14:56:12 +02:00
|
|
|
extern INT nulldrv_IntersectClipRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_InvertRgn( PHYSDEV dev, HRGN rgn ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_ModifyWorldTransform( PHYSDEV dev, const XFORM *xform, DWORD mode ) DECLSPEC_HIDDEN;
|
|
|
|
extern INT nulldrv_OffsetClipRgn( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_OffsetViewportOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_OffsetWindowOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_PolyBezier( PHYSDEV dev, const POINT *points, DWORD count ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_PolyBezierTo( PHYSDEV dev, const POINT *points, DWORD count ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_PolyDraw( PHYSDEV dev, const POINT *points, const BYTE *types, DWORD count ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_PolylineTo( PHYSDEV dev, const POINT *points, INT count ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_RestoreDC( PHYSDEV dev, INT level ) DECLSPEC_HIDDEN;
|
|
|
|
extern INT nulldrv_SaveDC( PHYSDEV dev ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_ScaleViewportExtEx( PHYSDEV dev, INT x_num, INT x_denom, INT y_num, INT y_denom, SIZE *size ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_ScaleWindowExtEx( PHYSDEV dev, INT x_num, INT x_denom, INT y_num, INT y_denom, SIZE *size ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_SelectClipPath( PHYSDEV dev, INT mode ) DECLSPEC_HIDDEN;
|
2012-11-05 12:32:15 +01:00
|
|
|
extern HFONT nulldrv_SelectFont( PHYSDEV dev, HFONT font, UINT *ggo_flags ) DECLSPEC_HIDDEN;
|
2011-09-06 13:27:03 +02:00
|
|
|
extern INT nulldrv_SetDIBitsToDevice( PHYSDEV dev, INT x_dst, INT y_dst, DWORD width, DWORD height,
|
|
|
|
INT x_src, INT y_src, UINT start, UINT lines,
|
|
|
|
const void *bits, BITMAPINFO *info, UINT coloruse ) DECLSPEC_HIDDEN;
|
2011-07-13 14:56:12 +02:00
|
|
|
extern INT nulldrv_SetMapMode( PHYSDEV dev, INT mode ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_SetViewportExtEx( PHYSDEV dev, INT cx, INT cy, SIZE *size ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_SetViewportOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_SetWindowExtEx( PHYSDEV dev, INT cx, INT cy, SIZE *size ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_SetWindowOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_SetWorldTransform( PHYSDEV dev, const XFORM *xform ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_StretchBlt( PHYSDEV dst_dev, struct bitblt_coords *dst,
|
|
|
|
PHYSDEV src_dev, struct bitblt_coords *src, DWORD rop ) DECLSPEC_HIDDEN;
|
|
|
|
extern INT nulldrv_StretchDIBits( PHYSDEV dev, INT xDst, INT yDst, INT widthDst, INT heightDst,
|
|
|
|
INT xSrc, INT ySrc, INT widthSrc, INT heightSrc, const void *bits,
|
2011-09-02 15:53:10 +02:00
|
|
|
BITMAPINFO *info, UINT coloruse, DWORD rop ) DECLSPEC_HIDDEN;
|
2011-07-13 14:56:12 +02:00
|
|
|
extern BOOL nulldrv_StrokeAndFillPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_StrokePath( PHYSDEV dev ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL nulldrv_WidenPath( PHYSDEV dev ) DECLSPEC_HIDDEN;
|
2011-03-08 21:15:59 +01:00
|
|
|
|
2011-03-09 16:21:45 +01:00
|
|
|
static inline DC *get_nulldrv_dc( PHYSDEV dev )
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD( dev, DC, nulldrv );
|
|
|
|
}
|
|
|
|
|
2006-12-04 19:55:35 +01:00
|
|
|
/* Undocumented value for DIB's iUsage: Indicates a mono DIB w/o pal entries */
|
2004-11-22 19:22:20 +01:00
|
|
|
#define DIB_PAL_MONO 2
|
2005-09-07 15:26:49 +02:00
|
|
|
|
|
|
|
BOOL WINAPI FontIsLinked(HDC);
|
2007-11-07 17:50:57 +01:00
|
|
|
|
2009-06-23 15:55:32 +02:00
|
|
|
BOOL WINAPI SetVirtualResolution(HDC hdc, DWORD horz_res, DWORD vert_res, DWORD horz_size, DWORD vert_size);
|
|
|
|
|
2011-07-20 12:17:09 +02:00
|
|
|
static inline BOOL is_rect_empty( const RECT *rect )
|
|
|
|
{
|
|
|
|
return (rect->left >= rect->right || rect->top >= rect->bottom);
|
|
|
|
}
|
|
|
|
|
2011-07-18 16:50:25 +02:00
|
|
|
static inline BOOL intersect_rect( RECT *dst, const RECT *src1, const RECT *src2 )
|
|
|
|
{
|
|
|
|
dst->left = max( src1->left, src2->left );
|
|
|
|
dst->top = max( src1->top, src2->top );
|
|
|
|
dst->right = min( src1->right, src2->right );
|
|
|
|
dst->bottom = min( src1->bottom, src2->bottom );
|
2011-07-20 12:17:09 +02:00
|
|
|
return !is_rect_empty( dst );
|
2011-07-18 16:50:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void offset_rect( RECT *rect, int offset_x, int offset_y )
|
|
|
|
{
|
|
|
|
rect->left += offset_x;
|
|
|
|
rect->top += offset_y;
|
|
|
|
rect->right += offset_x;
|
|
|
|
rect->bottom += offset_y;
|
|
|
|
}
|
|
|
|
|
2012-12-14 16:55:56 +01:00
|
|
|
static inline void order_rect( RECT *rect )
|
|
|
|
{
|
|
|
|
if (rect->left > rect->right)
|
|
|
|
{
|
|
|
|
int tmp = rect->left;
|
|
|
|
rect->left = rect->right;
|
|
|
|
rect->right = tmp;
|
|
|
|
}
|
|
|
|
if (rect->top > rect->bottom)
|
|
|
|
{
|
|
|
|
int tmp = rect->top;
|
|
|
|
rect->top = rect->bottom;
|
|
|
|
rect->bottom = tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-11 13:49:53 +02:00
|
|
|
static inline void get_bounding_rect( RECT *rect, int x, int y, int width, int height )
|
|
|
|
{
|
|
|
|
rect->left = x;
|
|
|
|
rect->right = x + width;
|
|
|
|
rect->top = y;
|
|
|
|
rect->bottom = y + height;
|
|
|
|
if (rect->left > rect->right)
|
|
|
|
{
|
|
|
|
int tmp = rect->left;
|
|
|
|
rect->left = rect->right + 1;
|
|
|
|
rect->right = tmp + 1;
|
|
|
|
}
|
|
|
|
if (rect->top > rect->bottom)
|
|
|
|
{
|
|
|
|
int tmp = rect->top;
|
|
|
|
rect->top = rect->bottom + 1;
|
|
|
|
rect->bottom = tmp + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-10 16:04:39 +02:00
|
|
|
static inline void reset_bounds( RECT *bounds )
|
|
|
|
{
|
|
|
|
bounds->left = bounds->top = INT_MAX;
|
|
|
|
bounds->right = bounds->bottom = INT_MIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void add_bounds_rect( RECT *bounds, const RECT *rect )
|
|
|
|
{
|
|
|
|
if (is_rect_empty( rect )) return;
|
|
|
|
bounds->left = min( bounds->left, rect->left );
|
|
|
|
bounds->top = min( bounds->top, rect->top );
|
|
|
|
bounds->right = max( bounds->right, rect->right );
|
|
|
|
bounds->bottom = max( bounds->bottom, rect->bottom );
|
|
|
|
}
|
|
|
|
|
2011-07-25 15:24:12 +02:00
|
|
|
static inline int get_bitmap_stride( int width, int bpp )
|
|
|
|
{
|
|
|
|
return ((width * bpp + 15) >> 3) & ~1;
|
|
|
|
}
|
|
|
|
|
2011-07-19 14:09:03 +02:00
|
|
|
static inline int get_dib_stride( int width, int bpp )
|
|
|
|
{
|
|
|
|
return ((width * bpp + 31) >> 3) & ~3;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int get_dib_image_size( const BITMAPINFO *info )
|
|
|
|
{
|
|
|
|
return get_dib_stride( info->bmiHeader.biWidth, info->bmiHeader.biBitCount )
|
|
|
|
* abs( info->bmiHeader.biHeight );
|
|
|
|
}
|
|
|
|
|
2011-12-10 13:28:08 +01:00
|
|
|
/* only for use on sanitized BITMAPINFO structures */
|
|
|
|
static inline int get_dib_info_size( const BITMAPINFO *info, UINT coloruse )
|
|
|
|
{
|
|
|
|
if (info->bmiHeader.biCompression == BI_BITFIELDS)
|
|
|
|
return sizeof(BITMAPINFOHEADER) + 3 * sizeof(DWORD);
|
|
|
|
if (coloruse == DIB_PAL_COLORS)
|
|
|
|
return sizeof(BITMAPINFOHEADER) + info->bmiHeader.biClrUsed * sizeof(WORD);
|
|
|
|
return FIELD_OFFSET( BITMAPINFO, bmiColors[info->bmiHeader.biClrUsed] );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* only for use on sanitized BITMAPINFO structures */
|
2011-10-27 14:19:44 +02:00
|
|
|
static inline void copy_bitmapinfo( BITMAPINFO *dst, const BITMAPINFO *src )
|
|
|
|
{
|
2011-12-10 13:28:08 +01:00
|
|
|
memcpy( dst, src, get_dib_info_size( src, DIB_RGB_COLORS ));
|
2011-10-27 14:19:44 +02:00
|
|
|
}
|
|
|
|
|
2011-07-25 11:56:30 +02:00
|
|
|
extern void free_heap_bits( struct gdi_image_bits *bits ) DECLSPEC_HIDDEN;
|
|
|
|
|
2011-11-03 14:11:35 +01:00
|
|
|
extern HMODULE gdi32_module DECLSPEC_HIDDEN;
|
|
|
|
|
2007-11-07 17:50:57 +01:00
|
|
|
#endif /* __WINE_GDI_PRIVATE_H */
|