ExTermbox v1.0.2 API Reference
Modules
Provides the low-level bindings to the termbox library. This module loads the
NIFs defined in c_src/
and thinly wraps the C interface.
Represents a termbox cell, a character at a position, along with the cell's background and foreground colors.
Defines constants from the termbox library. These can be used e.g. to set a formatting attributes or to identify keys passed in an event.
Represents a termbox event. This can be a key press, click, or window resize.
This module implements an event manager that notifies subscribers of keyboard, mouse and resize events received from the termbox API.
Represents a position on the screen by encoding a pair of cartesian
coordinates. The origin is the top-left-most character on the screen
(0, 0)
, while x and y increase from left to right and top to bottom,
respectively.