turbo-vision 0.1.0

A Rust implementation of the classic Borland Turbo Vision text-mode UI framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Turbo Vision - Rust TUI Library
// Core modules
pub mod core;
pub mod terminal;
pub mod views;
pub mod app;

// Re-export commonly used types
pub mod prelude {
    pub use crate::core::geometry::{Point, Rect};
    pub use crate::core::event::{Event, EventType, KeyCode};
    pub use crate::core::command::*;
    pub use crate::views::View;
    pub use crate::app::Application;
}