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

22 lines
365 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
2023-12-15 13:15:44 +01:00
/// The back mouse button.
Back,
/// The forward mouse button.
Forward,
2019-08-29 01:35:37 +02:00
/// Some other button.
Other(u16),
2019-07-20 19:12:31 +02:00
}