appcui 0.4.8

A feature-rich and cross-platform TUI/CUI framework for Rust, enabling modern terminal-based applications on Windows, Linux, and macOS. Includes built-in UI components like buttons, menus, list views, tree views, checkboxes, and more. Perfect for building fast and interactive CLI tools and text-based interfaces.
Documentation
//! User interface components and controls for AppCUI.
//!
//! This module provides a comprehensive set of UI controls and components for building
//! terminal-based user interfaces in the AppCUI framework. The UI module includes:
//!
//! # Core Components
//!
//! - [`Desktop`]: The main container for the application UI
//! - [`Window`]: Standard application windows
//! - [`Panel`]: Container for grouping related controls
//! - [`Layout`]: Management of control positioning and sizing
//!
//! # Input Controls
//!
//! - [`Button`]: Clickable button control
//! - [`TextField`]: Single-line text input
//! - [`TextArea`]: Multi-line text input and editing
//! - [`Password`]: Masked text input for secure data
//! - [`CheckBox`]: Boolean selection control
//! - [`RadioBox`]: Single selection from multiple options
//! - [`ThreeStateBox`]: Three-state checkbox (checked, unchecked, indeterminate)
//! - [`ComboBox`]: Editable dropdown list
//! - [`DropDownList`]: Non-editable dropdown list
//! - [`NumericSelector`]: Numeric value input and adjustment
//! - [`DatePicker`]: Date selection control
//! - [`KeySelector`]: Keyboard shortcut selector
//! - [`ColorPicker`]: Color selection control
//!
//! # Display Controls
//!
//! - [`Label`]: Static text display
//! - [`ProgressBar`]: Visual representation of progress
//! - [`ImageViewer`]: Display and manipulation of images
//! - [`Canvas`]: Custom drawing surface
//! - [`HLine`]/[`VLine`]: Horizontal and vertical separators
//!
//! # Navigation and Organization
//!
//! - [`Tab`]: Tabbed interface for organizing content
//! - [`Accordion`]: Collapsible sections of controls
//! - [`VSplitter`]/[`HSplitter`]: Resizable split views (vertical/horizontal)
//! - [`TreeView`]: Hierarchical data presentation
//! - [`ListBox`]: Simple list of selectable items
//! - [`ListView`]: Multi-column list with headers
//! - [`PathFinder`]: File system navigation control
//!
//! # Menus and Commands
//!
//! - [`Menu`]: Application menus
//! - [`CommandBar`]: Shortcut command interface
//!
//! # Example
//!
//! Creating a simple hello world window:
//!
//! ```rust, no_run
//! use appcui::prelude::*;
//!
//! fn main() -> Result<(), appcui::system::Error> {
//!     // Initialize the application
//!     let mut app = App::new().build()?;
//!     
//!     // Create a window with centered layout and specific size
//!     let mut win = Window::new(
//!         "First Window", 
//!         LayoutBuilder::new().alignment(Alignment::Center).width(30).height(9).build(), 
//!         window::Flags::Sizeable
//!     );
//!     
//!     // Add a label to the window
//!     win.add(Label::new("Hello World !", layout!("a:center,width:13,height:1")));
//!     
//!     // Add the window to the application and run
//!     app.add_window(win);
//!     app.run();
//!     
//!     Ok(())
//! }

pub mod layout;
pub mod common;


// controls
pub mod desktop;
pub mod checkbox;
pub mod radiobox;
pub mod threestatebox;
pub mod label;
pub mod panel;
pub mod password;
pub mod textfield;
pub mod richtextfield;
pub mod menu;
pub mod appbar;
pub mod command_bar;
pub mod window;
pub mod button;
pub mod tab;
pub mod accordion;
pub mod colorpicker;
pub mod charpicker;
pub mod canvas;
pub mod imageviewer;
pub mod keyselector;
pub mod components;
pub mod selector;
pub mod combobox;
pub mod dropdownlist;
pub mod numericselector;
pub mod vsplitter;
pub mod hsplitter;
pub mod hline;
pub mod vline;
pub mod datepicker;
pub mod listbox;
pub mod listview;
pub mod togglebutton;
pub mod markdown;
pub mod pathfinder;
pub mod treeview;
pub mod progressbar;
pub mod textarea;
pub mod graphview;
pub mod timepicker;

// re-export
pub use common::ControlBase;
pub use common::ContainerBase;
pub use desktop::Desktop;
pub use checkbox::CheckBox;
pub use radiobox::RadioBox;
pub use password::Password;
pub use textfield::TextField;
pub use richtextfield::RichTextField;
pub use threestatebox::ThreeStateBox;
pub use label::Label;
pub use panel::Panel;
pub use window::Window;
pub use window::ModalWindow;
pub use button::Button;
pub use tab::Tab;
pub use accordion::Accordion;
pub use canvas::Canvas;
pub use imageviewer::ImageViewer;
pub use keyselector::KeySelector;
pub use colorpicker::ColorPicker;
pub use charpicker::CharPicker;
pub use selector::Selector;
pub use combobox::ComboBox;
pub use dropdownlist::DropDownList;
pub use command_bar::CommandBar;
pub use layout::Layout;
pub use layout::LayoutBuilder;
pub use layout::Dock;
pub use layout::Alignment;
pub use layout::Pivot;
pub use numericselector::NumericSelector;
pub use vsplitter::VSplitter;
pub use hsplitter::HSplitter;
pub use hline::HLine;
pub use vline::VLine;
pub use datepicker::DatePicker;
pub use listbox::ListBox;
pub use listview::ListView;
pub use togglebutton::ToggleButton;
pub use markdown::Markdown;
pub use pathfinder::PathFinder;
pub use treeview::TreeView;
pub use progressbar::ProgressBar;
pub use textarea::TextArea;
pub use timepicker::TimePicker;
pub use menu::Menu;
pub use appbar::AppBar;
pub use graphview::GraphView;