iced-yoda/native/src/input/keyboard/modifiers_state.rs
2020-03-10 06:46:58 +01:00

15 lines
406 B
Rust

/// The current state of the keyboard modifiers.
#[derive(Debug, Clone, Copy, PartialEq, Default)]
pub struct ModifiersState {
/// Whether a shift key is pressed
pub shift: bool,
/// Whether a control key is pressed
pub control: bool,
/// Whether an alt key is pressed
pub alt: bool,
/// Whether a logo key is pressed (e.g. windows key, command key...)
pub logo: bool,
}