diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2024-06-19 21:54:46 +0300 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-06-19 21:55:39 +0300 |
| commit | db89d4d3dd1440e18193d4ce98d207531c7720e0 (patch) | |
| tree | 9c4974f68ad38928d4bb0b53f219cc607cf9ea59 /src/layout/monitor.rs | |
| parent | 226273f6607ae83b17c06e0e094ace64ed7a4f7c (diff) | |
| download | niri-db89d4d3dd1440e18193d4ce98d207531c7720e0.tar.gz niri-db89d4d3dd1440e18193d4ce98d207531c7720e0.tar.bz2 niri-db89d4d3dd1440e18193d4ce98d207531c7720e0.zip | |
Implement vertical middle mouse gesture
Diffstat (limited to 'src/layout/monitor.rs')
| -rw-r--r-- | src/layout/monitor.rs | 43 |
1 files changed, 35 insertions, 8 deletions
diff --git a/src/layout/monitor.rs b/src/layout/monitor.rs index 911e0480..423b2ef9 100644 --- a/src/layout/monitor.rs +++ b/src/layout/monitor.rs @@ -54,10 +54,12 @@ pub enum WorkspaceSwitch { #[derive(Debug)] pub struct WorkspaceSwitchGesture { /// Index of the workspace where the gesture was started. - pub center_idx: usize, + center_idx: usize, /// Current, fractional workspace index. pub current_idx: f64, - pub tracker: SwipeTracker, + tracker: SwipeTracker, + /// Whether the gesture is controlled by the touchpad. + is_touchpad: bool, } pub type MonitorRenderElement<R> = @@ -973,7 +975,7 @@ impl<W: LayoutElement> Monitor<W> { } } - pub fn workspace_switch_gesture_begin(&mut self) { + pub fn workspace_switch_gesture_begin(&mut self, is_touchpad: bool) { let center_idx = self.active_workspace_idx; let current_idx = self .workspace_switch @@ -985,6 +987,7 @@ impl<W: LayoutElement> Monitor<W> { center_idx, current_idx, tracker: SwipeTracker::new(), + is_touchpad, }; self.workspace_switch = Some(WorkspaceSwitch::Gesture(gesture)); } @@ -993,14 +996,24 @@ impl<W: LayoutElement> Monitor<W> { &mut self, delta_y: f64, timestamp: Duration, + is_touchpad: bool, ) -> Option<bool> { let Some(WorkspaceSwitch::Gesture(gesture)) = &mut self.workspace_switch else { return None; }; + if gesture.is_touchpad != is_touchpad { + return None; + } + gesture.tracker.push(delta_y, timestamp); - let pos = gesture.tracker.pos() / WORKSPACE_GESTURE_MOVEMENT; + let total_height = if gesture.is_touchpad { + WORKSPACE_GESTURE_MOVEMENT + } else { + self.workspaces[0].view_size().h + }; + let pos = gesture.tracker.pos() / total_height; let min = gesture.center_idx.saturating_sub(1) as f64; let max = (gesture.center_idx + 1).min(self.workspaces.len() - 1) as f64; @@ -1015,20 +1028,34 @@ impl<W: LayoutElement> Monitor<W> { Some(true) } - pub fn workspace_switch_gesture_end(&mut self, cancelled: bool) -> bool { + pub fn workspace_switch_gesture_end( + &mut self, + cancelled: bool, + is_touchpad: Option<bool>, + ) -> bool { let Some(WorkspaceSwitch::Gesture(gesture)) = &mut self.workspace_switch else { return false; }; + if is_touchpad.map_or(false, |x| gesture.is_touchpad != x) { + return false; + } + if cancelled { self.workspace_switch = None; self.clean_up_workspaces(); return true; } - let mut velocity = gesture.tracker.velocity() / WORKSPACE_GESTURE_MOVEMENT; - let current_pos = gesture.tracker.pos() / WORKSPACE_GESTURE_MOVEMENT; - let pos = gesture.tracker.projected_end_pos() / WORKSPACE_GESTURE_MOVEMENT; + let total_height = if gesture.is_touchpad { + WORKSPACE_GESTURE_MOVEMENT + } else { + self.workspaces[0].view_size().h + }; + + let mut velocity = gesture.tracker.velocity() / total_height; + let current_pos = gesture.tracker.pos() / total_height; + let pos = gesture.tracker.projected_end_pos() / total_height; let min = gesture.center_idx.saturating_sub(1) as f64; let max = (gesture.center_idx + 1).min(self.workspaces.len() - 1) as f64; |
