Xinqi Bao's Git
projects
/
dwm.git
/ diff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
2e834e9
)
found less intrusive way
author
Anselm R. Garbe <
[email protected]
>
Thu, 24 Aug 2006 07:41:41 +0000
(09:41 +0200)
committer
Anselm R. Garbe <
[email protected]
>
Thu, 24 Aug 2006 07:41:41 +0000
(09:41 +0200)
draw.c
diff
|
blob
|
history
diff --git
a/draw.c
b/draw.c
index
4ebda12
..
f73a7bd
100644
(file)
--- a/
draw.c
+++ b/
draw.c
@@
-22,7
+22,7
@@
textnw(const char *text, unsigned int len)
}
static void
}
static void
-drawtext(const char *text, Bool invert, Bool
underline
)
+drawtext(const char *text, Bool invert, Bool
highlight
)
{
int x, y, w, h;
static char buf[256];
{
int x, y, w, h;
static char buf[256];
@@
-85,12
+85,18
@@
drawtext(const char *text, Bool invert, Bool underline)
XChangeGC(dpy, dc.gc, GCForeground | GCBackground | GCFont, &gcv);
XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len);
}
XChangeGC(dpy, dc.gc, GCForeground | GCBackground | GCFont, &gcv);
XDrawString(dpy, dc.drawable, dc.gc, x, y, buf, len);
}
- if(
underline
) {
- points[0].x = dc.x +
(h / 2) -
1;
- points[0].y = dc.y +
dc.h - 3
;
- points[1].x = dc.w -
h + 2
;
+ if(
highlight
) {
+ points[0].x = dc.x + 1;
+ points[0].y = dc.y +
1
;
+ points[1].x = dc.w -
3
;
points[1].y = 0;
points[1].y = 0;
- XDrawLines(dpy, dc.drawable, dc.gc, points, 2, CoordModePrevious);
+ points[2].x = 0;
+ points[2].y = dc.h - 3;
+ points[3].x = -(dc.w - 3);
+ points[3].y = 0;
+ points[4].x = 0;
+ points[4].y = -(dc.h - 3);
+ XDrawLines(dpy, dc.drawable, dc.gc, points, 5, CoordModePrevious);
}
}
}
}