appcui/lib.rs
1//! # appcui
2//!
3//! `appcui` is a cross-platform TUI (**T**ext **U**ser **I**nterface / **T**erminal **U**ser **I**nterface) / CUI (**C**onsole **U**ser **I**nterface) framework designed to allow quick creation TUI/CUI based applications.
4//! AppCUI has a lot of out-of-the-box controls, and can also provide quick macros to create custom controls. The list of current supported controls are:
5//! * Accordion
6//! * Button
7//! * CheckBox
8//! * ComboBox
9//! * Canvas
10//! * DatePicker
11//! * DropDownList
12//! * HLine
13//! * HSplitter
14//! * ImageViewer
15//! * Label
16//! * ListBox
17//! * Menu
18//! * Markdown
19//! * Panel
20//! * ProgressBar
21//! * RadioButton
22//! * Tab
23//! * TextBox
24//! * VLine
25//! * Window
26//! and many more.
27
28pub mod dialogs;
29pub mod graphics;
30pub mod input;
31pub mod prelude;
32pub mod system;
33pub mod terminals;
34pub mod ui;
35mod utils;