2020-05-04 13:04:30 +00:00
|
|
|
use std::{process::Command, sync::atomic::Ordering};
|
2018-05-08 10:47:09 +00:00
|
|
|
|
2020-05-04 13:04:30 +00:00
|
|
|
use crate::AnvilState;
|
2018-05-08 10:47:09 +00:00
|
|
|
|
2018-05-08 17:39:38 +00:00
|
|
|
#[cfg(feature = "udev")]
|
2020-05-04 13:04:30 +00:00
|
|
|
use smithay::backend::session::Session;
|
2018-10-02 21:37:24 +00:00
|
|
|
use smithay::{
|
|
|
|
backend::input::{
|
2020-05-04 11:03:36 +00:00
|
|
|
self, Event, InputBackend, InputEvent, KeyState, KeyboardKeyEvent, PointerAxisEvent,
|
2018-10-02 21:37:24 +00:00
|
|
|
PointerButtonEvent, PointerMotionAbsoluteEvent, PointerMotionEvent,
|
|
|
|
},
|
2018-12-15 21:01:24 +00:00
|
|
|
reexports::wayland_server::protocol::wl_pointer,
|
2018-10-04 21:37:45 +00:00
|
|
|
wayland::{
|
2020-05-04 13:04:30 +00:00
|
|
|
seat::{keysyms as xkb, AxisFrame, Keysym, ModifiersState},
|
2018-10-04 21:37:45 +00:00
|
|
|
SERIAL_COUNTER as SCOUNTER,
|
|
|
|
},
|
2018-10-02 21:37:24 +00:00
|
|
|
};
|
2018-05-08 10:47:09 +00:00
|
|
|
|
2020-05-04 13:04:30 +00:00
|
|
|
impl AnvilState {
|
|
|
|
pub fn process_input_event<B: InputBackend>(&mut self, event: InputEvent<B>) {
|
2020-05-04 11:03:36 +00:00
|
|
|
match event {
|
|
|
|
InputEvent::Keyboard { event, .. } => self.on_keyboard_key::<B>(event),
|
|
|
|
InputEvent::PointerMotion { event, .. } => self.on_pointer_move::<B>(event),
|
|
|
|
InputEvent::PointerMotionAbsolute { event, .. } => self.on_pointer_move_absolute::<B>(event),
|
|
|
|
InputEvent::PointerButton { event, .. } => self.on_pointer_button::<B>(event),
|
|
|
|
InputEvent::PointerAxis { event, .. } => self.on_pointer_axis::<B>(event),
|
|
|
|
_ => {
|
|
|
|
// other events are not handled in anvil (yet)
|
|
|
|
}
|
|
|
|
}
|
2018-05-08 10:47:09 +00:00
|
|
|
}
|
|
|
|
|
2020-05-04 11:03:36 +00:00
|
|
|
fn on_keyboard_key<B: InputBackend>(&mut self, evt: B::KeyboardKeyEvent) {
|
2018-05-08 10:47:09 +00:00
|
|
|
let keycode = evt.key_code();
|
|
|
|
let state = evt.state();
|
|
|
|
debug!(self.log, "key"; "keycode" => keycode, "state" => format!("{:?}", state));
|
2018-10-04 21:37:45 +00:00
|
|
|
let serial = SCOUNTER.next_serial();
|
2018-05-08 10:47:09 +00:00
|
|
|
let log = &self.log;
|
|
|
|
let time = Event::time(&evt);
|
|
|
|
let mut action = KeyAction::None;
|
|
|
|
self.keyboard
|
|
|
|
.input(keycode, state, serial, time, |modifiers, keysym| {
|
|
|
|
debug!(log, "keysym";
|
|
|
|
"state" => format!("{:?}", state),
|
|
|
|
"mods" => format!("{:?}", modifiers),
|
|
|
|
"keysym" => ::xkbcommon::xkb::keysym_get_name(keysym)
|
|
|
|
);
|
2020-01-01 10:43:16 +00:00
|
|
|
action = process_keyboard_shortcut(*modifiers, keysym);
|
2018-05-08 10:47:09 +00:00
|
|
|
// forward to client only if action == KeyAction::Forward
|
|
|
|
// both for pressed and released, to avoid inconsistencies
|
|
|
|
if let KeyAction::Forward = action {
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if let KeyState::Released = state {
|
|
|
|
// only process special actions on key press, not release
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
match action {
|
|
|
|
KeyAction::Quit => {
|
|
|
|
info!(self.log, "Quitting.");
|
|
|
|
self.running.store(false, Ordering::SeqCst);
|
|
|
|
}
|
2018-11-24 13:15:14 +00:00
|
|
|
#[cfg(feature = "udev")]
|
2018-12-08 17:31:08 +00:00
|
|
|
KeyAction::VtSwitch(vt) => {
|
|
|
|
if let Some(ref mut session) = self.session {
|
|
|
|
info!(log, "Trying to switch to vt {}", vt);
|
|
|
|
if let Err(err) = session.change_vt(vt) {
|
|
|
|
error!(log, "Error switching to vt {}: {}", vt, err);
|
|
|
|
}
|
2018-05-08 10:47:09 +00:00
|
|
|
}
|
2018-12-08 17:31:08 +00:00
|
|
|
}
|
2018-05-08 10:47:09 +00:00
|
|
|
KeyAction::Run(cmd) => {
|
|
|
|
info!(self.log, "Starting program"; "cmd" => cmd.clone());
|
|
|
|
if let Err(e) = Command::new(&cmd).spawn() {
|
|
|
|
error!(log,
|
|
|
|
"Failed to start program";
|
|
|
|
"cmd" => cmd,
|
|
|
|
"err" => format!("{:?}", e)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-04 11:03:36 +00:00
|
|
|
fn on_pointer_move<B: InputBackend>(&mut self, evt: B::PointerMotionEvent) {
|
2018-05-08 10:47:09 +00:00
|
|
|
let (x, y) = (evt.delta_x(), evt.delta_y());
|
2018-10-04 21:37:45 +00:00
|
|
|
let serial = SCOUNTER.next_serial();
|
2018-05-08 10:47:09 +00:00
|
|
|
let mut location = self.pointer_location.borrow_mut();
|
|
|
|
location.0 += x as f64;
|
|
|
|
location.1 += y as f64;
|
|
|
|
// clamp to screen limits
|
|
|
|
// this event is never generated by winit so self.screen_size is relevant
|
|
|
|
location.0 = (location.0).max(0.0).min(self.screen_size.0 as f64);
|
|
|
|
location.1 = (location.1).max(0.0).min(self.screen_size.1 as f64);
|
2018-09-24 22:32:09 +00:00
|
|
|
let under = self
|
|
|
|
.window_map
|
2018-05-08 10:47:09 +00:00
|
|
|
.borrow()
|
|
|
|
.get_surface_under((location.0, location.1));
|
2018-10-04 15:40:03 +00:00
|
|
|
self.pointer.motion(*location, under, serial, evt.time());
|
2018-05-08 10:47:09 +00:00
|
|
|
}
|
|
|
|
|
2020-05-04 11:03:36 +00:00
|
|
|
fn on_pointer_move_absolute<B: InputBackend>(&mut self, evt: B::PointerMotionAbsoluteEvent) {
|
2018-05-08 10:47:09 +00:00
|
|
|
// different cases depending on the context:
|
|
|
|
let (x, y) = {
|
2018-05-08 17:39:38 +00:00
|
|
|
#[cfg(feature = "udev")]
|
2018-05-08 10:47:09 +00:00
|
|
|
{
|
|
|
|
if self.session.is_some() {
|
|
|
|
// we are started on a tty
|
|
|
|
let (ux, uy) = evt.position_transformed(self.screen_size);
|
|
|
|
(ux as f64, uy as f64)
|
|
|
|
} else {
|
|
|
|
// we are started in winit
|
|
|
|
evt.position()
|
|
|
|
}
|
|
|
|
}
|
2018-05-08 17:39:38 +00:00
|
|
|
#[cfg(not(feature = "udev"))]
|
2018-05-08 10:47:09 +00:00
|
|
|
{
|
|
|
|
evt.position()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
*self.pointer_location.borrow_mut() = (x, y);
|
2018-10-04 21:37:45 +00:00
|
|
|
let serial = SCOUNTER.next_serial();
|
2018-09-24 22:32:09 +00:00
|
|
|
let under = self.window_map.borrow().get_surface_under((x as f64, y as f64));
|
2018-10-04 15:40:03 +00:00
|
|
|
self.pointer.motion((x, y), under, serial, evt.time());
|
2018-05-08 10:47:09 +00:00
|
|
|
}
|
|
|
|
|
2020-05-04 11:03:36 +00:00
|
|
|
fn on_pointer_button<B: InputBackend>(&mut self, evt: B::PointerButtonEvent) {
|
2018-10-04 21:37:45 +00:00
|
|
|
let serial = SCOUNTER.next_serial();
|
2018-05-08 10:47:09 +00:00
|
|
|
let button = match evt.button() {
|
|
|
|
input::MouseButton::Left => 0x110,
|
|
|
|
input::MouseButton::Right => 0x111,
|
|
|
|
input::MouseButton::Middle => 0x112,
|
|
|
|
input::MouseButton::Other(b) => b as u32,
|
|
|
|
};
|
|
|
|
let state = match evt.state() {
|
|
|
|
input::MouseButtonState::Pressed => {
|
2018-10-04 15:40:03 +00:00
|
|
|
// change the keyboard focus unless the pointer is grabbed
|
|
|
|
if !self.pointer.is_grabbed() {
|
|
|
|
let under = self
|
|
|
|
.window_map
|
|
|
|
.borrow_mut()
|
|
|
|
.get_surface_and_bring_to_top(*self.pointer_location.borrow());
|
|
|
|
self.keyboard
|
|
|
|
.set_focus(under.as_ref().map(|&(ref s, _)| s), serial);
|
|
|
|
}
|
2018-05-08 10:47:09 +00:00
|
|
|
wl_pointer::ButtonState::Pressed
|
|
|
|
}
|
|
|
|
input::MouseButtonState::Released => wl_pointer::ButtonState::Released,
|
|
|
|
};
|
|
|
|
self.pointer.button(button, state, serial, evt.time());
|
|
|
|
}
|
|
|
|
|
2020-05-04 11:03:36 +00:00
|
|
|
fn on_pointer_axis<B: InputBackend>(&mut self, evt: B::PointerAxisEvent) {
|
2018-05-08 10:47:09 +00:00
|
|
|
let source = match evt.source() {
|
|
|
|
input::AxisSource::Continuous => wl_pointer::AxisSource::Continuous,
|
|
|
|
input::AxisSource::Finger => wl_pointer::AxisSource::Finger,
|
|
|
|
input::AxisSource::Wheel | input::AxisSource::WheelTilt => wl_pointer::AxisSource::Wheel,
|
|
|
|
};
|
2018-09-24 22:32:09 +00:00
|
|
|
let horizontal_amount = evt
|
2020-01-01 10:43:16 +00:00
|
|
|
.amount(input::Axis::Horizontal)
|
|
|
|
.unwrap_or_else(|| evt.amount_discrete(input::Axis::Horizontal).unwrap() * 3.0);
|
2018-09-24 22:32:09 +00:00
|
|
|
let vertical_amount = evt
|
2020-01-01 10:43:16 +00:00
|
|
|
.amount(input::Axis::Vertical)
|
|
|
|
.unwrap_or_else(|| evt.amount_discrete(input::Axis::Vertical).unwrap() * 3.0);
|
|
|
|
let horizontal_amount_discrete = evt.amount_discrete(input::Axis::Horizontal);
|
|
|
|
let vertical_amount_discrete = evt.amount_discrete(input::Axis::Vertical);
|
2018-05-08 10:47:09 +00:00
|
|
|
|
|
|
|
{
|
2018-10-04 15:40:03 +00:00
|
|
|
let mut frame = AxisFrame::new(evt.time()).source(source);
|
2018-05-08 10:47:09 +00:00
|
|
|
if horizontal_amount != 0.0 {
|
2018-10-04 15:40:03 +00:00
|
|
|
frame = frame.value(wl_pointer::Axis::HorizontalScroll, horizontal_amount);
|
2018-05-08 10:47:09 +00:00
|
|
|
if let Some(discrete) = horizontal_amount_discrete {
|
2018-10-04 15:40:03 +00:00
|
|
|
frame = frame.discrete(wl_pointer::Axis::HorizontalScroll, discrete as i32);
|
2018-05-08 10:47:09 +00:00
|
|
|
}
|
|
|
|
} else if source == wl_pointer::AxisSource::Finger {
|
2018-10-04 15:40:03 +00:00
|
|
|
frame = frame.stop(wl_pointer::Axis::HorizontalScroll);
|
2018-05-08 10:47:09 +00:00
|
|
|
}
|
|
|
|
if vertical_amount != 0.0 {
|
2018-10-04 15:40:03 +00:00
|
|
|
frame = frame.value(wl_pointer::Axis::VerticalScroll, vertical_amount);
|
2018-05-08 10:47:09 +00:00
|
|
|
if let Some(discrete) = vertical_amount_discrete {
|
2018-10-04 15:40:03 +00:00
|
|
|
frame = frame.discrete(wl_pointer::Axis::VerticalScroll, discrete as i32);
|
2018-05-08 10:47:09 +00:00
|
|
|
}
|
|
|
|
} else if source == wl_pointer::AxisSource::Finger {
|
2018-10-04 15:40:03 +00:00
|
|
|
frame = frame.stop(wl_pointer::Axis::VerticalScroll);
|
2018-05-08 10:47:09 +00:00
|
|
|
}
|
2018-10-04 15:40:03 +00:00
|
|
|
self.pointer.axis(frame);
|
2018-05-08 10:47:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Possible results of a keyboard action
|
|
|
|
enum KeyAction {
|
|
|
|
/// Quit the compositor
|
|
|
|
Quit,
|
|
|
|
/// Trigger a vt-switch
|
|
|
|
VtSwitch(i32),
|
|
|
|
/// run a command
|
|
|
|
Run(String),
|
|
|
|
/// Forward the key to the client
|
|
|
|
Forward,
|
|
|
|
/// Do nothing more
|
|
|
|
None,
|
|
|
|
}
|
|
|
|
|
2020-01-01 10:43:16 +00:00
|
|
|
fn process_keyboard_shortcut(modifiers: ModifiersState, keysym: Keysym) -> KeyAction {
|
2018-06-27 12:04:29 +00:00
|
|
|
if modifiers.ctrl && modifiers.alt && keysym == xkb::KEY_BackSpace
|
2018-09-24 22:32:09 +00:00
|
|
|
|| modifiers.logo && keysym == xkb::KEY_q
|
|
|
|
{
|
|
|
|
// ctrl+alt+backspace = quit
|
|
|
|
// logo + q = quit
|
|
|
|
KeyAction::Quit
|
2018-05-08 10:47:09 +00:00
|
|
|
} else if keysym >= xkb::KEY_XF86Switch_VT_1 && keysym <= xkb::KEY_XF86Switch_VT_12 {
|
|
|
|
// VTSwicth
|
|
|
|
KeyAction::VtSwitch((keysym - xkb::KEY_XF86Switch_VT_1 + 1) as i32)
|
|
|
|
} else if modifiers.logo && keysym == xkb::KEY_Return {
|
|
|
|
// run terminal
|
|
|
|
KeyAction::Run("weston-terminal".into())
|
|
|
|
} else {
|
|
|
|
KeyAction::Forward
|
|
|
|
}
|
|
|
|
}
|