ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/misc.C
(Generate patch)

Comparing rxvt-unicode/src/misc.C (file contents):
Revision 1.27 by root, Wed Feb 16 21:37:10 2005 UTC vs.
Revision 1.30 by root, Tue Jan 3 02:43:33 2006 UTC

553void 553void
554rxvt_Draw_Shadow (Display *display, Window win, GC topShadow, GC botShadow, int x, int y, int w, int h) 554rxvt_Draw_Shadow (Display *display, Window win, GC topShadow, GC botShadow, int x, int y, int w, int h)
555{ 555{
556 int shadow; 556 int shadow;
557 557
558 shadow = (w == 0 || h == 0) ? 1 : SHADOW; 558 shadow = (w == 0 || h == 0) ? 1 : MENU_SHADOW;
559 w += x - 1; 559 w += x - 1;
560 h += y - 1; 560 h += y - 1;
561 for (; shadow-- > 0; x++, y++, w--, h--) 561 for (; shadow-- > 0; x++, y++, w--, h--)
562 { 562 {
563 XDrawLine (display, win, topShadow, x, y, w, y); 563 XDrawLine (display, win, topShadow, x, y, w, y);
608#endif 608#endif
609 609
610 } 610 }
611} 611}
612#endif 612#endif
613
614// should not be used in interactive programs, for obvious reasons
615void rxvt_usleep (int usecs)
616{
617#if HAVE_NANOSLEEP
618 struct timespec ts;
619
620 ts.tv_sec = 0;
621 ts.tv_nsec = usecs * 1000;
622 nanosleep (&ts, NULL);
623#else
624 /* use select for timing */
625 struct timeval tv;
626
627 tv.tv_sec = 0;
628 tv.tv_usec = usecs;
629 select (0, NULL, NULL, NULL, &tv);
630#endif
631}
632
613/*----------------------- end-of-file (C source) -----------------------*/ 633/*----------------------- end-of-file (C source) -----------------------*/
634

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines