ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/init.C
Revision: 1.302
Committed: Fri Dec 2 09:03:43 2011 UTC (12 years, 6 months ago) by sf-exg
Content type: text/plain
Branch: MAIN
Changes since 1.301: +4 -0 lines
Log Message:
Add on_register_command hook and register_command method.

File Contents

# User Rev Content
1 ayin 1.195 /*----------------------------------------------------------------------*
2 pcg 1.50 * File: init.C
3 pcg 1.1 *----------------------------------------------------------------------*
4     *
5     * All portions of code are copyright by their respective author/s.
6     * Copyright (c) 1992 John Bovey, University of Kent at Canterbury <jdb@ukc.ac.uk>
7 pcg 1.4 * - original version
8 pcg 1.1 * Copyright (c) 1994 Robert Nation <nation@rocket.sanders.lockheed.com>
9 pcg 1.4 * - extensive modifications
10 ayin 1.214 * Copyright (c) 1996 Chuck Blake <cblake@BBN.COM>
11     * Copyright (c) 1997 mj olesen <olesen@me.queensu.ca>
12     * Copyright (c) 1997,1998 Oezguer Kesim <kesim@math.fu-berlin.de>
13 pcg 1.1 * Copyright (c) 1998-2001 Geoff Wing <gcw@pobox.com>
14 pcg 1.4 * - extensive modifications
15 root 1.293 * Copyright (c) 2003-2008 Marc Lehmann <schmorp@schmorp.de>
16 pcg 1.1 *
17     * This program is free software; you can redistribute it and/or modify
18     * it under the terms of the GNU General Public License as published by
19     * the Free Software Foundation; either version 2 of the License, or
20     * (at your option) any later version.
21     *
22     * This program is distributed in the hope that it will be useful,
23     * but WITHOUT ANY WARRANTY; without even the implied warranty of
24     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25     * GNU General Public License for more details.
26     *
27     * You should have received a copy of the GNU General Public License
28     * along with this program; if not, write to the Free Software
29     * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
30     *---------------------------------------------------------------------*/
31     /*
32     * Initialisation routines.
33     */
34    
35 pcg 1.4 #include "../config.h" /* NECESSARY */
36     #include "rxvt.h" /* NECESSARY */
37 root 1.105 #include "rxvtutil.h"
38 pcg 1.1 #include "init.h"
39 ayin 1.239 #include "keyboard.h"
40 pcg 1.1
41 root 1.125 #include <limits>
42    
43 root 1.99 #include <csignal>
44 pcg 1.1
45 ayin 1.226 #include <fcntl.h>
46    
47 ayin 1.218 #ifdef HAVE_XSETLOCALE
48     # define X_LOCALE
49     # include <X11/Xlocale.h>
50     #else
51     # ifdef HAVE_SETLOCALE
52     # include <clocale>
53     # endif
54     #endif
55    
56     #ifdef HAVE_NL_LANGINFO
57     # include <langinfo.h>
58     #endif
59    
60 mikachu 1.301 #ifdef HAVE_STARTUP_NOTIFICATION
61     # define SN_API_NOT_YET_FROZEN
62     # include <libsn/sn-launchee.h>
63     #endif
64    
65 ayin 1.214 #ifdef DISPLAY_IS_IP
66     /* On Solaris link with -lsocket and -lnsl */
67     #include <sys/types.h>
68     #include <sys/socket.h>
69    
70 sf-exg 1.290 /* these next two are probably only on Sun (not Solaris) */
71 ayin 1.214 #ifdef HAVE_SYS_SOCKIO_H
72     #include <sys/sockio.h>
73     #endif
74 sf-exg 1.290 #ifdef HAVE_SYS_BYTEORDER_H
75     #include <sys/byteorder.h>
76     #endif
77 ayin 1.214
78     #include <netinet/in.h>
79     #include <arpa/inet.h>
80     #include <net/if.h>
81     #include <net/if_arp.h>
82    
83     static char *
84     rxvt_network_display (const char *display)
85     {
86     char buffer[1024], *rval = NULL;
87     struct ifconf ifc;
88     struct ifreq *ifr;
89     int i, skfd;
90    
91     if (display[0] != ':' && strncmp (display, "unix:", 5))
92     return (char *) display; /* nothing to do */
93    
94     ifc.ifc_len = sizeof (buffer); /* Get names of all ifaces */
95     ifc.ifc_buf = buffer;
96    
97     if ((skfd = socket (AF_INET, SOCK_DGRAM, 0)) < 0)
98     {
99     perror ("socket");
100     return NULL;
101     }
102    
103     if (ioctl (skfd, SIOCGIFCONF, &ifc) < 0)
104     {
105     perror ("SIOCGIFCONF");
106     close (skfd);
107     return NULL;
108     }
109    
110     for (i = 0, ifr = ifc.ifc_req;
111     i < (ifc.ifc_len / sizeof (struct ifreq));
112     i++, ifr++)
113     {
114     struct ifreq ifr2;
115    
116     strcpy (ifr2.ifr_name, ifr->ifr_name);
117    
118     if (ioctl (skfd, SIOCGIFADDR, &ifr2) >= 0)
119     {
120     unsigned long addr;
121     struct sockaddr_in *p_addr;
122    
123     p_addr = (struct sockaddr_in *) &ifr2.ifr_addr;
124     addr = htonl ((unsigned long)p_addr->sin_addr.s_addr);
125    
126     /*
127     * not "0.0.0.0" or "127.0.0.1" - so format the address
128     */
129     if (addr && addr != 0x7F000001)
130     {
131     char *colon = strchr (display, ':');
132    
133     if (colon == NULL)
134     colon = ":0.0";
135    
136     rval = rxvt_malloc (strlen (colon) + 16);
137     sprintf (rval, "%d.%d.%d.%d%s",
138     (int) ((addr >> 030) & 0xFF),
139     (int) ((addr >> 020) & 0xFF),
140     (int) ((addr >> 010) & 0xFF),
141     (int) (addr & 0xFF), colon);
142     break;
143     }
144     }
145     }
146    
147     close (skfd);
148    
149     return rval;
150     }
151     #endif
152    
153 sf-exg 1.286 static const char *const def_colorName[] =
154 pcg 1.9 {
155 pcg 1.1 COLOR_FOREGROUND,
156     COLOR_BACKGROUND,
157 pcg 1.9 /* low-intensity colors */
158 root 1.159 "rgb:00/00/00", // 0: black (Black)
159     "rgb:cd/00/00", // 1: red (Red3)
160     "rgb:00/cd/00", // 2: green (Green3)
161 root 1.183 "rgb:cd/cd/00", // 3: yellow (Yellow3)
162 root 1.159 "rgb:00/00/cd", // 4: blue (Blue3)
163     "rgb:cd/00/cd", // 5: magenta (Magenta3)
164     "rgb:00/cd/cd", // 6: cyan (Cyan3)
165 ayin 1.221 # ifdef XTERM_COLORS
166 root 1.159 "rgb:e5/e5/e5", // 7: white (Grey90)
167 ayin 1.221 # else
168 root 1.159 "rgb:fa/eb/d7", // 7: white (AntiqueWhite)
169 pcg 1.1 # endif
170 pcg 1.9 /* high-intensity colors */
171 pcg 1.1 # ifdef XTERM_COLORS
172 root 1.159 "rgb:4d/4d/4d", // 8: bright black (Grey30)
173 pcg 1.1 # else
174 root 1.159 "rgb:40/40/40", // 8: bright black (Grey25)
175 pcg 1.1 # endif
176 root 1.159 "rgb:ff/00/00", // 1/9: bright red (Reed)
177     "rgb:00/ff/00", // 2/10: bright green (Green)
178     "rgb:ff/ff/00", // 3/11: bright yellow (Yellow)
179     "rgb:00/00/ff", // 4/12: bright blue (Blue)
180     "rgb:ff/00/ff", // 5/13: bright magenta (Magenta)
181     "rgb:00/ff/ff", // 6/14: bright cyan (Cyan)
182     "rgb:ff/ff/ff", // 7/15: bright white (White)
183 root 1.90
184 root 1.265 #if !USE_256_COLORS
185 root 1.90 // 88 xterm colours
186     "rgb:00/00/00",
187     "rgb:00/00/8b",
188     "rgb:00/00/cd",
189     "rgb:00/00/ff",
190     "rgb:00/8b/00",
191     "rgb:00/8b/8b",
192     "rgb:00/8b/cd",
193     "rgb:00/8b/ff",
194     "rgb:00/cd/00",
195     "rgb:00/cd/8b",
196     "rgb:00/cd/cd",
197     "rgb:00/cd/ff",
198     "rgb:00/ff/00",
199     "rgb:00/ff/8b",
200     "rgb:00/ff/cd",
201     "rgb:00/ff/ff",
202     "rgb:8b/00/00",
203     "rgb:8b/00/8b",
204     "rgb:8b/00/cd",
205     "rgb:8b/00/ff",
206     "rgb:8b/8b/00",
207     "rgb:8b/8b/8b",
208     "rgb:8b/8b/cd",
209     "rgb:8b/8b/ff",
210     "rgb:8b/cd/00",
211     "rgb:8b/cd/8b",
212     "rgb:8b/cd/cd",
213     "rgb:8b/cd/ff",
214     "rgb:8b/ff/00",
215     "rgb:8b/ff/8b",
216     "rgb:8b/ff/cd",
217     "rgb:8b/ff/ff",
218     "rgb:cd/00/00",
219     "rgb:cd/00/8b",
220     "rgb:cd/00/cd",
221     "rgb:cd/00/ff",
222     "rgb:cd/8b/00",
223     "rgb:cd/8b/8b",
224     "rgb:cd/8b/cd",
225     "rgb:cd/8b/ff",
226     "rgb:cd/cd/00",
227     "rgb:cd/cd/8b",
228     "rgb:cd/cd/cd",
229     "rgb:cd/cd/ff",
230     "rgb:cd/ff/00",
231     "rgb:cd/ff/8b",
232     "rgb:cd/ff/cd",
233     "rgb:cd/ff/ff",
234     "rgb:ff/00/00",
235     "rgb:ff/00/8b",
236     "rgb:ff/00/cd",
237     "rgb:ff/00/ff",
238     "rgb:ff/8b/00",
239     "rgb:ff/8b/8b",
240     "rgb:ff/8b/cd",
241     "rgb:ff/8b/ff",
242     "rgb:ff/cd/00",
243     "rgb:ff/cd/8b",
244     "rgb:ff/cd/cd",
245     "rgb:ff/cd/ff",
246     "rgb:ff/ff/00",
247     "rgb:ff/ff/8b",
248     "rgb:ff/ff/cd",
249     "rgb:ff/ff/ff",
250     "rgb:2e/2e/2e",
251     "rgb:5c/5c/5c",
252     "rgb:73/73/73",
253     "rgb:8b/8b/8b",
254     "rgb:a2/a2/a2",
255     "rgb:b9/b9/b9",
256 pcg 1.1 "rgb:d0/d0/d0",
257 root 1.90 "rgb:e7/e7/e7",
258 sf-exg 1.263 #else
259     // 256 xterm colours
260     "rgb:00/00/00",
261     "rgb:00/00/5f",
262     "rgb:00/00/87",
263     "rgb:00/00/af",
264     "rgb:00/00/d7",
265     "rgb:00/00/ff",
266     "rgb:00/5f/00",
267     "rgb:00/5f/5f",
268     "rgb:00/5f/87",
269     "rgb:00/5f/af",
270     "rgb:00/5f/d7",
271     "rgb:00/5f/ff",
272     "rgb:00/87/00",
273     "rgb:00/87/5f",
274     "rgb:00/87/87",
275     "rgb:00/87/af",
276     "rgb:00/87/d7",
277     "rgb:00/87/ff",
278     "rgb:00/af/00",
279     "rgb:00/af/5f",
280     "rgb:00/af/87",
281     "rgb:00/af/af",
282     "rgb:00/af/d7",
283     "rgb:00/af/ff",
284     "rgb:00/d7/00",
285     "rgb:00/d7/5f",
286     "rgb:00/d7/87",
287     "rgb:00/d7/af",
288     "rgb:00/d7/d7",
289     "rgb:00/d7/ff",
290     "rgb:00/ff/00",
291     "rgb:00/ff/5f",
292     "rgb:00/ff/87",
293     "rgb:00/ff/af",
294     "rgb:00/ff/d7",
295     "rgb:00/ff/ff",
296     "rgb:5f/00/00",
297     "rgb:5f/00/5f",
298     "rgb:5f/00/87",
299     "rgb:5f/00/af",
300     "rgb:5f/00/d7",
301     "rgb:5f/00/ff",
302     "rgb:5f/5f/00",
303     "rgb:5f/5f/5f",
304     "rgb:5f/5f/87",
305     "rgb:5f/5f/af",
306     "rgb:5f/5f/d7",
307     "rgb:5f/5f/ff",
308     "rgb:5f/87/00",
309     "rgb:5f/87/5f",
310     "rgb:5f/87/87",
311     "rgb:5f/87/af",
312     "rgb:5f/87/d7",
313     "rgb:5f/87/ff",
314     "rgb:5f/af/00",
315     "rgb:5f/af/5f",
316     "rgb:5f/af/87",
317     "rgb:5f/af/af",
318     "rgb:5f/af/d7",
319     "rgb:5f/af/ff",
320     "rgb:5f/d7/00",
321     "rgb:5f/d7/5f",
322     "rgb:5f/d7/87",
323     "rgb:5f/d7/af",
324     "rgb:5f/d7/d7",
325     "rgb:5f/d7/ff",
326     "rgb:5f/ff/00",
327     "rgb:5f/ff/5f",
328     "rgb:5f/ff/87",
329     "rgb:5f/ff/af",
330     "rgb:5f/ff/d7",
331     "rgb:5f/ff/ff",
332     "rgb:87/00/00",
333     "rgb:87/00/5f",
334     "rgb:87/00/87",
335     "rgb:87/00/af",
336     "rgb:87/00/d7",
337     "rgb:87/00/ff",
338     "rgb:87/5f/00",
339     "rgb:87/5f/5f",
340     "rgb:87/5f/87",
341     "rgb:87/5f/af",
342     "rgb:87/5f/d7",
343     "rgb:87/5f/ff",
344     "rgb:87/87/00",
345     "rgb:87/87/5f",
346     "rgb:87/87/87",
347     "rgb:87/87/af",
348     "rgb:87/87/d7",
349     "rgb:87/87/ff",
350     "rgb:87/af/00",
351     "rgb:87/af/5f",
352     "rgb:87/af/87",
353     "rgb:87/af/af",
354     "rgb:87/af/d7",
355     "rgb:87/af/ff",
356     "rgb:87/d7/00",
357     "rgb:87/d7/5f",
358     "rgb:87/d7/87",
359     "rgb:87/d7/af",
360     "rgb:87/d7/d7",
361     "rgb:87/d7/ff",
362     "rgb:87/ff/00",
363     "rgb:87/ff/5f",
364     "rgb:87/ff/87",
365     "rgb:87/ff/af",
366     "rgb:87/ff/d7",
367     "rgb:87/ff/ff",
368     "rgb:af/00/00",
369     "rgb:af/00/5f",
370     "rgb:af/00/87",
371     "rgb:af/00/af",
372     "rgb:af/00/d7",
373     "rgb:af/00/ff",
374     "rgb:af/5f/00",
375     "rgb:af/5f/5f",
376     "rgb:af/5f/87",
377     "rgb:af/5f/af",
378     "rgb:af/5f/d7",
379     "rgb:af/5f/ff",
380     "rgb:af/87/00",
381     "rgb:af/87/5f",
382     "rgb:af/87/87",
383     "rgb:af/87/af",
384     "rgb:af/87/d7",
385     "rgb:af/87/ff",
386     "rgb:af/af/00",
387     "rgb:af/af/5f",
388     "rgb:af/af/87",
389     "rgb:af/af/af",
390     "rgb:af/af/d7",
391     "rgb:af/af/ff",
392     "rgb:af/d7/00",
393     "rgb:af/d7/5f",
394     "rgb:af/d7/87",
395     "rgb:af/d7/af",
396     "rgb:af/d7/d7",
397     "rgb:af/d7/ff",
398     "rgb:af/ff/00",
399     "rgb:af/ff/5f",
400     "rgb:af/ff/87",
401     "rgb:af/ff/af",
402     "rgb:af/ff/d7",
403     "rgb:af/ff/ff",
404     "rgb:d7/00/00",
405     "rgb:d7/00/5f",
406     "rgb:d7/00/87",
407     "rgb:d7/00/af",
408     "rgb:d7/00/d7",
409     "rgb:d7/00/ff",
410     "rgb:d7/5f/00",
411     "rgb:d7/5f/5f",
412     "rgb:d7/5f/87",
413     "rgb:d7/5f/af",
414     "rgb:d7/5f/d7",
415     "rgb:d7/5f/ff",
416     "rgb:d7/87/00",
417     "rgb:d7/87/5f",
418     "rgb:d7/87/87",
419     "rgb:d7/87/af",
420     "rgb:d7/87/d7",
421     "rgb:d7/87/ff",
422     "rgb:d7/af/00",
423     "rgb:d7/af/5f",
424     "rgb:d7/af/87",
425     "rgb:d7/af/af",
426     "rgb:d7/af/d7",
427     "rgb:d7/af/ff",
428     "rgb:d7/d7/00",
429     "rgb:d7/d7/5f",
430     "rgb:d7/d7/87",
431     "rgb:d7/d7/af",
432     "rgb:d7/d7/d7",
433     "rgb:d7/d7/ff",
434     "rgb:d7/ff/00",
435     "rgb:d7/ff/5f",
436     "rgb:d7/ff/87",
437     "rgb:d7/ff/af",
438     "rgb:d7/ff/d7",
439     "rgb:d7/ff/ff",
440     "rgb:ff/00/00",
441     "rgb:ff/00/5f",
442     "rgb:ff/00/87",
443     "rgb:ff/00/af",
444     "rgb:ff/00/d7",
445     "rgb:ff/00/ff",
446     "rgb:ff/5f/00",
447     "rgb:ff/5f/5f",
448     "rgb:ff/5f/87",
449     "rgb:ff/5f/af",
450     "rgb:ff/5f/d7",
451     "rgb:ff/5f/ff",
452     "rgb:ff/87/00",
453     "rgb:ff/87/5f",
454     "rgb:ff/87/87",
455     "rgb:ff/87/af",
456     "rgb:ff/87/d7",
457     "rgb:ff/87/ff",
458     "rgb:ff/af/00",
459     "rgb:ff/af/5f",
460     "rgb:ff/af/87",
461     "rgb:ff/af/af",
462     "rgb:ff/af/d7",
463     "rgb:ff/af/ff",
464     "rgb:ff/d7/00",
465     "rgb:ff/d7/5f",
466     "rgb:ff/d7/87",
467     "rgb:ff/d7/af",
468     "rgb:ff/d7/d7",
469     "rgb:ff/d7/ff",
470     "rgb:ff/ff/00",
471     "rgb:ff/ff/5f",
472     "rgb:ff/ff/87",
473     "rgb:ff/ff/af",
474     "rgb:ff/ff/d7",
475     "rgb:ff/ff/ff",
476     "rgb:08/08/08",
477     "rgb:12/12/12",
478     "rgb:1c/1c/1c",
479     "rgb:26/26/26",
480     "rgb:30/30/30",
481     "rgb:3a/3a/3a",
482     "rgb:44/44/44",
483     "rgb:4e/4e/4e",
484     "rgb:58/58/58",
485     "rgb:62/62/62",
486     "rgb:6c/6c/6c",
487     "rgb:76/76/76",
488     "rgb:80/80/80",
489     "rgb:8a/8a/8a",
490     "rgb:94/94/94",
491     "rgb:9e/9e/9e",
492     "rgb:a8/a8/a8",
493     "rgb:b2/b2/b2",
494     "rgb:bc/bc/bc",
495     "rgb:c6/c6/c6",
496     "rgb:d0/d0/d0",
497     "rgb:da/da/da",
498     "rgb:e4/e4/e4",
499     "rgb:ee/ee/ee",
500     #endif
501 root 1.90
502 pcg 1.1 #ifndef NO_CURSORCOLOR
503     COLOR_CURSOR_BACKGROUND,
504     COLOR_CURSOR_FOREGROUND,
505 ayin 1.222 #endif /* ! NO_CURSORCOLOR */
506 pcg 1.49 NULL, /* Color_pointer_fg */
507     NULL, /* Color_pointer_bg */
508 pcg 1.4 NULL, /* Color_border */
509 pcg 1.1 #ifndef NO_BOLD_UNDERLINE_REVERSE
510 pcg 1.4 NULL, /* Color_BD */
511 root 1.90 NULL, /* Color_IT */
512 pcg 1.4 NULL, /* Color_UL */
513     NULL, /* Color_RV */
514 ayin 1.222 #endif /* ! NO_BOLD_UNDERLINE_REVERSE */
515 root 1.98 #if ENABLE_FRILLS
516     NULL, // Color_underline
517     #endif
518 pcg 1.1 #ifdef OPTION_HC
519     NULL,
520 sf-exg 1.264 NULL,
521 pcg 1.1 #endif
522     COLOR_SCROLLBAR,
523 ayin 1.245 #ifdef RXVT_SCROLLBAR
524 pcg 1.1 COLOR_SCROLLTROUGH,
525 ayin 1.245 #endif
526 ayin 1.201 #if ENABLE_TRANSPARENCY
527 root 1.57 NULL,
528     #endif
529 root 1.119 #if OFF_FOCUS_FADING
530 root 1.159 "rgb:00/00/00",
531 root 1.119 #endif
532 pcg 1.9 };
533 pcg 1.1
534 ayin 1.227 void
535 pcg 1.14 rxvt_term::init_vars ()
536 pcg 1.1 {
537 ayin 1.234 pix_colors = pix_colors_focused;
538 pcg 1.1
539 pcg 1.9 MEvent.time = CurrentTime;
540     MEvent.button = AnyButton;
541     want_refresh = 1;
542 root 1.79 priv_modes = SavedModes = PrivMode_Default;
543 root 1.122 ncol = 80;
544     nrow = 24;
545     int_bwidth = INTERNALBORDERWIDTH;
546     ext_bwidth = EXTERNALBORDERWIDTH;
547     lineSpace = LINESPACE;
548 root 1.259 letterSpace = LETTERSPACE;
549 root 1.122 saveLines = SAVELINES;
550 pcg 1.14
551 pcg 1.9 refresh_type = SLOW_REFRESH;
552    
553     oldcursor.row = oldcursor.col = -1;
554 pcg 1.14
555 root 1.182 set_option (Opt_scrollBar);
556     set_option (Opt_scrollTtyOutput);
557     set_option (Opt_jumpScroll);
558 root 1.188 set_option (Opt_skipScroll);
559 root 1.182 set_option (Opt_secondaryScreen);
560     set_option (Opt_secondaryScroll);
561     set_option (Opt_pastableTabs);
562     set_option (Opt_intensityStyles);
563 sf-exg 1.260 set_option (Opt_iso14755);
564 ayin 1.186 set_option (Opt_iso14755_52);
565 ayin 1.244 set_option (Opt_buffered);
566 pcg 1.1 }
567    
568     /*----------------------------------------------------------------------*/
569 pcg 1.14 const char **
570     rxvt_term::init_resources (int argc, const char *const *argv)
571 pcg 1.1 {
572 pcg 1.9 int i, r_argc;
573     const char **cmd_argv, **r_argv;
574    
575     /*
576 root 1.171 * Look for -e option. Find => split and make cmd_argv[] of command args
577 pcg 1.9 */
578     for (r_argc = 0; r_argc < argc; r_argc++)
579 root 1.171 if (!strcmp (argv[r_argc], "-e"))
580 pcg 1.9 break;
581 pcg 1.14
582 pcg 1.9 if (r_argc == argc)
583     cmd_argv = NULL;
584 ayin 1.216 else if (!argv[r_argc + 1])
585 ayin 1.219 rxvt_fatal ("option '-e' requires an argument, aborting.\n");
586 pcg 1.9 else
587     {
588 pcg 1.26 cmd_argv = (const char **)rxvt_malloc (sizeof (char *) * (argc - r_argc));
589 pcg 1.1
590 pcg 1.9 for (i = 0; i < argc - r_argc - 1; i++)
591     cmd_argv[i] = (const char *)argv[i + r_argc + 1];
592 pcg 1.14
593 pcg 1.9 cmd_argv[i] = NULL;
594     }
595 pcg 1.1
596 ayin 1.216 r_argv = (const char **)rxvt_malloc (sizeof (char *) * (r_argc + 1));
597    
598     for (i = 0; i < r_argc; i++)
599     r_argv[i] = (const char *)argv[i];
600    
601     r_argv[i] = NULL;
602    
603 ayin 1.210 rs[Rs_name] = rxvt_basename (argv[0]);
604 pcg 1.14
605 pcg 1.9 /*
606     * Open display, get options/resources and create the window
607     */
608 pcg 1.1
609 root 1.140 if ((rs[Rs_display_name] = getenv ("DISPLAY")) == NULL)
610     rs[Rs_display_name] = ":0";
611 pcg 1.1
612 root 1.140 get_options (r_argc, r_argv);
613 root 1.137
614 root 1.140 if (!(display = displays.get (rs[Rs_display_name])))
615 root 1.217 {
616     free (r_argv);
617     rxvt_fatal ("can't open display %s, aborting.\n", rs[Rs_display_name]);
618     }
619 root 1.139
620 root 1.166 // using a local pointer decreases code size a lot
621 root 1.157 xa = display->xa;
622    
623 root 1.173 set (display);
624     extract_resources ();
625    
626 root 1.161 #if XFT
627 root 1.157 if (rs[Rs_depth])
628 root 1.173 select_visual (strtol (rs[Rs_depth], 0, 0));
629 root 1.157 #endif
630 pcg 1.1
631 root 1.167 free (r_argv);
632    
633 root 1.166 for (int i = NUM_RESOURCES; i--; )
634     if (rs [i] == resval_undef)
635     rs [i] = 0;
636    
637 root 1.151 #if ENABLE_PERL
638     if (!rs[Rs_perl_ext_1])
639     rs[Rs_perl_ext_1] = "default";
640    
641     if ((rs[Rs_perl_ext_1] && *rs[Rs_perl_ext_1])
642     || (rs[Rs_perl_ext_2] && *rs[Rs_perl_ext_2])
643     || (rs[Rs_perl_eval] && *rs[Rs_perl_eval]))
644     {
645     rxvt_perl.init (this);
646     HOOK_INVOKE ((this, HOOK_INIT, DT_END));
647     }
648     #endif
649    
650 sf-exg 1.302 // must be called after initialising the perl interpreter as it
651     // may invoke the `on_register_command' hook
652     extract_keysym_resources ();
653    
654 pcg 1.9 /*
655     * set any defaults not already set
656     */
657     if (cmd_argv && cmd_argv[0])
658     {
659     if (!rs[Rs_title])
660 ayin 1.210 rs[Rs_title] = rxvt_basename (cmd_argv[0]);
661 root 1.255
662 pcg 1.9 if (!rs[Rs_iconName])
663     rs[Rs_iconName] = rs[Rs_title];
664     }
665     else
666     {
667     if (!rs[Rs_title])
668     rs[Rs_title] = rs[Rs_name];
669 root 1.255
670 pcg 1.9 if (!rs[Rs_iconName])
671     rs[Rs_iconName] = rs[Rs_name];
672 pcg 1.1 }
673 pcg 1.14
674 pcg 1.26 if (rs[Rs_saveLines] && (i = atoi (rs[Rs_saveLines])) >= 0)
675 root 1.126 saveLines = min (i, MAX_SAVELINES);
676 pcg 1.14
677 root 1.79 #if ENABLE_FRILLS
678 pcg 1.26 if (rs[Rs_int_bwidth] && (i = atoi (rs[Rs_int_bwidth])) >= 0)
679 root 1.125 int_bwidth = min (i, std::numeric_limits<int16_t>::max ());
680 root 1.124
681 pcg 1.26 if (rs[Rs_ext_bwidth] && (i = atoi (rs[Rs_ext_bwidth])) >= 0)
682 root 1.125 ext_bwidth = min (i, std::numeric_limits<int16_t>::max ());
683 root 1.124
684 pcg 1.26 if (rs[Rs_lineSpace] && (i = atoi (rs[Rs_lineSpace])) >= 0)
685 root 1.125 lineSpace = min (i, std::numeric_limits<int16_t>::max ());
686 root 1.259
687     if (rs[Rs_letterSpace])
688     letterSpace = atoi (rs[Rs_letterSpace]);
689 pcg 1.1 #endif
690    
691     #ifdef POINTER_BLANK
692 pcg 1.26 if (rs[Rs_pointerBlankDelay] && (i = atoi (rs[Rs_pointerBlankDelay])) >= 0)
693 pcg 1.14 pointerBlankDelay = i;
694 pcg 1.9 else
695 pcg 1.14 pointerBlankDelay = 2;
696 pcg 1.1 #endif
697    
698 pcg 1.9 /* no point having a scrollbar without having any scrollback! */
699 root 1.122 if (!saveLines)
700 root 1.136 set_option (Opt_scrollBar, 0);
701 pcg 1.1
702 pcg 1.9 if (!rs[Rs_cutchars])
703     rs[Rs_cutchars] = CUTCHARS;
704 pcg 1.14
705 pcg 1.1 #ifndef NO_BACKSPACE_KEY
706 pcg 1.9 if (!rs[Rs_backspace_key])
707 pcg 1.1 # ifdef DEFAULT_BACKSPACE
708 ayin 1.211 rs[Rs_backspace_key] = DEFAULT_BACKSPACE;
709 pcg 1.1 # else
710 ayin 1.211 rs[Rs_backspace_key] = "DEC"; /* can toggle between \010 or \177 */
711 pcg 1.1 # endif
712     #endif
713 pcg 1.14
714 pcg 1.1 #ifndef NO_DELETE_KEY
715 pcg 1.9 if (!rs[Rs_delete_key])
716 pcg 1.1 # ifdef DEFAULT_DELETE
717 ayin 1.211 rs[Rs_delete_key] = DEFAULT_DELETE;
718 pcg 1.1 # else
719 ayin 1.211 rs[Rs_delete_key] = "\033[3~";
720 pcg 1.1 # endif
721     #endif
722    
723 ayin 1.248 scrollBar.setup (this);
724 pcg 1.1
725     #ifdef XTERM_REVERSE_VIDEO
726 pcg 1.9 /* this is how xterm implements reverseVideo */
727 root 1.182 if (option (Opt_reverseVideo))
728 pcg 1.9 {
729     if (!rs[Rs_color + Color_fg])
730     rs[Rs_color + Color_fg] = def_colorName[Color_bg];
731 root 1.165
732 pcg 1.9 if (!rs[Rs_color + Color_bg])
733     rs[Rs_color + Color_bg] = def_colorName[Color_fg];
734 pcg 1.1 }
735     #endif
736    
737 pcg 1.9 for (i = 0; i < NRS_COLORS; i++)
738     if (!rs[Rs_color + i])
739     rs[Rs_color + i] = def_colorName[i];
740 pcg 1.1
741     #ifndef XTERM_REVERSE_VIDEO
742 pcg 1.9 /* this is how we implement reverseVideo */
743 root 1.182 if (option (Opt_reverseVideo))
744 root 1.123 ::swap (rs[Rs_color + Color_fg], rs[Rs_color + Color_bg]);
745 pcg 1.1 #endif
746    
747 pcg 1.9 /* convenient aliases for setting fg/bg to colors */
748 pcg 1.14 color_aliases (Color_fg);
749     color_aliases (Color_bg);
750 pcg 1.1 #ifndef NO_CURSORCOLOR
751 pcg 1.14 color_aliases (Color_cursor);
752     color_aliases (Color_cursor2);
753 ayin 1.222 #endif /* NO_CURSORCOLOR */
754 pcg 1.49 color_aliases (Color_pointer_fg);
755     color_aliases (Color_pointer_bg);
756 pcg 1.14 color_aliases (Color_border);
757 pcg 1.1 #ifndef NO_BOLD_UNDERLINE_REVERSE
758 pcg 1.14 color_aliases (Color_BD);
759     color_aliases (Color_UL);
760     color_aliases (Color_RV);
761 ayin 1.222 #endif /* ! NO_BOLD_UNDERLINE_REVERSE */
762 pcg 1.1
763 root 1.90 if (!rs[Rs_color + Color_border])
764     rs[Rs_color + Color_border] = rs[Rs_color + Color_bg];
765    
766 pcg 1.9 return cmd_argv;
767 pcg 1.1 }
768    
769     /*----------------------------------------------------------------------*/
770     void
771 ayin 1.239 rxvt_term::init (int argc, const char *const *argv, stringvec *envv)
772     {
773     this->envv = envv;
774    
775     SET_R (this);
776     set_locale ("");
777 root 1.252 set_environ (envv); // a few things in X do not call setlocale :(
778 ayin 1.239
779     init_vars ();
780    
781     const char **cmd_argv = init_resources (argc, argv);
782    
783     #ifdef KEYSYM_RESOURCE
784     keyboard->register_done ();
785     #endif
786    
787 root 1.252 if (const char *path = rs[Rs_chdir])
788     if (*path) // ignored if empty
789     {
790     if (*path != '/')
791     rxvt_fatal ("specified shell working directory must start with a slash, aborting.\n");
792    
793     if (chdir (path))
794     rxvt_fatal ("unable to change into specified shell working directory, aborting.\n");
795     }
796    
797 ayin 1.239 if (option (Opt_scrollBar))
798 sf-exg 1.300 scrollBar.state = SB_STATE_IDLE; /* set existence for size calculations */
799 ayin 1.239
800     pty = ptytty::create ();
801    
802 sf-exg 1.299 #ifdef HAVE_AFTERIMAGE
803     set_application_name ((char *)rs[Rs_name]);
804     set_output_threshold (OUTPUT_LEVEL_WARNING);
805     #endif
806    
807     // must be called before create_windows, because the latter may call set_icon
808     #ifdef HAVE_PIXBUF
809     g_type_init ();
810     #endif
811    
812 ayin 1.239 create_windows (argc, argv);
813    
814     init_xlocale ();
815    
816 root 1.256 scr_poweron (); // initialize screen
817 ayin 1.239
818     #if 0
819     XSynchronize (dpy, True);
820     #endif
821    
822     if (option (Opt_scrollBar))
823 ayin 1.249 scrollBar.resize (); /* create and map scrollbar */
824 ayin 1.239 #ifdef HAVE_BG_PIXMAP
825     {
826 sf-exg 1.292 bg_init ();
827 ayin 1.239
828     #ifdef ENABLE_TRANSPARENCY
829     if (option (Opt_transparent))
830     {
831 sf-exg 1.292 bg_set_transparent ();
832 ayin 1.239
833     if (rs [Rs_blurradius])
834 sf-exg 1.292 bg_set_blur (rs [Rs_blurradius]);
835 sf-exg 1.283
836 ayin 1.239 if (ISSET_PIXCOLOR (Color_tint))
837 sf-exg 1.292 bg_set_tint (pix_colors_focused [Color_tint]);
838 ayin 1.239
839     if (rs [Rs_shade])
840 sf-exg 1.292 bg_set_shade (rs [Rs_shade]);
841 ayin 1.239
842 sf-exg 1.292 bg_set_root_pixmap ();
843 ayin 1.239 XSelectInput (dpy, display->root, PropertyChangeMask);
844     rootwin_ev.start (display, display->root);
845     }
846     #endif
847    
848     #ifdef BG_IMAGE_FROM_FILE
849     if (rs[Rs_backgroundPixmap])
850     {
851 sf-exg 1.292 if (bg_set_file (rs[Rs_backgroundPixmap]))
852     if (!bg_window_position_sensitive ())
853 ayin 1.239 update_background ();
854     }
855     #endif
856     }
857     #endif
858    
859     #if ENABLE_PERL
860     rootwin_ev.start (display, display->root);
861     #endif
862    
863     set_colorfgbg ();
864    
865     init_command (cmd_argv);
866    
867     free (cmd_argv);
868    
869     if (pty->pty >= 0)
870     pty_ev.start (pty->pty, ev::READ);
871    
872     HOOK_INVOKE ((this, HOOK_START, DT_END));
873    
874     #if ENABLE_XEMBED
875     if (rs[Rs_embed])
876     {
877     long info[2] = { 0, XEMBED_MAPPED };
878    
879 sf-exg 1.294 XChangeProperty (dpy, parent, xa[XA_XEMBED_INFO], xa[XA_XEMBED_INFO],
880 ayin 1.239 32, PropModeReplace, (unsigned char *)&info, 2);
881     }
882     #endif
883    
884 mikachu 1.301 #if HAVE_STARTUP_NOTIFICATION
885     SnDisplay *snDisplay;
886     SnLauncheeContext *snContext;
887    
888     snDisplay = sn_display_new (dpy, NULL, NULL);
889     snContext = sn_launchee_context_new_from_environment (snDisplay, DefaultScreen (dpy));
890    
891     /* Tell the window manager that this window is part of the startup context */
892     if (snContext)
893     sn_launchee_context_setup_window (snContext, parent);
894     #endif
895    
896 ayin 1.239 XMapWindow (dpy, vt);
897 sf-exg 1.294 XMapWindow (dpy, parent);
898 ayin 1.239
899 mikachu 1.301 #if HAVE_STARTUP_NOTIFICATION
900     if (snContext)
901     {
902     /* Mark the startup process as complete */
903     sn_launchee_context_complete (snContext);
904    
905     sn_launchee_context_unref (snContext);
906     }
907    
908     sn_display_unref (snDisplay);
909     #endif
910    
911 ayin 1.239 refresh_check ();
912     }
913    
914     /*----------------------------------------------------------------------*/
915     void
916 pcg 1.14 rxvt_term::init_env ()
917 pcg 1.1 {
918 pcg 1.14 char *val;
919 pcg 1.1
920     #ifdef DISPLAY_IS_IP
921 pcg 1.9 /* Fixup display_name for export over pty to any interested terminal
922     * clients via "ESC[7n" (e.g. shells). Note we use the pure IP number
923     * (for the first non-loopback interface) that we get from
924 pcg 1.26 * rxvt_network_display (). This is more "name-resolution-portable", if you
925 pcg 1.9 * will, and probably allows for faster x-client startup if your name
926     * server is beyond a slow link or overloaded at client startup. Of
927     * course that only helps the shell's child processes, not us.
928     *
929     * Giving out the display_name also affords a potential security hole
930     */
931 pcg 1.14 val = rxvt_network_display (rs[Rs_display_name]);
932     rs[Rs_display_name] = (const char *)val;
933    
934 pcg 1.9 if (val == NULL)
935 ayin 1.222 #endif /* DISPLAY_IS_IP */
936 root 1.169 val = XDisplayString (dpy);
937 pcg 1.9
938 pcg 1.14 if (rs[Rs_display_name] == NULL)
939     rs[Rs_display_name] = val; /* use broken `:0' value */
940 pcg 1.9
941 sf-exg 1.287 env_display = (char *)rxvt_malloc (strlen (val) + 9);
942 pcg 1.9
943 pcg 1.14 sprintf (env_display, "DISPLAY=%s", val);
944 pcg 1.9
945 sf-exg 1.294 sprintf (env_windowid, "WINDOWID=%lu", (unsigned long)parent);
946 pcg 1.9
947     /* add entries to the environment:
948     * @ DISPLAY: in case we started with -display
949     * @ WINDOWID: X window id number of the window
950     * @ COLORTERM: terminal sub-name and also indicates its color
951     * @ TERM: terminal name
952     * @ TERMINFO: path to terminfo directory
953 pcg 1.27 * @ COLORFGBG: fg;bg color codes
954 pcg 1.9 */
955 pcg 1.14 putenv (env_display);
956     putenv (env_windowid);
957 root 1.155
958 pcg 1.27 if (env_colorfgbg)
959     putenv (env_colorfgbg);
960 pcg 1.14
961 pcg 1.1 #ifdef RXVT_TERMINFO
962 pcg 1.14 putenv ("TERMINFO=" RXVT_TERMINFO);
963 pcg 1.1 #endif
964 pcg 1.9
965 root 1.156 if (depth <= 2)
966 pcg 1.14 putenv ("COLORTERM=" COLORTERMENV "-mono");
967 pcg 1.9 else
968 pcg 1.14 putenv ("COLORTERM=" COLORTERMENVFULL);
969    
970     if (rs[Rs_term_name] != NULL)
971 pcg 1.9 {
972 ayin 1.208 env_term = (char *)rxvt_malloc (strlen (rs[Rs_term_name]) + 6);
973 pcg 1.14 sprintf (env_term, "TERM=%s", rs[Rs_term_name]);
974     putenv (env_term);
975 pcg 1.9 }
976     else
977 pcg 1.14 putenv ("TERM=" TERMENV);
978 pcg 1.1
979     #ifdef HAVE_UNSETENV
980 pcg 1.9 /* avoid passing old settings and confusing term size */
981 pcg 1.14 unsetenv ("LINES");
982     unsetenv ("COLUMNS");
983     unsetenv ("TERMCAP"); /* terminfo should be okay */
984 ayin 1.222 #endif /* HAVE_UNSETENV */
985 pcg 1.1 }
986    
987     /*----------------------------------------------------------------------*/
988     /*
989     * This is more or less stolen straight from XFree86 xterm.
990     * This should support all European type languages.
991     */
992     void
993 pcg 1.15 rxvt_term::set_locale (const char *locale)
994     {
995 root 1.140 set_environ (envv);
996 root 1.137
997 pcg 1.15 #if HAVE_XSETLOCALE || HAVE_SETLOCALE
998     free (this->locale);
999 root 1.57 this->locale = setlocale (LC_CTYPE, locale);
1000    
1001     if (!this->locale)
1002     {
1003 root 1.79 if (*locale)
1004     {
1005 root 1.137 rxvt_warn ("unable to set locale \"%s\", using C locale instead.\n", locale);
1006     setlocale (LC_CTYPE, "C");
1007 root 1.79 }
1008     else
1009     rxvt_warn ("default locale unavailable, check LC_* and LANG variables. Continuing.\n");
1010    
1011 root 1.137 this->locale = "C";
1012 root 1.57 }
1013    
1014 root 1.79
1015 ayin 1.220 this->locale = strdup (this->locale);
1016 pcg 1.29 SET_LOCALE (this->locale);
1017 pcg 1.28 mbstate.reset ();
1018 pcg 1.15 #endif
1019 root 1.96
1020 pcg 1.15 #if HAVE_NL_LANGINFO
1021 root 1.96 char *codeset = strdup (nl_langinfo (CODESET));
1022 root 1.105 // /^UTF.?8/i
1023     enc_utf8 = (codeset[0] == 'U' || codeset[0] == 'u')
1024     && (codeset[1] == 'T' || codeset[1] == 't')
1025     && (codeset[2] == 'F' || codeset[2] == 'f')
1026     && (codeset[3] == '8' || codeset[4] == '8');
1027 root 1.96 free (codeset);
1028 pcg 1.15 #else
1029 root 1.96 enc_utf8 = 0;
1030 pcg 1.15 #endif
1031     }
1032    
1033     void
1034 pcg 1.14 rxvt_term::init_xlocale ()
1035 pcg 1.1 {
1036 root 1.140 set_environ (envv);
1037 root 1.137
1038 pcg 1.1 #ifdef USE_XIM
1039 pcg 1.14 if (!locale)
1040 pcg 1.45 rxvt_warn ("setting locale failed, working without locale support.\n");
1041 pcg 1.9 else
1042     {
1043 root 1.97 set_string_property (xa[XA_WM_LOCALE_NAME], locale);
1044 pcg 1.9
1045 pcg 1.14 if (!XSupportsLocale ())
1046 pcg 1.9 {
1047 root 1.92 rxvt_warn ("the locale is not supported by Xlib, working without locale support.\n");
1048 pcg 1.9 return;
1049 pcg 1.4 }
1050 pcg 1.10
1051 pcg 1.25 im_ev.start (display);
1052 pcg 1.4
1053 pcg 1.25 /* see if we can connect already */
1054     im_cb ();
1055 pcg 1.1 }
1056     #endif
1057     }
1058    
1059     /*----------------------------------------------------------------------*/
1060     void
1061 pcg 1.26 rxvt_term::init_command (const char *const *argv)
1062 pcg 1.1 {
1063 pcg 1.4 /*
1064     * Initialize the command connection.
1065     * This should be called after the X server connection is established.
1066     */
1067 pcg 1.1
1068     #ifdef META8_OPTION
1069 root 1.182 meta_char = option (Opt_meta8) ? 0x80 : C0_ESC;
1070 pcg 1.14 #endif
1071 pcg 1.9
1072 pcg 1.20 get_ourmods ();
1073 pcg 1.4
1074 root 1.182 if (!option (Opt_scrollTtyOutput))
1075 root 1.79 priv_modes |= PrivMode_TtyOutputInh;
1076 root 1.182 if (option (Opt_scrollTtyKeypress))
1077 root 1.79 priv_modes |= PrivMode_Keypress;
1078 root 1.182 if (!option (Opt_jumpScroll))
1079 root 1.79 priv_modes |= PrivMode_smoothScroll;
1080 pcg 1.4
1081 pcg 1.1 #ifndef NO_BACKSPACE_KEY
1082 ayin 1.211 if (strcmp (rs[Rs_backspace_key], "DEC") == 0)
1083 root 1.79 priv_modes |= PrivMode_HaveBackSpace;
1084 pcg 1.14 #endif
1085 pcg 1.9
1086     /* add value for scrollBar */
1087 root 1.143 if (scrollBar.state)
1088 pcg 1.4 {
1089 root 1.79 priv_modes |= PrivMode_scrollBar;
1090 pcg 1.14 SavedModes |= PrivMode_scrollBar;
1091 pcg 1.4 }
1092 root 1.110
1093 root 1.70 run_command (argv);
1094 pcg 1.1 }
1095    
1096     /*----------------------------------------------------------------------*/
1097     void
1098 ayin 1.251 rxvt_term::get_colours ()
1099 pcg 1.1 {
1100 pcg 1.14 int i;
1101 pcg 1.1
1102 root 1.65 #ifdef OFF_FOCUS_FADING
1103 root 1.79 pix_colors = pix_colors_focused;
1104 root 1.65 #endif
1105 ayin 1.221
1106 root 1.156 for (i = 0; i < (depth <= 2 ? 2 : NRS_COLORS); i++)
1107 pcg 1.9 {
1108 root 1.164 const char *name = rs[Rs_color + i];
1109 pcg 1.1
1110 root 1.164 if (!name)
1111 pcg 1.9 continue;
1112 pcg 1.1
1113 root 1.164 rxvt_color xcol;
1114    
1115     if (!set_color (xcol, name))
1116 pcg 1.9 {
1117 pcg 1.1 #ifndef XTERM_REVERSE_VIDEO
1118 root 1.182 if (i < 2 && option (Opt_reverseVideo))
1119 root 1.164 name = def_colorName [1 - i];
1120 pcg 1.9 else
1121     #endif
1122 root 1.164 name = def_colorName [i];
1123 pcg 1.9
1124 root 1.164 if (!name)
1125 pcg 1.9 continue;
1126 pcg 1.14
1127 root 1.164 if (!set_color (xcol, name))
1128 pcg 1.9 {
1129     switch (i)
1130     {
1131 pcg 1.23 case Color_fg:
1132     case Color_bg:
1133 root 1.160 rxvt_warn ("unable to get foreground/background colour, continuing.\n");
1134 root 1.164 name = "";
1135 pcg 1.23 break;
1136 pcg 1.1 #ifndef NO_CURSORCOLOR
1137 pcg 1.23 case Color_cursor2:
1138 root 1.164 #endif
1139 pcg 1.49 case Color_pointer_fg:
1140 root 1.164 name = rs[Rs_color + Color_fg];
1141 root 1.168 xcol.set (this, name);
1142 pcg 1.23 break;
1143     default:
1144 root 1.164 name = rs[Rs_color + Color_bg];
1145 root 1.168 xcol.set (this, name);
1146 pcg 1.23 break;
1147 pcg 1.4 }
1148     }
1149     }
1150 pcg 1.14
1151 root 1.79 pix_colors[i] = xcol;
1152 root 1.164 rs[Rs_color + i] = name;
1153 root 1.119 }
1154    
1155 root 1.156 if (depth <= 2)
1156 pcg 1.49 {
1157 root 1.168 if (!rs[Rs_color + Color_pointer_fg]) alias_color (Color_pointer_fg, Color_fg);
1158     if (!rs[Rs_color + Color_pointer_bg]) alias_color (Color_pointer_bg, Color_bg);
1159     if (!rs[Rs_color + Color_border] ) alias_color (Color_border, Color_fg);
1160 pcg 1.49 }
1161 pcg 1.1
1162 pcg 1.9 /*
1163 root 1.143 * get scrollBar shadow colors
1164 pcg 1.9 *
1165     * The calculations of topShadow/bottomShadow values are adapted
1166     * from the fvwm window manager.
1167     */
1168 ayin 1.245 #ifdef RXVT_SCROLLBAR
1169 root 1.156 if (depth <= 2)
1170 root 1.118 {
1171     /* Monochrome */
1172 root 1.168 alias_color (Color_scroll, Color_fg);
1173     alias_color (Color_topShadow, Color_bg);
1174     alias_color (Color_bottomShadow, Color_bg);
1175 pcg 1.9 }
1176     else
1177     {
1178 root 1.168 pix_colors [Color_scroll].fade (this, 50, pix_colors [Color_bottomShadow]);
1179 pcg 1.1
1180 root 1.168 rgba cscroll;
1181     pix_colors [Color_scroll].get (cscroll);
1182 pcg 1.1
1183 pcg 1.9 /* topShadowColor */
1184 root 1.168 if (!pix_colors[Color_topShadow].set (this,
1185     rgba (
1186     min ((int)rgba::MAX_CC, max (cscroll.r / 5, cscroll.r) * 7 / 5),
1187     min ((int)rgba::MAX_CC, max (cscroll.g / 5, cscroll.g) * 7 / 5),
1188     min ((int)rgba::MAX_CC, max (cscroll.b / 5, cscroll.b) * 7 / 5),
1189     cscroll.a)
1190     ))
1191     alias_color (Color_topShadow, Color_White);
1192 pcg 1.1 }
1193 ayin 1.245 #endif
1194 root 1.168
1195     #ifdef OFF_FOCUS_FADING
1196 root 1.174 for (i = 0; i < (depth <= 2 ? 2 : NRS_COLORS); i++)
1197     update_fade_color (i);
1198 root 1.168 #endif
1199 pcg 1.1 }
1200    
1201     /*----------------------------------------------------------------------*/
1202     /* color aliases, fg/bg bright-bold */
1203     void
1204 pcg 1.26 rxvt_term::color_aliases (int idx)
1205 pcg 1.1 {
1206 pcg 1.26 if (rs[Rs_color + idx] && isdigit (* (rs[Rs_color + idx])))
1207 pcg 1.9 {
1208 pcg 1.14 int i = atoi (rs[Rs_color + idx]);
1209 pcg 1.1
1210 pcg 1.9 if (i >= 8 && i <= 15)
1211 ayin 1.223 /* bright colors */
1212     rs[Rs_color + idx] = rs[Rs_color + minBrightCOLOR + i - 8];
1213     else if (i >= 0 && i <= 7)
1214     /* normal colors */
1215 pcg 1.14 rs[Rs_color + idx] = rs[Rs_color + minCOLOR + i];
1216 pcg 1.1 }
1217     }
1218    
1219     /*----------------------------------------------------------------------*/
1220     /*
1221     * Probe the modifier keymap to get the Meta (Alt) and Num_Lock settings
1222     * Use resource ``modifier'' to override the Meta modifier
1223     */
1224     void
1225 pcg 1.20 rxvt_term::get_ourmods ()
1226 pcg 1.1 {
1227 root 1.108 int i, j, k;
1228     int requestedmeta, realmeta, realalt;
1229     const char *cm, *rsmod;
1230 pcg 1.9 XModifierKeymap *map;
1231 root 1.108 KeyCode *kc;
1232 pcg 1.9 const unsigned int modmasks[] =
1233     {
1234     Mod1Mask, Mod2Mask, Mod3Mask, Mod4Mask, Mod5Mask
1235     };
1236    
1237     requestedmeta = realmeta = realalt = 0;
1238 pcg 1.20 rsmod = rs[Rs_modifier];
1239 root 1.105
1240 pcg 1.9 if (rsmod
1241 root 1.79 && strcasecmp (rsmod, "mod1") >= 0 && strcasecmp (rsmod, "mod5") <= 0)
1242 pcg 1.9 requestedmeta = rsmod[3] - '0';
1243    
1244 root 1.169 map = XGetModifierMapping (dpy);
1245 pcg 1.9 kc = map->modifiermap;
1246 root 1.105
1247 pcg 1.9 for (i = 1; i < 6; i++)
1248     {
1249     k = (i + 2) * map->max_keypermod; /* skip shift/lock/control */
1250 root 1.105
1251 pcg 1.9 for (j = map->max_keypermod; j--; k++)
1252     {
1253     if (kc[k] == 0)
1254     break;
1255 root 1.105
1256 root 1.169 switch (XKeycodeToKeysym (dpy, kc[k], 0))
1257 pcg 1.9 {
1258 pcg 1.23 case XK_Num_Lock:
1259     ModNumLockMask = modmasks[i - 1];
1260 root 1.105 continue;
1261    
1262     case XK_ISO_Level3_Shift:
1263     ModLevel3Mask = modmasks[i - 1];
1264     continue;
1265    
1266 pcg 1.23 case XK_Meta_L:
1267     case XK_Meta_R:
1268     cm = "meta";
1269     realmeta = i;
1270     break;
1271 root 1.105
1272 pcg 1.23 case XK_Alt_L:
1273     case XK_Alt_R:
1274     cm = "alt";
1275     realalt = i;
1276     break;
1277 root 1.105
1278 pcg 1.23 case XK_Super_L:
1279     case XK_Super_R:
1280     cm = "super";
1281     break;
1282 root 1.105
1283 pcg 1.23 case XK_Hyper_L:
1284     case XK_Hyper_R:
1285     cm = "hyper";
1286     break;
1287 root 1.105
1288     default:
1289     continue;
1290 pcg 1.4 }
1291 root 1.105
1292 root 1.79 if (rsmod && strncasecmp (rsmod, cm, strlen (cm)) == 0)
1293 pcg 1.9 requestedmeta = i;
1294 pcg 1.4 }
1295 pcg 1.1 }
1296 root 1.105
1297 pcg 1.26 XFreeModifiermap (map);
1298 root 1.105
1299     i = requestedmeta ? requestedmeta
1300     : realmeta ? realmeta
1301     : realalt ? realalt
1302     : 0;
1303    
1304 pcg 1.9 if (i)
1305 pcg 1.20 ModMetaMask = modmasks[i - 1];
1306 pcg 1.1 }
1307    
1308 sf-exg 1.278 void
1309     rxvt_term::set_icon (const char *file)
1310     {
1311     #ifdef HAVE_AFTERIMAGE
1312     init_asv ();
1313    
1314     ASImage *im = file2ASImage (file, 0xFFFFFFFF, SCREEN_GAMMA, 0, NULL);
1315     if (!im)
1316     {
1317     rxvt_warn ("Loading image icon failed, continuing without.\n");
1318     return;
1319     }
1320    
1321 sf-exg 1.281 unsigned int w = im->width;
1322     unsigned int h = im->height;
1323 sf-exg 1.278
1324 sf-exg 1.280 if (!IN_RANGE_INC (w, 1, 16383) || !IN_RANGE_INC (h, 1, 16383))
1325 sf-exg 1.279 {
1326     rxvt_warn ("Icon image too big, continuing without.\n");
1327     destroy_asimage (&im);
1328     return;
1329     }
1330    
1331 sf-exg 1.278 ASImage *result = scale_asimage (asv, im,
1332     w, h, ASA_ARGB32,
1333     100, ASIMAGE_QUALITY_DEFAULT);
1334     destroy_asimage (&im);
1335    
1336     if (!result)
1337     {
1338     rxvt_warn ("Icon image transformation to ARGB failed, continuing without.\n");
1339     return;
1340     }
1341    
1342     long *buffer = (long *)malloc ((2 + w * h) * sizeof (long));
1343     if (buffer)
1344     {
1345     ARGB32 *asbuf = result->alt.argb32;
1346     buffer [0] = w;
1347     buffer [1] = h;
1348    
1349     for (unsigned int i = 0; i < w * h; ++i)
1350     buffer [i + 2] = asbuf [i];
1351    
1352 sf-exg 1.294 XChangeProperty (dpy, parent, xa[XA_NET_WM_ICON], XA_CARDINAL, 32,
1353 sf-exg 1.278 PropModeReplace, (const unsigned char *) buffer, 2 + w * h);
1354     free (buffer);
1355     }
1356     else
1357     rxvt_warn ("Memory allocation for icon hint failed, continuing without.\n");
1358    
1359     destroy_asimage (&result);
1360     #endif
1361 sf-exg 1.282
1362     #ifdef HAVE_PIXBUF
1363     GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file (file, NULL);
1364     if (!pixbuf)
1365     {
1366     rxvt_warn ("Loading image icon failed, continuing without.\n");
1367     return;
1368     }
1369    
1370     unsigned int w = gdk_pixbuf_get_width (pixbuf);
1371     unsigned int h = gdk_pixbuf_get_height (pixbuf);
1372    
1373     if (!IN_RANGE_INC (w, 1, 16383) || !IN_RANGE_INC (h, 1, 16383))
1374     {
1375     rxvt_warn ("Icon image too big, continuing without.\n");
1376     g_object_unref (pixbuf);
1377     return;
1378     }
1379    
1380     if (long *buffer = (long *)malloc ((2 + w * h) * sizeof (long)))
1381     {
1382     int rowstride = gdk_pixbuf_get_rowstride (pixbuf);
1383     unsigned char *row = gdk_pixbuf_get_pixels (pixbuf);
1384     int channels = gdk_pixbuf_get_n_channels (pixbuf);
1385    
1386     buffer [0] = w;
1387     buffer [1] = h;
1388     for (int i = 0; i < h; i++)
1389     {
1390     for (int j = 0; j < w; j++)
1391     {
1392     unsigned char *pixel = row + j * channels;
1393     long value;
1394    
1395     if (channels == 4)
1396     value = pixel[3];
1397     else
1398     value = (unsigned char)0x00ff;
1399    
1400     value = (value << 8) + pixel[0];
1401     value = (value << 8) + pixel[1];
1402     value = (value << 8) + pixel[2];
1403     buffer[(i * w + j) + 2] = value;
1404     }
1405    
1406     row += rowstride;
1407     }
1408    
1409 sf-exg 1.294 XChangeProperty (dpy, parent, xa[XA_NET_WM_ICON], XA_CARDINAL, 32,
1410 sf-exg 1.282 PropModeReplace, (const unsigned char *) buffer, 2 + w * h);
1411     free (buffer);
1412     }
1413     else
1414     rxvt_warn ("Memory allocation for icon hint failed, continuing without.\n");
1415    
1416     g_object_unref (pixbuf);
1417     #endif
1418 sf-exg 1.278 }
1419    
1420 pcg 1.1 /*----------------------------------------------------------------------*/
1421 sf-exg 1.295 /* Open and map the window */
1422 pcg 1.1 void
1423 pcg 1.16 rxvt_term::create_windows (int argc, const char *const *argv)
1424 pcg 1.1 {
1425 pcg 1.51 XClassHint classHint;
1426     XWMHints wmHint;
1427 root 1.79 #if ENABLE_FRILLS
1428 root 1.196 MWMHints mwmhints = { };
1429 root 1.67 #endif
1430 pcg 1.51 XGCValues gcvalue;
1431     XSetWindowAttributes attributes;
1432 root 1.114 Window top, parent;
1433 pcg 1.1
1434 root 1.169 dLocal (Display *, dpy);
1435 pcg 1.1
1436 root 1.148 /* grab colors before netscape does */
1437 ayin 1.251 get_colours ();
1438 root 1.148
1439     if (!set_fonts ())
1440     rxvt_fatal ("unable to load base fontset, please specify a valid one using -fn, aborting.\n");
1441    
1442 root 1.153 parent = display->root;
1443 root 1.148
1444 root 1.182 attributes.override_redirect = !!option (Opt_override_redirect);
1445 root 1.148
1446 root 1.79 #if ENABLE_FRILLS
1447 root 1.182 if (option (Opt_borderLess))
1448 root 1.67 {
1449 root 1.169 if (XInternAtom (dpy, "_MOTIF_WM_INFO", True) == None)
1450 root 1.67 {
1451 ayin 1.206 // rxvt_warn("Window Manager does not support MWM hints. Bypassing window manager control for borderless window.\n");
1452 root 1.158 attributes.override_redirect = true;
1453 root 1.67 }
1454     else
1455     {
1456     mwmhints.flags = MWM_HINTS_DECORATIONS;
1457     }
1458     }
1459     #endif
1460    
1461 root 1.112 #if ENABLE_XEMBED
1462 root 1.109 if (rs[Rs_embed])
1463     {
1464 root 1.111 XWindowAttributes wattr;
1465    
1466 root 1.114 parent = strtol (rs[Rs_embed], 0, 0);
1467 root 1.109
1468 root 1.169 if (!XGetWindowAttributes (dpy, parent, &wattr))
1469 root 1.111 rxvt_fatal ("invalid window-id specified with -embed, aborting.\n");
1470 pcg 1.1
1471 root 1.109 window_calc (wattr.width, wattr.height);
1472 root 1.114 }
1473 root 1.122 #endif
1474 pcg 1.1
1475 root 1.114 window_calc (0, 0);
1476 root 1.109
1477 sf-exg 1.295 /* sub-window placement & size in rxvt_term::resize_all_windows () */
1478 root 1.156 attributes.background_pixel = pix_colors_focused [Color_border];
1479     attributes.border_pixel = pix_colors_focused [Color_border];
1480     attributes.colormap = cmap;
1481 root 1.153
1482 root 1.169 top = XCreateWindow (dpy, parent,
1483 root 1.114 szHint.x, szHint.y,
1484     szHint.width, szHint.height,
1485 root 1.122 ext_bwidth,
1486 root 1.156 depth, InputOutput, visual,
1487 root 1.148 CWColormap | CWBackPixel | CWBorderPixel | CWOverrideRedirect,
1488     &attributes);
1489 root 1.109
1490 sf-exg 1.294 this->parent = top;
1491 root 1.109
1492     old_width = szHint.width;
1493     old_height = szHint.height;
1494 pcg 1.9
1495 root 1.257 set_title (rs [Rs_title]);
1496     set_icon_name (rs [Rs_iconName]);
1497 pcg 1.9
1498 root 1.153 classHint.res_name = (char *)rs[Rs_name];
1499 pcg 1.38 classHint.res_class = (char *)RESCLASS;
1500 pcg 1.9
1501 root 1.153 wmHint.flags = InputHint | StateHint | WindowGroupHint;
1502     wmHint.input = True;
1503 root 1.182 wmHint.initial_state = option (Opt_iconic) ? IconicState : NormalState;
1504 root 1.153 wmHint.window_group = top;
1505 pcg 1.9
1506 root 1.169 XmbSetWMProperties (dpy, top, NULL, NULL, (char **)argv, argc,
1507 root 1.115 &szHint, &wmHint, &classHint);
1508 sf-exg 1.262 #if ENABLE_EWMH
1509 root 1.254 /*
1510     * set up icon hint
1511 sf-exg 1.275 * rs [Rs_iconfile] is path to icon
1512 root 1.254 */
1513 root 1.255
1514     if (rs [Rs_iconfile])
1515 root 1.254 {
1516 sf-exg 1.278 set_icon (rs [Rs_iconfile]);
1517 root 1.254 }
1518     #endif
1519 pcg 1.49
1520 root 1.153 #if ENABLE_FRILLS
1521     if (mwmhints.flags)
1522 root 1.169 XChangeProperty (dpy, top, xa[XA_MOTIF_WM_HINTS], xa[XA_MOTIF_WM_HINTS], 32,
1523 root 1.153 PropModeReplace, (unsigned char *)&mwmhints, PROP_MWM_HINTS_ELEMENTS);
1524     #endif
1525    
1526 root 1.116 Atom protocols[] = {
1527     xa[XA_WM_DELETE_WINDOW],
1528     #if ENABLE_EWMH
1529     xa[XA_NET_WM_PING],
1530     #endif
1531     };
1532    
1533 sf-exg 1.296 XSetWMProtocols (dpy, top, protocols, ecb_array_length (protocols));
1534 root 1.96
1535 root 1.133 #if ENABLE_FRILLS
1536     if (rs[Rs_transient_for])
1537 root 1.169 XSetTransientForHint (dpy, top, (Window)strtol (rs[Rs_transient_for], 0, 0));
1538 root 1.133 #endif
1539    
1540 root 1.116 #if ENABLE_EWMH
1541 pcg 1.49 long pid = getpid ();
1542 root 1.93
1543 root 1.169 XChangeProperty (dpy, top,
1544 root 1.97 xa[XA_NET_WM_PID], XA_CARDINAL, 32,
1545 pcg 1.49 PropModeReplace, (unsigned char *)&pid, 1);
1546 root 1.116
1547     // _NET_WM_WINDOW_TYPE is NORMAL, which is the default
1548 pcg 1.49 #endif
1549 pcg 1.24
1550 root 1.169 XSelectInput (dpy, top,
1551 root 1.65 KeyPressMask
1552 root 1.90 #if (MOUSE_WHEEL && MOUSE_SLIP_WHEELING) || ENABLE_FRILLS || ISO_14755
1553 root 1.65 | KeyReleaseMask
1554 pcg 1.1 #endif
1555 root 1.65 | FocusChangeMask | VisibilityChangeMask
1556 root 1.112 | ExposureMask | StructureNotifyMask);
1557    
1558 root 1.109 termwin_ev.start (display, top);
1559 pcg 1.1
1560 pcg 1.9 /* vt cursor: Black-on-White is standard, but this is more popular */
1561 root 1.169 TermWin_cursor = XCreateFontCursor (dpy, XC_xterm);
1562 pcg 1.1
1563 pcg 1.9 /* the vt window */
1564 root 1.169 vt = XCreateSimpleWindow (dpy, top,
1565 root 1.153 window_vt_x, window_vt_y,
1566     width, height,
1567     0,
1568     pix_colors_focused[Color_fg],
1569     pix_colors_focused[Color_bg]);
1570 pcg 1.6
1571 pcg 1.51 attributes.bit_gravity = NorthWestGravity;
1572 root 1.169 XChangeWindowAttributes (dpy, vt, CWBitGravity, &attributes);
1573 pcg 1.51
1574     vt_emask = ExposureMask | ButtonPressMask | ButtonReleaseMask | PropertyChangeMask;
1575 pcg 1.17
1576 root 1.182 if (option (Opt_pointerBlank))
1577 pcg 1.9 vt_emask |= PointerMotionMask;
1578     else
1579 pcg 1.51 vt_emask |= Button1MotionMask | Button3MotionMask;
1580 pcg 1.9
1581 root 1.142 vt_select_input ();
1582    
1583 root 1.122 vt_ev.start (display, vt);
1584 pcg 1.1
1585 pcg 1.9 /* graphics context for the vt window */
1586 root 1.153 gcvalue.foreground = pix_colors[Color_fg];
1587     gcvalue.background = pix_colors[Color_bg];
1588 root 1.170 gcvalue.graphics_exposures = 0;
1589 root 1.153
1590 root 1.169 gc = XCreateGC (dpy, vt,
1591 root 1.153 GCForeground | GCBackground | GCGraphicsExposures,
1592     &gcvalue);
1593 pcg 1.1
1594 root 1.156 drawable = new rxvt_drawable (this, vt);
1595 pcg 1.35
1596 root 1.65 #ifdef OFF_FOCUS_FADING
1597     // initially we are in unfocused state
1598     if (rs[Rs_fade])
1599 root 1.79 pix_colors = pix_colors_unfocused;
1600 pcg 1.1 #endif
1601 root 1.90
1602 root 1.113 pointer_unblank ();
1603 root 1.90 scr_recolour ();
1604 pcg 1.1 }
1605    
1606 root 1.79 /*----------------------------------------------------------------------*/
1607     /*
1608     * Run the command in a subprocess and return a file descriptor for the
1609     * master end of the pseudo-teletype pair with the command talking to
1610     * the slave.
1611     */
1612     void
1613     rxvt_term::run_command (const char *const *argv)
1614     {
1615 root 1.110 #if ENABLE_FRILLS
1616     if (rs[Rs_pty_fd])
1617     {
1618 root 1.145 pty->pty = atoi (rs[Rs_pty_fd]);
1619 root 1.127
1620 root 1.145 if (pty->pty >= 0)
1621 root 1.132 {
1622     if (getfd_hook)
1623 root 1.145 pty->pty = (*getfd_hook) (pty->pty);
1624 root 1.127
1625 root 1.145 if (pty->pty < 0 || fcntl (pty->pty, F_SETFL, O_NONBLOCK))
1626 root 1.132 rxvt_fatal ("unusable pty-fd filehandle, aborting.\n");
1627     }
1628 root 1.110 }
1629     else
1630     #endif
1631 root 1.145 if (!pty->get ())
1632 root 1.110 rxvt_fatal ("can't initialize pseudo-tty, aborting.\n");
1633 root 1.79
1634 sf-exg 1.274 struct termios tio = def_tio;
1635 root 1.105
1636 root 1.79 #ifndef NO_BACKSPACE_KEY
1637 ayin 1.211 if (rs[Rs_backspace_key][0] && !rs[Rs_backspace_key][1])
1638 sf-exg 1.270 tio.c_cc[VERASE] = rs[Rs_backspace_key][0];
1639 ayin 1.211 else if (strcmp (rs[Rs_backspace_key], "DEC") == 0)
1640 sf-exg 1.270 tio.c_cc[VERASE] = '\177'; /* the initial state anyway */
1641 root 1.79 #endif
1642    
1643 ayin 1.233 /* init terminal attributes */
1644     cfsetospeed (&tio, BAUDRATE);
1645     cfsetispeed (&tio, BAUDRATE);
1646     tcsetattr (pty->tty, TCSANOW, &tio);
1647 root 1.175 pty->set_utf8_mode (enc_utf8);
1648    
1649     /* set initial window size */
1650     tt_winch ();
1651 root 1.79
1652 root 1.110 #if ENABLE_FRILLS
1653     if (rs[Rs_pty_fd])
1654     return;
1655     #endif
1656    
1657 root 1.79 /* spin off the command interpreter */
1658     switch (cmd_pid = fork ())
1659     {
1660     case -1:
1661 root 1.110 {
1662     cmd_pid = 0;
1663     rxvt_fatal ("can't fork, aborting.\n");
1664     }
1665 root 1.79 case 0:
1666     init_env ();
1667    
1668 root 1.145 if (!pty->make_controlling_tty ())
1669 root 1.79 fprintf (stderr, "%s: could not obtain control of tty.", RESNAME);
1670     else
1671     {
1672     /* Reopen stdin, stdout and stderr over the tty file descriptor */
1673 root 1.145 dup2 (pty->tty, STDIN_FILENO);
1674     dup2 (pty->tty, STDOUT_FILENO);
1675     dup2 (pty->tty, STDERR_FILENO);
1676 root 1.79
1677     // close all our file handles that we do no longer need
1678     for (rxvt_term **t = termlist.begin (); t < termlist.end (); t++)
1679     {
1680 root 1.145 if ((*t)->pty->pty > 2) close ((*t)->pty->pty);
1681     if ((*t)->pty->tty > 2) close ((*t)->pty->tty);
1682 root 1.79 }
1683    
1684     run_child (argv);
1685     fprintf (stderr, "%s: unable to exec child.", RESNAME);
1686     }
1687    
1688     _exit (EXIT_FAILURE);
1689    
1690     default:
1691 root 1.182 if (!option (Opt_utmpInhibit))
1692     pty->login (cmd_pid, option (Opt_loginShell), rs[Rs_display_name]);
1693 root 1.79
1694 root 1.145 pty->close_tty ();
1695 root 1.149
1696     child_ev.start (cmd_pid);
1697    
1698     HOOK_INVOKE ((this, HOOK_CHILD_START, DT_INT, cmd_pid, DT_END));
1699 root 1.79 break;
1700     }
1701     }
1702    
1703     /* ------------------------------------------------------------------------- *
1704     * CHILD PROCESS OPERATIONS *
1705     * ------------------------------------------------------------------------- */
1706     /*
1707     * The only open file descriptor is the slave tty - so no error messages.
1708     * returns are fatal
1709     */
1710     int
1711     rxvt_term::run_child (const char *const *argv)
1712     {
1713     char *login;
1714    
1715 root 1.182 if (option (Opt_console))
1716 ayin 1.224 {
1717     /* be virtual console, fail silently */
1718 root 1.79 #ifdef TIOCCONS
1719     unsigned int on = 1;
1720    
1721     ioctl (STDIN_FILENO, TIOCCONS, &on);
1722     #elif defined (SRIOCSREDIR)
1723     int fd;
1724    
1725     fd = open (CONSOLE, O_WRONLY, 0);
1726     if (fd >= 0)
1727     if (ioctl (fd, SRIOCSREDIR, NULL) < 0)
1728     close (fd);
1729 ayin 1.222 #endif /* SRIOCSREDIR */
1730 root 1.79 }
1731    
1732     /* reset signals and spin off the command interpreter */
1733     signal (SIGINT, SIG_DFL);
1734     signal (SIGQUIT, SIG_DFL);
1735     signal (SIGCHLD, SIG_DFL);
1736     signal (SIGHUP, SIG_DFL);
1737     signal (SIGPIPE, SIG_DFL);
1738     /*
1739 sf-exg 1.272 * mimic login's behavior by disabling the job control signals
1740 root 1.79 * a shell that wants them can turn them back on
1741     */
1742     #ifdef SIGTSTP
1743     signal (SIGTSTP, SIG_IGN);
1744     signal (SIGTTIN, SIG_IGN);
1745     signal (SIGTTOU, SIG_IGN);
1746 ayin 1.222 #endif /* SIGTSTP */
1747 root 1.79
1748     /* command interpreter path */
1749 root 1.213 if (argv)
1750 root 1.79 {
1751     # ifdef DEBUG_CMD
1752     int i;
1753    
1754     for (i = 0; argv[i]; i++)
1755     fprintf (stderr, "argv [%d] = \"%s\"\n", i, argv[i]);
1756     # endif
1757    
1758     execvp (argv[0], (char *const *)argv);
1759     /* no error message: STDERR is closed! */
1760     }
1761     else
1762     {
1763 root 1.137 const char *argv0, *shell;
1764 root 1.79
1765     if ((shell = getenv ("SHELL")) == NULL || *shell == '\0')
1766     shell = "/bin/sh";
1767    
1768 root 1.258 argv0 = rxvt_basename (shell);
1769 root 1.79
1770 root 1.182 if (option (Opt_loginShell))
1771 root 1.79 {
1772 ayin 1.208 login = (char *)rxvt_malloc (strlen (argv0) + 2);
1773 root 1.79
1774     login[0] = '-';
1775     strcpy (&login[1], argv0);
1776     argv0 = login;
1777     }
1778 root 1.137
1779 root 1.213 execlp (shell, argv0, (char *)0);
1780 root 1.79 /* no error message: STDERR is closed! */
1781     }
1782    
1783     return -1;
1784     }
1785    
1786 pcg 1.1 /*----------------------- end-of-file (C source) -----------------------*/