nuttx-apps/system/termcurses
2019-10-17 11:42:49 -06:00
..
Kconfig apps/: Removed all references to CONFIG_DISABLE_POLL. The standard POSIX poll() can not longer be disabled. 2019-05-21 19:08:12 -06:00
Make.defs In all Make.defs files, append CONFIGURED_APPS with the consistent ifeq/ifneq. 2019-10-17 11:42:49 -06:00
Makefile Makefiles: This reverts part of commit cf0365ea9. It restores 'conditional' inclusion of TOPDIR/Make.defs. Otherwise all make targets fail if the board has not been configured. That is okay most of the time, but not for things like clean and distclean which should not depend on being configured. 2019-10-15 09:25:48 +08:00
README.txt
tcurses_priv.h
tcurses_vt100.c system/termcurses/tcurses_vt100.c: Fix spelling error in last commit. 2019-01-17 09:13:00 -06:00
termcurses.c

Termcurses
==========

   Terminal emulation library for NuttX
   Author:  Ken Pettit
            2018-2019

The Termcurses library provides terminal emulation support for performing common
screen actions such as cursor movement, foreground / background color control
and keyboard escape sequence mapping.  The initial release supports only vt100 /
ansi terminal types, but the library architecture has an extensible interface 
to allow support for additional emulation types if needed.

The library can be used standalone or in conjunction with the apps/graphics/pdcurses
libraries.  The pdcurses libraries have been updated with a "termcurses" config 
option which fully integrates the termcurses library automatically.

Usage
=====

To use the termcurses library, the routines must be initialized by calling the 
termcurses_initterm() function.  This routine accepts a terminal type string
identifying the type of terminal emulation support requested.  If a NULL pointer
is passed, then the routine will check for a "TERM" environment variable and set
the terminal type based on that string.  If the emulation type still cannot be
determined, the routine will default to "vt100" emulation type.

Upon successful initialization, the termcurses_initterm() function will allocate
an new terminal context which must be passed with all future termcurses library
functions.  When this context is no longer needed, the termcurses_deinitterm()
routine should be called for proper freeing and terminal teardown.

Use with telnetd
================

When using termcurses with the telnet daemon, the telnet config option 
CONFIG_TELNET_SUPPORT_NAWS should be enabled.  This option adds code to the
telnet library for terminal size negotiation.  Wihout this option, the telnet
routines have no concept of the terminal size, and therefore the termcurses
routines must default to 80x24 screen mode.

Use with pdcurses
=================

When using the pdcurses termcurses support (i.e you have enabled both the
CONFIG_PDCURSES and CONFIG_TERMCURSES options),, the pdcurses input device should
be selected to be "TERMINPUT" (i.e. set CONFIG_PDCURSES_TERMINPUT=y).  This 
causes the pdcurses keyboard input logic to use termcurses_getkeycode() routine
for curses input.