iced-yoda/core/src/mouse/button.rs

16 lines
274 B
Rust
Raw Normal View History

2019-08-29 01:35:37 +02:00
/// The button of a mouse.
2019-07-20 19:12:31 +02:00
#[derive(Debug, Hash, PartialEq, Eq, Clone, Copy)]
pub enum Button {
2019-08-29 01:35:37 +02:00
/// The left mouse button.
2019-07-20 19:12:31 +02:00
Left,
2019-08-29 01:35:37 +02:00
/// The right mouse button.
2019-07-20 19:12:31 +02:00
Right,
2019-08-29 01:35:37 +02:00
/// The middle (wheel) button.
2019-07-20 19:12:31 +02:00
Middle,
2019-08-29 01:35:37 +02:00
/// Some other button.
2019-07-20 19:12:31 +02:00
Other(u8),
}