1b88e7ae133707e771eac2a34be1ff9af4a15b5a
[midnight-commander.git] / lib / tty / tty-ncurses.c
blob1b88e7ae133707e771eac2a34be1ff9af4a15b5a
1 /*
2 Interface to the terminal controlling library.
3 Ncurses wrapper.
5 Copyright (C) 2005, 2006, 2007, 2009, 2011
6 The Free Software Foundation, Inc.
8 Written by:
9 Andrew Borodin <aborodin@vmail.ru>, 2009.
10 Ilia Maslakov <il.smind@gmail.com>, 2009.
12 This file is part of the Midnight Commander.
14 The Midnight Commander is free software: you can redistribute it
15 and/or modify it under the terms of the GNU General Public License as
16 published by the Free Software Foundation, either version 3 of the License,
17 or (at your option) any later version.
19 The Midnight Commander is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
24 You should have received a copy of the GNU General Public License
25 along with this program. If not, see <http://www.gnu.org/licenses/>.
28 /** \file
29 * \brief Source: NCurses-based tty layer of Midnight-commander
32 #include <config.h>
34 #include <stdlib.h>
35 #include <stdarg.h>
36 #include <signal.h>
37 #ifdef HAVE_SYS_IOCTL_H
38 #include <sys/ioctl.h>
39 #endif
40 #include <termios.h>
42 #include "lib/global.h"
43 #include "lib/strutil.h" /* str_term_form */
45 #ifndef WANT_TERM_H
46 #define WANT_TERM_H
47 #endif
49 #include "tty-internal.h" /* mc_tty_normalize_from_utf8() */
50 #include "tty.h"
51 #include "color-internal.h"
52 #include "mouse.h"
53 #include "win.h"
55 /* include at last !!! */
56 #ifdef WANT_TERM_H
57 #ifdef HAVE_NCURSES_TERM_H
58 #include <ncurses/term.h>
59 #else
60 #include <term.h>
61 #endif /* HAVE_NCURSES_TERM_H */
62 #endif /* WANT_TERM_H */
64 /*** global variables ****************************************************************************/
66 /*** file scope macro definitions ****************************************************************/
68 #if defined(_AIX) && !defined(CTRL)
69 #define CTRL(x) ((x) & 0x1f)
70 #endif
72 #define yx_in_screen(y, x) \
73 (y >= 0 && y < LINES && x >= 0 && x < COLS)
75 /*** global variables ****************************************************************************/
77 /*** file scope type declarations ****************************************************************/
79 /*** file scope variables ************************************************************************/
81 /* ncurses supports cursor positions only within window */
82 /* We use our own cursor coordibates to support partially visible widgets */
83 static int mc_curs_row, mc_curs_col;
85 /*** file scope functions ************************************************************************/
86 /* --------------------------------------------------------------------------------------------- */
88 /* --------------------------------------------------------------------------------------------- */
90 static void
91 tty_setup_sigwinch (void (*handler) (int))
93 #if (NCURSES_VERSION_MAJOR >= 4) && defined (SIGWINCH)
94 struct sigaction act, oact;
95 act.sa_handler = handler;
96 sigemptyset (&act.sa_mask);
97 act.sa_flags = 0;
98 #ifdef SA_RESTART
99 act.sa_flags |= SA_RESTART;
100 #endif /* SA_RESTART */
101 sigaction (SIGWINCH, &act, &oact);
102 #endif /* SIGWINCH */
105 /* --------------------------------------------------------------------------------------------- */
107 static void
108 sigwinch_handler (int dummy)
110 (void) dummy;
112 mc_global.tty.winch_flag = TRUE;
115 /* --------------------------------------------------------------------------------------------- */
116 /*** public functions ****************************************************************************/
117 /* --------------------------------------------------------------------------------------------- */
120 mc_tty_normalize_lines_char (const char *ch)
122 char *str2;
123 int res;
125 struct mc_tty_lines_struct
127 const char *line;
128 int line_code;
129 } const lines_codes[] = {
130 {"\342\224\230", ACS_LRCORNER}, /* ┌ */
131 {"\342\224\224", ACS_LLCORNER}, /* └ */
132 {"\342\224\220", ACS_URCORNER}, /* ┐ */
133 {"\342\224\214", ACS_ULCORNER}, /* ┘ */
134 {"\342\224\234", ACS_LTEE}, /* ├ */
135 {"\342\224\244", ACS_RTEE}, /* ┤ */
136 {"\342\224\254", ACS_TTEE}, /* ┬ */
137 {"\342\224\264", ACS_BTEE}, /* ┴ */
138 {"\342\224\200", ACS_HLINE}, /* ─ */
139 {"\342\224\202", ACS_VLINE}, /* │ */
140 {"\342\224\274", ACS_PLUS}, /* ┼ */
142 {"\342\225\235", ACS_LRCORNER | A_BOLD}, /* ╔ */
143 {"\342\225\232", ACS_LLCORNER | A_BOLD}, /* ╚ */
144 {"\342\225\227", ACS_URCORNER | A_BOLD}, /* ╗ */
145 {"\342\225\224", ACS_ULCORNER | A_BOLD}, /* ╝ */
146 {"\342\225\237", ACS_LTEE | A_BOLD}, /* ╟ */
147 {"\342\225\242", ACS_RTEE | A_BOLD}, /* ╢ */
148 {"\342\225\244", ACS_TTEE | A_BOLD}, /* ╤ */
149 {"\342\225\247", ACS_BTEE | A_BOLD}, /* ╧ */
150 {"\342\225\220", ACS_HLINE | A_BOLD}, /* ═ */
151 {"\342\225\221", ACS_VLINE | A_BOLD}, /* ║ */
153 {NULL, 0}
156 if (ch == NULL)
157 return (int) ' ';
159 for (res = 0; lines_codes[res].line; res++)
161 if (strcmp (ch, lines_codes[res].line) == 0)
162 return lines_codes[res].line_code;
165 str2 = mc_tty_normalize_from_utf8 (ch);
166 res = g_utf8_get_char_validated (str2, -1);
168 if (res < 0)
169 res = (unsigned char) str2[0];
170 g_free (str2);
172 return res;
175 /* --------------------------------------------------------------------------------------------- */
177 void
178 tty_init (gboolean mouse_enable, gboolean is_xterm)
180 initscr ();
182 #ifdef HAVE_ESCDELAY
184 * If ncurses exports the ESCDELAY variable, it should be set to
185 * a low value, or you'll experience a delay in processing escape
186 * sequences that are recognized by mc (e.g. Esc-Esc). On the other
187 * hand, making ESCDELAY too small can result in some sequences
188 * (e.g. cursor arrows) being reported as separate keys under heavy
189 * processor load, and this can be a problem if mc hasn't learned
190 * them in the "Learn Keys" dialog. The value is in milliseconds.
192 ESCDELAY = 200;
193 #endif /* HAVE_ESCDELAY */
195 /* use Ctrl-g to generate SIGINT */
196 cur_term->Nttyb.c_cc[VINTR] = CTRL ('g'); /* ^g */
197 /* disable SIGQUIT to allow use Ctrl-\ key */
198 cur_term->Nttyb.c_cc[VQUIT] = NULL_VALUE;
199 tcsetattr (cur_term->Filedes, TCSANOW, &cur_term->Nttyb);
201 tty_start_interrupt_key ();
203 if (!mouse_enable)
204 use_mouse_p = MOUSE_DISABLED;
205 tty_init_xterm_support (is_xterm); /* do it before do_enter_ca_mode() call */
206 init_mouse ();
207 do_enter_ca_mode ();
208 tty_raw_mode ();
209 noecho ();
210 keypad (stdscr, TRUE);
211 nodelay (stdscr, FALSE);
213 tty_setup_sigwinch (sigwinch_handler);
216 /* --------------------------------------------------------------------------------------------- */
218 void
219 tty_shutdown (void)
221 disable_mouse ();
222 tty_reset_shell_mode ();
223 tty_noraw_mode ();
224 tty_keypad (FALSE);
225 tty_reset_screen ();
226 do_exit_ca_mode ();
229 /* --------------------------------------------------------------------------------------------- */
231 void
232 tty_change_screen_size (void)
234 #if defined(TIOCGWINSZ) && NCURSES_VERSION_MAJOR >= 4
235 struct winsize winsz;
237 winsz.ws_col = winsz.ws_row = 0;
239 #ifndef NCURSES_VERSION
240 tty_noraw_mode ();
241 tty_reset_screen ();
242 #endif
244 /* Ioctl on the STDIN_FILENO */
245 ioctl (fileno (stdout), TIOCGWINSZ, &winsz);
246 if (winsz.ws_col != 0 && winsz.ws_row != 0)
248 #if defined(NCURSES_VERSION) && defined(HAVE_RESIZETERM)
249 resizeterm (winsz.ws_row, winsz.ws_col);
250 clearok (stdscr, TRUE); /* sigwinch's should use a semaphore! */
251 #else
252 COLS = winsz.ws_col;
253 LINES = winsz.ws_row;
254 #endif
256 #endif /* defined(TIOCGWINSZ) || NCURSES_VERSION_MAJOR >= 4 */
259 /* --------------------------------------------------------------------------------------------- */
261 void
262 tty_reset_prog_mode (void)
264 reset_prog_mode ();
267 /* --------------------------------------------------------------------------------------------- */
269 void
270 tty_reset_shell_mode (void)
272 reset_shell_mode ();
275 /* --------------------------------------------------------------------------------------------- */
277 void
278 tty_raw_mode (void)
280 raw (); /* FIXME: uneeded? */
281 cbreak ();
284 /* --------------------------------------------------------------------------------------------- */
286 void
287 tty_noraw_mode (void)
289 nocbreak (); /* FIXME: unneeded? */
290 noraw ();
293 /* --------------------------------------------------------------------------------------------- */
295 void
296 tty_noecho (void)
298 noecho ();
301 /* --------------------------------------------------------------------------------------------- */
304 tty_flush_input (void)
306 return flushinp ();
309 /* --------------------------------------------------------------------------------------------- */
311 void
312 tty_keypad (gboolean set)
314 keypad (stdscr, (bool) set);
317 /* --------------------------------------------------------------------------------------------- */
319 void
320 tty_nodelay (gboolean set)
322 nodelay (stdscr, (bool) set);
325 /* --------------------------------------------------------------------------------------------- */
328 tty_baudrate (void)
330 return baudrate ();
333 /* --------------------------------------------------------------------------------------------- */
336 tty_lowlevel_getch (void)
338 return getch ();
341 /* --------------------------------------------------------------------------------------------- */
344 tty_reset_screen (void)
346 return endwin ();
349 /* --------------------------------------------------------------------------------------------- */
351 void
352 tty_touch_screen (void)
354 touchwin (stdscr);
357 /* --------------------------------------------------------------------------------------------- */
359 void
360 tty_gotoyx (int y, int x)
362 mc_curs_row = y;
363 mc_curs_col = x;
365 if (y < 0)
366 y = 0;
367 if (y >= LINES)
368 y = LINES - 1;
370 if (x < 0)
371 x = 0;
372 if (x >= COLS)
373 x = COLS - 1;
375 move (y, x);
378 /* --------------------------------------------------------------------------------------------- */
380 void
381 tty_getyx (int *py, int *px)
383 *py = mc_curs_row;
384 *px = mc_curs_col;
387 /* --------------------------------------------------------------------------------------------- */
389 void
390 tty_draw_hline (int y, int x, int ch, int len)
392 int x1;
394 if (y < 0 || y >= LINES || x >= COLS)
395 return;
397 x1 = x;
399 if (x < 0)
401 len += x;
402 if (len <= 0)
403 return;
404 x = 0;
407 if ((chtype) ch == ACS_HLINE)
408 ch = mc_tty_frm[MC_TTY_FRM_HORIZ];
410 move (y, x);
411 hline (ch, len);
412 move (y, x1);
414 mc_curs_row = y;
415 mc_curs_col = x1;
418 /* --------------------------------------------------------------------------------------------- */
420 void
421 tty_draw_vline (int y, int x, int ch, int len)
423 int y1;
425 if (x < 0 || x >= COLS || y >= LINES)
426 return;
428 y1 = y;
430 if (y < 0)
432 len += y;
433 if (len <= 0)
434 return;
435 y = 0;
438 if ((chtype) ch == ACS_VLINE)
439 ch = mc_tty_frm[MC_TTY_FRM_VERT];
441 move (y, x);
442 vline (ch, len);
443 move (y1, x);
445 mc_curs_row = y1;
446 mc_curs_col = x;
449 /* --------------------------------------------------------------------------------------------- */
451 void
452 tty_fill_region (int y, int x, int rows, int cols, unsigned char ch)
454 int i;
456 if (y < 0)
458 rows += y;
460 if (rows <= 0)
461 return;
463 y = 0;
466 if (x < 0)
468 cols += x;
470 if (cols <= 0)
471 return;
473 x = 0;
476 if (y + rows > LINES)
477 rows = LINES - y;
478 if (x + cols > COLS)
479 cols = COLS - x;
481 for (i = 0; i < rows; i++)
483 move (y + i, x);
484 hline (ch, cols);
487 move (y, x);
489 mc_curs_row = y;
490 mc_curs_col = x;
493 /* --------------------------------------------------------------------------------------------- */
495 void
496 tty_set_alt_charset (gboolean alt_charset)
498 (void) alt_charset;
501 /* --------------------------------------------------------------------------------------------- */
503 void
504 tty_display_8bit (gboolean what)
506 meta (stdscr, (int) what);
509 /* --------------------------------------------------------------------------------------------- */
511 void
512 tty_print_char (int c)
514 if (yx_in_screen (mc_curs_row, mc_curs_col))
515 addch (c);
516 mc_curs_col++;
519 /* --------------------------------------------------------------------------------------------- */
521 void
522 tty_print_anychar (int c)
524 unsigned char str[6 + 1];
526 if (mc_global.utf8_display || c > 255)
528 int res;
530 res = g_unichar_to_utf8 (c, (char *) str);
531 if (res == 0)
533 if (yx_in_screen (mc_curs_row, mc_curs_col))
534 addch ('.');
535 mc_curs_col++;
537 else
539 const char *s;
541 str[res] = '\0';
542 s = str_term_form ((char *) str);
544 if (yx_in_screen (mc_curs_row, mc_curs_col))
545 addstr (s);
547 if (g_unichar_iswide (c))
548 mc_curs_col += 2;
549 else if (!g_unichar_iszerowidth (c))
550 mc_curs_col++;
553 else
555 if (yx_in_screen (mc_curs_row, mc_curs_col))
556 addch (c);
557 mc_curs_col++;
561 /* --------------------------------------------------------------------------------------------- */
563 void
564 tty_print_alt_char (int c, gboolean single)
566 if (yx_in_screen (mc_curs_row, mc_curs_col))
568 if ((chtype) c == ACS_VLINE)
569 c = mc_tty_frm[single ? MC_TTY_FRM_VERT : MC_TTY_FRM_DVERT];
570 else if ((chtype) c == ACS_HLINE)
571 c = mc_tty_frm[single ? MC_TTY_FRM_HORIZ : MC_TTY_FRM_DHORIZ];
572 else if ((chtype) c == ACS_LTEE)
573 c = mc_tty_frm[single ? MC_TTY_FRM_LEFTMIDDLE : MC_TTY_FRM_DLEFTMIDDLE];
574 else if ((chtype) c == ACS_RTEE)
575 c = mc_tty_frm[single ? MC_TTY_FRM_RIGHTMIDDLE : MC_TTY_FRM_DRIGHTMIDDLE];
576 else if ((chtype) c == ACS_ULCORNER)
577 c = mc_tty_frm[single ? MC_TTY_FRM_LEFTTOP : MC_TTY_FRM_DLEFTTOP];
578 else if ((chtype) c == ACS_LLCORNER)
579 c = mc_tty_frm[single ? MC_TTY_FRM_LEFTBOTTOM : MC_TTY_FRM_DLEFTBOTTOM];
580 else if ((chtype) c == ACS_URCORNER)
581 c = mc_tty_frm[single ? MC_TTY_FRM_RIGHTTOP : MC_TTY_FRM_DRIGHTTOP];
582 else if ((chtype) c == ACS_LRCORNER)
583 c = mc_tty_frm[single ? MC_TTY_FRM_RIGHTBOTTOM : MC_TTY_FRM_DRIGHTBOTTOM];
584 else if ((chtype) c == ACS_PLUS)
585 c = mc_tty_frm[MC_TTY_FRM_CROSS];
587 addch (c);
590 mc_curs_col++;
593 /* --------------------------------------------------------------------------------------------- */
595 void
596 tty_print_string (const char *s)
598 int len;
599 int start = 0;
601 s = str_term_form (s);
602 len = str_term_width1 (s);
604 /* line is upper or below the screen or entire line is before or after scrren */
605 if (mc_curs_row < 0 || mc_curs_row >= LINES || mc_curs_col + len <= 0 || mc_curs_col >= COLS)
607 mc_curs_col += len;
608 return;
611 /* skip invisible left part */
612 if (mc_curs_col < 0)
614 start = -mc_curs_col;
615 len += mc_curs_col;
616 mc_curs_col = 0;
619 mc_curs_col += len;
620 if (mc_curs_col >= COLS)
621 len = COLS - (mc_curs_col - len);
623 addstr (str_term_substring (s, start, len));
626 /* --------------------------------------------------------------------------------------------- */
628 void
629 tty_printf (const char *fmt, ...)
631 va_list args;
632 char buf[BUF_1K]; /* FIXME: is it enough? */
634 va_start (args, fmt);
635 g_vsnprintf (buf, sizeof (buf), fmt, args);
636 va_end (args);
637 tty_print_string (buf);
640 /* --------------------------------------------------------------------------------------------- */
642 char *
643 tty_tgetstr (const char *cap)
645 char *unused = NULL;
646 return tgetstr ((char *) cap, &unused);
649 /* --------------------------------------------------------------------------------------------- */
651 void
652 tty_refresh (void)
654 refresh ();
655 doupdate ();
658 /* --------------------------------------------------------------------------------------------- */
660 void
661 tty_beep (void)
663 beep ();
666 /* --------------------------------------------------------------------------------------------- */