TUIWIDGETS(1)
NAME
tuiwidgets — Terminal user inferface toolkit
SYNOPSIS
INFO
24 stars
5 forks
0 views
DESCRIPTION
Terminal user inferface toolkit
README
Tui Widgets
Documentation · Getting Started ·
High level terminal user interface library for modern terminals.
Documentation
The full documentation for Tui Widgets can be found here.
Building / Installing
See https://tuiwidgets.namepad.de/latest/building-tuiwidgets.html
Example
See Getting started or full header and full implementation.
Tui::ZWindow *win = new Tui::ZWindow("Hello World", this);
win->setGeometry({5, 3, 20, 10});
QObject::connect(new Tui::ZShortcut(Tui::ZKeySequence::forKey(Qt::Key_Escape),
this,
Qt::ApplicationShortcut),
&Tui::ZShortcut::activated,
this, &Main::quit);
Tui::ZButton *button = new Tui::ZButton(Tui::withMarkup, "<m>Q</m>uit", win);
QObject::connect(button, &Tui::ZButton::clicked, this, &Main::quit);
button->setGeometry({6, 7, 10, 1});
button->setFocus();
License
Tui Widgets is licensed under the Boost Software License 1.0
SEE ALSO
fzf(1)— A command-line fuzzy finder — interactive Unix filter for any liststarship(1)— The minimal, blazing-fast, and infinitely customizable prompt for any shellzoxide(1)— A smarter cd command — learns your habits and jumps instantlyblade-code(1)— AI-powered CLI coding agent with 20+ built-in tools, MCP support, and multi-model providersqrrs(1)— CLI QR code generator and reader written in rust
clihub3/4/2026TUIWIDGETS(1)