2009-07-12 14:22:41 +04:00
|
|
|
|
|
|
|
/** \file tty-internal.h
|
|
|
|
* \brief Header: internal suff of the terminal controlling library
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MC_TTY_INTERNAL_H
|
|
|
|
#define MC_TTY_INTERNAL_H
|
|
|
|
|
2009-09-17 02:07:04 +04:00
|
|
|
#include "../../src/global.h" /* include <glib.h> */
|
2009-07-12 14:22:41 +04:00
|
|
|
|
|
|
|
/* If true lines are shown by spaces */
|
|
|
|
extern gboolean slow_tty;
|
|
|
|
|
2009-08-24 00:42:28 +04:00
|
|
|
/* If true use +, -, | for line drawing */
|
|
|
|
extern gboolean ugly_line_drawing;
|
|
|
|
|
2009-07-13 22:13:19 +04:00
|
|
|
/* The mouse is currently: TRUE - enabled, FALSE - disabled */
|
|
|
|
extern gboolean mouse_enabled;
|
|
|
|
|
2009-09-17 02:07:04 +04:00
|
|
|
#endif /* MC_TTY_INTERNAL_H */
|