1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-28 07:23:13 -04:00

Add helpers <pointerbutton>_down() in PointerState (#583)

This commit is contained in:
Linus Behrbohm
2021-08-15 16:41:33 +02:00
committed by GitHub
parent f4af22efb5
commit 6c18332424

View File

@@ -603,6 +603,24 @@ impl PointerState {
pub(crate) fn could_any_button_be_click(&self) -> bool {
self.could_be_click
}
/// Is the primary button currently down?
#[inline(always)]
pub fn primary_down(&self) -> bool {
self.button_down(PointerButton::Primary)
}
/// Is the secondary button currently down?
#[inline(always)]
pub fn secondary_down(&self) -> bool {
self.button_down(PointerButton::Secondary)
}
/// Is the middle button currently down?
#[inline(always)]
pub fn middle_down(&self) -> bool {
self.button_down(PointerButton::Middle)
}
}
impl InputState {