Difference between revisions of "Ncurses"

From RogueBasin
Jump to navigation Jump to search
(Created page with '{{library| name = NCurses |developer = Zeyd Ben-Halim, Eric S. Raymond, Juergen Pfeifer, Thomas Dickey |released = May 05 1997 (4.1) |updated = Nov 02 2008 (5.7) …')
 
(link to curses, and give a little more context.)
 
(4 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{library| name = NCurses
{{library| name = NCurses
|developer = [[Zeyd Ben-Halim]], [[Eric S. Raymond]], [[Juergen Pfeifer]], [[Thomas Dickey]]
|developer = [[Zeyd Ben-Halim]], [[Eric S. Raymond]], [[Juergen Pfeifer]], [[Thomas Dickey]]
|released = May 05 1997 (4.1)
|released = 1993 (1.8.1)
|updated = Nov 02 2008 (5.7)
|updated = Apr 04 2011 (5.9)
|dependencies =  
|dependencies =  
|status = Stable
|status = Stable
Line 11: Line 11:
}}
}}


NCurses is the default curses library on the [[Linux]] platform. It started as a spin-off from [[Pavel Curtis]]' pcurses library.  
NCurses is the default [[curses]] text-mode screen handling library on the [[Linux]] platform. It started as a spin-off from [[Pavel Curtis]]' pcurses library.  


As an extension to the standard curses functions, NCurses offers a form and menu library which allows to create advanced user interfaces.  
As an extension to the standard curses functions, NCurses offers a form and menu library which allows to create advanced user interfaces.  


NCurses offers support for 256-color terminals.
NCurses offers support for 256-color terminals.
== Links ==
* [http://invisible-island.net/ncurses/ncurses.faq.html Ncurses FAQ]
* [http://www.c-for-dummies.com/ncurses/ A book about Ncurses]
* [http://invisible-island.net/cdk/ CDK (Curses Development Kit)], a collection of ready-to-use widgets
* [http://www.linuxjournal.com/article/1124 Eric S. Raymond about the history of ncurses]

Latest revision as of 01:43, 15 December 2013

NCurses
Library project
Developer Zeyd Ben-Halim, Eric S. Raymond, Juergen Pfeifer, Thomas Dickey
Released 1993 (1.8.1)
Updated Apr 04 2011 (5.9)
Status Stable
Licensing MIT
P. Language C, Ada
Platforms Unix, Linux
Dependencies
Official site of NCurses


NCurses is the default curses text-mode screen handling library on the Linux platform. It started as a spin-off from Pavel Curtis' pcurses library.

As an extension to the standard curses functions, NCurses offers a form and menu library which allows to create advanced user interfaces.

NCurses offers support for 256-color terminals.


Links