comparison draw.c @ 608:ecfc43176b2d

made squares equally sized, and 1px bigger
author arg@mig29
date Fri, 01 Dec 2006 17:55:46 +0100
parents 16762f7414de
children 5f4bb0a58f32
comparison
equal deleted inserted replaced
607:16762f7414de 608:ecfc43176b2d
74 XChangeGC(dpy, dc.gc, GCForeground | GCFont, &gcv); 74 XChangeGC(dpy, dc.gc, GCForeground | GCFont, &gcv);
75 XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len); 75 XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len);
76 } 76 }
77 x = (h + 2) / 4; 77 x = (h + 2) / 4;
78 if(filledsquare) { 78 if(filledsquare) {
79 r.x = dc.x + 2; 79 r.x = dc.x + 1;
80 r.y = dc.y + 2; 80 r.y = dc.y + 1;
81 r.width = r.height = x; 81 r.width = r.height = x + 1;
82 XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1); 82 XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);
83 } 83 }
84 else if(emptysquare) { 84 else if(emptysquare) {
85 pt[0].x = dc.x + 2; 85 pt[0].x = dc.x + 1;
86 pt[0].y = dc.y + 2; 86 pt[0].y = dc.y + 1;
87 pt[1].x = x; 87 pt[1].x = x;
88 pt[1].y = 0; 88 pt[1].y = 0;
89 pt[2].x = 0; 89 pt[2].x = 0;
90 pt[2].y = x; 90 pt[2].y = x;
91 pt[3].x = -x; 91 pt[3].x = -x;