2017-04-14 22:23:16 +00:00
|
|
|
//! Implementation of input backend trait for types provided by `libinput`
|
|
|
|
|
2017-04-18 19:57:53 +00:00
|
|
|
use backend::{SeatInternal, TouchSlotInternal};
|
2017-04-23 17:55:43 +00:00
|
|
|
use backend::input as backend;
|
|
|
|
use input as libinput;
|
|
|
|
use input::event;
|
2017-04-14 22:23:16 +00:00
|
|
|
|
|
|
|
use std::io::Error as IoError;
|
2017-04-15 17:19:09 +00:00
|
|
|
use std::collections::hash_map::{DefaultHasher, Entry, HashMap};
|
2017-04-14 22:23:16 +00:00
|
|
|
use std::hash::{Hash, Hasher};
|
|
|
|
|
2017-04-15 19:46:27 +00:00
|
|
|
struct SeatDesc {
|
2017-04-23 17:55:43 +00:00
|
|
|
seat: backend::Seat,
|
2017-04-15 19:46:27 +00:00
|
|
|
pointer: (u32, u32),
|
|
|
|
}
|
|
|
|
|
2017-04-15 20:53:09 +00:00
|
|
|
/// Libinput based `InputBackend`.
|
|
|
|
///
|
|
|
|
/// Tracks input of all devices given manually or via a udev seat to a provided libinput
|
|
|
|
/// context.
|
2017-04-14 22:23:16 +00:00
|
|
|
pub struct LibinputInputBackend {
|
2017-04-23 17:55:43 +00:00
|
|
|
context: libinput::Libinput,
|
|
|
|
devices: Vec<libinput::Device>,
|
|
|
|
seats: HashMap<libinput::Seat, SeatDesc>,
|
|
|
|
handler: Option<Box<backend::InputHandler<LibinputInputBackend> + 'static>>,
|
2017-04-15 18:17:26 +00:00
|
|
|
logger: ::slog::Logger,
|
2017-04-14 22:23:16 +00:00
|
|
|
}
|
|
|
|
|
2017-04-15 20:34:28 +00:00
|
|
|
impl LibinputInputBackend {
|
2017-04-15 20:53:09 +00:00
|
|
|
/// Initialize a new `LibinputInputBackend` from a given already initialized libinput
|
|
|
|
/// context.
|
2017-04-23 17:55:43 +00:00
|
|
|
pub fn new<L>(context: libinput::Libinput, logger: L) -> Self
|
2017-04-15 20:34:28 +00:00
|
|
|
where L: Into<Option<::slog::Logger>>
|
|
|
|
{
|
|
|
|
let log = ::slog_or_stdlog(logger).new(o!("smithay_module" => "backend_libinput"));
|
|
|
|
info!(log, "Initializing a libinput backend");
|
|
|
|
LibinputInputBackend {
|
|
|
|
context: context,
|
|
|
|
devices: Vec::new(),
|
|
|
|
seats: HashMap::new(),
|
|
|
|
handler: None,
|
|
|
|
logger: log,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-23 17:55:43 +00:00
|
|
|
impl backend::Event for event::keyboard::KeyboardKeyEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
self.time()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl backend::KeyboardKeyEvent for event::keyboard::KeyboardKeyEvent {
|
|
|
|
fn key_code(&self) -> u32 {
|
|
|
|
use ::input::event::keyboard::KeyboardEventTrait;
|
|
|
|
self.key()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn state(&self) -> backend::KeyState {
|
|
|
|
use ::input::event::keyboard::KeyboardEventTrait;
|
|
|
|
self.key_state().into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn count(&self) -> u32 {
|
|
|
|
self.seat_key_count()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct PointerAxisEvent {
|
|
|
|
axis: event::pointer::Axis,
|
|
|
|
event: event::pointer::PointerAxisEvent,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> backend::Event for PointerAxisEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
use ::input::event::pointer::PointerEventTrait;
|
|
|
|
self.event.time()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> backend::PointerAxisEvent for PointerAxisEvent {
|
|
|
|
fn axis(&self) -> backend::Axis {
|
|
|
|
self.axis.into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn source(&self) -> backend::AxisSource {
|
|
|
|
self.event.axis_source().into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn amount(&self) -> f64 {
|
|
|
|
match self.source() {
|
|
|
|
backend::AxisSource::Finger | backend::AxisSource::Continuous =>
|
|
|
|
self.event.axis_value(self.axis),
|
|
|
|
backend::AxisSource::Wheel | backend::AxisSource::WheelTilt =>
|
|
|
|
self.event.axis_value_discrete(self.axis).unwrap(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl backend::Event for event::pointer::PointerButtonEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
self.time()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl backend::PointerButtonEvent for event::pointer::PointerButtonEvent {
|
|
|
|
fn button(&self) -> backend::MouseButton {
|
|
|
|
match self.button() {
|
|
|
|
0x110 => backend::MouseButton::Left,
|
|
|
|
0x111 => backend::MouseButton::Right,
|
|
|
|
0x112 => backend::MouseButton::Middle,
|
|
|
|
x => backend::MouseButton::Other(x as u8),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn state(&self) -> backend::MouseButtonState {
|
|
|
|
self.state().into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl backend::Event for event::pointer::PointerMotionEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
self.time()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl backend::PointerMotionEvent for event::pointer::PointerMotionEvent {
|
|
|
|
fn delta_x(&self) -> u32 {
|
|
|
|
self.dx() as u32
|
|
|
|
}
|
|
|
|
fn delta_y(&self) -> u32 {
|
|
|
|
self.dy() as u32
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl backend::Event for event::pointer::PointerMotionAbsoluteEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
self.time()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl backend::PointerMotionAbsoluteEvent for event::pointer::PointerMotionAbsoluteEvent {
|
|
|
|
fn x(&self) -> f64 {
|
|
|
|
self.absolute_x()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn y(&self) -> f64 {
|
|
|
|
self.absolute_y()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn x_transformed(&self, width: u32) -> u32 {
|
|
|
|
self.absolute_x_transformed(width) as u32
|
|
|
|
}
|
|
|
|
|
|
|
|
fn y_transformed(&self, height: u32) -> u32 {
|
|
|
|
self.absolute_y_transformed(height) as u32
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl backend::Event for event::touch::TouchDownEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
self.time()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl backend::TouchDownEvent for event::touch::TouchDownEvent {
|
|
|
|
fn slot(&self) -> Option<backend::TouchSlot> {
|
|
|
|
self.slot().into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn x(&self) -> f64 {
|
|
|
|
self.x()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn y(&self) -> f64 {
|
|
|
|
self.y()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn x_transformed(&self, width: u32) -> u32 {
|
|
|
|
self.x_transformed(width) as u32
|
|
|
|
}
|
|
|
|
|
|
|
|
fn y_transformed(&self, height: u32) -> u32 {
|
|
|
|
self.y_transformed(height) as u32
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl backend::Event for event::touch::TouchMotionEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
self.time()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl backend::TouchMotionEvent for event::touch::TouchMotionEvent {
|
|
|
|
fn slot(&self) -> Option<backend::TouchSlot> {
|
|
|
|
self.slot().into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn x(&self) -> f64 {
|
|
|
|
self.x()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn y(&self) -> f64 {
|
|
|
|
self.y()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn x_transformed(&self, width: u32) -> u32 {
|
|
|
|
self.x_transformed(width) as u32
|
|
|
|
}
|
|
|
|
|
|
|
|
fn y_transformed(&self, height: u32) -> u32 {
|
|
|
|
self.y_transformed(height) as u32
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl backend::Event for event::touch::TouchUpEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
self.time()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl backend::TouchUpEvent for event::touch::TouchUpEvent {
|
|
|
|
fn slot(&self) -> Option<backend::TouchSlot> {
|
|
|
|
self.slot().into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl backend::Event for event::touch::TouchCancelEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
self.time()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl backend::TouchCancelEvent for event::touch::TouchCancelEvent {
|
|
|
|
fn slot(&self) -> Option<backend::TouchSlot> {
|
|
|
|
self.slot().into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl backend::Event for event::touch::TouchFrameEvent {
|
|
|
|
fn time(&self) -> u32 {
|
|
|
|
self.time()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl backend::TouchFrameEvent for event::touch::TouchFrameEvent {}
|
|
|
|
|
|
|
|
impl backend::InputBackend for LibinputInputBackend {
|
|
|
|
type InputConfig = [libinput::Device];
|
2017-04-14 22:23:16 +00:00
|
|
|
type EventError = IoError;
|
|
|
|
|
2017-04-23 17:55:43 +00:00
|
|
|
type KeyboardKeyEvent = event::keyboard::KeyboardKeyEvent;
|
|
|
|
type PointerAxisEvent = PointerAxisEvent;
|
|
|
|
type PointerButtonEvent = event::pointer::PointerButtonEvent;
|
|
|
|
type PointerMotionEvent = event::pointer::PointerMotionEvent;
|
|
|
|
type PointerMotionAbsoluteEvent = event::pointer::PointerMotionAbsoluteEvent;
|
|
|
|
type TouchDownEvent = event::touch::TouchDownEvent;
|
|
|
|
type TouchUpEvent = event::touch::TouchUpEvent;
|
|
|
|
type TouchMotionEvent = event::touch::TouchMotionEvent;
|
|
|
|
type TouchCancelEvent = event::touch::TouchCancelEvent;
|
|
|
|
type TouchFrameEvent = event::touch::TouchFrameEvent;
|
|
|
|
|
|
|
|
fn set_handler<H: backend::InputHandler<Self> + 'static>(&mut self, mut handler: H) {
|
2017-04-14 22:23:16 +00:00
|
|
|
if self.handler.is_some() {
|
|
|
|
self.clear_handler();
|
|
|
|
}
|
2017-04-15 18:17:26 +00:00
|
|
|
info!(self.logger, "New input handler set.");
|
2017-04-15 19:46:27 +00:00
|
|
|
for desc in self.seats.values() {
|
|
|
|
trace!(self.logger, "Calling on_seat_created with {:?}", desc.seat);
|
|
|
|
handler.on_seat_created(&desc.seat);
|
2017-04-14 22:23:16 +00:00
|
|
|
}
|
|
|
|
self.handler = Some(Box::new(handler));
|
|
|
|
}
|
|
|
|
|
2017-04-23 17:55:43 +00:00
|
|
|
fn get_handler(&mut self) -> Option<&mut backend::InputHandler<Self>> {
|
2017-04-14 22:23:16 +00:00
|
|
|
self.handler
|
|
|
|
.as_mut()
|
2017-04-23 17:55:43 +00:00
|
|
|
.map(|handler| handler as &mut backend::InputHandler<Self>)
|
2017-04-14 22:23:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn clear_handler(&mut self) {
|
|
|
|
if let Some(mut handler) = self.handler.take() {
|
2017-04-15 19:46:27 +00:00
|
|
|
for desc in self.seats.values() {
|
|
|
|
trace!(self.logger, "Calling on_seat_destroyed with {:?}", desc.seat);
|
|
|
|
handler.on_seat_destroyed(&desc.seat);
|
2017-04-14 22:23:16 +00:00
|
|
|
}
|
2017-04-15 18:17:26 +00:00
|
|
|
info!(self.logger, "Removing input handler");
|
2017-04-14 22:23:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn input_config(&mut self) -> &mut Self::InputConfig {
|
|
|
|
&mut self.devices
|
|
|
|
}
|
|
|
|
|
|
|
|
fn dispatch_new_events(&mut self) -> Result<(), IoError> {
|
2017-04-23 17:55:43 +00:00
|
|
|
use input::event::EventTrait;
|
|
|
|
|
2017-04-14 22:23:16 +00:00
|
|
|
self.context.dispatch()?;
|
2017-04-23 17:55:43 +00:00
|
|
|
|
2017-04-14 22:23:16 +00:00
|
|
|
for event in &mut self.context {
|
|
|
|
match event {
|
2017-04-23 17:55:43 +00:00
|
|
|
libinput::Event::Device(device_event) => {
|
2017-04-14 22:23:16 +00:00
|
|
|
use input::event::device::*;
|
|
|
|
match device_event {
|
|
|
|
DeviceEvent::Added(device_added_event) => {
|
2017-04-23 17:55:43 +00:00
|
|
|
let added = device_added_event.device();
|
2017-04-14 22:23:16 +00:00
|
|
|
|
2017-04-23 17:55:43 +00:00
|
|
|
let new_caps = backend::SeatCapabilities {
|
|
|
|
pointer: added.has_capability(libinput::DeviceCapability::Pointer),
|
|
|
|
keyboard: added.has_capability(libinput::DeviceCapability::Keyboard),
|
|
|
|
touch: added.has_capability(libinput::DeviceCapability::Touch),
|
2017-04-14 22:23:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let device_seat = added.seat();
|
|
|
|
self.devices.push(added);
|
|
|
|
|
2017-04-15 17:19:09 +00:00
|
|
|
match self.seats.entry(device_seat) {
|
|
|
|
Entry::Occupied(mut seat_entry) => {
|
|
|
|
let old_seat = seat_entry.get_mut();
|
|
|
|
{
|
2017-04-15 19:46:27 +00:00
|
|
|
let caps = old_seat.seat.capabilities_mut();
|
2017-04-15 17:19:09 +00:00
|
|
|
caps.pointer = new_caps.pointer || caps.pointer;
|
|
|
|
caps.keyboard = new_caps.keyboard || caps.keyboard;
|
|
|
|
caps.touch = new_caps.touch || caps.touch;
|
|
|
|
}
|
|
|
|
if let Some(ref mut handler) = self.handler {
|
2017-04-15 19:46:27 +00:00
|
|
|
trace!(self.logger, "Calling on_seat_changed with {:?}", old_seat.seat);
|
|
|
|
handler.on_seat_changed(&old_seat.seat);
|
2017-04-15 17:19:09 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
Entry::Vacant(seat_entry) => {
|
|
|
|
let mut hasher = DefaultHasher::default();
|
|
|
|
seat_entry.key().hash(&mut hasher);
|
2017-04-15 19:46:27 +00:00
|
|
|
let desc = seat_entry.insert(SeatDesc {
|
2017-04-23 17:55:43 +00:00
|
|
|
seat: backend::Seat::new(hasher.finish(), new_caps),
|
2017-04-18 19:57:53 +00:00
|
|
|
pointer: (0, 0), //FIXME: We should not assume a position. Some backends might force a position on us.
|
2017-04-15 19:46:27 +00:00
|
|
|
});
|
2017-04-15 17:19:09 +00:00
|
|
|
if let Some(ref mut handler) = self.handler {
|
2017-04-15 19:46:27 +00:00
|
|
|
trace!(self.logger, "Calling on_seat_created with {:?}", desc.seat);
|
|
|
|
handler.on_seat_created(&desc.seat);
|
2017-04-15 17:19:09 +00:00
|
|
|
}
|
2017-04-14 22:23:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
DeviceEvent::Removed(device_removed_event) => {
|
2017-04-23 17:55:43 +00:00
|
|
|
let removed = device_removed_event.device();
|
2017-04-14 22:23:16 +00:00
|
|
|
|
|
|
|
// remove device
|
|
|
|
self.devices.retain(|dev| *dev == removed);
|
|
|
|
|
|
|
|
let device_seat = removed.seat();
|
|
|
|
|
|
|
|
// update capabilities, so they appear correctly on `on_seat_changed` and `on_seat_destroyed`.
|
2017-04-15 19:46:27 +00:00
|
|
|
if let Some(desc) = self.seats.get_mut(&device_seat) {
|
|
|
|
let caps = desc.seat.capabilities_mut();
|
2017-04-23 17:55:43 +00:00
|
|
|
caps.pointer = self.devices.iter().filter(|x| x.seat() == device_seat).any(|x| x.has_capability(libinput::DeviceCapability::Pointer));
|
|
|
|
caps.keyboard = self.devices.iter().filter(|x| x.seat() == device_seat).any(|x| x.has_capability(libinput::DeviceCapability::Keyboard));
|
|
|
|
caps.touch = self.devices.iter().filter(|x| x.seat() == device_seat).any(|x| x.has_capability(libinput::DeviceCapability::Touch));
|
2017-04-14 22:23:16 +00:00
|
|
|
} else {
|
|
|
|
panic!("Seat changed that was never created")
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if the seat has any other devices
|
|
|
|
if !self.devices.iter().any(|x| x.seat() == device_seat) {
|
|
|
|
// it has not, lets destroy it
|
2017-04-15 19:46:27 +00:00
|
|
|
if let Some(desc) = self.seats.remove(&device_seat) {
|
2017-04-14 22:23:16 +00:00
|
|
|
if let Some(ref mut handler) = self.handler {
|
2017-04-15 19:46:27 +00:00
|
|
|
trace!(self.logger, "Calling on_seat_destroyed with {:?}", desc.seat);
|
|
|
|
handler.on_seat_destroyed(&desc.seat);
|
2017-04-14 22:23:16 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
panic!("Seat destroyed that was never created");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// it has, notify about updates
|
|
|
|
if let Some(ref mut handler) = self.handler {
|
2017-04-15 19:46:27 +00:00
|
|
|
let desc = self.seats.get(&device_seat).unwrap();
|
|
|
|
trace!(self.logger, "Calling on_seat_changed with {:?}", desc.seat);
|
|
|
|
handler.on_seat_changed(&desc.seat);
|
2017-04-14 22:23:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if let Some(ref mut handler) = self.handler {
|
|
|
|
handler.on_input_config_changed(&mut self.devices);
|
|
|
|
}
|
|
|
|
},
|
2017-04-23 17:55:43 +00:00
|
|
|
libinput::Event::Touch(touch_event) => {
|
2017-04-15 20:20:11 +00:00
|
|
|
use ::input::event::touch::*;
|
|
|
|
if let Some(ref mut handler) = self.handler {
|
|
|
|
let device_seat = touch_event.device().seat();
|
2017-04-23 17:55:43 +00:00
|
|
|
let seat = &self.seats.get(&device_seat).expect("Recieved key event of non existing Seat").seat;
|
|
|
|
match touch_event {
|
|
|
|
TouchEvent::Down(down_event) => {
|
|
|
|
trace!(self.logger, "Calling on_touch_down with {:?}", down_event);
|
|
|
|
handler.on_touch_down(seat, down_event)
|
|
|
|
},
|
|
|
|
TouchEvent::Motion(motion_event) => {
|
|
|
|
trace!(self.logger, "Calling on_touch_motion with {:?}", motion_event);
|
|
|
|
handler.on_touch_motion(seat, motion_event)
|
|
|
|
},
|
|
|
|
TouchEvent::Up(up_event) => {
|
|
|
|
trace!(self.logger, "Calling on_touch_up with {:?}", up_event);
|
|
|
|
handler.on_touch_up(seat, up_event)
|
|
|
|
},
|
|
|
|
TouchEvent::Cancel(cancel_event) => {
|
|
|
|
trace!(self.logger, "Calling on_touch_cancel with {:?}", cancel_event);
|
|
|
|
handler.on_touch_cancel(seat, cancel_event)
|
|
|
|
},
|
|
|
|
TouchEvent::Frame(frame_event) => {
|
|
|
|
trace!(self.logger, "Calling on_touch_frame with {:?}", frame_event);
|
|
|
|
handler.on_touch_frame(seat, frame_event)
|
|
|
|
},
|
|
|
|
}
|
2017-04-15 20:20:11 +00:00
|
|
|
}
|
|
|
|
},
|
2017-04-23 17:55:43 +00:00
|
|
|
libinput::Event::Keyboard(keyboard_event) => {
|
2017-04-15 18:26:44 +00:00
|
|
|
use ::input::event::keyboard::*;
|
|
|
|
match keyboard_event {
|
2017-04-15 20:28:51 +00:00
|
|
|
KeyboardEvent::Key(key_event) => {
|
2017-04-15 18:26:44 +00:00
|
|
|
if let Some(ref mut handler) = self.handler {
|
2017-04-15 20:28:51 +00:00
|
|
|
let device_seat = key_event.device().seat();
|
2017-04-23 17:55:43 +00:00
|
|
|
let seat = &self.seats.get(&device_seat).expect("Recieved key event of non existing Seat").seat;
|
|
|
|
trace!(self.logger, "Calling on_keyboard_key with {:?}", key_event);
|
|
|
|
handler.on_keyboard_key(seat, key_event);
|
2017-04-15 18:26:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2017-04-23 17:55:43 +00:00
|
|
|
libinput::Event::Pointer(pointer_event) => {
|
2017-04-15 19:46:27 +00:00
|
|
|
use ::input::event::pointer::*;
|
2017-04-23 17:55:43 +00:00
|
|
|
if let Some(ref mut handler) = self.handler {
|
|
|
|
let device_seat = pointer_event.device().seat();
|
|
|
|
let seat = &self.seats.get(&device_seat).expect("Recieved key event of non existing Seat").seat;
|
|
|
|
match pointer_event {
|
|
|
|
PointerEvent::Motion(motion_event) => {
|
|
|
|
trace!(self.logger, "Calling on_pointer_move with {:?}", motion_event);
|
|
|
|
handler.on_pointer_move(seat, motion_event);
|
|
|
|
},
|
|
|
|
PointerEvent::MotionAbsolute(motion_abs_event) => {
|
|
|
|
trace!(self.logger, "Calling on_pointer_move_absolute with {:?}", motion_abs_event);
|
|
|
|
handler.on_pointer_move_absolute(seat, motion_abs_event);
|
|
|
|
},
|
|
|
|
PointerEvent::Axis(axis_event) => {
|
2017-04-15 19:46:27 +00:00
|
|
|
if axis_event.has_axis(Axis::Vertical) {
|
2017-04-23 17:55:43 +00:00
|
|
|
trace!(self.logger, "Calling on_pointer_axis for Axis::Vertical with {:?}", axis_event);
|
|
|
|
handler.on_pointer_axis(seat, self::PointerAxisEvent {
|
|
|
|
axis: Axis::Vertical,
|
|
|
|
event: axis_event.clone()
|
|
|
|
});
|
2017-04-15 19:46:27 +00:00
|
|
|
}
|
|
|
|
if axis_event.has_axis(Axis::Horizontal) {
|
2017-04-23 17:55:43 +00:00
|
|
|
trace!(self.logger, "Calling on_pointer_axis for Axis::Horizontal with {:?}", axis_event);
|
|
|
|
handler.on_pointer_axis(seat, self::PointerAxisEvent {
|
|
|
|
axis: Axis::Horizontal,
|
|
|
|
event: axis_event.clone()
|
|
|
|
});
|
2017-04-15 19:46:27 +00:00
|
|
|
}
|
2017-04-23 17:55:43 +00:00
|
|
|
},
|
|
|
|
PointerEvent::Button(button_event) => {
|
|
|
|
trace!(self.logger, "Calling on_pointer_button with {:?}", button_event);
|
|
|
|
handler.on_pointer_button(seat, button_event);
|
2017-04-15 20:02:44 +00:00
|
|
|
}
|
2017-04-15 19:46:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2017-04-14 22:23:16 +00:00
|
|
|
_ => {}, //FIXME: What to do with the rest.
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Ok(())
|
|
|
|
}
|
2017-04-23 17:55:43 +00:00
|
|
|
}
|
2017-04-18 19:57:53 +00:00
|
|
|
|
2017-04-23 17:55:43 +00:00
|
|
|
impl From<event::keyboard::KeyState> for backend::KeyState {
|
|
|
|
fn from(libinput: event::keyboard::KeyState) -> Self {
|
|
|
|
match libinput {
|
|
|
|
event::keyboard::KeyState::Pressed => backend::KeyState::Pressed,
|
|
|
|
event::keyboard::KeyState::Released => backend::KeyState::Released,
|
2017-04-18 19:57:53 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-14 22:23:16 +00:00
|
|
|
}
|
2017-04-15 18:26:44 +00:00
|
|
|
|
2017-04-23 17:55:43 +00:00
|
|
|
impl From<event::pointer::Axis> for backend::Axis {
|
|
|
|
fn from(libinput: event::pointer::Axis) -> Self {
|
2017-04-15 18:26:44 +00:00
|
|
|
match libinput {
|
2017-04-23 17:55:43 +00:00
|
|
|
event::pointer::Axis::Vertical => backend::Axis::Vertical,
|
|
|
|
event::pointer::Axis::Horizontal => backend::Axis::Horizontal,
|
2017-04-15 18:26:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-15 19:46:27 +00:00
|
|
|
|
2017-04-23 17:55:43 +00:00
|
|
|
impl From<event::pointer::AxisSource> for backend::AxisSource {
|
|
|
|
fn from(libinput: event::pointer::AxisSource) -> Self {
|
2017-04-15 19:46:27 +00:00
|
|
|
match libinput {
|
2017-04-23 17:55:43 +00:00
|
|
|
event::pointer::AxisSource::Finger => backend::AxisSource::Finger,
|
|
|
|
event::pointer::AxisSource::Continuous => backend::AxisSource::Continuous,
|
|
|
|
event::pointer::AxisSource::Wheel => backend::AxisSource::Wheel,
|
|
|
|
event::pointer::AxisSource::WheelTilt => backend::AxisSource::WheelTilt,
|
2017-04-15 19:46:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-04-15 20:02:44 +00:00
|
|
|
|
2017-04-23 17:55:43 +00:00
|
|
|
impl From<event::pointer::ButtonState> for backend::MouseButtonState {
|
|
|
|
fn from(libinput: event::pointer::ButtonState) -> Self {
|
2017-04-15 20:02:44 +00:00
|
|
|
match libinput {
|
2017-04-23 17:55:43 +00:00
|
|
|
event::pointer::ButtonState::Pressed => backend::MouseButtonState::Pressed,
|
|
|
|
event::pointer::ButtonState::Released => backend::MouseButtonState::Released,
|
2017-04-15 20:02:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|