gui 0.1.0

A generic UI library/framework.
docs.rs failed to build gui-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: gui-0.6.2

gui

gui (short for generic user interface) is a crate providing basic user interface functionality. It strives to be as independent as possible of the underlying system architecture. That is, it is compatible with windowing as well as terminal based systems and it does not rely on the specifics of any GUI toolkit.

Part of this story means that it is not an out-of-the-box replacement for your favorite user interface toolkit (think: GTK+, Qt, wxWidgets to name popular ones, although these are naturally much more complex and provide way more functionality -- they are just among the most well known), but that it should be seen more as a building block, providing certain hooks and basic functionality typically seen in a UI. The infrastructure for dispatching events to widgets is an example. To make proper use of it, the functionality provided by this crate needs to be glued with the underlying system.

gui is used for exploring parts of the design space for user interface architecture using Rust. Design of UI systems in Rust is generally considered hard and to a large degree an unsolved problem, although there are various promising designs out there.

Status

The crate is under active development, and while its core has been reasonably stable for a while, changes should be anticipated in the future. In its current state mouse support of any kind is missing.

Given this current state, changes in API design are to be expected.

Example Usage

The notnow program is relying on the gui crate for the creation of its terminal based UI. The basic workings can be seen there.