Christian Heimes | 2202f87 | 2008-02-06 14:31:34 +0000 | [diff] [blame] | 1 | .. _curses-howto: |
| 2 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 3 | ********************************** |
| 4 | Curses Programming with Python |
| 5 | ********************************** |
| 6 | |
| 7 | :Author: A.M. Kuchling, Eric S. Raymond |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 8 | :Release: 2.04 |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 9 | |
| 10 | |
| 11 | .. topic:: Abstract |
| 12 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 13 | This document describes how to use the :mod:`curses` extension |
| 14 | module to control text-mode displays. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 15 | |
| 16 | |
| 17 | What is curses? |
| 18 | =============== |
| 19 | |
| 20 | The curses library supplies a terminal-independent screen-painting and |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 21 | keyboard-handling facility for text-based terminals; such terminals |
| 22 | include VT100s, the Linux console, and the simulated terminal provided |
| 23 | by various programs. Display terminals support various control codes |
| 24 | to perform common operations such as moving the cursor, scrolling the |
| 25 | screen, and erasing areas. Different terminals use widely differing |
| 26 | codes, and often have their own minor quirks. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 27 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 28 | In a world of graphical displays, one might ask "why bother"? It's |
| 29 | true that character-cell display terminals are an obsolete technology, |
| 30 | but there are niches in which being able to do fancy things with them |
| 31 | are still valuable. One niche is on small-footprint or embedded |
| 32 | Unixes that don't run an X server. Another is tools such as OS |
| 33 | installers and kernel configurators that may have to run before any |
| 34 | graphical support is available. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 35 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 36 | The curses library provides fairly basic functionality, providing the |
| 37 | programmer with an abstraction of a display containing multiple |
| 38 | non-overlapping windows of text. The contents of a window can be |
| 39 | changed in various ways---adding text, erasing it, changing its |
| 40 | appearance---and the curses library will figure out what control codes |
| 41 | need to be sent to the terminal to produce the right output. curses |
| 42 | doesn't provide many user-interface concepts such as buttons, checkboxes, |
| 43 | or dialogs; if you need such features, consider a user interface library such as |
| 44 | `Urwid <https://pypi.python.org/pypi/urwid/>`_. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 45 | |
| 46 | The curses library was originally written for BSD Unix; the later System V |
| 47 | versions of Unix from AT&T added many enhancements and new functions. BSD curses |
| 48 | is no longer maintained, having been replaced by ncurses, which is an |
| 49 | open-source implementation of the AT&T interface. If you're using an |
| 50 | open-source Unix such as Linux or FreeBSD, your system almost certainly uses |
| 51 | ncurses. Since most current commercial Unix versions are based on System V |
| 52 | code, all the functions described here will probably be available. The older |
| 53 | versions of curses carried by some proprietary Unixes may not support |
| 54 | everything, though. |
| 55 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 56 | The Windows version of Python doesn't include the :mod:`curses` |
| 57 | module. A ported version called `UniCurses |
| 58 | <https://pypi.python.org/pypi/UniCurses>`_ is available. You could |
| 59 | also try `the Console module <http://effbot.org/zone/console-index.htm>`_ |
| 60 | written by Fredrik Lundh, which doesn't |
| 61 | use the same API as curses but provides cursor-addressable text output |
| 62 | and full support for mouse and keyboard input. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 63 | |
| 64 | |
| 65 | The Python curses module |
| 66 | ------------------------ |
| 67 | |
| 68 | Thy Python module is a fairly simple wrapper over the C functions provided by |
| 69 | curses; if you're already familiar with curses programming in C, it's really |
| 70 | easy to transfer that knowledge to Python. The biggest difference is that the |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 71 | Python interface makes things simpler by merging different C functions such as |
| 72 | :c:func:`addstr`, :c:func:`mvaddstr`, and :c:func:`mvwaddstr` into a single |
| 73 | :meth:`~curses.window.addstr` method. You'll see this covered in more |
| 74 | detail later. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 75 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 76 | This HOWTO is an introduction to writing text-mode programs with curses |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 77 | and Python. It doesn't attempt to be a complete guide to the curses API; for |
| 78 | that, see the Python library guide's section on ncurses, and the C manual pages |
| 79 | for ncurses. It will, however, give you the basic ideas. |
| 80 | |
| 81 | |
| 82 | Starting and ending a curses application |
| 83 | ======================================== |
| 84 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 85 | Before doing anything, curses must be initialized. This is done by |
| 86 | calling the :func:`~curses.initscr` function, which will determine the |
| 87 | terminal type, send any required setup codes to the terminal, and |
| 88 | create various internal data structures. If successful, |
| 89 | :func:`initscr` returns a window object representing the entire |
| 90 | screen; this is usually called ``stdscr`` after the name of the |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 91 | corresponding C variable. :: |
| 92 | |
| 93 | import curses |
| 94 | stdscr = curses.initscr() |
| 95 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 96 | Usually curses applications turn off automatic echoing of keys to the |
| 97 | screen, in order to be able to read keys and only display them under |
| 98 | certain circumstances. This requires calling the |
| 99 | :func:`~curses.noecho` function. :: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 100 | |
| 101 | curses.noecho() |
| 102 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 103 | Applications will also commonly need to react to keys instantly, |
| 104 | without requiring the Enter key to be pressed; this is called cbreak |
| 105 | mode, as opposed to the usual buffered input mode. :: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 106 | |
| 107 | curses.cbreak() |
| 108 | |
| 109 | Terminals usually return special keys, such as the cursor keys or navigation |
| 110 | keys such as Page Up and Home, as a multibyte escape sequence. While you could |
| 111 | write your application to expect such sequences and process them accordingly, |
| 112 | curses can do it for you, returning a special value such as |
| 113 | :const:`curses.KEY_LEFT`. To get curses to do the job, you'll have to enable |
| 114 | keypad mode. :: |
| 115 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 116 | stdscr.keypad(True) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 117 | |
| 118 | Terminating a curses application is much easier than starting one. You'll need |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 119 | to call:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 120 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 121 | curses.nocbreak() |
| 122 | stdscr.keypad(False) |
| 123 | curses.echo() |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 124 | |
| 125 | to reverse the curses-friendly terminal settings. Then call the :func:`endwin` |
| 126 | function to restore the terminal to its original operating mode. :: |
| 127 | |
| 128 | curses.endwin() |
| 129 | |
| 130 | A common problem when debugging a curses application is to get your terminal |
| 131 | messed up when the application dies without restoring the terminal to its |
| 132 | previous state. In Python this commonly happens when your code is buggy and |
Georg Brandl | 11ee31a | 2012-03-25 08:43:22 +0200 | [diff] [blame] | 133 | raises an uncaught exception. Keys are no longer echoed to the screen when |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 134 | you type them, for example, which makes using the shell difficult. |
| 135 | |
| 136 | In Python you can avoid these complications and make debugging much easier by |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 137 | importing the :func:`curses.wrapper` function and using it like this:: |
| 138 | |
| 139 | from curses import wrapper |
| 140 | |
| 141 | def main(stdscr): |
| 142 | # Clear screen |
| 143 | stdscr.clear() |
| 144 | |
| 145 | # This raises ZeroDivisionError when i == 10. |
Georg Brandl | dbab26a | 2013-10-06 10:04:21 +0200 | [diff] [blame] | 146 | for i in range(0, 11): |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 147 | v = i-10 |
| 148 | stdscr.addstr(i, 0, '10 divided by {} is {}'.format(v, 10/v)) |
| 149 | |
| 150 | stdscr.refresh() |
| 151 | stdscr.getkey() |
| 152 | |
| 153 | wrapper(main) |
| 154 | |
| 155 | The :func:`wrapper` function takes a callable object and does the |
| 156 | initializations described above, also initializing colors if color |
| 157 | support is present. :func:`wrapper` then runs your provided callable. |
| 158 | Once the callable returns, :func:`wrapper` will restore the original |
| 159 | state of the terminal. The callable is called inside a |
| 160 | :keyword:`try`...\ :keyword:`except` that catches exceptions, restores |
| 161 | the state of the terminal, and then re-raises the exception. Therefore |
| 162 | your terminal won't be left in a funny state on exception and you'll be |
| 163 | able to read the exception's message and traceback. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 164 | |
| 165 | |
| 166 | Windows and Pads |
| 167 | ================ |
| 168 | |
| 169 | Windows are the basic abstraction in curses. A window object represents a |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 170 | rectangular area of the screen, and supports methods to display text, |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 171 | erase it, allow the user to input strings, and so forth. |
| 172 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 173 | The ``stdscr`` object returned by the :func:`initscr` function is a |
| 174 | window object that covers the entire screen. Many programs may need |
| 175 | only this single window, but you might wish to divide the screen into |
| 176 | smaller windows, in order to redraw or clear them separately. The |
| 177 | :func:`~curses.newwin` function creates a new window of a given size, |
| 178 | returning the new window object. :: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 179 | |
Georg Brandl | dbab26a | 2013-10-06 10:04:21 +0200 | [diff] [blame] | 180 | begin_x = 20; begin_y = 7 |
| 181 | height = 5; width = 40 |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 182 | win = curses.newwin(height, width, begin_y, begin_x) |
| 183 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 184 | Note that the coordinate system used in curses is unusual. |
| 185 | Coordinates are always passed in the order *y,x*, and the top-left |
| 186 | corner of a window is coordinate (0,0). This breaks the normal |
| 187 | convention for handling coordinates where the *x* coordinate comes |
| 188 | first. This is an unfortunate difference from most other computer |
| 189 | applications, but it's been part of curses since it was first written, |
| 190 | and it's too late to change things now. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 191 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 192 | Your application can determine the size of the screen by using the |
| 193 | :data:`curses.LINES` and :data:`curses.COLS` variables to obtain the *y* and |
| 194 | *x* sizes. Legal coordinates will then extend from ``(0,0)`` to |
| 195 | ``(curses.LINES - 1, curses.COLS - 1)``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 196 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 197 | When you call a method to display or erase text, the effect doesn't |
| 198 | immediately show up on the display. Instead you must call the |
| 199 | :meth:`~curses.window.refresh` method of window objects to update the |
| 200 | screen. |
| 201 | |
| 202 | This is because curses was originally written with slow 300-baud |
| 203 | terminal connections in mind; with these terminals, minimizing the |
| 204 | time required to redraw the screen was very important. Instead curses |
| 205 | accumulates changes to the screen and displays them in the most |
| 206 | efficient manner when you call :meth:`refresh`. For example, if your |
| 207 | program displays some text in a window and then clears the window, |
| 208 | there's no need to send the original text because they're never |
| 209 | visible. |
| 210 | |
| 211 | In practice, explicitly telling curses to redraw a window doesn't |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 212 | really complicate programming with curses much. Most programs go into a flurry |
| 213 | of activity, and then pause waiting for a keypress or some other action on the |
| 214 | part of the user. All you have to do is to be sure that the screen has been |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 215 | redrawn before pausing to wait for user input, by first calling |
| 216 | ``stdscr.refresh()`` or the :meth:`refresh` method of some other relevant |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 217 | window. |
| 218 | |
| 219 | A pad is a special case of a window; it can be larger than the actual display |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 220 | screen, and only a portion of the pad displayed at a time. Creating a pad |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 221 | requires the pad's height and width, while refreshing a pad requires giving the |
| 222 | coordinates of the on-screen area where a subsection of the pad will be |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 223 | displayed. :: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 224 | |
| 225 | pad = curses.newpad(100, 100) |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 226 | # These loops fill the pad with letters; addch() is |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 227 | # explained in the next section |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 228 | for y in range(0, 99): |
| 229 | for x in range(0, 99): |
Georg Brandl | dbab26a | 2013-10-06 10:04:21 +0200 | [diff] [blame] | 230 | pad.addch(y,x, ord('a') + (x*x+y*y) % 26) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 231 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 232 | # Displays a section of the pad in the middle of the screen. |
| 233 | # (0,0) : coordinate of upper-left corner of pad area to display. |
| 234 | # (5,5) : coordinate of upper-left corner of window area to be filled |
| 235 | # with pad content. |
| 236 | # (20, 75) : coordinate of lower-right corner of window area to be |
| 237 | # : filled with pad content. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 238 | pad.refresh( 0,0, 5,5, 20,75) |
| 239 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 240 | The :meth:`refresh` call displays a section of the pad in the rectangle |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 241 | extending from coordinate (5,5) to coordinate (20,75) on the screen; the upper |
| 242 | left corner of the displayed section is coordinate (0,0) on the pad. Beyond |
| 243 | that difference, pads are exactly like ordinary windows and support the same |
| 244 | methods. |
| 245 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 246 | If you have multiple windows and pads on screen there is a more |
| 247 | efficient way to update the screen and prevent annoying screen flicker |
| 248 | as each part of the screen gets updated. :meth:`refresh` actually |
| 249 | does two things: |
| 250 | |
| 251 | 1) Calls the :meth:`~curses.window.noutrefresh` method of each window |
| 252 | to update an underlying data structure representing the desired |
| 253 | state of the screen. |
| 254 | 2) Calls the function :func:`~curses.doupdate` function to change the |
| 255 | physical screen to match the desired state recorded in the data structure. |
| 256 | |
| 257 | Instead you can call :meth:`noutrefresh` on a number of windows to |
| 258 | update the data structure, and then call :func:`doupdate` to update |
| 259 | the screen. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 260 | |
| 261 | |
| 262 | Displaying Text |
| 263 | =============== |
| 264 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 265 | From a C programmer's point of view, curses may sometimes look like a |
| 266 | twisty maze of functions, all subtly different. For example, |
| 267 | :c:func:`addstr` displays a string at the current cursor location in |
| 268 | the ``stdscr`` window, while :c:func:`mvaddstr` moves to a given y,x |
| 269 | coordinate first before displaying the string. :c:func:`waddstr` is just |
| 270 | like :func:`addstr`, but allows specifying a window to use instead of |
| 271 | using ``stdscr`` by default. :c:func:`mvwaddstr` allows specifying both |
| 272 | a window and a coordinate. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 273 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 274 | Fortunately the Python interface hides all these details. ``stdscr`` |
| 275 | is a window object like any other, and methods such as :meth:`addstr` |
| 276 | accept multiple argument forms. Usually there are four different |
| 277 | forms. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 278 | |
| 279 | +---------------------------------+-----------------------------------------------+ |
| 280 | | Form | Description | |
| 281 | +=================================+===============================================+ |
| 282 | | *str* or *ch* | Display the string *str* or character *ch* at | |
| 283 | | | the current position | |
| 284 | +---------------------------------+-----------------------------------------------+ |
| 285 | | *str* or *ch*, *attr* | Display the string *str* or character *ch*, | |
| 286 | | | using attribute *attr* at the current | |
| 287 | | | position | |
| 288 | +---------------------------------+-----------------------------------------------+ |
| 289 | | *y*, *x*, *str* or *ch* | Move to position *y,x* within the window, and | |
| 290 | | | display *str* or *ch* | |
| 291 | +---------------------------------+-----------------------------------------------+ |
| 292 | | *y*, *x*, *str* or *ch*, *attr* | Move to position *y,x* within the window, and | |
| 293 | | | display *str* or *ch*, using attribute *attr* | |
| 294 | +---------------------------------+-----------------------------------------------+ |
| 295 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 296 | Attributes allow displaying text in highlighted forms such as boldface, |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 297 | underline, reverse code, or in color. They'll be explained in more detail in |
| 298 | the next subsection. |
| 299 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 300 | |
| 301 | The :meth:`~curses.window.addstr` method takes a Python string or |
| 302 | bytestring as the value to be displayed. The contents of bytestrings |
| 303 | are sent to the terminal as-is. Strings are encoded to bytes using |
| 304 | the value of the window's :attr:`encoding` attribute; this defaults to |
| 305 | the default system encoding as returned by |
| 306 | :func:`locale.getpreferredencoding`. |
| 307 | |
| 308 | The :meth:`~curses.window.addch` methods take a character, which can be |
| 309 | either a string of length 1, a bytestring of length 1, or an integer. |
| 310 | |
| 311 | Constants are provided for extension characters; these constants are |
| 312 | integers greater than 255. For example, :const:`ACS_PLMINUS` is a +/- |
| 313 | symbol, and :const:`ACS_ULCORNER` is the upper left corner of a box |
| 314 | (handy for drawing borders). You can also use the appropriate Unicode |
| 315 | character. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 316 | |
| 317 | Windows remember where the cursor was left after the last operation, so if you |
| 318 | leave out the *y,x* coordinates, the string or character will be displayed |
| 319 | wherever the last operation left off. You can also move the cursor with the |
| 320 | ``move(y,x)`` method. Because some terminals always display a flashing cursor, |
| 321 | you may want to ensure that the cursor is positioned in some location where it |
| 322 | won't be distracting; it can be confusing to have the cursor blinking at some |
| 323 | apparently random location. |
| 324 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 325 | If your application doesn't need a blinking cursor at all, you can |
| 326 | call ``curs_set(False)`` to make it invisible. For compatibility |
| 327 | with older curses versions, there's a ``leaveok(bool)`` function |
| 328 | that's a synonym for :func:`curs_set`. When *bool* is true, the |
| 329 | curses library will attempt to suppress the flashing cursor, and you |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 330 | won't need to worry about leaving it in odd locations. |
| 331 | |
| 332 | |
| 333 | Attributes and Color |
| 334 | -------------------- |
| 335 | |
| 336 | Characters can be displayed in different ways. Status lines in a text-based |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 337 | application are commonly shown in reverse video, or a text viewer may need to |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 338 | highlight certain words. curses supports this by allowing you to specify an |
| 339 | attribute for each cell on the screen. |
| 340 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 341 | An attribute is an integer, each bit representing a different |
| 342 | attribute. You can try to display text with multiple attribute bits |
| 343 | set, but curses doesn't guarantee that all the possible combinations |
| 344 | are available, or that they're all visually distinct. That depends on |
| 345 | the ability of the terminal being used, so it's safest to stick to the |
| 346 | most commonly available attributes, listed here. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 347 | |
| 348 | +----------------------+--------------------------------------+ |
| 349 | | Attribute | Description | |
| 350 | +======================+======================================+ |
| 351 | | :const:`A_BLINK` | Blinking text | |
| 352 | +----------------------+--------------------------------------+ |
| 353 | | :const:`A_BOLD` | Extra bright or bold text | |
| 354 | +----------------------+--------------------------------------+ |
| 355 | | :const:`A_DIM` | Half bright text | |
| 356 | +----------------------+--------------------------------------+ |
| 357 | | :const:`A_REVERSE` | Reverse-video text | |
| 358 | +----------------------+--------------------------------------+ |
| 359 | | :const:`A_STANDOUT` | The best highlighting mode available | |
| 360 | +----------------------+--------------------------------------+ |
| 361 | | :const:`A_UNDERLINE` | Underlined text | |
| 362 | +----------------------+--------------------------------------+ |
| 363 | |
| 364 | So, to display a reverse-video status line on the top line of the screen, you |
| 365 | could code:: |
| 366 | |
| 367 | stdscr.addstr(0, 0, "Current mode: Typing mode", |
Georg Brandl | a1c6a1c | 2009-01-03 21:26:05 +0000 | [diff] [blame] | 368 | curses.A_REVERSE) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 369 | stdscr.refresh() |
| 370 | |
Georg Brandl | 11ee31a | 2012-03-25 08:43:22 +0200 | [diff] [blame] | 371 | The curses library also supports color on those terminals that provide it. The |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 372 | most common such terminal is probably the Linux console, followed by color |
| 373 | xterms. |
| 374 | |
| 375 | To use color, you must call the :func:`start_color` function soon after calling |
| 376 | :func:`initscr`, to initialize the default color set (the |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 377 | :func:`curses.wrapper` function does this automatically). Once that's |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 378 | done, the :func:`has_colors` function returns TRUE if the terminal in use can |
| 379 | actually display color. (Note: curses uses the American spelling 'color', |
| 380 | instead of the Canadian/British spelling 'colour'. If you're used to the |
| 381 | British spelling, you'll have to resign yourself to misspelling it for the sake |
| 382 | of these functions.) |
| 383 | |
| 384 | The curses library maintains a finite number of color pairs, containing a |
| 385 | foreground (or text) color and a background color. You can get the attribute |
| 386 | value corresponding to a color pair with the :func:`color_pair` function; this |
| 387 | can be bitwise-OR'ed with other attributes such as :const:`A_REVERSE`, but |
| 388 | again, such combinations are not guaranteed to work on all terminals. |
| 389 | |
| 390 | An example, which displays a line of text using color pair 1:: |
| 391 | |
Georg Brandl | dbab26a | 2013-10-06 10:04:21 +0200 | [diff] [blame] | 392 | stdscr.addstr("Pretty text", curses.color_pair(1)) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 393 | stdscr.refresh() |
| 394 | |
| 395 | As I said before, a color pair consists of a foreground and background color. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 396 | The ``init_pair(n, f, b)`` function changes the definition of color pair *n*, to |
| 397 | foreground color f and background color b. Color pair 0 is hard-wired to white |
| 398 | on black, and cannot be changed. |
| 399 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 400 | Colors are numbered, and :func:`start_color` initializes 8 basic |
| 401 | colors when it activates color mode. They are: 0:black, 1:red, |
| 402 | 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and 7:white. The :mod:`curses` |
| 403 | module defines named constants for each of these colors: |
| 404 | :const:`curses.COLOR_BLACK`, :const:`curses.COLOR_RED`, and so forth. |
| 405 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 406 | Let's put all this together. To change color 1 to red text on a white |
| 407 | background, you would call:: |
| 408 | |
| 409 | curses.init_pair(1, curses.COLOR_RED, curses.COLOR_WHITE) |
| 410 | |
| 411 | When you change a color pair, any text already displayed using that color pair |
| 412 | will change to the new colors. You can also display new text in this color |
| 413 | with:: |
| 414 | |
Georg Brandl | dbab26a | 2013-10-06 10:04:21 +0200 | [diff] [blame] | 415 | stdscr.addstr(0,0, "RED ALERT!", curses.color_pair(1)) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 416 | |
| 417 | Very fancy terminals can change the definitions of the actual colors to a given |
| 418 | RGB value. This lets you change color 1, which is usually red, to purple or |
| 419 | blue or any other color you like. Unfortunately, the Linux console doesn't |
| 420 | support this, so I'm unable to try it out, and can't provide any examples. You |
| 421 | can check if your terminal can do this by calling :func:`can_change_color`, |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 422 | which returns True if the capability is there. If you're lucky enough to have |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 423 | such a talented terminal, consult your system's man pages for more information. |
| 424 | |
| 425 | |
| 426 | User Input |
| 427 | ========== |
| 428 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 429 | The C curses library offers only very simple input mechanisms. Python's |
| 430 | :mod:`curses` module adds a basic text-input widget. (Other libraries |
| 431 | such as `Urwid <https://pypi.python.org/pypi/urwid/>`_ have more extensive |
| 432 | collections of widgets.) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 433 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 434 | There are two methods for getting input from a window: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 435 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 436 | * :meth:`~curses.window.getch` refreshes the screen and then waits for |
| 437 | the user to hit a key, displaying the key if :func:`echo` has been |
| 438 | called earlier. You can optionally specify a coordinate to which |
| 439 | the cursor should be moved before pausing. |
| 440 | |
| 441 | * :meth:`~curses.window.getkey` does the same thing but converts the |
| 442 | integer to a string. Individual characters are returned as |
| 443 | 1-character strings, and special keys such as function keys return |
| 444 | longer strings containing a key name such as ``KEY_UP`` or ``^G``. |
| 445 | |
| 446 | It's possible to not wait for the user using the |
| 447 | :meth:`~curses.window.nodelay` window method. After ``nodelay(True)``, |
| 448 | :meth:`getch` and :meth:`getkey` for the window become |
| 449 | non-blocking. To signal that no input is ready, :meth:`getch` returns |
| 450 | ``curses.ERR`` (a value of -1) and :meth:`getkey` raises an exception. |
| 451 | There's also a :func:`~curses.halfdelay` function, which can be used to (in |
| 452 | effect) set a timer on each :meth:`getch`; if no input becomes |
| 453 | available within a specified delay (measured in tenths of a second), |
| 454 | curses raises an exception. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 455 | |
| 456 | The :meth:`getch` method returns an integer; if it's between 0 and 255, it |
| 457 | represents the ASCII code of the key pressed. Values greater than 255 are |
| 458 | special keys such as Page Up, Home, or the cursor keys. You can compare the |
| 459 | value returned to constants such as :const:`curses.KEY_PPAGE`, |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 460 | :const:`curses.KEY_HOME`, or :const:`curses.KEY_LEFT`. The main loop of |
| 461 | your program may look something like this:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 462 | |
Collin Winter | 4633448 | 2007-09-10 00:49:57 +0000 | [diff] [blame] | 463 | while True: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 464 | c = stdscr.getch() |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 465 | if c == ord('p'): |
| 466 | PrintDocument() |
| 467 | elif c == ord('q'): |
| 468 | break # Exit the while loop |
| 469 | elif c == curses.KEY_HOME: |
| 470 | x = y = 0 |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 471 | |
| 472 | The :mod:`curses.ascii` module supplies ASCII class membership functions that |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 473 | take either integer or 1-character string arguments; these may be useful in |
| 474 | writing more readable tests for such loops. It also supplies |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 475 | conversion functions that take either integer or 1-character-string arguments |
| 476 | and return the same type. For example, :func:`curses.ascii.ctrl` returns the |
| 477 | control character corresponding to its argument. |
| 478 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 479 | There's also a method to retrieve an entire string, |
| 480 | :meth:`~curses.window.getstr`. It isn't used very often, because its |
| 481 | functionality is quite limited; the only editing keys available are |
| 482 | the backspace key and the Enter key, which terminates the string. It |
| 483 | can optionally be limited to a fixed number of characters. :: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 484 | |
| 485 | curses.echo() # Enable echoing of characters |
| 486 | |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 487 | # Get a 15-character string, with the cursor on the top line |
| 488 | s = stdscr.getstr(0,0, 15) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 489 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 490 | The :mod:`curses.textpad` module supplies a text box that supports an |
| 491 | Emacs-like set of keybindings. Various methods of the |
| 492 | :class:`~curses.textpad.Textbox` class support editing with input |
| 493 | validation and gathering the edit results either with or without |
| 494 | trailing spaces. Here's an example:: |
| 495 | |
| 496 | import curses |
| 497 | from curses.textpad import Textbox, rectangle |
| 498 | |
| 499 | def main(stdscr): |
| 500 | stdscr.addstr(0, 0, "Enter IM message: (hit Ctrl-G to send)") |
| 501 | |
| 502 | editwin = curses.newwin(5,30, 2,1) |
| 503 | rectangle(stdscr, 1,0, 1+5+1, 1+30+1) |
| 504 | stdscr.refresh() |
| 505 | |
| 506 | box = Textbox(editwin) |
| 507 | |
| 508 | # Let the user edit until Ctrl-G is struck. |
| 509 | box.edit() |
| 510 | |
| 511 | # Get resulting contents |
| 512 | message = box.gather() |
| 513 | |
| 514 | See the library documentation on :mod:`curses.textpad` for more details. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 515 | |
| 516 | |
| 517 | For More Information |
| 518 | ==================== |
| 519 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 520 | This HOWTO doesn't cover some advanced topics, such as reading the |
| 521 | contents of the screen or capturing mouse events from an xterm |
| 522 | instance, but the Python library page for the :mod:`curses` module is now |
| 523 | reasonably complete. You should browse it next. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 524 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 525 | If you're in doubt about the detailed behavior of the curses |
| 526 | functions, consult the manual pages for your curses implementation, |
| 527 | whether it's ncurses or a proprietary Unix vendor's. The manual pages |
| 528 | will document any quirks, and provide complete lists of all the |
| 529 | functions, attributes, and :const:`ACS_\*` characters available to |
| 530 | you. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 531 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 532 | Because the curses API is so large, some functions aren't supported in |
| 533 | the Python interface. Often this isn't because they're difficult to |
| 534 | implement, but because no one has needed them yet. Also, Python |
| 535 | doesn't yet support the menu library associated with ncurses. |
| 536 | Patches adding support for these would be welcome; see |
| 537 | `the Python Developer's Guide <http://docs.python.org/devguide/>`_ to |
| 538 | learn more about submitting patches to Python. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 539 | |
Andrew Kuchling | ddcb304 | 2013-05-09 20:05:20 -0400 | [diff] [blame] | 540 | * `Writing Programs with NCURSES <http://invisible-island.net/ncurses/ncurses-intro.html>`_: |
| 541 | a lengthy tutorial for C programmers. |
| 542 | * `The ncurses man page <http://www.linuxmanpages.com/man3/ncurses.3x.php>`_ |
| 543 | * `The ncurses FAQ <http://invisible-island.net/ncurses/ncurses.faq.html>`_ |
| 544 | * `"Use curses... don't swear" <http://www.youtube.com/watch?v=eN1eZtjLEnU>`_: |
| 545 | video of a PyCon 2013 talk on controlling terminals using curses or Urwid. |
| 546 | * `"Console Applications with Urwid" <http://www.pyvideo.org/video/1568/console-applications-with-urwid>`_: |
| 547 | video of a PyCon CA 2012 talk demonstrating some applications written using |
| 548 | Urwid. |