displayLayout and Rendering TUI library |
git clone git://git.dimitrijedobrota.com/display.git |
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING | |
display
Simple TUI library
Description
This project is my latest attempt to create a modular end extensible TUI library that takes care of the positioning of the elements on the screen and their nesting.
As of know it has all of the necessary features for me to start building some staff with it, and figure out the rest as I go.
Dependencies
- CMake 3.14 or latter
- Compiler with C++20 support (tested on clang version 19.1.7)
Building and installing
See the BUILDING
document.
Usage
Please reference example folder for relevant usage examples.
The library provides the following classes:
Element
: Base class that takes care of the absolute positioningDisplay
: Main entry point to the terminal screenLayout
: Container for one elementLayoutMulti
: Container for multiple elementsLayoutRigid
: Divide a screen into custom rectanglesWindow
: Bass class for drawing to the screenWindowPivot
: Window that can be placed in the corners or center of the layout
Version History
0.2
- Proof of concept class hierarchy
- Chained rendering and input propagation
- Responsive redrawing
0.1
- Initial development phase
Contributing
See the CONTRIBUTING
document.
License
This project is licensed under the MIT License - see the LICENSE
file for details