Cursive

crates.io Build Status MIT licensed Gitter chat

Cursive is a TUI (Text User Interface) library for rust. It is currently based on jeaye's ncurses-rs, but other backends are available.

It allows you to build rich user interfaces for terminal applications.

Documentation

It is designed to be safe and easy to use:

toml [dependencies] cursive = "0.5"

Or to use the latest git version:

toml [dependencies] cursive = { git = "https://github.com/gyscos/Cursive" }

(You will also need ncurses installed - if it isn't already, check in your package manager. Make sure you install the ncursesw version if available, for UTF-8 support.)

```rust,no_run extern crate cursive;

use cursive::Cursive; use cursive::views::{Dialog, TextView};

fn main() { // Creates the cursive root - required for every application. let mut siv = Cursive::new();

// Creates a dialog with a single "Quit" button
siv.add_layer(Dialog::around(TextView::new("Hello Dialog!"))
                     .title("Cursive")
                     .button("Quit", |s| s.quit()));

// Starts the event loop.
siv.run();

} ```

Cursive dialog example

Check out the other examples to get these results, and more:

edit.rs example lorem.rs example menubar.rs example select.rs example list_view.rs example theme.rs example

(Colors may depend on your terminal configuration.)

Tutorials

These tutorials may help you get started with cursive:

Third-party views

Here are a few crates implementing new views for you to use:

Goals

Non-goals

Compatibility

First off, terminals are messy. A small set of features is standard, but beyond that, almost every terminal has its own implementation.

Output

Input

Contributing