gpui-base 0.6.5

Behavior, interaction, and infrastructure foundations for GPUI applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Questionnaire behavior: answers, validation, navigation, focus and shortcuts.
//!
//! The state machine lives here so an application can replace the visual
//! language without reimplementing it. `gpui-component` owns the skin.

mod control;
mod keyboard;
mod state;
mod types;

pub use control::QuestionnaireChoiceControl;
pub use keyboard::handle_key_down;
pub use state::*;
pub use types::*;