4 * Copyright 1993 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * 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
21 #ifndef __WINE_GDI_PRIVATE_H
22 #define __WINE_GDI_PRIVATE_H
30 #include "wine/gdi_driver.h"
32 /* Metafile defines */
33 #define META_EOF 0x0000
34 /* values of mtType in METAHEADER. Note however that the disk image of a disk
35 based metafile has mtType == 1 */
36 #define METAFILE_MEMORY 1
37 #define METAFILE_DISK 2
38 #define MFHEADERSIZE (sizeof(METAHEADER))
39 #define MFVERSION 0x300
45 } EMRSETTEXTJUSTIFICATION
, *PEMRSETTEXTJUSTIFICATION
;
47 /* extra stock object: default 1x1 bitmap for memory DCs */
48 #define DEFAULT_BITMAP (STOCK_LAST+1)
52 HGDIOBJ (*pSelectObject
)( HGDIOBJ handle
, HDC hdc
);
53 INT (*pGetObjectA
)( HGDIOBJ handle
, INT count
, LPVOID buffer
);
54 INT (*pGetObjectW
)( HGDIOBJ handle
, INT count
, LPVOID buffer
);
55 BOOL (*pUnrealizeObject
)( HGDIOBJ handle
);
56 BOOL (*pDeleteObject
)( HGDIOBJ handle
);
62 struct hdc_list
*next
;
65 typedef struct tagGDIOBJHDR
67 WORD type
; /* object type (one of the OBJ_* constants) */
68 WORD system
: 1; /* system object flag */
69 WORD deleted
: 1; /* whether DeleteObject has been called on this object */
70 DWORD selcount
; /* number of times the object is selected in a DC */
71 const struct gdi_obj_funcs
*funcs
;
72 struct hdc_list
*hdcs
;
75 /* It should not be necessary to access the contents of the GdiPath
76 * structure directly; if you find that the exported functions don't
77 * allow you to do what you want, then please place a new exported
78 * function that does this job in path.c.
80 typedef enum tagGdiPathState
87 typedef struct tagGdiPath
92 int numEntriesUsed
, numEntriesAllocated
;
96 typedef struct tagGdiFont GdiFont
;
101 HDC hSelf
; /* Handle to this DC */
102 struct gdi_physdev nulldrv
; /* physdev for the null driver */
103 PHYSDEV dibdrv
; /* physdev for the dib driver */
104 PHYSDEV physDev
; /* current top of the physdev stack */
105 DWORD thread
; /* thread owning the DC */
106 LONG refcount
; /* thread refcount */
107 LONG dirty
; /* dirty flag */
109 struct tagDC
*saved_dc
;
110 DWORD_PTR dwHookData
;
111 DCHOOKPROC hookProc
; /* DC hook */
113 INT wndOrgX
; /* Window origin */
115 INT wndExtX
; /* Window extent */
117 INT vportOrgX
; /* Viewport origin */
119 INT vportExtX
; /* Viewport extent */
121 SIZE virtual_res
; /* Initially HORZRES,VERTRES. Changed by SetVirtualResolution */
122 SIZE virtual_size
; /* Initially HORZSIZE,VERTSIZE. Changed by SetVirtualResolution */
123 RECT vis_rect
; /* visible rectangle in screen coords */
128 HRGN hClipRgn
; /* Clip region (may be 0) */
129 HRGN hMetaRgn
; /* Meta region (may be 0) */
130 HRGN hMetaClipRgn
; /* Intersection of meta and clip regions (may be 0) */
131 HRGN hVisRgn
; /* Visible region (must never be 0) */
148 COLORREF backgroundColor
;
150 COLORREF dcBrushColor
;
155 DWORD mapperFlags
; /* Font mapper flags */
156 WORD textAlign
; /* Text alignment from SetTextAlign() */
157 INT charExtra
; /* Spacing from SetTextCharacterExtra() */
158 INT breakExtra
; /* breakTotalExtra / breakCount */
159 INT breakRem
; /* breakTotalExtra % breakCount */
161 INT GraphicsMode
; /* Graphics mode */
162 ABORTPROC pAbortProc
; /* AbortProc for Printing */
163 INT CursPosX
; /* Current position */
166 XFORM xformWorld2Wnd
; /* World-to-window transformation */
167 XFORM xformWorld2Vport
; /* World-to-viewport transformation */
168 XFORM xformVport2World
; /* Inverse of the above transformation */
169 BOOL vport2WorldValid
; /* Is xformVport2World valid? */
170 RECT BoundsRect
; /* Current bounding rect */
174 #define DC_BOUNDS_ENABLE 0x0008 /* Bounding rectangle tracking is enabled */
176 /* Certain functions will do no further processing if the driver returns this.
177 Used by mfdrv for example. */
178 #define GDI_NO_MORE_WORK 2
180 /* Rounds a floating point number to integer. The world-to-viewport
181 * transformation process is done in floating point internally. This function
182 * is then used to round these coordinates to integer values.
184 static inline INT
GDI_ROUND(double val
)
186 return (int)floor(val
+ 0.5);
189 #define GET_DC_PHYSDEV(dc,func) \
190 get_physdev_entry_point( (dc)->physDev, FIELD_OFFSET(struct gdi_dc_funcs,func))
194 typedef struct tagBITMAPOBJ
198 SIZE size
; /* For SetBitmapDimension() */
199 const struct gdi_dc_funcs
*funcs
; /* DC function table */
200 /* For device-independent bitmaps: */
202 RGBQUAD
*color_table
; /* DIB color table if <= 8bpp */
203 UINT nb_colors
; /* number of colors in table */
208 /* Wine_GCPW Flags */
210 * LOOSE means taking the directionality of the first strong character, if there is found one.
211 * FORCE means the paragraph direction is forced. (RLE/LRE)
213 #define WINE_GCPW_FORCE_LTR 0
214 #define WINE_GCPW_FORCE_RTL 1
215 #define WINE_GCPW_LOOSE_LTR 2
216 #define WINE_GCPW_LOOSE_RTL 3
217 #define WINE_GCPW_DIR_MASK 3
218 #define WINE_GCPW_LOOSE_MASK 2
220 extern BOOL
BIDI_Reorder( HDC hDC
, LPCWSTR lpString
, INT uCount
, DWORD dwFlags
, DWORD dwWineGCP_Flags
,
221 LPWSTR lpOutString
, INT uCountOut
, UINT
*lpOrder
, WORD
**lpGlyphs
, INT
* cGlyphs
) DECLSPEC_HIDDEN
;
224 extern DWORD
convert_bits( const BITMAPINFO
*src_info
, struct bitblt_coords
*src
,
225 BITMAPINFO
*dst_info
, struct gdi_image_bits
*bits
, BOOL add_alpha
) DECLSPEC_HIDDEN
;
226 extern BOOL
intersect_vis_rectangles( struct bitblt_coords
*dst
, struct bitblt_coords
*src
) DECLSPEC_HIDDEN
;
227 extern DWORD
stretch_bits( const BITMAPINFO
*src_info
, struct bitblt_coords
*src
,
228 BITMAPINFO
*dst_info
, struct bitblt_coords
*dst
,
229 struct gdi_image_bits
*bits
, int mode
) DECLSPEC_HIDDEN
;
232 extern void get_ddb_bitmapinfo( BITMAPOBJ
*bmp
, BITMAPINFO
*info
) DECLSPEC_HIDDEN
;
233 extern BOOL
get_bitmap_image( HBITMAP hbitmap
, BITMAPINFO
*info
, struct gdi_image_bits
*bits
) DECLSPEC_HIDDEN
;
234 extern HBITMAP
BITMAP_CopyBitmap( HBITMAP hbitmap
) DECLSPEC_HIDDEN
;
235 extern BOOL
BITMAP_SetOwnerDC( HBITMAP hbitmap
, PHYSDEV physdev
) DECLSPEC_HIDDEN
;
238 extern int get_clip_box( DC
*dc
, RECT
*rect
) DECLSPEC_HIDDEN
;
239 extern void CLIPPING_UpdateGCRegion( DC
* dc
) DECLSPEC_HIDDEN
;
241 /* Return the total clip region (if any) */
242 static inline HRGN
get_clip_region( DC
* dc
)
244 if (dc
->hMetaClipRgn
) return dc
->hMetaClipRgn
;
245 if (dc
->hMetaRgn
) return dc
->hMetaRgn
;
250 extern DC
*alloc_dc_ptr( WORD magic
) DECLSPEC_HIDDEN
;
251 extern void free_dc_ptr( DC
*dc
) DECLSPEC_HIDDEN
;
252 extern DC
*get_dc_ptr( HDC hdc
) DECLSPEC_HIDDEN
;
253 extern void release_dc_ptr( DC
*dc
) DECLSPEC_HIDDEN
;
254 extern void update_dc( DC
*dc
) DECLSPEC_HIDDEN
;
255 extern void DC_InitDC( DC
* dc
) DECLSPEC_HIDDEN
;
256 extern void DC_UpdateXforms( DC
* dc
) DECLSPEC_HIDDEN
;
259 extern int bitmap_info_size( const BITMAPINFO
* info
, WORD coloruse
) DECLSPEC_HIDDEN
;
260 extern DWORD
convert_bitmapinfo( const BITMAPINFO
*src_info
, void *src_bits
, struct bitblt_coords
*src
,
261 const BITMAPINFO
*dst_info
, void *dst_bits
, BOOL add_alpha
) DECLSPEC_HIDDEN
;
263 extern DWORD
stretch_bitmapinfo( const BITMAPINFO
*src_info
, void *src_bits
, struct bitblt_coords
*src
,
264 const BITMAPINFO
*dst_info
, void *dst_bits
, struct bitblt_coords
*dst
,
265 INT mode
) DECLSPEC_HIDDEN
;
266 extern DWORD
blend_bitmapinfo( const BITMAPINFO
*src_info
, void *src_bits
, struct bitblt_coords
*src
,
267 const BITMAPINFO
*dst_info
, void *dst_bits
, struct bitblt_coords
*dst
,
268 BLENDFUNCTION blend
) DECLSPEC_HIDDEN
;
271 extern const struct gdi_dc_funcs null_driver DECLSPEC_HIDDEN
;
272 extern const struct gdi_dc_funcs dib_driver DECLSPEC_HIDDEN
;
273 extern const struct gdi_dc_funcs path_driver DECLSPEC_HIDDEN
;
274 extern const struct gdi_dc_funcs
*font_driver DECLSPEC_HIDDEN
;
275 extern const struct gdi_dc_funcs
*DRIVER_load_driver( LPCWSTR name
) DECLSPEC_HIDDEN
;
276 extern BOOL
DRIVER_GetDriverName( LPCWSTR device
, LPWSTR driver
, DWORD size
) DECLSPEC_HIDDEN
;
279 extern HENHMETAFILE
EMF_Create_HENHMETAFILE(ENHMETAHEADER
*emh
, BOOL on_disk
) DECLSPEC_HIDDEN
;
283 /* Undocumented structure filled in by GdiRealizationInfo */
286 DWORD flags
; /* 1 for bitmap fonts, 3 for scalable fonts */
287 DWORD cache_num
; /* keeps incrementing - num of fonts that have been created allowing for caching?? */
288 DWORD unknown2
; /* fixed for a given font - looks like it could be the order of the face in the font list or the order
289 in which the face was first rendered. */
290 } realization_info_t
;
293 extern INT
WineEngAddFontResourceEx(LPCWSTR
, DWORD
, PVOID
) DECLSPEC_HIDDEN
;
294 extern HANDLE
WineEngAddFontMemResourceEx(PVOID
, DWORD
, PVOID
, LPDWORD
) DECLSPEC_HIDDEN
;
295 extern BOOL
WineEngDestroyFontInstance(HFONT handle
) DECLSPEC_HIDDEN
;
296 extern BOOL
WineEngGetLinkedHFont(DC
*dc
, WCHAR c
, HFONT
*new_hfont
, UINT
*glyph
) DECLSPEC_HIDDEN
;
297 extern BOOL
WineEngInit(void) DECLSPEC_HIDDEN
;
298 extern BOOL
WineEngRemoveFontResourceEx(LPCWSTR
, DWORD
, PVOID
) DECLSPEC_HIDDEN
;
301 extern HGDIOBJ
alloc_gdi_handle( GDIOBJHDR
*obj
, WORD type
, const struct gdi_obj_funcs
*funcs
) DECLSPEC_HIDDEN
;
302 extern void *free_gdi_handle( HGDIOBJ handle
) DECLSPEC_HIDDEN
;
303 extern void *GDI_GetObjPtr( HGDIOBJ
, WORD
) DECLSPEC_HIDDEN
;
304 extern void GDI_ReleaseObj( HGDIOBJ
) DECLSPEC_HIDDEN
;
305 extern void GDI_CheckNotLock(void) DECLSPEC_HIDDEN
;
306 extern HGDIOBJ
GDI_inc_ref_count( HGDIOBJ handle
) DECLSPEC_HIDDEN
;
307 extern BOOL
GDI_dec_ref_count( HGDIOBJ handle
) DECLSPEC_HIDDEN
;
308 extern BOOL
GDI_hdc_using_object(HGDIOBJ obj
, HDC hdc
) DECLSPEC_HIDDEN
;
309 extern BOOL
GDI_hdc_not_using_object(HGDIOBJ obj
, HDC hdc
) DECLSPEC_HIDDEN
;
312 extern HMETAFILE
MF_Create_HMETAFILE(METAHEADER
*mh
) DECLSPEC_HIDDEN
;
313 extern METAHEADER
*MF_CreateMetaHeaderDisk(METAHEADER
*mr
, LPCVOID filename
, BOOL unicode
) DECLSPEC_HIDDEN
;
317 extern void PATH_InitGdiPath(GdiPath
*pPath
) DECLSPEC_HIDDEN
;
318 extern void PATH_DestroyGdiPath(GdiPath
*pPath
) DECLSPEC_HIDDEN
;
319 extern BOOL
PATH_SavePath( DC
*dst
, DC
*src
) DECLSPEC_HIDDEN
;
320 extern BOOL
PATH_RestorePath( DC
*dst
, DC
*src
) DECLSPEC_HIDDEN
;
323 extern POINT
*GDI_Bezier( const POINT
*Points
, INT count
, INT
*nPtsOut
) DECLSPEC_HIDDEN
;
326 extern HPALETTE WINAPI
GDISelectPalette( HDC hdc
, HPALETTE hpal
, WORD wBkg
) DECLSPEC_HIDDEN
;
327 extern UINT WINAPI
GDIRealizePalette( HDC hdc
) DECLSPEC_HIDDEN
;
328 extern HPALETTE
PALETTE_Init(void) DECLSPEC_HIDDEN
;
331 extern INT
mirror_region( HRGN dst
, HRGN src
, INT width
) DECLSPEC_HIDDEN
;
332 extern BOOL
REGION_FrameRgn( HRGN dest
, HRGN src
, INT x
, INT y
) DECLSPEC_HIDDEN
;
341 extern const WINEREGION
*get_wine_region(HRGN rgn
) DECLSPEC_HIDDEN
;
342 static inline void release_wine_region(HRGN rgn
)
347 /* null driver entry points */
348 extern BOOL
nulldrv_AbortPath( PHYSDEV dev
) DECLSPEC_HIDDEN
;
349 extern BOOL
nulldrv_AlphaBlend( PHYSDEV dst_dev
, struct bitblt_coords
*dst
,
350 PHYSDEV src_dev
, struct bitblt_coords
*src
, BLENDFUNCTION func
) DECLSPEC_HIDDEN
;
351 extern BOOL
nulldrv_AngleArc( PHYSDEV dev
, INT x
, INT y
, DWORD radius
, FLOAT start
, FLOAT sweep
) DECLSPEC_HIDDEN
;
352 extern BOOL
nulldrv_ArcTo( PHYSDEV dev
, INT left
, INT top
, INT right
, INT bottom
, INT xstart
, INT ystart
, INT xend
, INT yend
) DECLSPEC_HIDDEN
;
353 extern BOOL
nulldrv_BeginPath( PHYSDEV dev
) DECLSPEC_HIDDEN
;
354 extern DWORD
nulldrv_BlendImage( PHYSDEV dev
, BITMAPINFO
*info
, const struct gdi_image_bits
*bits
,
355 struct bitblt_coords
*src
, struct bitblt_coords
*dst
, BLENDFUNCTION func
) DECLSPEC_HIDDEN
;
356 extern BOOL
nulldrv_CloseFigure( PHYSDEV dev
) DECLSPEC_HIDDEN
;
357 extern BOOL
nulldrv_EndPath( PHYSDEV dev
) DECLSPEC_HIDDEN
;
358 extern INT
nulldrv_ExcludeClipRect( PHYSDEV dev
, INT left
, INT top
, INT right
, INT bottom
) DECLSPEC_HIDDEN
;
359 extern INT
nulldrv_ExtSelectClipRgn( PHYSDEV dev
, HRGN rgn
, INT mode
) DECLSPEC_HIDDEN
;
360 extern BOOL
nulldrv_FillPath( PHYSDEV dev
) DECLSPEC_HIDDEN
;
361 extern BOOL
nulldrv_FillRgn( PHYSDEV dev
, HRGN rgn
, HBRUSH brush
) DECLSPEC_HIDDEN
;
362 extern BOOL
nulldrv_FlattenPath( PHYSDEV dev
) DECLSPEC_HIDDEN
;
363 extern BOOL
nulldrv_FrameRgn( PHYSDEV dev
, HRGN rgn
, HBRUSH brush
, INT width
, INT height
) DECLSPEC_HIDDEN
;
364 extern LONG
nulldrv_GetBitmapBits( HBITMAP bitmap
, void *bits
, LONG size
) DECLSPEC_HIDDEN
;
365 extern DWORD
nulldrv_GetImage( PHYSDEV dev
, HBITMAP hbitmap
, BITMAPINFO
*info
, struct gdi_image_bits
*bits
, struct bitblt_coords
*src
) DECLSPEC_HIDDEN
;
366 extern COLORREF
nulldrv_GetNearestColor( PHYSDEV dev
, COLORREF color
) DECLSPEC_HIDDEN
;
367 extern BOOL
nulldrv_GradientFill( PHYSDEV dev
, TRIVERTEX
*vert_array
, ULONG nvert
,
368 void * grad_array
, ULONG ngrad
, ULONG mode
) DECLSPEC_HIDDEN
;
369 extern INT
nulldrv_IntersectClipRect( PHYSDEV dev
, INT left
, INT top
, INT right
, INT bottom
) DECLSPEC_HIDDEN
;
370 extern BOOL
nulldrv_InvertRgn( PHYSDEV dev
, HRGN rgn
) DECLSPEC_HIDDEN
;
371 extern BOOL
nulldrv_ModifyWorldTransform( PHYSDEV dev
, const XFORM
*xform
, DWORD mode
) DECLSPEC_HIDDEN
;
372 extern INT
nulldrv_OffsetClipRgn( PHYSDEV dev
, INT x
, INT y
) DECLSPEC_HIDDEN
;
373 extern BOOL
nulldrv_OffsetViewportOrgEx( PHYSDEV dev
, INT x
, INT y
, POINT
*pt
) DECLSPEC_HIDDEN
;
374 extern BOOL
nulldrv_OffsetWindowOrgEx( PHYSDEV dev
, INT x
, INT y
, POINT
*pt
) DECLSPEC_HIDDEN
;
375 extern BOOL
nulldrv_PolyBezier( PHYSDEV dev
, const POINT
*points
, DWORD count
) DECLSPEC_HIDDEN
;
376 extern BOOL
nulldrv_PolyBezierTo( PHYSDEV dev
, const POINT
*points
, DWORD count
) DECLSPEC_HIDDEN
;
377 extern BOOL
nulldrv_PolyDraw( PHYSDEV dev
, const POINT
*points
, const BYTE
*types
, DWORD count
) DECLSPEC_HIDDEN
;
378 extern BOOL
nulldrv_PolylineTo( PHYSDEV dev
, const POINT
*points
, INT count
) DECLSPEC_HIDDEN
;
379 extern DWORD
nulldrv_PutImage( PHYSDEV dev
, HBITMAP hbitmap
, HRGN clip
, BITMAPINFO
*info
,
380 const struct gdi_image_bits
*bits
, struct bitblt_coords
*src
,
381 struct bitblt_coords
*dst
, DWORD rop
) DECLSPEC_HIDDEN
;
382 extern BOOL
nulldrv_RestoreDC( PHYSDEV dev
, INT level
) DECLSPEC_HIDDEN
;
383 extern INT
nulldrv_SaveDC( PHYSDEV dev
) DECLSPEC_HIDDEN
;
384 extern BOOL
nulldrv_ScaleViewportExtEx( PHYSDEV dev
, INT x_num
, INT x_denom
, INT y_num
, INT y_denom
, SIZE
*size
) DECLSPEC_HIDDEN
;
385 extern BOOL
nulldrv_ScaleWindowExtEx( PHYSDEV dev
, INT x_num
, INT x_denom
, INT y_num
, INT y_denom
, SIZE
*size
) DECLSPEC_HIDDEN
;
386 extern BOOL
nulldrv_SelectClipPath( PHYSDEV dev
, INT mode
) DECLSPEC_HIDDEN
;
387 extern INT
nulldrv_SetDIBitsToDevice( PHYSDEV dev
, INT x_dst
, INT y_dst
, DWORD width
, DWORD height
,
388 INT x_src
, INT y_src
, UINT start
, UINT lines
,
389 const void *bits
, BITMAPINFO
*info
, UINT coloruse
) DECLSPEC_HIDDEN
;
390 extern INT
nulldrv_SetMapMode( PHYSDEV dev
, INT mode
) DECLSPEC_HIDDEN
;
391 extern BOOL
nulldrv_SetViewportExtEx( PHYSDEV dev
, INT cx
, INT cy
, SIZE
*size
) DECLSPEC_HIDDEN
;
392 extern BOOL
nulldrv_SetViewportOrgEx( PHYSDEV dev
, INT x
, INT y
, POINT
*pt
) DECLSPEC_HIDDEN
;
393 extern BOOL
nulldrv_SetWindowExtEx( PHYSDEV dev
, INT cx
, INT cy
, SIZE
*size
) DECLSPEC_HIDDEN
;
394 extern BOOL
nulldrv_SetWindowOrgEx( PHYSDEV dev
, INT x
, INT y
, POINT
*pt
) DECLSPEC_HIDDEN
;
395 extern BOOL
nulldrv_SetWorldTransform( PHYSDEV dev
, const XFORM
*xform
) DECLSPEC_HIDDEN
;
396 extern BOOL
nulldrv_StretchBlt( PHYSDEV dst_dev
, struct bitblt_coords
*dst
,
397 PHYSDEV src_dev
, struct bitblt_coords
*src
, DWORD rop
) DECLSPEC_HIDDEN
;
398 extern INT
nulldrv_StretchDIBits( PHYSDEV dev
, INT xDst
, INT yDst
, INT widthDst
, INT heightDst
,
399 INT xSrc
, INT ySrc
, INT widthSrc
, INT heightSrc
, const void *bits
,
400 BITMAPINFO
*info
, UINT coloruse
, DWORD rop
) DECLSPEC_HIDDEN
;
401 extern BOOL
nulldrv_StrokeAndFillPath( PHYSDEV dev
) DECLSPEC_HIDDEN
;
402 extern BOOL
nulldrv_StrokePath( PHYSDEV dev
) DECLSPEC_HIDDEN
;
403 extern BOOL
nulldrv_WidenPath( PHYSDEV dev
) DECLSPEC_HIDDEN
;
405 static inline DC
*get_nulldrv_dc( PHYSDEV dev
)
407 return CONTAINING_RECORD( dev
, DC
, nulldrv
);
410 /* Undocumented value for DIB's iUsage: Indicates a mono DIB w/o pal entries */
411 #define DIB_PAL_MONO 2
413 BOOL WINAPI
FontIsLinked(HDC
);
415 BOOL WINAPI
SetVirtualResolution(HDC hdc
, DWORD horz_res
, DWORD vert_res
, DWORD horz_size
, DWORD vert_size
);
417 static inline BOOL
is_rect_empty( const RECT
*rect
)
419 return (rect
->left
>= rect
->right
|| rect
->top
>= rect
->bottom
);
422 static inline BOOL
intersect_rect( RECT
*dst
, const RECT
*src1
, const RECT
*src2
)
424 dst
->left
= max( src1
->left
, src2
->left
);
425 dst
->top
= max( src1
->top
, src2
->top
);
426 dst
->right
= min( src1
->right
, src2
->right
);
427 dst
->bottom
= min( src1
->bottom
, src2
->bottom
);
428 return !is_rect_empty( dst
);
431 static inline void offset_rect( RECT
*rect
, int offset_x
, int offset_y
)
433 rect
->left
+= offset_x
;
434 rect
->top
+= offset_y
;
435 rect
->right
+= offset_x
;
436 rect
->bottom
+= offset_y
;
439 static inline BOOL
pt_in_rect( const RECT
*rect
, POINT pt
)
441 return ((pt
.x
>= rect
->left
) && (pt
.x
< rect
->right
) &&
442 (pt
.y
>= rect
->top
) && (pt
.y
< rect
->bottom
));
445 static inline void get_bounding_rect( RECT
*rect
, int x
, int y
, int width
, int height
)
448 rect
->right
= x
+ width
;
450 rect
->bottom
= y
+ height
;
451 if (rect
->left
> rect
->right
)
453 int tmp
= rect
->left
;
454 rect
->left
= rect
->right
+ 1;
455 rect
->right
= tmp
+ 1;
457 if (rect
->top
> rect
->bottom
)
460 rect
->top
= rect
->bottom
+ 1;
461 rect
->bottom
= tmp
+ 1;
465 static inline int get_bitmap_stride( int width
, int bpp
)
467 return ((width
* bpp
+ 15) >> 3) & ~1;
470 static inline int get_dib_stride( int width
, int bpp
)
472 return ((width
* bpp
+ 31) >> 3) & ~3;
475 static inline int get_dib_image_size( const BITMAPINFO
*info
)
477 return get_dib_stride( info
->bmiHeader
.biWidth
, info
->bmiHeader
.biBitCount
)
478 * abs( info
->bmiHeader
.biHeight
);
481 static inline int get_dib_num_of_colors( const BITMAPINFO
*info
)
483 if (info
->bmiHeader
.biClrUsed
) return min( info
->bmiHeader
.biClrUsed
, 256 );
484 return info
->bmiHeader
.biBitCount
> 8 ? 0 : 1 << info
->bmiHeader
.biBitCount
;
487 static inline void copy_bitmapinfo( BITMAPINFO
*dst
, const BITMAPINFO
*src
)
489 unsigned int size
= FIELD_OFFSET( BITMAPINFO
, bmiColors
[get_dib_num_of_colors( src
)] );
490 if (src
->bmiHeader
.biCompression
== BI_BITFIELDS
) size
+= 3 * sizeof(DWORD
);
491 memcpy( dst
, src
, size
);
494 static inline const struct gdi_dc_funcs
*get_bitmap_funcs( const BITMAPOBJ
*bitmap
)
496 if( bitmap
->dib
) return &dib_driver
;
497 return bitmap
->funcs
;
500 extern void free_heap_bits( struct gdi_image_bits
*bits
) DECLSPEC_HIDDEN
;
502 #endif /* __WINE_GDI_PRIVATE_H */