mc/src/tty/tty.c

141 lines
3.1 KiB
C
Raw Normal View History

/*
Interface to the terminal controlling library.
Copyright (C) 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
Written by:
Roland Illig <roland.illig@gmx.de>, 2005.
Andrew Borodin <aborodin@vmail.ru>, 2009.
This file is part of the Midnight Commander.
The Midnight Commander is free software; you can redistribute it
and/or modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The Midnight Commander is distributed in the hope that it will be
useful, but WITHOUT ANY WARRANTY; without even the implied warranty
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
*/
/** \file tty.c
* \brief Source: %interface to the terminal controlling library
*/
#include <config.h>
#include <signal.h>
#include <stdarg.h>
#include "../../src/global.h"
#include "../../src/tty/tty.h"
#include "../../src/strutil.h"
#include "../../src/background.h" /* we_are_background */
/*** global variables **************************************************/
/*** file scope macro definitions **************************************/
/*** file scope type declarations **************************************/
/*** file scope variables **********************************************/
static volatile sig_atomic_t got_interrupt = 0;
/* If true use +, -, | for line drawing */
static gboolean force_ugly_line_drawing = FALSE;
/*** file scope functions **********************************************/
static void
sigintr_handler(int signo)
{
(void) &signo;
got_interrupt = 1;
}
/*** public functions **************************************************/
extern void
tty_start_interrupt_key(void)
{
struct sigaction act;
act.sa_handler = sigintr_handler;
sigemptyset (&act.sa_mask);
act.sa_flags = SA_RESTART;
sigaction (SIGINT, &act, NULL);
}
extern void
tty_enable_interrupt_key(void)
{
struct sigaction act;
2005-08-29 13:04:39 +04:00
act.sa_handler = sigintr_handler;
sigemptyset (&act.sa_mask);
act.sa_flags = 0;
sigaction (SIGINT, &act, NULL);
got_interrupt = 0;
}
extern void
tty_disable_interrupt_key(void)
{
struct sigaction act;
2005-08-29 13:04:39 +04:00
act.sa_handler = SIG_IGN;
sigemptyset (&act.sa_mask);
act.sa_flags = 0;
sigaction (SIGINT, &act, NULL);
}
extern gboolean
tty_got_interrupt(void)
{
gboolean rv;
rv = (got_interrupt != 0);
got_interrupt = 0;
return rv;
}
2009-05-14 19:18:03 +04:00
void
tty_set_ugly_line_drawing (gboolean do_ugly)
{
force_ugly_line_drawing = do_ugly;
}
2009-05-14 19:18:03 +04:00
gboolean
tty_is_ugly_line_drawing (void)
{
return force_ugly_line_drawing;
}
2009-06-03 23:07:06 +04:00
void
tty_print_one_hline (gboolean is_slow_term)
{
2009-06-03 23:07:06 +04:00
if (is_slow_term)
tty_print_char (' ');
else
2009-06-03 23:07:06 +04:00
tty_print_alt_char (ACS_HLINE);
}
2009-06-03 23:07:06 +04:00
void
tty_print_one_vline (gboolean is_slow_term)
{
2009-06-03 23:07:06 +04:00
if (is_slow_term)
tty_print_char (' ');
else
2009-06-03 23:07:06 +04:00
tty_print_alt_char (ACS_VLINE);
}