1 /* Slang interface to the Midnight Commander
2 This emulates some features of ncurses on top of slang
4 Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5 2005, 2007 Free Software Foundation, Inc.
10 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 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
39 #include "mouse.h" /* Gpm_Event is required in key.h */
40 #include "key.h" /* define_sequence */
41 #include "main.h" /* extern: force_colors */
42 #include "win.h" /* do_exit_ca_mode */
44 #include "background.h" /* we_are_background */
48 /* Taken from S-Lang's slutty.c */
49 #ifdef ultrix /* Ultrix gets _POSIX_VDISABLE wrong! */
50 # define NULL_VALUE -1
52 # ifdef _POSIX_VDISABLE
53 # define NULL_VALUE _POSIX_VDISABLE
55 # define NULL_VALUE 255
63 /* Various saved termios settings that we control here */
64 static struct termios boot_mode
;
65 static struct termios new_mode
;
67 /* Controls whether we should wait for input in getch */
68 static int no_slang_delay
;
70 /* Forward declarations */
71 static void load_terminfo_keys (void);
73 #ifndef HAVE_SLANG_PRIVATE
74 /* Private interfaces have been stripped, so we cannot use them */
75 #define SLang_getkey2() SLang_getkey()
76 #define SLang_input_pending2(s) SLang_input_pending(s)
78 /* Copied from ../slang/slgetkey.c, removed the DEC_8Bit_HACK. */
79 extern unsigned char SLang_Input_Buffer
[];
80 #if SLANG_VERSION >= 10000
81 extern unsigned int _SLsys_getkey (void);
82 extern int _SLsys_input_pending (int);
84 extern unsigned int SLsys_getkey (void);
85 extern int SLsys_input_pending (int);
88 static unsigned int SLang_getkey2 (void)
93 if (SLang_Input_Buffer_Len
)
95 ch
= (unsigned int) *SLang_Input_Buffer
;
96 SLang_Input_Buffer_Len
--;
97 imax
= SLang_Input_Buffer_Len
;
99 memmove ((char *) SLang_Input_Buffer
,
100 (char *) (SLang_Input_Buffer
+ 1), imax
);
103 #if SLANG_VERSION >= 10000
104 else return(_SLsys_getkey ());
106 else return(SLsys_getkey());
110 static int SLang_input_pending2 (int tsecs
)
115 if (SLang_Input_Buffer_Len
) return (int) SLang_Input_Buffer_Len
;
116 #if SLANG_VERSION >= 10000
117 n
= _SLsys_input_pending (tsecs
);
119 n
= SLsys_input_pending (tsecs
);
121 if (n
<= 0) return 0;
123 i
= SLang_getkey2 ();
124 if (i
== SLANG_GETKEY_ERROR
)
125 return 0; /* don't put crippled error codes into the input buffer */
126 c
= (unsigned char)i
;
127 SLang_ungetkey_string (&c
, 1);
131 #endif /* HAVE_SLANG_PRIVATE */
133 /* Only done the first time */
137 SLtt_get_terminfo ();
140 * If the terminal in not in terminfo but begins with a well-known
141 * string such as "linux" or "xterm" S-Lang will go on, but the
142 * terminal size and several other variables won't be initialized
143 * (as of S-Lang 1.4.4). Detect it and abort. Also detect extremely
144 * small, large and negative screen dimensions.
146 if ((COLS
< 10) || (LINES
< 5) ||
147 (SLang_Version
< 10407 && (COLS
> 255 || LINES
> 255)) ||
148 (SLang_Version
>= 10407 && (COLS
> 512 || LINES
> 512))) {
151 _("Screen size %dx%d is not supported.\n"
152 "Check the TERM environment variable.\n"),
157 tcgetattr (fileno (stdin
), &boot_mode
);
158 /* 255 = ignore abort char; XCTRL('g') for abort char = ^g */
159 SLang_init_tty (XCTRL('c'), 1, 0);
161 /* If SLang uses fileno(stderr) for terminal input MC will hang
162 if we call SLang_getkey between calls to open_error_pipe and
163 close_error_pipe, e.g. when we do a growing view of an gzipped
165 if (SLang_TT_Read_FD
== fileno (stderr
))
166 SLang_TT_Read_FD
= fileno (stdin
);
168 if (force_ugly_line_drawing
)
169 SLtt_Has_Alt_Charset
= 0;
170 if (tcgetattr (SLang_TT_Read_FD
, &new_mode
) == 0) {
172 new_mode
.c_cc
[VDSUSP
] = NULL_VALUE
; /* to ignore ^Y */
175 new_mode
.c_cc
[VLNEXT
] = NULL_VALUE
; /* to ignore ^V */
177 tcsetattr (SLang_TT_Read_FD
, TCSADRAIN
, &new_mode
);
180 load_terminfo_keys ();
185 slang_set_raw_mode (void)
187 tcsetattr (SLang_TT_Read_FD
, TCSANOW
, &new_mode
);
190 /* Done each time we come back from done mode */
192 slang_prog_mode (void)
194 tcsetattr (SLang_TT_Read_FD
, TCSANOW
, &new_mode
);
196 SLsmg_touch_lines (0, LINES
);
199 /* Called each time we want to shutdown slang screen manager */
201 slang_shell_mode (void)
203 tcsetattr (SLang_TT_Read_FD
, TCSANOW
, &boot_mode
);
207 slang_shutdown (void)
215 /* Load the op capability to reset the colors to those that were
216 * active when the program was started up
218 op_cap
= SLtt_tgetstr ("op");
220 fprintf (stdout
, "%s", op_cap
);
225 /* HP Terminals have capabilities (pfkey, pfloc, pfx) to program function keys.
226 elm 2.4pl15 invoked with the -K option utilizes these softkeys and the
227 consequence is that function keys don't work in MC sometimes.
228 Unfortunately I don't now the one and only escape sequence to turn off
229 softkeys (elm uses three different capabilities to turn on softkeys and two
230 capabilities to turn them off).
231 Among other things elm uses the pair we already use in slang_keypad. That's
232 the reason why I call slang_reset_softkeys from slang_keypad. In lack of
233 something better the softkeys are programmed to their defaults from the
234 termcap/terminfo database.
235 The escape sequence to program the softkeys is taken from elm and it is
236 hardcoded because neither slang nor ncurses 4.1 know how to 'printf' this
241 slang_reset_softkeys (void)
245 static const char display
[] = " ";
248 for (key
= 1; key
< 9; key
++) {
249 g_snprintf (tmp
, sizeof (tmp
), "k%d", key
);
250 send
= (char *) SLtt_tgetstr (tmp
);
252 g_snprintf (tmp
, sizeof (tmp
), "\033&f%dk%dd%dL%s%s", key
,
253 (int) (sizeof (display
) - 1), (int) strlen (send
),
255 SLtt_write_string (tmp
);
260 /* keypad routines */
262 slang_keypad (int set
)
265 extern int reset_hp_softkeys
;
267 keypad_string
= (char *) SLtt_tgetstr (set
? "ks" : "ke");
269 SLtt_write_string (keypad_string
);
270 if (set
&& reset_hp_softkeys
)
271 slang_reset_softkeys ();
275 set_slang_delay (int v
)
281 hline (int ch
, int len
)
285 last_x
= SLsmg_get_column ();
286 last_y
= SLsmg_get_row ();
291 if (ch
== ACS_HLINE
){
292 SLsmg_draw_hline (len
);
297 move (last_y
, last_x
);
301 vline (int character
, int len
)
304 SLsmg_draw_vline (len
);
306 int last_x
, last_y
, pos
= 0;
308 last_x
= SLsmg_get_column ();
309 last_y
= SLsmg_get_row ();
312 move (last_y
+ pos
++, last_x
);
315 move (last_x
, last_y
);
319 int has_colors (void)
321 const char *terminal
= getenv ("TERM");
322 char *cts
= color_terminal_string
, *s
;
326 SLtt_Use_Ansi_Colors
= 1;
327 if (NULL
!= getenv ("COLORTERM"))
328 SLtt_Use_Ansi_Colors
= 1;
330 /* We want to allow overwriding */
331 if (!disable_colors
){
332 /* check color_terminal_string */
337 while (*cts
== ' ' || *cts
== '\t') cts
++;
342 while (*cts
&& *cts
!= ',')
347 if (i
&& i
== strlen(terminal
) && strncmp(s
, terminal
, i
) == 0)
348 SLtt_Use_Ansi_Colors
= 1;
350 if (*cts
== ',') cts
++;
355 /* Setup emulated colors */
356 if (SLtt_Use_Ansi_Colors
){
358 mc_init_pair (A_REVERSE
, "black", "white");
359 mc_init_pair (A_BOLD
, "white", "black");
361 mc_init_pair (A_REVERSE
, "black", "lightgray");
362 mc_init_pair (A_BOLD
, "white", "black");
363 mc_init_pair (A_BOLD_REVERSE
, "white", "lightgray");
366 SLtt_set_mono (A_BOLD
, NULL
, SLTT_BOLD_MASK
);
367 SLtt_set_mono (A_REVERSE
, NULL
, SLTT_REV_MASK
);
368 SLtt_set_mono (A_BOLD
|A_REVERSE
, NULL
, SLTT_BOLD_MASK
| SLTT_REV_MASK
);
370 return SLtt_Use_Ansi_Colors
;
376 if (!SLtt_Use_Ansi_Colors
){
377 SLsmg_set_color (color
);
383 SLsmg_set_color (A_BOLD
);
385 SLsmg_set_color ((color
& (~A_BOLD
)) + 8);
389 if (color
== A_REVERSE
)
390 SLsmg_set_color (A_REVERSE
);
392 SLsmg_set_color (color
);
395 /* This table describes which capabilities we want and which values we
398 static const struct {
400 const char *key_name
;
431 { KEY_BACKSPACE
, "kb" },
438 do_define_key (int code
, const char *strcap
)
442 seq
= (char *) SLtt_tgetstr ((char*) strcap
);
444 define_sequence (code
, seq
, MCKEY_NOACTION
);
448 load_terminfo_keys (void)
452 for (i
= 0; key_table
[i
].key_code
; i
++)
453 do_define_key (key_table
[i
].key_code
, key_table
[i
].key_name
);
461 if (SLang_input_pending2 (0) == 0)
464 c
= SLang_getkey2 ();
465 if (c
== SLANG_GETKEY_ERROR
) {
467 "SLang_getkey returned SLANG_GETKEY_ERROR\n"
468 "Assuming EOF on stdin and exiting\n");
473 #endif /* HAVE_SLANG */
478 #ifdef WITH_BACKGROUND
479 if (!we_are_background
)
480 #endif /* WITH_BACKGROUND */