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.6 by pcg, Mon Feb 9 07:11:49 2004 UTC vs.
Revision 1.29 by root, Thu Aug 11 12:31:15 2005 UTC

1/*--------------------------------*-C-*---------------------------------* 1/*--------------------------------*-C-*---------------------------------*
2 * File: misc.c 2 * File: misc.C
3 *----------------------------------------------------------------------* 3 *----------------------------------------------------------------------*
4 * 4 *
5 * All portions of code are copyright by their respective author/s. 5 * All portions of code are copyright by their respective author/s.
6 * Copyright (c) 1996 mj olesen <olesen@me.QueensU.CA> Queen's Univ at Kingston 6 * Copyright (c) 1996 mj olesen <olesen@me.QueensU.CA> Queen's Univ at Kingston
7 * Copyright (c) 1997,1998 Oezguer Kesim <kesim@math.fu-berlin.de> 7 * Copyright (c) 1997,1998 Oezguer Kesim <kesim@math.fu-berlin.de>
8 * Copyright (c) 1998-2000 Geoff Wing <gcw@pobox.com> 8 * Copyright (c) 1998-2000 Geoff Wing <gcw@pobox.com>
9 * Copyright (c) 2003-2004 Marc Lehmann <pcg@goof.com>
9 * 10 *
10 * This program is free software; you can redistribute it and/or modify 11 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by 12 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or 13 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version. 14 * (at your option) any later version.
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 *----------------------------------------------------------------------*/ 24 *----------------------------------------------------------------------*/
24 25
25#include "../config.h" /* NECESSARY */ 26#include "../config.h" /* NECESSARY */
26#include "rxvt.h" /* NECESSARY */ 27#include "rxvt.h" /* NECESSARY */
27#include "misc.intpro" /* PROTOS for internal routines */
28 28
29/* EXTPROTO */ 29char *
30rxvt_wcstombs (const wchar_t *str, int len)
31{
32 if (len < 0) len = wcslen (str);
33
34 mbstate mbs;
35 char *r = (char *)rxvt_malloc (len * MB_CUR_MAX + 1);
36
37 char *dst = r;
38 while (len--)
39 {
40 ssize_t l = wcrtomb (dst, *str++, mbs);
41 if (l < 0)
42 *dst++ = '?';
43 else
44 dst += l;
45 }
46
47 *dst++ = 0;
48
49 return (char *)rxvt_realloc (r, dst - r);
50}
51
52wchar_t *
53rxvt_mbstowcs (const char *str, int len)
54{
55 if (len < 0) len = strlen (str);
56
57 wchar_t *r = (wchar_t *)rxvt_malloc ((len + 1) * sizeof (wchar_t));
58
59 if ((ssize_t)mbstowcs (r, str, len + 1) < 0)
60 *r = 0;
61
62 return r;
63}
64
65char *
66rxvt_wcstoutf8 (const wchar_t *str, int len)
67{
68 if (len < 0) len = wcslen (str);
69
70 char *r = (char *)rxvt_malloc (len * 4 + 1);
71 char *p = r;
72
73 while (len--)
74 {
75 unicode_t w = *str++ & UNICODE_MASK;
76
77 if (w < 0x000080)
78 *p++ = w;
79 else if (w < 0x000800)
80 *p++ = 0xc0 | ( w >> 6),
81 *p++ = 0x80 | ( w & 0x3f);
82 else if (w < 0x010000)
83 *p++ = 0xe0 | ( w >> 12 ),
84 *p++ = 0x80 | ((w >> 6) & 0x3f),
85 *p++ = 0x80 | ( w & 0x3f);
86 else if (w < 0x110000)
87 *p++ = 0xf0 | ( w >> 18),
88 *p++ = 0x80 | ((w >> 12) & 0x3f),
89 *p++ = 0x80 | ((w >> 6) & 0x3f),
90 *p++ = 0x80 | ( w & 0x3f);
91 else
92 *p++ = '?';
93 }
94
95 *p++ = 0;
96
97 return (char *)rxvt_realloc (r, p - r);
98}
99
100wchar_t *
101rxvt_utf8towcs (const char *str, int len)
102{
103 if (len < 0) len = strlen (str);
104
105 wchar_t *r = (wchar_t *)rxvt_malloc ((len + 1) * sizeof (wchar_t)),
106 *p = r;
107
108 unsigned char *s = (unsigned char *)str,
109 *e = s + len;
110
111 for (;;)
112 {
113 len = e - s;
114
115 if (len == 0)
116 break;
117 else if (s[0] < 0x80)
118 *p++ = *s++;
119 else if (len >= 2
120 && s[0] >= 0xc2 && s[0] <= 0xdf
121 && (s[1] & 0xc0) == 0x80)
122 {
123 *p++ = ((s[0] & 0x1f) << 6)
124 | (s[1] & 0x3f);
125 s += 2;
126 }
127 else if (len >= 3
128 && ( (s[0] == 0xe0 && s[1] >= 0xa0 && s[1] <= 0xbf)
129 || (s[0] >= 0xe1 && s[0] <= 0xec && s[1] >= 0x80 && s[1] <= 0xbf)
130 || (s[0] == 0xed && s[1] >= 0x80 && s[1] <= 0x9f)
131 || (s[0] >= 0xee && s[0] <= 0xef && s[1] >= 0x80 && s[1] <= 0xbf)
132 )
133 && (s[2] & 0xc0) == 0x80)
134 {
135 *p++ = ((s[0] & 0x0f) << 12)
136 | ((s[1] & 0x3f) << 6)
137 | (s[2] & 0x3f);
138 s += 3;
139 }
140 else if (len >= 4
141 && ( (s[0] == 0xf0 && s[1] >= 0x90 && s[1] <= 0xbf)
142 || (s[0] >= 0xf1 && s[0] <= 0xf3 && s[1] >= 0x80 && s[1] <= 0xbf)
143 || (s[0] == 0xf4 && s[1] >= 0x80 && s[1] <= 0x8f)
144 )
145 && (s[2] & 0xc0) == 0x80
146 && (s[3] & 0xc0) == 0x80)
147 {
148 *p++ = ((s[0] & 0x07) << 18)
149 | ((s[1] & 0x3f) << 12)
150 | ((s[2] & 0x3f) << 6)
151 | (s[3] & 0x3f);
152 s += 4;
153 }
154 else
155 {
156 *p++ = 0xfffd;
157 s++;
158 }
159 }
160
161 *p = 0;
162
163 return r;
164}
165
30char * 166char *
31rxvt_strdup (const char *str) 167rxvt_strdup (const char *str)
32{ 168{
33 return str ? strdup (str) : 0; 169 return str ? strdup (str) : 0;
34} 170}
35 171
36/* EXTPROTO */ 172char *
37char *
38rxvt_r_basename(const char *str) 173rxvt_r_basename (const char *str)
39{ 174{
40 char *base = STRRCHR(str, '/'); 175 char *base = strrchr (str, '/');
41 176
42 return (char *)(base ? base + 1 : str); 177 return (char *) (base ? base + 1 : str);
43} 178}
44 179
45/* 180/*
46 * Print an error message 181 * Print an error message
47 */ 182 */
48/* EXTPROTO */
49void 183void
184rxvt_vlog (const char *fmt, va_list arg_ptr)
185{
186 char msg[1024];
187
188 vsnprintf (msg, sizeof msg, fmt, arg_ptr);
189
190 if (GET_R && GET_R->log_hook)
191 (*GET_R->log_hook) (msg);
192 else
193 write (STDOUT_FILENO, msg, strlen (msg));
194}
195
196void
50rxvt_print_error(const char *fmt,...) 197rxvt_log (const char *fmt,...)
51{ 198{
52 va_list arg_ptr; 199 va_list arg_ptr;
53 200
54 va_start(arg_ptr, fmt); 201 va_start (arg_ptr, fmt);
55 fprintf(stderr, APL_NAME ": "); 202 rxvt_vlog (fmt, arg_ptr);
56 vfprintf(stderr, fmt, arg_ptr);
57 fprintf(stderr, "\n");
58 va_end(arg_ptr); 203 va_end (arg_ptr);
204}
205
206/*
207 * Print an error message
208 */
209void
210rxvt_warn (const char *fmt,...)
211{
212 va_list arg_ptr;
213
214 rxvt_log ("%s: ", RESNAME);
215
216 va_start (arg_ptr, fmt);
217 rxvt_vlog (fmt, arg_ptr);
218 va_end (arg_ptr);
219}
220
221void
222rxvt_fatal (const char *fmt,...)
223{
224 va_list arg_ptr;
225
226 rxvt_log ("%s: ", RESNAME);
227
228 va_start (arg_ptr, fmt);
229 rxvt_vlog (fmt, arg_ptr);
230 va_end (arg_ptr);
231
232 rxvt_exit_failure ();
233}
234
235class rxvt_failure_exception rxvt_failure_exception;
236
237void
238rxvt_exit_failure ()
239{
240 throw (rxvt_failure_exception);
59} 241}
60 242
61/* 243/*
62 * check that the first characters of S1 match S2 244 * check that the first characters of S1 match S2
63 * 245 *
64 * No Match 246 * No Match
65 * return: 0 247 * return: 0
66 * Match 248 * Match
67 * return: STRLEN (S2) 249 * return: strlen (S2)
68 */ 250 */
69/* EXTPROTO */
70int 251int
71rxvt_Str_match(const char *s1, const char *s2) 252rxvt_Str_match (const char *s1, const char *s2)
72{ 253{
73 int n = STRLEN(s2); 254 int n = strlen (s2);
74 255
75 return ((STRNCMP(s1, s2, n) == 0) ? n : 0); 256 return ((strncmp (s1, s2, n) == 0) ? n : 0);
76} 257}
77 258
78/* EXTPROTO */
79const char * 259const char *
80rxvt_Str_skip_space(const char *str) 260rxvt_Str_skip_space (const char *str)
81{ 261{
82 if (str) 262 if (str)
83 while (*str && isspace(*str)) 263 while (*str && isspace (*str))
84 str++; 264 str++;
265
85 return str; 266 return str;
86} 267}
87 268
88/* 269/*
89 * remove leading/trailing space and strip-off leading/trailing quotes. 270 * remove leading/trailing space and strip-off leading/trailing quotes.
90 * in place. 271 * in place.
91 */ 272 */
92/* EXTPROTO */
93char * 273char *
94rxvt_Str_trim(char *str) 274rxvt_Str_trim (char *str)
95{ 275{
96 char *r, *s; 276 char *r, *s;
97 int n;
98 277
99 if (!str || !*str) /* shortcut */ 278 if (!str || !*str) /* shortcut */
100 return str; 279 return str;
101 280
102 /* skip leading spaces */ 281 /* skip leading spaces */
103 for (s = str; *s && isspace(*s); s++) ; 282 for (s = str; *s && isspace (*s); s++) ;
283
104 /* goto end of string */ 284 /* goto end of string */
105 for (n = 0, r = s; *r++; n++) ; 285 r = s + strlen (s) - 1;
106 r -= 2; 286
107 /* dump return */ 287 /* dump return and other trailing whitespace */
108 if (n > 0 && *r == '\n') 288 while (r > s && isspace (*r))
109 n--, r--; 289 r--;
110 /* backtrack along trailing spaces */ 290
111 for (; n > 0 && isspace(*r); r--, n--) ; 291#if 0
112 /* skip matching leading/trailing quotes */ 292 /* skip matching leading/trailing quotes */
113 if (*s == '"' && *r == '"' && n > 1) 293 if (*s == '"' && *r == '"' && n > 1)
114 { 294 {
115 s++; 295 s++;
116 n -= 2; 296 n -= 2;
117 } 297 }
118 /* copy back over: forwards copy */ 298#endif
119 for (r = str; n; n--) 299
120 *r++ = *s++; 300 memmove (str, s, r + 1 - s);
121 *r = '\0'; 301 str[r + 1 - s] = 0;
122 302
123 return str; 303 return str;
124} 304}
125 305
126/* 306/*
135 * "M-x" prefixed strings, append "\r" if needed 315 * "M-x" prefixed strings, append "\r" if needed
136 * "\E]" prefixed strings (XTerm escape sequence) append ST if needed 316 * "\E]" prefixed strings (XTerm escape sequence) append ST if needed
137 * 317 *
138 * returns the converted string length 318 * returns the converted string length
139 */ 319 */
140/* EXTPROTO */
141int 320int
142rxvt_Str_escaped(char *str) 321rxvt_Str_escaped (char *str)
143{ 322{
144 char ch, *s, *d; 323 char ch, *s, *d;
145 int i, num, append = 0; 324 int i, num, append = 0;
146 325
147 if (!str || !*str) 326 if (!str || !*str)
152 if (*s == 'M' && s[1] == '-') 331 if (*s == 'M' && s[1] == '-')
153 { 332 {
154 /* Emacs convenience, replace leading `M-..' with `\E..' */ 333 /* Emacs convenience, replace leading `M-..' with `\E..' */
155 *d++ = C0_ESC; 334 *d++ = C0_ESC;
156 s += 2; 335 s += 2;
157 if (toupper(*s) == 'X') 336 if (toupper (*s) == 'X')
158 /* append carriage-return for `M-xcommand' */ 337 /* append carriage-return for `M-xcommand' */
159 for (*d++ = 'x', append = '\r', s++; isspace(*s); s++) ; 338 for (*d++ = 'x', append = '\r', s++; isspace (*s); s++) ;
160 } 339 }
161 for (; (ch = *s++);) 340 for (; (ch = *s++);)
162 { 341 {
163 if (ch == '\\') 342 if (ch == '\\')
164 { 343 {
189 ch = C0_HT; /* tab */ 368 ch = C0_HT; /* tab */
190 } 369 }
191 else if (ch == '^') 370 else if (ch == '^')
192 { 371 {
193 ch = *s++; 372 ch = *s++;
194 ch = toupper(ch); 373 ch = toupper (ch);
195 ch = (ch == '?' ? 127 : (ch - '@')); 374 ch = (ch == '?' ? 127 : (ch - '@'));
196 } 375 }
197 *d++ = ch; 376 *d++ = ch;
198 } 377 }
199 378
209 return (d - str); 388 return (d - str);
210} 389}
211 390
212/* 391/*
213 * Split a comma-separated string into an array, stripping leading and 392 * Split a comma-separated string into an array, stripping leading and
214 * trailing spaces (and paired quotes) from each entry. Empty strings 393 * trailing spaces from each entry. Empty strings are properly returned
215 * are properly returned
216 * Caller should free each entry and array when done 394 * Caller should free each entry and array when done
217 */ 395 */
218/* EXTPROTO */
219char ** 396char **
220rxvt_splitcommastring(const char *cs) 397rxvt_splitcommastring (const char *cs)
221{ 398{
222 int l, n, p; 399 int l, n, p;
223 const char *s, *t; 400 const char *s, *t;
224 char **ret; 401 char **ret;
225 402
227 s = ""; 404 s = "";
228 405
229 for (n = 1, t = s; *t; t++) 406 for (n = 1, t = s; *t; t++)
230 if (*t == ',') 407 if (*t == ',')
231 n++; 408 n++;
409
232 ret = (char **)malloc((n + 1) * sizeof(char *)); 410 ret = (char **)malloc ((n + 1) * sizeof (char *));
233 ret[n] = NULL; 411 ret[n] = NULL;
234 412
235 for (l = 0, t = s; l < n; l++) 413 for (l = 0, t = s; l < n; l++)
236 { 414 {
237 for ( ; *t && *t != ','; t++) ; 415 for ( ; *t && *t != ','; t++) ;
238 p = t - s; 416 p = t - s;
239 ret[l] = (char *)malloc(p + 1); 417 ret[l] = (char *)malloc (p + 1);
240 strncpy(ret[l], s, p); 418 strncpy (ret[l], s, p);
241 ret[l][p] = '\0'; 419 ret[l][p] = '\0';
242 rxvt_Str_trim(ret[l]); 420 rxvt_Str_trim (ret[l]);
243 s = ++t; 421 s = ++t;
244 } 422 }
423
245 return ret; 424 return ret;
425}
426
427void
428rxvt_freecommastring (char **cs)
429{
430 for (int i = 0; cs[i]; ++i)
431 free (cs[i]);
432
433 free (cs);
246} 434}
247 435
248/*----------------------------------------------------------------------* 436/*----------------------------------------------------------------------*
249 * file searching 437 * file searching
250 */ 438 */
256 * search for FILE in the current working directory, and within the 444 * search for FILE in the current working directory, and within the
257 * colon-delimited PATHLIST, adding the file extension EXT if required. 445 * colon-delimited PATHLIST, adding the file extension EXT if required.
258 * 446 *
259 * FILE is either semi-colon or zero terminated 447 * FILE is either semi-colon or zero terminated
260 */ 448 */
261/* INTPROTO */
262char * 449char *
263rxvt_File_search_path(const char *pathlist, const char *file, const char *ext) 450rxvt_File_search_path (const char *pathlist, const char *file, const char *ext)
264{ 451{
265 int maxpath, len; 452 int maxpath, len;
266 const char *p, *path; 453 const char *p, *path;
267 char name[256]; 454 char name[256];
268 455
269 if (!access(file, R_OK)) /* found (plain name) in current directory */ 456 if (!access (file, R_OK)) /* found (plain name) in current directory */
270 return STRDUP(file); 457 return strdup (file);
271 458
272 /* semi-colon delimited */ 459 /* semi-colon delimited */
273 if ((p = STRCHR(file, ';'))) 460 if ((p = strchr (file, ';')))
274 len = (p - file); 461 len = (p - file);
275 else 462 else
276 len = STRLEN(file); 463 len = strlen (file);
277 464
278#ifdef DEBUG_SEARCH_PATH 465#ifdef DEBUG_SEARCH_PATH
279 getcwd(name, sizeof(name)); 466 getcwd (name, sizeof (name));
280 fprintf(stderr, "pwd: \"%s\"\n", name); 467 fprintf (stderr, "pwd: \"%s\"\n", name);
281 fprintf(stderr, "find: \"%.*s\"\n", len, file); 468 fprintf (stderr, "find: \"%.*s\"\n", len, file);
282#endif 469#endif
283 470
284 /* leave room for an extra '/' and trailing '\0' */ 471 /* leave room for an extra '/' and trailing '\0' */
285 maxpath = sizeof(name) - (len + (ext ? STRLEN(ext) : 0) + 2); 472 maxpath = sizeof (name) - (len + (ext ? strlen (ext) : 0) + 2);
286 if (maxpath <= 0) 473 if (maxpath <= 0)
287 return NULL; 474 return NULL;
288 475
289 /* check if we can find it now */ 476 /* check if we can find it now */
290 STRNCPY(name, file, len); 477 strncpy (name, file, len);
291 name[len] = '\0'; 478 name[len] = '\0';
292 479
293 if (!access(name, R_OK)) 480 if (!access (name, R_OK))
294 return STRDUP(name); 481 return strdup (name);
295 if (ext) 482 if (ext)
296 { 483 {
297 STRCAT(name, ext); 484 strcat (name, ext);
298 if (!access(name, R_OK)) 485 if (!access (name, R_OK))
299 return STRDUP(name); 486 return strdup (name);
300 } 487 }
301 for (path = pathlist; path != NULL && *path != '\0'; path = p) 488 for (path = pathlist; path != NULL && *path != '\0'; path = p)
302 { 489 {
303 int n; 490 int n;
304 491
305 /* colon delimited */ 492 /* colon delimited */
306 if ((p = STRCHR(path, ':')) == NULL) 493 if ((p = strchr (path, ':')) == NULL)
307 p = STRCHR(path, '\0'); 494 p = strchr (path, '\0');
308 495
309 n = (p - path); 496 n = (p - path);
310 if (*p != '\0') 497 if (*p != '\0')
311 p++; 498 p++;
312 499
313 if (n > 0 && n <= maxpath) 500 if (n > 0 && n <= maxpath)
314 { 501 {
315 STRNCPY(name, path, n); 502 strncpy (name, path, n);
316 if (name[n - 1] != '/') 503 if (name[n - 1] != '/')
317 name[n++] = '/'; 504 name[n++] = '/';
318 name[n] = '\0'; 505 name[n] = '\0';
319 STRNCAT(name, file, len); 506 strncat (name, file, len);
320 507
321 if (!access(name, R_OK)) 508 if (!access (name, R_OK))
322 return STRDUP(name); 509 return strdup (name);
323 if (ext) 510 if (ext)
324 { 511 {
325 STRCAT(name, ext); 512 strcat (name, ext);
326 if (!access(name, R_OK)) 513 if (!access (name, R_OK))
327 return STRDUP(name); 514 return strdup (name);
328 } 515 }
329 } 516 }
330 } 517 }
331 return NULL; 518 return NULL;
332} 519}
333 520
334/* EXTPROTO */
335char * 521char *
336rxvt_File_find(const char *file, const char *ext, const char *path) 522rxvt_File_find (const char *file, const char *ext, const char *path)
337{ 523{
338 char *f; 524 char *f;
339 525
340 if (file == NULL || *file == '\0') 526 if (file == NULL || *file == '\0')
341 return NULL; 527 return NULL;
342 528
343 /* search environment variables here too */ 529 /* search environment variables here too */
344 if ((f = rxvt_File_search_path(path, file, ext)) == NULL) 530 if ((f = rxvt_File_search_path (path, file, ext)) == NULL)
345#ifdef PATH_ENV 531#ifdef PATH_ENV
346 if ((f = rxvt_File_search_path(getenv(PATH_ENV), file, ext)) == NULL) 532 if ((f = rxvt_File_search_path (getenv (PATH_ENV), file, ext)) == NULL)
347#endif 533#endif
348 f = rxvt_File_search_path(getenv("PATH"), file, ext); 534 f = rxvt_File_search_path (getenv ("PATH"), file, ext);
349 535
350#ifdef DEBUG_SEARCH_PATH 536#ifdef DEBUG_SEARCH_PATH
351 if (f) 537 if (f)
352 fprintf(stderr, "found: \"%s\"\n", f); 538 fprintf (stderr, "found: \"%s\"\n", f);
353#endif 539#endif
354 540
355 return f; 541 return f;
356} 542}
357#endif /* defined (XPM_BACKGROUND) || (MENUBAR_MAX) */ 543#endif /* defined (XPM_BACKGROUND) || (MENUBAR_MAX) */
362 548
363/* 549/*
364 * Draw top/left and bottom/right border shadows around windows 550 * Draw top/left and bottom/right border shadows around windows
365 */ 551 */
366#if defined(RXVT_SCROLLBAR) || defined(MENUBAR) 552#if defined(RXVT_SCROLLBAR) || defined(MENUBAR)
367/* EXTPROTO */
368void 553void
369rxvt_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)
370{ 555{
371 int shadow; 556 int shadow;
372 557
373 shadow = (w == 0 || h == 0) ? 1 : SHADOW; 558 shadow = (w == 0 || h == 0) ? 1 : SHADOW;
374 w += x - 1; 559 w += x - 1;
375 h += y - 1; 560 h += y - 1;
376 for (; shadow-- > 0; x++, y++, w--, h--) 561 for (; shadow-- > 0; x++, y++, w--, h--)
377 { 562 {
378 XDrawLine(display, win, topShadow, x, y, w, y); 563 XDrawLine (display, win, topShadow, x, y, w, y);
379 XDrawLine(display, win, topShadow, x, y, x, h); 564 XDrawLine (display, win, topShadow, x, y, x, h);
380 XDrawLine(display, win, botShadow, w, h, w, y + 1); 565 XDrawLine (display, win, botShadow, w, h, w, y + 1);
381 XDrawLine(display, win, botShadow, w, h, x + 1, h); 566 XDrawLine (display, win, botShadow, w, h, x + 1, h);
382 } 567 }
383} 568}
384#endif 569#endif
385 570
386/* button shapes */ 571/* button shapes */
387#ifdef MENUBAR 572#ifdef MENUBAR
388/* EXTPROTO */
389void 573void
390rxvt_Draw_Triangle(Display *display, Window win, GC topShadow, GC botShadow, int x, int y, int w, int type) 574rxvt_Draw_Triangle (Display *display, Window win, GC topShadow, GC botShadow, int x, int y, int w, int type)
391{ 575{
392 switch (type) 576 switch (type)
393 { 577 {
394 case 'r': /* right triangle */ 578 case 'r': /* right triangle */
395 XDrawLine(display, win, topShadow, x, y, x, y + w); 579 XDrawLine (display, win, topShadow, x, y, x, y + w);
396 XDrawLine(display, win, topShadow, x, y, x + w, y + w / 2); 580 XDrawLine (display, win, topShadow, x, y, x + w, y + w / 2);
397 XDrawLine(display, win, botShadow, x, y + w, x + w, y + w / 2); 581 XDrawLine (display, win, botShadow, x, y + w, x + w, y + w / 2);
398 break; 582 break;
399 583
400 case 'l': /* left triangle */ 584 case 'l': /* left triangle */
401 XDrawLine(display, win, botShadow, x + w, y + w, x + w, y); 585 XDrawLine (display, win, botShadow, x + w, y + w, x + w, y);
402 XDrawLine(display, win, botShadow, x + w, y + w, x, y + w / 2); 586 XDrawLine (display, win, botShadow, x + w, y + w, x, y + w / 2);
403 XDrawLine(display, win, topShadow, x, y + w / 2, x + w, y); 587 XDrawLine (display, win, topShadow, x, y + w / 2, x + w, y);
404 break; 588 break;
405 589
406 case 'd': /* down triangle */ 590 case 'd': /* down triangle */
407 XDrawLine(display, win, topShadow, x, y, x + w / 2, y + w); 591 XDrawLine (display, win, topShadow, x, y, x + w / 2, y + w);
408 XDrawLine(display, win, topShadow, x, y, x + w, y); 592 XDrawLine (display, win, topShadow, x, y, x + w, y);
409 XDrawLine(display, win, botShadow, x + w, y, x + w / 2, y + w); 593 XDrawLine (display, win, botShadow, x + w, y, x + w / 2, y + w);
410 break; 594 break;
411 595
412 case 'u': /* up triangle */ 596 case 'u': /* up triangle */
413 XDrawLine(display, win, botShadow, x + w, y + w, x + w / 2, y); 597 XDrawLine (display, win, botShadow, x + w, y + w, x + w / 2, y);
414 XDrawLine(display, win, botShadow, x + w, y + w, x, y + w); 598 XDrawLine (display, win, botShadow, x + w, y + w, x, y + w);
415 XDrawLine(display, win, topShadow, x, y + w, x + w / 2, y); 599 XDrawLine (display, win, topShadow, x, y + w, x + w / 2, y);
416 break; 600 break;
417#if 0 601#if 0
418 case 's': /* square */ 602 case 's': /* square */
419 XDrawLine(display, win, topShadow, x + w, y, x, y); 603 XDrawLine (display, win, topShadow, x + w, y, x, y);
420 XDrawLine(display, win, topShadow, x, y, x, y + w); 604 XDrawLine (display, win, topShadow, x, y, x, y + w);
421 XDrawLine(display, win, botShadow, x, y + w, x + w, y + w); 605 XDrawLine (display, win, botShadow, x, y + w, x + w, y + w);
422 XDrawLine(display, win, botShadow, x + w, y + w, x + w, y); 606 XDrawLine (display, win, botShadow, x + w, y + w, x + w, y);
423 break; 607 break;
424#endif 608#endif
425 609
426 } 610 }
427} 611}
428#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
429/*----------------------- end-of-file (C source) -----------------------*/ 633/*----------------------- end-of-file (C source) -----------------------*/
634

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines