push 955563f995be8b0942dbb757ceb5b3a4c8ccafbf
[wine/hacks.git] / dlls / gdi32 / mapping.c
blobc802a102f9823eb0a2c3497d0c17499d50ac6b82
1 /*
2 * GDI mapping mode functions
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 #include <stdarg.h>
23 #include "windef.h"
24 #include "winbase.h"
25 #include "wingdi.h"
26 #include "wownt32.h"
27 #include "gdi_private.h"
28 #include "wine/debug.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(dc);
33 /***********************************************************************
34 * MAPPING_FixIsotropic
36 * Fix viewport extensions for isotropic mode.
38 static void MAPPING_FixIsotropic( DC * dc )
40 double xdim = fabs((double)dc->vportExtX * GetDeviceCaps( dc->hSelf, HORZSIZE ) /
41 (GetDeviceCaps( dc->hSelf, HORZRES ) * dc->wndExtX));
42 double ydim = fabs((double)dc->vportExtY * GetDeviceCaps( dc->hSelf, VERTSIZE ) /
43 (GetDeviceCaps( dc->hSelf, VERTRES ) * dc->wndExtY));
45 if (xdim > ydim)
47 INT mincx = (dc->vportExtX >= 0) ? 1 : -1;
48 dc->vportExtX = floor(dc->vportExtX * ydim / xdim + 0.5);
49 if (!dc->vportExtX) dc->vportExtX = mincx;
51 else
53 INT mincy = (dc->vportExtY >= 0) ? 1 : -1;
54 dc->vportExtY = floor(dc->vportExtY * xdim / ydim + 0.5);
55 if (!dc->vportExtY) dc->vportExtY = mincy;
60 /***********************************************************************
61 * DPtoLP (GDI32.@)
63 BOOL WINAPI DPtoLP( HDC hdc, LPPOINT points, INT count )
65 DC * dc = get_dc_ptr( hdc );
66 if (!dc) return FALSE;
68 if (dc->vport2WorldValid)
70 while (count--)
72 double x = points->x;
73 double y = points->y;
74 points->x = floor( x * dc->xformVport2World.eM11 +
75 y * dc->xformVport2World.eM21 +
76 dc->xformVport2World.eDx + 0.5 );
77 points->y = floor( x * dc->xformVport2World.eM12 +
78 y * dc->xformVport2World.eM22 +
79 dc->xformVport2World.eDy + 0.5 );
80 points++;
83 release_dc_ptr( dc );
84 return (count < 0);
88 /***********************************************************************
89 * LPtoDP (GDI32.@)
91 BOOL WINAPI LPtoDP( HDC hdc, LPPOINT points, INT count )
93 DC * dc = get_dc_ptr( hdc );
94 if (!dc) return FALSE;
96 while (count--)
98 double x = points->x;
99 double y = points->y;
100 points->x = floor( x * dc->xformWorld2Vport.eM11 +
101 y * dc->xformWorld2Vport.eM21 +
102 dc->xformWorld2Vport.eDx + 0.5 );
103 points->y = floor( x * dc->xformWorld2Vport.eM12 +
104 y * dc->xformWorld2Vport.eM22 +
105 dc->xformWorld2Vport.eDy + 0.5 );
106 points++;
108 release_dc_ptr( dc );
109 return TRUE;
113 /***********************************************************************
114 * SetMapMode (GDI32.@)
116 INT WINAPI SetMapMode( HDC hdc, INT mode )
118 INT ret;
119 INT horzSize, vertSize, horzRes, vertRes;
121 DC * dc = get_dc_ptr( hdc );
122 if (!dc) return 0;
123 if (dc->funcs->pSetMapMode)
125 if((ret = dc->funcs->pSetMapMode( dc->physDev, mode )) != TRUE)
127 if(ret == GDI_NO_MORE_WORK)
128 ret = TRUE;
129 goto done;
133 TRACE("%p %d\n", hdc, mode );
135 ret = dc->MapMode;
137 if (mode == dc->MapMode && (mode == MM_ISOTROPIC || mode == MM_ANISOTROPIC))
138 goto done;
140 horzSize = GetDeviceCaps( hdc, HORZSIZE );
141 vertSize = GetDeviceCaps( hdc, VERTSIZE );
142 horzRes = GetDeviceCaps( hdc, HORZRES );
143 vertRes = GetDeviceCaps( hdc, VERTRES );
144 switch(mode)
146 case MM_TEXT:
147 dc->wndExtX = 1;
148 dc->wndExtY = 1;
149 dc->vportExtX = 1;
150 dc->vportExtY = 1;
151 break;
152 case MM_LOMETRIC:
153 case MM_ISOTROPIC:
154 dc->wndExtX = horzSize * 10;
155 dc->wndExtY = vertSize * 10;
156 dc->vportExtX = horzRes;
157 dc->vportExtY = -vertRes;
158 break;
159 case MM_HIMETRIC:
160 dc->wndExtX = horzSize * 100;
161 dc->wndExtY = vertSize * 100;
162 dc->vportExtX = horzRes;
163 dc->vportExtY = -vertRes;
164 break;
165 case MM_LOENGLISH:
166 dc->wndExtX = MulDiv(1000, horzSize, 254);
167 dc->wndExtY = MulDiv(1000, vertSize, 254);
168 dc->vportExtX = horzRes;
169 dc->vportExtY = -vertRes;
170 break;
171 case MM_HIENGLISH:
172 dc->wndExtX = MulDiv(10000, horzSize, 254);
173 dc->wndExtY = MulDiv(10000, vertSize, 254);
174 dc->vportExtX = horzRes;
175 dc->vportExtY = -vertRes;
176 break;
177 case MM_TWIPS:
178 dc->wndExtX = MulDiv(14400, horzSize, 254);
179 dc->wndExtY = MulDiv(14400, vertSize, 254);
180 dc->vportExtX = horzRes;
181 dc->vportExtY = -vertRes;
182 break;
183 case MM_ANISOTROPIC:
184 break;
185 default:
186 goto done;
188 dc->MapMode = mode;
189 DC_UpdateXforms( dc );
190 done:
191 release_dc_ptr( dc );
192 return ret;
196 /***********************************************************************
197 * SetViewportExtEx (GDI32.@)
199 BOOL WINAPI SetViewportExtEx( HDC hdc, INT x, INT y, LPSIZE size )
201 INT ret = TRUE;
202 DC * dc = get_dc_ptr( hdc );
203 if (!dc) return FALSE;
204 if (dc->funcs->pSetViewportExt)
206 if((ret = dc->funcs->pSetViewportExt( dc->physDev, x, y )) != TRUE)
208 if(ret == GDI_NO_MORE_WORK)
209 ret = TRUE;
210 goto done;
213 if (size)
215 size->cx = dc->vportExtX;
216 size->cy = dc->vportExtY;
218 if ((dc->MapMode != MM_ISOTROPIC) && (dc->MapMode != MM_ANISOTROPIC))
219 goto done;
220 if (!x || !y)
222 ret = FALSE;
223 goto done;
225 dc->vportExtX = x;
226 dc->vportExtY = y;
227 if (dc->MapMode == MM_ISOTROPIC) MAPPING_FixIsotropic( dc );
228 DC_UpdateXforms( dc );
229 done:
230 release_dc_ptr( dc );
231 return ret;
235 /***********************************************************************
236 * SetViewportOrgEx (GDI32.@)
238 BOOL WINAPI SetViewportOrgEx( HDC hdc, INT x, INT y, LPPOINT pt )
240 INT ret = TRUE;
241 DC * dc = get_dc_ptr( hdc );
242 if (!dc) return FALSE;
243 if (dc->funcs->pSetViewportOrg)
245 if((ret = dc->funcs->pSetViewportOrg( dc->physDev, x, y )) != TRUE)
247 if(ret == GDI_NO_MORE_WORK)
248 ret = TRUE;
249 goto done;
252 if (pt)
254 pt->x = dc->vportOrgX;
255 pt->y = dc->vportOrgY;
257 dc->vportOrgX = x;
258 dc->vportOrgY = y;
259 DC_UpdateXforms( dc );
261 done:
262 release_dc_ptr( dc );
263 return ret;
267 /***********************************************************************
268 * SetWindowExtEx (GDI32.@)
270 BOOL WINAPI SetWindowExtEx( HDC hdc, INT x, INT y, LPSIZE size )
272 INT ret = TRUE;
273 DC * dc = get_dc_ptr( hdc );
274 if (!dc) return FALSE;
275 if (dc->funcs->pSetWindowExt)
277 if((ret = dc->funcs->pSetWindowExt( dc->physDev, x, y )) != TRUE)
279 if(ret == GDI_NO_MORE_WORK)
280 ret = TRUE;
281 goto done;
284 if (size)
286 size->cx = dc->wndExtX;
287 size->cy = dc->wndExtY;
289 if ((dc->MapMode != MM_ISOTROPIC) && (dc->MapMode != MM_ANISOTROPIC))
290 goto done;
291 if (!x || !y)
293 ret = FALSE;
294 goto done;
296 dc->wndExtX = x;
297 dc->wndExtY = y;
298 /* The API docs say that you should call SetWindowExtEx before
299 SetViewportExtEx. This advice does not imply that Windows
300 doesn't ensure the isotropic mapping after SetWindowExtEx! */
301 if (dc->MapMode == MM_ISOTROPIC) MAPPING_FixIsotropic( dc );
302 DC_UpdateXforms( dc );
303 done:
304 release_dc_ptr( dc );
305 return ret;
309 /***********************************************************************
310 * SetWindowOrgEx (GDI32.@)
312 BOOL WINAPI SetWindowOrgEx( HDC hdc, INT x, INT y, LPPOINT pt )
314 INT ret = TRUE;
315 DC * dc = get_dc_ptr( hdc );
316 if (!dc) return FALSE;
317 if (dc->funcs->pSetWindowOrg)
319 if((ret = dc->funcs->pSetWindowOrg( dc->physDev, x, y )) != TRUE)
321 if(ret == GDI_NO_MORE_WORK)
322 ret = TRUE;
323 goto done;
326 if (pt)
328 pt->x = dc->wndOrgX;
329 pt->y = dc->wndOrgY;
331 dc->wndOrgX = x;
332 dc->wndOrgY = y;
333 DC_UpdateXforms( dc );
334 done:
335 release_dc_ptr( dc );
336 return ret;
340 /***********************************************************************
341 * OffsetViewportOrgEx (GDI32.@)
343 BOOL WINAPI OffsetViewportOrgEx( HDC hdc, INT x, INT y, LPPOINT pt)
345 INT ret = TRUE;
346 DC * dc = get_dc_ptr( hdc );
347 if (!dc) return FALSE;
348 if (dc->funcs->pOffsetViewportOrg)
350 if((ret = dc->funcs->pOffsetViewportOrg( dc->physDev, x, y )) != TRUE)
352 if(ret == GDI_NO_MORE_WORK)
353 ret = TRUE;
354 goto done;
357 if (pt)
359 pt->x = dc->vportOrgX;
360 pt->y = dc->vportOrgY;
362 dc->vportOrgX += x;
363 dc->vportOrgY += y;
364 DC_UpdateXforms( dc );
365 done:
366 release_dc_ptr( dc );
367 return ret;
371 /***********************************************************************
372 * OffsetWindowOrgEx (GDI32.@)
374 BOOL WINAPI OffsetWindowOrgEx( HDC hdc, INT x, INT y, LPPOINT pt )
376 INT ret = TRUE;
377 DC * dc = get_dc_ptr( hdc );
378 if (!dc) return FALSE;
379 if (dc->funcs->pOffsetWindowOrg)
381 if((ret = dc->funcs->pOffsetWindowOrg( dc->physDev, x, y )) != TRUE)
383 if(ret == GDI_NO_MORE_WORK)
384 ret = TRUE;
385 goto done;
388 if (pt)
390 pt->x = dc->wndOrgX;
391 pt->y = dc->wndOrgY;
393 dc->wndOrgX += x;
394 dc->wndOrgY += y;
395 DC_UpdateXforms( dc );
396 done:
397 release_dc_ptr( dc );
398 return ret;
402 /***********************************************************************
403 * ScaleViewportExtEx (GDI32.@)
405 BOOL WINAPI ScaleViewportExtEx( HDC hdc, INT xNum, INT xDenom,
406 INT yNum, INT yDenom, LPSIZE size )
408 INT ret = TRUE;
409 DC * dc = get_dc_ptr( hdc );
410 if (!dc) return FALSE;
411 if (dc->funcs->pScaleViewportExt)
413 if((ret = dc->funcs->pScaleViewportExt( dc->physDev, xNum, xDenom, yNum, yDenom )) != TRUE)
415 if(ret == GDI_NO_MORE_WORK)
416 ret = TRUE;
417 goto done;
420 if (size)
422 size->cx = dc->vportExtX;
423 size->cy = dc->vportExtY;
425 if ((dc->MapMode != MM_ISOTROPIC) && (dc->MapMode != MM_ANISOTROPIC))
426 goto done;
427 if (!xNum || !xDenom || !xNum || !yDenom)
429 ret = FALSE;
430 goto done;
432 dc->vportExtX = (dc->vportExtX * xNum) / xDenom;
433 dc->vportExtY = (dc->vportExtY * yNum) / yDenom;
434 if (dc->vportExtX == 0) dc->vportExtX = 1;
435 if (dc->vportExtY == 0) dc->vportExtY = 1;
436 if (dc->MapMode == MM_ISOTROPIC) MAPPING_FixIsotropic( dc );
437 DC_UpdateXforms( dc );
438 done:
439 release_dc_ptr( dc );
440 return ret;
444 /***********************************************************************
445 * ScaleWindowExtEx (GDI32.@)
447 BOOL WINAPI ScaleWindowExtEx( HDC hdc, INT xNum, INT xDenom,
448 INT yNum, INT yDenom, LPSIZE size )
450 INT ret = TRUE;
451 DC * dc = get_dc_ptr( hdc );
452 if (!dc) return FALSE;
453 if (dc->funcs->pScaleWindowExt)
455 if((ret = dc->funcs->pScaleWindowExt( dc->physDev, xNum, xDenom, yNum, yDenom )) != TRUE)
457 if(ret == GDI_NO_MORE_WORK)
458 ret = TRUE;
459 goto done;
462 if (size)
464 size->cx = dc->wndExtX;
465 size->cy = dc->wndExtY;
467 if ((dc->MapMode != MM_ISOTROPIC) && (dc->MapMode != MM_ANISOTROPIC))
468 goto done;
469 if (!xNum || !xDenom || !xNum || !yDenom)
471 ret = FALSE;
472 goto done;
474 dc->wndExtX = (dc->wndExtX * xNum) / xDenom;
475 dc->wndExtY = (dc->wndExtY * yNum) / yDenom;
476 if (dc->wndExtX == 0) dc->wndExtX = 1;
477 if (dc->wndExtY == 0) dc->wndExtY = 1;
478 if (dc->MapMode == MM_ISOTROPIC) MAPPING_FixIsotropic( dc );
479 DC_UpdateXforms( dc );
480 done:
481 release_dc_ptr( dc );
482 return ret;