]> git.eshelyaron.com Git - emacs.git/commitdiff
* xterm.c (x_draw_relief_rect): If box width is larger than 1,
authorChong Yidong <cyd@stupidchicken.com>
Fri, 8 Oct 2010 05:02:56 +0000 (01:02 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Fri, 8 Oct 2010 05:02:56 +0000 (01:02 -0400)
draw the outermost line using the black relief, for legibility.
Omit drawing the four corner pixels.

src/ChangeLog
src/xterm.c

index 6f388cd72831bce2784572b224bf8fb3fea47d67..2effe2ea84cbc004c05c76e032cb21f51679a6dc 100644 (file)
@@ -1,3 +1,9 @@
+2010-10-08  Chong Yidong  <cyd@stupidchicken.com>
+
+       * xterm.c (x_draw_relief_rect): If box width is larger than 1,
+       draw the outermost line using the black relief, for legibility.
+       Omit drawing the four corner pixels.
+
 2010-10-04  Chong Yidong  <cyd@stupidchicken.com>
 
        * keyboard.c (echo_prompt): Function moved into read_key_sequence.
index abeb7712bc87b779439443b2e57bba5b39585973..8b28b1afa27dd6c7c7cfa6663f6c34987ac3aabb 100644 (file)
@@ -1942,18 +1942,35 @@ x_draw_relief_rect (struct frame *f,
     gc = f->output_data.x->black_relief.gc;
   XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
 
+  /* This code is more complicated than it has to be, because of two
+     minor hacks to make the boxes look nicer: (i) if width > 1, draw
+     the outermost line using the black relief.  (ii) Omit the four
+     corner pixels.  */
+
   /* Top.  */
   if (top_p)
-    for (i = 0; i < width; ++i)
-      XDrawLine (dpy, window, gc,
-                left_x + i * left_p, top_y + i,
-                right_x + 1 - i * right_p, top_y + i);
+    {
+      if (width == 1)
+       XDrawLine (dpy, window, gc,
+                  left_x  + (left_p  ? 1 : 0), top_y,
+                  right_x + (right_p ? 0 : 1), top_y);
+
+      for (i = 1; i < width; ++i)
+       XDrawLine (dpy, window, gc,
+                  left_x  + i * left_p, top_y + i,
+                  right_x + 1 - i * right_p, top_y + i);
+    }
 
   /* Left.  */
   if (left_p)
-    for (i = 0; i < width; ++i)
-      XDrawLine (dpy, window, gc,
-                left_x + i, top_y + i, left_x + i, bottom_y - i + 1);
+    {
+      if (width == 1)
+       XDrawLine (dpy, window, gc, left_x, top_y + 1, left_x, bottom_y);
+
+      for (i = (width > 1 ? 1 : 0); i < width; ++i)
+       XDrawLine (dpy, window, gc,
+                  left_x + i, top_y + i, left_x + i, bottom_y - i + 1);
+    }
 
   XSetClipMask (dpy, gc, None);
   if (raised_p)
@@ -1962,12 +1979,30 @@ x_draw_relief_rect (struct frame *f,
     gc = f->output_data.x->white_relief.gc;
   XSetClipRectangles (dpy, gc, 0, 0, clip_rect, 1, Unsorted);
 
+  if (width > 1)
+    {
+      /* Outermost top line.  */
+      if (top_p)
+       XDrawLine (dpy, window, gc,
+                  left_x  + (left_p  ? 1 : 0), top_y,
+                  right_x + (right_p ? 0 : 1), top_y);
+
+      /* Outermost left line.  */
+      if (left_p)
+       XDrawLine (dpy, window, gc, left_x, top_y + 1, left_x, bottom_y);
+    }
+
   /* Bottom.  */
   if (bot_p)
-    for (i = 0; i < width; ++i)
+    {
       XDrawLine (dpy, window, gc,
-                left_x + i * left_p, bottom_y - i,
-                right_x + 1 - i * right_p, bottom_y - i);
+                left_x  + (left_p  ? 1 : 0), bottom_y,
+                right_x + (right_p ? 0 : 1), bottom_y);
+      for (i = 1; i < width; ++i)
+       XDrawLine (dpy, window, gc,
+                  left_x  + i * left_p, bottom_y - i,
+                  right_x + 1 - i * right_p, bottom_y - i);
+    }
 
   /* Right.  */
   if (right_p)