diff options
| author | yzy-1 <50034950+yzy-1@users.noreply.github.com> | 2024-10-02 08:22:50 +0800 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-10-06 22:09:19 -0700 |
| commit | 42a9daec9db57e16541b6ef236b695b71bfb1199 (patch) | |
| tree | 0268b893aa75df533076287cdfac232870f00deb /src/input/mod.rs | |
| parent | 1ba2be392857b95ba346ee4770f824c42afe0681 (diff) | |
| download | niri-42a9daec9db57e16541b6ef236b695b71bfb1199.tar.gz niri-42a9daec9db57e16541b6ef236b695b71bfb1199.tar.bz2 niri-42a9daec9db57e16541b6ef236b695b71bfb1199.zip | |
Implement hide cursor on key press and on timeout
Diffstat (limited to 'src/input/mod.rs')
| -rw-r--r-- | src/input/mod.rs | 45 |
1 files changed, 43 insertions, 2 deletions
diff --git a/src/input/mod.rs b/src/input/mod.rs index 53781047..440fcb36 100644 --- a/src/input/mod.rs +++ b/src/input/mod.rs @@ -2,7 +2,7 @@ use std::any::Any; use std::cmp::min; use std::collections::hash_map::Entry; use std::collections::HashSet; -use std::time::Duration; +use std::time::{Duration, Instant}; use calloop::timer::{TimeoutAction, Timer}; use input::event::gesture::GestureEventCoordinates as _; @@ -87,6 +87,10 @@ impl State { } } + if should_update_cursor_timeout(&event) { + self.niri.last_cursor_movement = Instant::now(); + } + let hide_hotkey_overlay = self.niri.hotkey_overlay.is_open() && should_hide_hotkey_overlay(&event); @@ -307,6 +311,10 @@ impl State { } } + if pressed { + self.hide_cursor_if_needed(); + } + let Some(Some(bind)) = self.niri.seat.get_keyboard().unwrap().input( self, event.key_code(), @@ -349,7 +357,10 @@ impl State { self.handle_bind(bind.clone()); - // Start the key repeat timer if necessary. + self.start_key_repeat(bind); + } + + fn start_key_repeat(&mut self, bind: Bind) { if !bind.repeat { return; } @@ -383,6 +394,22 @@ impl State { self.niri.bind_repeat_timer = Some(token); } + fn hide_cursor_if_needed(&mut self) { + if !self.niri.config.borrow().cursor.hide_on_key_press { + return; + } + + // niri keeps this set only while actively using a tablet, which means the cursor position + // is likely to change almost immediately, causing pointer_hidden to just flicker back and + // forth. + if self.niri.tablet_cursor_location.is_some() { + return; + } + + self.niri.pointer_hidden = true; + self.niri.queue_redraw_all(); + } + pub fn handle_bind(&mut self, bind: Bind) { let Some(cooldown) = bind.cooldown else { self.do_action(bind.action, bind.allow_when_locked); @@ -2534,6 +2561,20 @@ fn should_notify_activity<I: InputBackend>(event: &InputEvent<I>) -> bool { ) } +fn should_update_cursor_timeout<I: InputBackend>(event: &InputEvent<I>) -> bool { + matches!( + event, + InputEvent::PointerAxis { .. } + | InputEvent::PointerButton { .. } + | InputEvent::PointerMotion { .. } + | InputEvent::PointerMotionAbsolute { .. } + | InputEvent::TabletToolAxis { .. } + | InputEvent::TabletToolButton { .. } + | InputEvent::TabletToolProximity { .. } + | InputEvent::TabletToolTip { .. } + ) +} + fn allowed_when_locked(action: &Action) -> bool { matches!( action, |
