summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorscuri <scuri>2009-12-01 17:25:49 +0000
committerscuri <scuri>2009-12-01 17:25:49 +0000
commitda448b73cc1d103d9fdb4829b2f731514834bce3 (patch)
treeb0f661ec6dc1a5d1ae458e4a932e0ef668e913d7 /src
parent41be4b7e6f5661a28d02edad52c6651097da7202 (diff)
Fixed: text alignment in the Windows base driver when WriteMode=XOR.
Diffstat (limited to 'src')
-rw-r--r--src/win32/cdwin.c24
1 files changed, 11 insertions, 13 deletions
diff --git a/src/win32/cdwin.c b/src/win32/cdwin.c
index 371bb6d..57c07b9 100644
--- a/src/win32/cdwin.c
+++ b/src/win32/cdwin.c
@@ -997,8 +997,6 @@ static void sTextOutBlt(cdCtxCanvas* ctxcanvas, int px, int py, const char* s, i
/* calcula o alinhamento da imagem no canvas */
if (ctxcanvas->canvas->text_orientation != 0)
{
- double d = sqrt(wt*wt + ht*ht);
-
switch (ctxcanvas->canvas->text_alignment)
{
case CD_CENTER:
@@ -1034,20 +1032,20 @@ static void sTextOutBlt(cdCtxCanvas* ctxcanvas, int px, int py, const char* s, i
px_off = (int)(wt/2 * cos_teta);
break;
case CD_NORTH_EAST:
- py_off = (int)(h/2);
- px_off = - (int)(sqrt(d*d - h*h)/2);
- break;
- case CD_NORTH_WEST:
- py_off = (int)(sqrt(d*d - w*w)/2);
- px_off = - (int)(w/2);
+ py_off = (int)(ht/2 * cos_teta + wt/2 * sin_teta);
+ px_off = (int)(ht/2 * sin_teta - wt/2 * cos_teta);
break;
case CD_SOUTH_WEST:
- py_off = - (int)(h/2);
- px_off = (int)(sqrt(d*d - h*h)/2);
+ py_off = - (int)(ht/2 * cos_teta + wt/2 * sin_teta);
+ px_off = - (int)(ht/2 * sin_teta - wt/2 * cos_teta);
+ break;
+ case CD_NORTH_WEST:
+ py_off = (int)(ht/2 * cos_teta - wt/2 * sin_teta);
+ px_off = (int)(ht/2 * sin_teta + wt/2 * cos_teta);
break;
case CD_SOUTH_EAST:
- py_off = - (int)(sqrt(d*d - w*w)/2);
- px_off = (int)(w/2);
+ py_off = - (int)(ht/2 * cos_teta - wt/2 * sin_teta);
+ px_off = - (int)(ht/2 * sin_teta + wt/2 * cos_teta);
break;
}
}
@@ -1095,7 +1093,7 @@ static void sTextOutBlt(cdCtxCanvas* ctxcanvas, int px, int py, const char* s, i
case CD_CENTER:
case CD_EAST:
case CD_WEST:
- py_off = py;
+ py_off = 0;
break;
}
}