Release 951003
[wine/hacks.git] / include / gdi.h
bloba8f1899808d4d7bbd02295a312c9461a9f3fdc8d
1 /*
2 * GDI definitions
4 * Copyright 1993 Alexandre Julliard
5 */
7 #ifndef GDI_H
8 #define GDI_H
10 #include <X11/Xlib.h>
11 #include <X11/Xutil.h>
13 #include "windows.h"
14 #include "ldt.h"
15 #include "local.h"
17 /* GDI objects magic numbers */
18 #define PEN_MAGIC 0x4f47
19 #define BRUSH_MAGIC 0x4f48
20 #define FONT_MAGIC 0x4f49
21 #define PALETTE_MAGIC 0x4f4a
22 #define BITMAP_MAGIC 0x4f4b
23 #define REGION_MAGIC 0x4f4c
24 #define DC_MAGIC 0x4f4d
25 #define DISABLED_DC_MAGIC 0x4f4e
26 #define META_DC_MAGIC 0x4f4f
27 #define METAFILE_MAGIC 0x4f50
28 #define METAFILE_DC_MAGIC 0x4f51
30 #ifndef WINELIB
31 #pragma pack(1)
32 #endif
34 typedef struct tagGDIOBJHDR
36 HANDLE hNext;
37 WORD wMagic;
38 DWORD dwCount;
39 WORD wMetaList;
40 } GDIOBJHDR;
43 typedef struct
45 WORD version; /* 0: driver version */
46 WORD technology; /* 2: device technology */
47 WORD horzSize; /* 4: width of display in mm */
48 WORD vertSize; /* 6: height of display in mm */
49 WORD horzRes; /* 8: width of display in pixels */
50 WORD vertRes; /* 10: width of display in pixels */
51 WORD bitsPixel; /* 12: bits per pixel */
52 WORD planes; /* 14: color planes */
53 WORD numBrushes; /* 16: device-specific brushes */
54 WORD numPens; /* 18: device-specific pens */
55 WORD numMarkers; /* 20: device-specific markers */
56 WORD numFonts; /* 22: device-specific fonts */
57 WORD numColors; /* 24: size of color table */
58 WORD pdeviceSize; /* 26: size of PDEVICE structure */
59 WORD curveCaps; /* 28: curve capabilities */
60 WORD lineCaps; /* 30: line capabilities */
61 WORD polygonalCaps; /* 32: polygon capabilities */
62 WORD textCaps; /* 34: text capabilities */
63 WORD clipCaps; /* 36: clipping capabilities */
64 WORD rasterCaps; /* 38: raster capabilities */
65 WORD aspectX; /* 40: relative width of device pixel */
66 WORD aspectY; /* 42: relative height of device pixel */
67 WORD aspectXY; /* 44: relative diagonal width of device pixel */
68 WORD pad1[21]; /* 46-86: reserved */
69 WORD logPixelsX; /* 88: pixels / logical X inch */
70 WORD logPixelsY; /* 90: pixels / logical Y inch */
71 WORD pad2[6]; /* 92-102: reserved */
72 WORD sizePalette; /* 104: entries in system palette */
73 WORD numReserved; /* 106: reserved entries */
74 WORD colorRes; /* 108: color resolution */
75 } DeviceCaps;
77 #ifndef WINELIB
78 #pragma pack(4)
79 #endif
82 /* Device independent DC information */
83 typedef struct
85 int flags;
86 DeviceCaps *devCaps;
88 HANDLE hMetaFile;
89 HRGN hClipRgn; /* Clip region (may be 0) */
90 HRGN hVisRgn; /* Visible region (must never be 0) */
91 HRGN hGCClipRgn; /* GC clip region (ClipRgn AND VisRgn) */
92 HPEN hPen;
93 HBRUSH hBrush;
94 HFONT hFont;
95 HBITMAP hBitmap;
96 HBITMAP hFirstBitmap; /* Bitmap selected at creation of the DC */
97 HANDLE hDevice;
98 HPALETTE hPalette;
100 WORD ROPmode;
101 WORD polyFillMode;
102 WORD stretchBltMode;
103 WORD relAbsMode;
104 WORD backgroundMode;
105 COLORREF backgroundColor;
106 COLORREF textColor;
107 int backgroundPixel;
108 int textPixel;
109 short brushOrgX;
110 short brushOrgY;
112 WORD textAlign; /* Text alignment from SetTextAlign() */
113 short charExtra; /* Spacing from SetTextCharacterExtra() */
114 short breakTotalExtra; /* Total extra space for justification */
115 short breakCount; /* Break char. count */
116 short breakExtra; /* breakTotalExtra / breakCount */
117 short breakRem; /* breakTotalExtra % breakCount */
119 BYTE bitsPerPixel;
121 WORD MapMode;
122 short DCOrgX; /* DC origin */
123 short DCOrgY;
124 short CursPosX; /* Current position */
125 short CursPosY;
126 short WndOrgX;
127 short WndOrgY;
128 short WndExtX;
129 short WndExtY;
130 short VportOrgX;
131 short VportOrgY;
132 short VportExtX;
133 short VportExtY;
134 } WIN_DC_INFO;
137 /* X physical pen */
138 typedef struct
140 int style;
141 int pixel;
142 int width;
143 char * dashes;
144 int dash_len;
145 } X_PHYSPEN;
147 /* X physical brush */
148 typedef struct
150 int style;
151 int fillStyle;
152 int pixel;
153 Pixmap pixmap;
154 } X_PHYSBRUSH;
156 /* X physical font */
157 typedef struct
159 XFontStruct * fstruct;
160 TEXTMETRIC metrics;
161 } X_PHYSFONT;
163 /* X physical palette information */
164 typedef struct
166 HANDLE hMapping; /* Color mapping table (or 0 for identity) */
167 HANDLE hRevMapping; /* Reverse color mapping table */
168 WORD mappingSize;
169 } X_PHYSPALETTE;
171 /* X-specific DC information */
172 typedef struct
174 GC gc; /* X Window GC */
175 Drawable drawable;
176 X_PHYSFONT font;
177 X_PHYSPEN pen;
178 X_PHYSBRUSH brush;
179 X_PHYSPALETTE pal;
180 } X_DC_INFO;
183 typedef struct tagDC
185 GDIOBJHDR header;
186 WORD saveLevel;
187 WIN_DC_INFO w;
188 union
190 X_DC_INFO x;
191 /* other devices (e.g. printer) */
192 } u;
193 } DC;
195 /* DC flags */
196 #define DC_MEMORY 1 /* It is a memory DC */
197 #define DC_SAVED 2 /* It is a saved DC */
199 /* Last 32 bytes are reserved for stock object handles */
200 #ifdef WINELIB32
201 /* Stupid overloading (see DefWindowProc, case WM_ERASEBKGND) */
202 #define GDI_HEAP_SIZE (COLOR_BTNHIGHLIGHT+1)
203 #else
204 #define GDI_HEAP_SIZE 0xffe0
205 #endif
207 /* First handle possible for stock objects (must be >= GDI_HEAP_SIZE) */
208 #define FIRST_STOCK_HANDLE GDI_HEAP_SIZE
210 /* Stock objects handles */
212 #define NB_STOCK_OBJECTS (SYSTEM_FIXED_FONT + 1)
214 #define STOCK_WHITE_BRUSH ((HBRUSH)(FIRST_STOCK_HANDLE+WHITE_BRUSH))
215 #define STOCK_LTGRAY_BRUSH ((HBRUSH)(FIRST_STOCK_HANDLE+LTGRAY_BRUSH))
216 #define STOCK_GRAY_BRUSH ((HBRUSH)(FIRST_STOCK_HANDLE+GRAY_BRUSH))
217 #define STOCK_DKGRAY_BRUSH ((HBRUSH)(FIRST_STOCK_HANDLE+DKGRAY_BRUSH))
218 #define STOCK_BLACK_BRUSH ((HBRUSH)(FIRST_STOCK_HANDLE+BLACK_BRUSH))
219 #define STOCK_NULL_BRUSH ((HBRUSH)(FIRST_STOCK_HANDLE+NULL_BRUSH))
220 #define STOCK_HOLLOW_BRUSH ((HBRUSH)(FIRST_STOCK_HANDLE+HOLLOW_BRUSH))
221 #define STOCK_WHITE_PEN ((HPEN)(FIRST_STOCK_HANDLE+WHITE_PEN))
222 #define STOCK_BLACK_PEN ((HPEN)(FIRST_STOCK_HANDLE+BLACK_PEN))
223 #define STOCK_NULL_PEN ((HPEN)(FIRST_STOCK_HANDLE+NULL_PEN))
224 #define STOCK_OEM_FIXED_FONT ((HFONT)(FIRST_STOCK_HANDLE+OEM_FIXED_FONT))
225 #define STOCK_ANSI_FIXED_FONT ((HFONT)(FIRST_STOCK_HANDLE+ANSI_FIXED_FONT))
226 #define STOCK_ANSI_VAR_FONT ((HFONT)(FIRST_STOCK_HANDLE+ANSI_VAR_FONT))
227 #define STOCK_SYSTEM_FONT ((HFONT)(FIRST_STOCK_HANDLE+SYSTEM_FONT))
228 #define STOCK_DEVICE_DEFAULT_FONT ((HFONT)(FIRST_STOCK_HANDLE+DEVICE_DEFAULT_FONT))
229 #define STOCK_DEFAULT_PALETTE ((HPALETTE)(FIRST_STOCK_HANDLE+DEFAULT_PALETTE))
230 #define STOCK_SYSTEM_FIXED_FONT ((HFONT)(FIRST_STOCK_HANDLE+SYSTEM_FIXED_FONT))
232 #define FIRST_STOCK_FONT STOCK_OEM_FIXED_FONT
233 #define LAST_STOCK_FONT STOCK_SYSTEM_FIXED_FONT
235 #define LAST_STOCK_HANDLE ((DWORD)STOCK_SYSTEM_FIXED_FONT)
237 /* Device <-> logical coords conversion */
239 #define XDPTOLP(dc,x) \
240 (((x)-(dc)->w.VportOrgX) * (dc)->w.WndExtX / (dc)->w.VportExtX+(dc)->w.WndOrgX)
241 #define YDPTOLP(dc,y) \
242 (((y)-(dc)->w.VportOrgY) * (dc)->w.WndExtY / (dc)->w.VportExtY+(dc)->w.WndOrgY)
243 #define XLPTODP(dc,x) \
244 (((x)-(dc)->w.WndOrgX) * (dc)->w.VportExtX / (dc)->w.WndExtX+(dc)->w.VportOrgX)
245 #define YLPTODP(dc,y) \
246 (((y)-(dc)->w.WndOrgY) * (dc)->w.VportExtY / (dc)->w.WndExtY+(dc)->w.VportOrgY)
249 /* GDI local heap */
251 #ifdef WINELIB
253 #define GDI_HEAP_ALLOC(size) LocalAlloc (LMEM_FIXED,size)
254 #define GDI_HEAP_LIN_ADDR(handle) LocalLock (handle)
255 #define GDI_HEAP_SEG_ADDR(handle) LocalLock (handle)
256 #define GDI_HEAP_FREE(handle) LocalFree (handle)
258 #else
260 extern LPSTR GDI_Heap;
261 extern WORD GDI_HeapSel;
263 #define GDI_HEAP_ALLOC(size) \
264 LOCAL_Alloc( GDI_HeapSel, LMEM_FIXED, (size) )
265 #define GDI_HEAP_REALLOC(handle,size) \
266 LOCAL_ReAlloc( GDI_HeapSel, (handle), (size), LMEM_FIXED )
267 #define GDI_HEAP_FREE(handle) \
268 LOCAL_Free( GDI_HeapSel, (handle) )
269 #define GDI_HEAP_LIN_ADDR(handle) \
270 ((handle) ? PTR_SEG_OFF_TO_LIN(GDI_HeapSel, (handle)) : NULL)
271 #define GDI_HEAP_SEG_ADDR(handle) \
272 ((handle) ? MAKELONG((handle), GDI_HeapSel) : 0)
274 #endif
276 extern BOOL GDI_Init(void);
277 extern HANDLE GDI_AllocObject( WORD, WORD );
278 extern BOOL GDI_FreeObject( HANDLE );
279 extern GDIOBJHDR * GDI_GetObjPtr( HANDLE, WORD );
281 extern Display * display;
282 extern Screen * screen;
283 extern Window rootWindow;
284 extern int screenWidth, screenHeight, screenDepth;
285 extern int desktopX, desktopY; /* misc/main.c */
287 #endif /* GDI_H */