Howto Curses PDF
Howto Curses PDF
Release 2.7.10
Contents
1
What is curses?
1.1 The Python curses module . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
1
2
Displaying Text
4.1 Attributes and Color . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
4
5
User Input
1 What is curses?
The curses library supplies a terminal-independent screen-painting and keyboard-handling facility for text-based terminals; such terminals include VT100s, the Linux console, and the simulated terminal provided by X11 programs such
as xterm and rxvt. Display terminals support various control codes to perform common operations such as moving
the cursor, scrolling the screen, and erasing areas. Different terminals use widely differing codes, and often have their
own minor quirks.
In a world of X displays, one might ask why bother? Its true that character-cell display terminals are an obsolete
technology, but there are niches in which being able to do fancy things with them are still valuable. One is on
small-footprint or embedded Unixes that dont carry an X server. Another is for tools like OS installers and kernel
configurators that may have to run before X is available.
The curses library hides all the details of different terminals, and provides the programmer with an abstraction of a
display, containing multiple non-overlapping windows. The contents of a window can be changed in various ways
adding text, erasing it, changing its appearanceand the curses library will automagically figure out what control codes
need to be sent to the terminal to produce the right output.
The curses library was originally written for BSD Unix; the later System V versions of Unix from AT&T added many
enhancements and new functions. BSD curses is no longer maintained, having been replaced by ncurses, which is an
open-source implementation of the AT&T interface. If youre using an open-source Unix such as Linux or FreeBSD,
your system almost certainly uses ncurses. Since most current commercial Unix versions are based on System V code,
all the functions described here will probably be available. The older versions of curses carried by some proprietary
Unixes may not support everything, though.
No one has made a Windows port of the curses module. On a Windows platform, try the Console module written by
Fredrik Lundh. The Console module provides cursor-addressable text output, plus full support for mouse and keyboard
input, and is available from http://effbot.org/zone/console-index.htm.
accordingly, curses can do it for you, returning a special value such as curses.KEY_LEFT. To get curses to do the
job, youll have to enable keypad mode.
stdscr.keypad(1)
Terminating a curses application is much easier than starting one. Youll need to call
curses.nocbreak(); stdscr.keypad(0); curses.echo()
to reverse the curses-friendly terminal settings. Then call the endwin() function to restore the terminal to its original
operating mode.
curses.endwin()
A common problem when debugging a curses application is to get your terminal messed up when the application dies
without restoring the terminal to its previous state. In Python this commonly happens when your code is buggy and
raises an uncaught exception. Keys are no longer echoed to the screen when you type them, for example, which makes
using the shell difficult.
In Python you can avoid these complications and make debugging much easier by importing the module
curses.wrapper. It supplies a wrapper() function that takes a callable. It does the initializations described
above, and also initializes colors if color support is present. It then runs your provided callable and finally deinitializes
appropriately. The callable is called inside a try-catch clause which catches exceptions, performs curses deinitialization, and then passes the exception upwards. Thus, your terminal wont be left in a funny state on exception.
4 Displaying Text
From a C programmers point of view, curses may sometimes look like a twisty maze of functions, all subtly different.
For example, addstr() displays a string at the current cursor location in the stdscr window, while mvaddstr()
moves to a given y,x coordinate first before displaying the string. waddstr() is just like addstr(), but allows
specifying a window to use, instead of using stdscr by default. mvwaddstr() follows similarly.
Fortunately the Python interface hides all these details; stdscr is a window object like any other, and methods like
addstr() accept multiple argument forms. Usually there are four different forms.
Form
str or ch
str or ch, attr
y, x, str or ch
y, x, str or ch, attr
Description
Display the string str or character ch at the current position
Display the string str or character ch, using attribute attr at the current position
Move to position y,x within the window, and display str or ch
Move to position y,x within the window, and display str or ch, using attribute attr
Attributes allow displaying text in highlighted forms, such as in boldface, underline, reverse code, or in color. Theyll
be explained in more detail in the next subsection.
The addstr() function takes a Python string as the value to be displayed, while the addch() functions take a
character, which can be either a Python string of length 1 or an integer. If its a string, youre limited to displaying
characters between 0 and 255. SVr4 curses provides constants for extension characters; these constants are integers
greater than 255. For example, ACS_PLMINUS is a +/- symbol, and ACS_ULCORNER is the upper left corner of a
box (handy for drawing borders).
Windows remember where the cursor was left after the last operation, so if you leave out the y,x coordinates, the
string or character will be displayed wherever the last operation left off. You can also move the cursor with the
move(y,x) method. Because some terminals always display a flashing cursor, you may want to ensure that the
cursor is positioned in some location where it wont be distracting; it can be confusing to have the cursor blinking at
some apparently random location.
If your application doesnt need a blinking cursor at all, you can call curs_set(0) to make it invisible. Equivalently,
and for compatibility with older curses versions, theres a leaveok(bool) function. When bool is true, the curses
library will attempt to suppress the flashing cursor, and you wont need to worry about leaving it in odd locations.
Description
Blinking text
Extra bright or bold text
Half bright text
Reverse-video text
The best highlighting mode available
Underlined text
So, to display a reverse-video status line on the top line of the screen, you could code:
stdscr.addstr(0, 0, "Current mode: Typing mode",
curses.A_REVERSE)
stdscr.refresh()
The curses library also supports color on those terminals that provide it. The most common such terminal is probably
the Linux console, followed by color xterms.
To use color, you must call the start_color() function soon after calling initscr(), to initialize the default color set (the curses.wrapper.wrapper() function does this automatically). Once thats done, the
has_colors() function returns TRUE if the terminal in use can actually display color. (Note: curses uses the
American spelling color, instead of the Canadian/British spelling colour. If youre used to the British spelling,
youll have to resign yourself to misspelling it for the sake of these functions.)
The curses library maintains a finite number of color pairs, containing a foreground (or text) color and a background
color. You can get the attribute value corresponding to a color pair with the color_pair() function; this can be
bitwise-ORed with other attributes such as A_REVERSE, but again, such combinations are not guaranteed to work on
all terminals.
An example, which displays a line of text using color pair 1:
stdscr.addstr("Pretty text", curses.color_pair(1))
stdscr.refresh()
As I said before, a color pair consists of a foreground and background color. start_color() initializes 8 basic colors when it activates color mode. They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan,
and 7:white. The curses module defines named constants for each of these colors: curses.COLOR_BLACK,
curses.COLOR_RED, and so forth.
The init_pair(n, f, b) function changes the definition of color pair n, to foreground color f and background
color b. Color pair 0 is hard-wired to white on black, and cannot be changed.
Lets put all this together. To change color 1 to red text on a white background, you would call:
curses.init_pair(1, curses.COLOR_RED, curses.COLOR_WHITE)
When you change a color pair, any text already displayed using that color pair will change to the new colors. You can
also display new text in this color with:
stdscr.addstr(0,0, "RED ALERT!", curses.color_pair(1))
Very fancy terminals can change the definitions of the actual colors to a given RGB value. This lets you change color
1, which is usually red, to purple or blue or any other color you like. Unfortunately, the Linux console doesnt support
this, so Im unable to try it out, and cant provide any examples. You can check if your terminal can do this by calling
can_change_color(), which returns TRUE if the capability is there. If youre lucky enough to have such a
talented terminal, consult your systems man pages for more information.
5 User Input
The curses library itself offers only very simple input mechanisms. Pythons support adds a text-input widget that
makes up some of the lack.
The most common way to get input to a window is to use its getch() method. getch() pauses and waits for the
user to hit a key, displaying it if echo() has been called earlier. You can optionally specify a coordinate to which the
cursor should be moved before pausing.
Its possible to change this behavior with the method nodelay(). After nodelay(1), getch() for the window becomes non-blocking and returns curses.ERR (a value of -1) when no input is ready. Theres also a
halfdelay() function, which can be used to (in effect) set a timer on each getch(); if no input becomes available
within a specified delay (measured in tenths of a second), curses raises an exception.
The getch() method returns an integer; if its between 0 and 255, it represents the ASCII code of the key pressed.
Values greater than 255 are special keys such as Page Up, Home, or the cursor keys. You can compare the value
returned to constants such as curses.KEY_PPAGE, curses.KEY_HOME, or curses.KEY_LEFT. Usually the
main loop of your program will look something like this:
while 1:
c = stdscr.getch()
if c == ord('p'):
PrintDocument()
elif c == ord('q'):
break # Exit the while()
elif c == curses.KEY_HOME:
x = y = 0
The curses.ascii module supplies ASCII class membership functions that take either integer or 1-characterstring arguments; these may be useful in writing more readable tests for your command interpreters. It also supplies
conversion functions that take either integer or 1-character-string arguments and return the same type. For example,
curses.ascii.ctrl() returns the control character corresponding to its argument.
Theres also a method to retrieve an entire string, getstr(). It isnt used very often, because its functionality is
quite limited; the only editing keys available are the backspace key and the Enter key, which terminates the string. It
can optionally be limited to a fixed number of characters.
curses.echo()