ncurses

From Wikipedia, the free encyclopedia
ncurses
Developer(s)Thomas E. Dickey, Juergen Pfeifer, Eric S Raymond, Alexander V Lukyanov, Philippe Blain, Sven Verdoolaege, Nicolas Boulenguez et al.[1][2]
Initial release1993; 31 years ago (1993)
Stable release
6.4[3] / 31 December 2022; 14 months ago (2022-12-31)
Repository
Written inC
Operating systemPOSIX
TypeWidget toolkit
LicenseX11 License[2]
Websiteinvisible-island.net/ncurses/ Edit this at Wikidata

ncurses (new curses) is a programming library providing an application programming interface (API) that allows the programmer to write text-based user interfaces (TUI) in a terminal-independent manner. It is a toolkit for developing "GUI-like" application software that runs under a terminal emulator. It also optimizes screen changes, in order to reduce the latency experienced when using remote shells.

ncurses is a free-software emulation of the System V Release 4.0 (SVr4) curses.

There are bindings for ncurses in a variety of programming languages, including Ada,[4] Python,[5] Gambas,[6] Ruby,[7] PHP,[8] JavaScript,[9] and Perl.[10]

History[edit]

As the new version, ncurses is a free-software emulation of the System V Release 4.0 (SVr4) curses, which was itself an enhancement over the discontinued 4.4 BSD curses.[11] The XSI Curses standard issued by X/Open is explicitly and closely modeled on System V.

curses[edit]

The first curses library was developed at the University of California at Berkeley, for a BSD operating system, around 1980 to support Rogue, a text-based adventure game. It originally used the termcap library, which was used in other programs, such as the vi editor.[11]

The success of the BSD curses library prompted Bell Labs to release an enhanced curses library in their System V Release 2 Unix systems. This library was more powerful and instead of using termcap, it used terminfo. However, due to AT&T policy regarding source-code distribution, this improved curses library did not have much acceptance in the BSD community.[11]

pcurses[edit]

Around 1982, Pavel Curtis started work on a freeware clone of the Bell Labs curses, named pcurses, which was maintained by various people through 1986.[12]

ncurses[edit]

The pcurses library was further improved when Zeyd Ben-Halim took over the development effort in late 1991.[11][12][13] The new library was released as ncurses in November 1993, with version 1.8.1 as the first major release. Subsequent work, through version 1.8.8 (M1995), was driven by Eric S. Raymond, who added the form and menu libraries written by Juergen Pfeifer.[1] Since 1996, it has been maintained by Thomas E. Dickey.[12]

Most ncurses calls can be easily ported to the old curses. System V curses implementations can support BSD curses programs with just a recompilation.[14] However, a few areas are problematic, such as handling terminal resizing, since no counterpart exists in the old curses.

Terminal database[edit]

ncurses can use either terminfo (with extensible data) or termcap. Other implementations of curses generally use terminfo; a minority use termcap. Few (mytinfo was an older exception[15]) use both.

License[edit]

ncurses is a part of the GNU Project, but is not distributed under the GNU GPL or LGPL. Instead, it is distributed under a permissive free software licence, i.e., the MIT License.[16] This is due to the agreement made with the Free Software Foundation at the time the developers assigned their copyright.

When the agreement was made to pass on the rights to the FSF, there was a clause that stated:[16]

The Foundation promises that all distribution of the Package, or of any work "based on the Package", that takes place under the control of the Foundation or its agents or assignees, shall be on terms that explicitly and perpetually permit anyone possessing a copy of the work to which the terms apply, and possessing accurate notice of these terms, to redistribute copies of the work to anyone on the same terms.

According to the maintainer Thomas E. Dickey, this precludes relicensing to the GPL in any version, since it would place restrictions on the programs that will be able to link to the libraries.[16]

Programs using ncurses[edit]

There are hundreds of programs which use ncurses.[17][18] Some, such as GNU Screen and w3m, use only the termcap interface and perform screen management themselves. Others, such as GNU Midnight Commander and YaST, use the curses programming interface.

See also[edit]

Notes[edit]

References[edit]

  1. ^ a b "NCURSES - Frequently Asked Questions (FAQ): Who wrote NCURSES?".
  2. ^ a b "NCURSES — Licensing". Retrieved July 9, 2013.
  3. ^ "ncurses 6.4". Retrieved January 1, 2023.
  4. ^ "Ada95 Binding for ncurses".
  5. ^ "Curses Programming with Python - Python documentation".
  6. ^ "gb.ncurses - Gambas Wiki".
  7. ^ "ncurses Ruby - RubyGems.org".
  8. ^ "Ncurses functions - PHP Manual". Archived from the original on 2021-03-28. Retrieved 2020-02-04.
  9. ^ "nc plugin: ncurses bindings for SpiderApe".
  10. ^ "Curses::UI - A curses based OO user interface framework".
  11. ^ a b c d Eric S. Raymond (September 1995). "ncurses: Portable Screen-Handling for Linux". Linux Journal.
  12. ^ a b c Thomas E. Dickey (December 1996). "NCURSES - New Curses".
  13. ^ The README file in ncurses 1.8.1 states "v0.1 July 31, 1992" and "v1.8.1 November 5, 1993", which agrees with the NEWS (changelog) file
  14. ^ "A Hacker's Guide to Ncurses Internals".
  15. ^ Sydney S. Weinstein (April 1993). "On the Networks". C/C++ Users Journal. Archived from the original on 2014-08-11. Retrieved 2017-09-15.
  16. ^ a b c "NCURSES - Frequently Asked Questions (FAQ): Is it GPL'd?".
  17. ^ "Search results: +ncurses on freshmeat.net". Archived from the original on February 18, 2012. Retrieved 2013-05-10.
  18. ^ "Projects tagged 'ncurses'". ohloh.

External links[edit]