smithay/src/backend/winit.rs

843 lines
28 KiB
Rust
Raw Normal View History

2017-05-21 20:40:15 +00:00
//! Implementation of backend traits for types provided by `winit`
2017-05-18 20:28:02 +00:00
use backend::{SeatInternal, TouchSlotInternal};
use backend::graphics::GraphicsBackend;
use backend::graphics::egl::{CreationError, EGLContext, EGLGraphicsBackend, GlAttributes, PixelFormat,
PixelFormatRequirements, SwapBuffersError};
2017-05-18 20:28:02 +00:00
use backend::input::{Axis, AxisSource, Event as BackendEvent, InputBackend, InputHandler, KeyState,
KeyboardKeyEvent, MouseButton, MouseButtonState, PointerAxisEvent, PointerButtonEvent,
PointerMotionAbsoluteEvent, Seat, SeatCapabilities, TouchCancelEvent, TouchDownEvent,
TouchMotionEvent, TouchSlot, TouchUpEvent, UnusedEvent};
use nix::c_void;
use std::cmp;
use std::error::Error;
use std::fmt;
use std::rc::Rc;
2017-06-02 11:15:31 +00:00
use winit::{CreationError as WinitCreationError, ElementState, Event, EventsLoop, KeyboardInput,
MouseButton as WinitMouseButton, MouseCursor, MouseScrollDelta, Touch, TouchPhase,
2017-05-21 20:40:15 +00:00
WindowBuilder, WindowEvent};
2017-05-18 20:28:02 +00:00
2017-06-10 20:59:59 +00:00
rental! {
mod rental {
2017-06-10 20:59:59 +00:00
use std::boxed::Box;
use ::winit::{Window as WinitWindow};
2017-06-10 20:59:59 +00:00
use ::backend::graphics::egl::{EGLContext, EGLSurface};
#[rental]
pub struct Window {
window: Box<WinitWindow>,
egl: EGL<'window>,
}
2017-06-10 20:59:59 +00:00
#[rental]
pub struct EGL<'a> {
context: Box<EGLContext<'a, WinitWindow>>,
surface: EGLSurface<'context, 'a, WinitWindow>,
2017-06-10 20:59:59 +00:00
}
}
}
use self::rental::{Window, EGL};
2017-05-18 20:28:02 +00:00
/// Window with an active EGL Context created by `winit`. Implements the
/// `EGLGraphicsBackend` graphics backend trait
pub struct WinitGraphicsBackend {
window: Rc<Window>,
logger: ::slog::Logger,
2017-05-18 20:28:02 +00:00
}
/// Abstracted event loop of a `winit` `Window` implementing the `InputBackend` trait
///
2017-05-21 20:40:15 +00:00
/// You need to call `dispatch_new_events` periodically to receive any events.
2017-05-18 20:28:02 +00:00
pub struct WinitInputBackend {
events_loop: EventsLoop,
window: Rc<Window>,
time_counter: u32,
key_counter: u32,
seat: Seat,
input_config: (),
handler: Option<Box<InputHandler<WinitInputBackend> + 'static>>,
logger: ::slog::Logger,
2017-05-18 20:28:02 +00:00
}
/// Create a new `WinitGraphicsBackend`, which implements the `EGLGraphicsBackend`
2017-05-21 20:40:15 +00:00
/// graphics backend trait and a corresponding `WinitInputBackend`, which implements
/// the `InputBackend` trait
pub fn init<L>(logger: L) -> Result<(WinitGraphicsBackend, WinitInputBackend), CreationError>
2017-06-20 09:31:18 +00:00
where
L: Into<Option<::slog::Logger>>,
{
2017-06-20 09:31:18 +00:00
init_from_builder(
WindowBuilder::new()
.with_dimensions(1280, 800)
.with_title("Smithay")
.with_visibility(true),
logger,
)
2017-05-18 20:28:02 +00:00
}
2017-05-21 20:40:15 +00:00
/// Create a new `WinitGraphicsBackend`, which implements the `EGLGraphicsBackend`
/// graphics backend trait, from a given `WindowBuilder` struct and a corresponding
/// `WinitInputBackend`, which implements the `InputBackend` trait
pub fn init_from_builder<L>(builder: WindowBuilder, logger: L)
2017-06-04 21:13:19 +00:00
-> Result<(WinitGraphicsBackend, WinitInputBackend), CreationError>
2017-06-20 09:31:18 +00:00
where
L: Into<Option<::slog::Logger>>,
{
2017-06-20 09:31:18 +00:00
init_from_builder_with_gl_attr(
builder,
GlAttributes {
version: None,
profile: None,
debug: cfg!(debug_assertions),
vsync: true,
},
logger,
)
2017-05-18 20:28:02 +00:00
}
/// Create a new `WinitGraphicsBackend`, which implements the `EGLGraphicsBackend`
2017-05-21 20:40:15 +00:00
/// graphics backend trait, from a given `WindowBuilder` struct, as well as given
/// `GlAttributes` for further customization of the rendering pipeline and a
/// corresponding `WinitInputBackend`, which implements the `InputBackend` trait.
2017-06-20 09:31:18 +00:00
pub fn init_from_builder_with_gl_attr<L>(
builder: WindowBuilder, attributes: GlAttributes, logger: L)
-> Result<(WinitGraphicsBackend, WinitInputBackend), CreationError>
where
L: Into<Option<::slog::Logger>>,
{
let log = ::slog_or_stdlog(logger).new(o!("smithay_module" => "backend_winit"));
info!(log, "Initializing a winit backend");
2017-05-18 20:28:02 +00:00
let events_loop = EventsLoop::new();
let winit_window = builder.build(&events_loop)?;
debug!(log, "Window created");
2017-05-18 20:28:02 +00:00
let window = match Window::try_new(Box::new(winit_window), |window| {
match EGL::try_new(
Box::new(match EGLContext::new_from_winit(
&*window,
attributes,
PixelFormatRequirements {
hardware_accelerated: Some(true),
color_bits: Some(24),
alpha_bits: Some(8),
..Default::default()
},
log.clone(),
) {
Ok(context) => context,
Err(err) => {
error!(log, "EGLContext creation failed:\n {}", err);
return Err(err);
}
}),
|context| context.create_surface(window),
2017-06-20 09:31:18 +00:00
) {
Ok(x) => Ok(x),
Err(::rental::TryNewError(err, _)) => return Err(err),
2017-06-02 11:15:31 +00:00
}
}) {
Ok(x) => Rc::new(x),
Err(::rental::TryNewError(err, _)) => return Err(err),
2017-05-21 20:40:15 +00:00
};
2017-05-18 20:28:02 +00:00
2017-06-20 09:31:18 +00:00
Ok((
WinitGraphicsBackend {
2017-05-21 20:40:15 +00:00
window: window.clone(),
logger: log.new(o!("smithay_winit_component" => "graphics")),
2017-05-21 20:40:15 +00:00
},
WinitInputBackend {
events_loop,
window,
2017-05-21 20:40:15 +00:00
time_counter: 0,
key_counter: 0,
2017-06-20 09:31:18 +00:00
seat: Seat::new(
0,
SeatCapabilities {
pointer: true,
keyboard: true,
touch: true,
},
),
2017-05-21 20:40:15 +00:00
input_config: (),
handler: None,
logger: log.new(o!("smithay_winit_component" => "input")),
2017-06-20 09:31:18 +00:00
},
))
2017-05-18 20:28:02 +00:00
}
impl GraphicsBackend for WinitGraphicsBackend {
type CursorFormat = MouseCursor;
type Error = ();
2017-05-18 20:28:02 +00:00
fn set_cursor_position(&self, x: u32, y: u32) -> Result<(), ()> {
debug!(self.logger, "Setting cursor position to {:?}", (x, y));
self.window.head().set_cursor_position(x as i32, y as i32)
2017-05-18 20:28:02 +00:00
}
fn set_cursor_representation(&self, cursor: Self::CursorFormat, _hotspot: (u32, u32)) -> Result<(), ()> {
2017-06-04 21:13:19 +00:00
// Cannot log this one, as `CursorFormat` is not `Debug` and should not be
debug!(self.logger, "Changing cursor representation");
self.window.head().set_cursor(cursor);
Ok(())
2017-05-18 20:28:02 +00:00
}
}
impl EGLGraphicsBackend for WinitGraphicsBackend {
fn swap_buffers(&self) -> Result<(), SwapBuffersError> {
trace!(self.logger, "Swapping buffers");
self.window
.rent(|egl| egl.rent(|surface| surface.swap_buffers()))
2017-05-18 20:28:02 +00:00
}
unsafe fn get_proc_address(&self, symbol: &str) -> *const c_void {
trace!(self.logger, "Getting symbol for {:?}", symbol);
self.window.rent(|egl| egl.head().get_proc_address(symbol))
2017-05-18 20:28:02 +00:00
}
fn get_framebuffer_dimensions(&self) -> (u32, u32) {
2017-09-05 17:51:05 +00:00
self.window
.head()
2017-09-05 17:51:05 +00:00
.get_inner_size_pixels()
.expect("Window does not exist anymore")
2017-05-18 20:28:02 +00:00
}
fn is_current(&self) -> bool {
self.window.rent(|egl| egl.head().is_current())
2017-05-18 20:28:02 +00:00
}
unsafe fn make_current(&self) -> Result<(), SwapBuffersError> {
2017-06-05 12:06:58 +00:00
debug!(self.logger, "Setting EGL context to be the current context");
self.window
.rent(|egl| egl.rent(|surface| surface.make_current()))
2017-05-18 20:28:02 +00:00
}
fn get_pixel_format(&self) -> PixelFormat {
self.window.rent(|egl| egl.head().get_pixel_format())
2017-05-18 20:28:02 +00:00
}
}
/// Errors that may happen when driving the event loop of `WinitInputBackend`
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum WinitInputError {
/// The underlying `winit` `Window` was closed. No further events can be processed.
///
2017-05-21 20:40:15 +00:00
/// See `WinitInputBackend::dispatch_new_events`.
2017-05-18 20:28:02 +00:00
WindowClosed,
}
impl Error for WinitInputError {
fn description(&self) -> &str {
match *self {
WinitInputError::WindowClosed => "Glutin Window was closed",
}
}
}
impl fmt::Display for WinitInputError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.description())
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
/// Winit-Backend internal event wrapping winit's types into a `KeyboardKeyEvent`
pub struct WinitKeyboardInputEvent {
time: u32,
2017-06-02 11:15:31 +00:00
key: u32,
2017-05-18 20:28:02 +00:00
count: u32,
state: ElementState,
}
impl BackendEvent for WinitKeyboardInputEvent {
fn time(&self) -> u32 {
self.time
}
}
impl KeyboardKeyEvent for WinitKeyboardInputEvent {
fn key_code(&self) -> u32 {
2017-06-02 11:15:31 +00:00
self.key
2017-05-18 20:28:02 +00:00
}
fn state(&self) -> KeyState {
self.state.into()
}
fn count(&self) -> u32 {
self.count
}
}
#[derive(Clone)]
/// Winit-Backend internal event wrapping winit's types into a `PointerMotionAbsoluteEvent`
pub struct WinitMouseMovedEvent {
window: Rc<Window>,
time: u32,
2017-06-02 11:15:31 +00:00
x: f64,
y: f64,
2017-05-18 20:28:02 +00:00
}
impl BackendEvent for WinitMouseMovedEvent {
fn time(&self) -> u32 {
self.time
}
}
impl PointerMotionAbsoluteEvent for WinitMouseMovedEvent {
fn x(&self) -> f64 {
2017-06-02 11:15:31 +00:00
self.x
2017-05-18 20:28:02 +00:00
}
fn y(&self) -> f64 {
2017-06-02 11:15:31 +00:00
self.y
2017-05-18 20:28:02 +00:00
}
fn x_transformed(&self, width: u32) -> u32 {
2017-06-20 09:31:18 +00:00
cmp::min(
(self.x * width as f64 /
self.window
.head()
.get_inner_size_points()
.unwrap_or((width, 0))
.0 as f64) as u32,
2017-06-20 09:31:18 +00:00
0,
)
2017-05-18 20:28:02 +00:00
}
fn y_transformed(&self, height: u32) -> u32 {
2017-06-20 09:31:18 +00:00
cmp::min(
(self.y * height as f64 /
self.window
.head()
.get_inner_size_points()
.unwrap_or((0, height))
.1 as f64) as u32,
2017-06-20 09:31:18 +00:00
0,
)
2017-05-18 20:28:02 +00:00
}
}
#[derive(Debug, Clone, Copy, PartialEq)]
/// Winit-Backend internal event wrapping winit's types into a `PointerAxisEvent`
pub struct WinitMouseWheelEvent {
axis: Axis,
time: u32,
delta: MouseScrollDelta,
}
impl BackendEvent for WinitMouseWheelEvent {
fn time(&self) -> u32 {
self.time
}
}
impl PointerAxisEvent for WinitMouseWheelEvent {
fn axis(&self) -> Axis {
self.axis
}
fn source(&self) -> AxisSource {
match self.delta {
MouseScrollDelta::LineDelta(_, _) => AxisSource::Wheel,
MouseScrollDelta::PixelDelta(_, _) => AxisSource::Continuous,
}
}
fn amount(&self) -> f64 {
match (self.axis, self.delta) {
(Axis::Horizontal, MouseScrollDelta::LineDelta(x, _)) |
(Axis::Horizontal, MouseScrollDelta::PixelDelta(x, _)) => x as f64,
(Axis::Vertical, MouseScrollDelta::LineDelta(_, y)) |
(Axis::Vertical, MouseScrollDelta::PixelDelta(_, y)) => y as f64,
}
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
/// Winit-Backend internal event wrapping winit's types into a `PointerButtonEvent`
pub struct WinitMouseInputEvent {
time: u32,
button: WinitMouseButton,
state: ElementState,
}
impl BackendEvent for WinitMouseInputEvent {
fn time(&self) -> u32 {
self.time
}
}
impl PointerButtonEvent for WinitMouseInputEvent {
fn button(&self) -> MouseButton {
self.button.into()
}
fn state(&self) -> MouseButtonState {
self.state.into()
}
}
#[derive(Clone)]
/// Winit-Backend internal event wrapping winit's types into a `TouchDownEvent`
pub struct WinitTouchStartedEvent {
window: Rc<Window>,
time: u32,
location: (f64, f64),
id: u64,
}
impl BackendEvent for WinitTouchStartedEvent {
fn time(&self) -> u32 {
self.time
}
}
impl TouchDownEvent for WinitTouchStartedEvent {
fn slot(&self) -> Option<TouchSlot> {
Some(TouchSlot::new(self.id))
}
fn x(&self) -> f64 {
self.location.0
}
fn y(&self) -> f64 {
self.location.1
}
fn x_transformed(&self, width: u32) -> u32 {
2017-06-20 09:31:18 +00:00
cmp::min(
self.location.0 as i32 * width as i32 /
self.window
.head()
.get_inner_size_points()
.unwrap_or((width, 0))
.0 as i32,
2017-06-20 09:31:18 +00:00
0,
) as u32
2017-05-18 20:28:02 +00:00
}
fn y_transformed(&self, height: u32) -> u32 {
2017-06-20 09:31:18 +00:00
cmp::min(
self.location.1 as i32 * height as i32 /
self.window
.head()
.get_inner_size_points()
.unwrap_or((0, height))
.1 as i32,
2017-06-20 09:31:18 +00:00
0,
) as u32
2017-05-18 20:28:02 +00:00
}
}
#[derive(Clone)]
/// Winit-Backend internal event wrapping winit's types into a `TouchMotionEvent`
pub struct WinitTouchMovedEvent {
window: Rc<Window>,
time: u32,
location: (f64, f64),
id: u64,
}
impl BackendEvent for WinitTouchMovedEvent {
fn time(&self) -> u32 {
self.time
}
}
impl TouchMotionEvent for WinitTouchMovedEvent {
fn slot(&self) -> Option<TouchSlot> {
Some(TouchSlot::new(self.id))
}
fn x(&self) -> f64 {
self.location.0
}
fn y(&self) -> f64 {
self.location.1
}
fn x_transformed(&self, width: u32) -> u32 {
self.location.0 as u32 * width /
self.window
.head()
.get_inner_size_points()
.unwrap_or((width, 0))
.0
2017-05-18 20:28:02 +00:00
}
fn y_transformed(&self, height: u32) -> u32 {
self.location.1 as u32 * height /
self.window
.head()
.get_inner_size_points()
.unwrap_or((0, height))
.1
2017-05-18 20:28:02 +00:00
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
/// Winit-Backend internal event wrapping winit's types into a `TouchUpEvent`
pub struct WinitTouchEndedEvent {
time: u32,
id: u64,
}
impl BackendEvent for WinitTouchEndedEvent {
fn time(&self) -> u32 {
self.time
}
}
impl TouchUpEvent for WinitTouchEndedEvent {
fn slot(&self) -> Option<TouchSlot> {
Some(TouchSlot::new(self.id))
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
/// Winit-Backend internal event wrapping winit's types into a `TouchCancelEvent`
pub struct WinitTouchCancelledEvent {
time: u32,
id: u64,
}
impl BackendEvent for WinitTouchCancelledEvent {
fn time(&self) -> u32 {
self.time
}
}
impl TouchCancelEvent for WinitTouchCancelledEvent {
fn slot(&self) -> Option<TouchSlot> {
Some(TouchSlot::new(self.id))
}
}
impl InputBackend for WinitInputBackend {
type InputConfig = ();
type EventError = WinitInputError;
type KeyboardKeyEvent = WinitKeyboardInputEvent;
type PointerAxisEvent = WinitMouseWheelEvent;
type PointerButtonEvent = WinitMouseInputEvent;
type PointerMotionEvent = UnusedEvent;
type PointerMotionAbsoluteEvent = WinitMouseMovedEvent;
type TouchDownEvent = WinitTouchStartedEvent;
type TouchUpEvent = WinitTouchEndedEvent;
type TouchMotionEvent = WinitTouchMovedEvent;
type TouchCancelEvent = WinitTouchCancelledEvent;
type TouchFrameEvent = UnusedEvent;
fn set_handler<H: InputHandler<Self> + 'static>(&mut self, mut handler: H) {
if self.handler.is_some() {
self.clear_handler();
}
info!(self.logger, "New input handler set.");
trace!(self.logger, "Calling on_seat_created with {:?}", self.seat);
2017-05-18 20:28:02 +00:00
handler.on_seat_created(&self.seat);
self.handler = Some(Box::new(handler));
}
fn get_handler(&mut self) -> Option<&mut InputHandler<Self>> {
2017-09-05 17:51:05 +00:00
self.handler
.as_mut()
.map(|handler| handler as &mut InputHandler<Self>)
2017-05-18 20:28:02 +00:00
}
fn clear_handler(&mut self) {
if let Some(mut handler) = self.handler.take() {
2017-06-20 09:31:18 +00:00
trace!(
self.logger,
"Calling on_seat_destroyed with {:?}",
self.seat
);
2017-05-18 20:28:02 +00:00
handler.on_seat_destroyed(&self.seat);
}
info!(self.logger, "Removing input handler");
2017-05-18 20:28:02 +00:00
}
fn input_config(&mut self) -> &mut Self::InputConfig {
&mut self.input_config
}
/// Processes new events of the underlying event loop to drive the set `InputHandler`.
///
/// You need to periodically call this function to keep the underlying event loop and
/// `Window` active. Otherwise the window may no respond to user interaction and no
/// input events will be received by a set `InputHandler`.
///
/// Returns an error if the `Window` the window has been closed. Calling
2017-05-21 20:40:15 +00:00
/// `dispatch_new_events` again after the `Window` has been closed is considered an
2017-05-18 20:28:02 +00:00
/// application error and unspecified baviour may occur.
///
/// The linked `WinitGraphicsBackend` will error with a lost Context and should
/// not be used anymore as well.
fn dispatch_new_events(&mut self) -> Result<(), WinitInputError> {
let mut closed = false;
{
// NOTE: This ugly pile of references is here, because rustc could
// figure out how to reference all these objects correctly into the
// upcoming closure, which is why all are borrowed manually and the
// assignments are then moved into the closure to avoid rustc's
// wrong interference.
2017-05-18 20:28:02 +00:00
let mut closed_ptr = &mut closed;
let mut key_counter = &mut self.key_counter;
let mut time_counter = &mut self.time_counter;
let seat = &self.seat;
let window = &self.window;
let mut handler = self.handler.as_mut();
let logger = &self.logger;
2017-05-18 20:28:02 +00:00
2017-06-20 09:31:18 +00:00
self.events_loop.poll_events(move |event| match event {
Event::WindowEvent { event, .. } => {
match (event, handler.as_mut()) {
(WindowEvent::Resized(x, y), _) => {
trace!(logger, "Resizing window to {:?}", (x, y));
window.head().set_inner_size(x, y);
window.rent(|egl| {
egl.rent(|surface| if let Some(wegl_surface) = (**surface).as_ref() {
wegl_surface.resize(x as i32, y as i32, 0, 0)
})
});
2017-06-04 21:13:19 +00:00
}
2017-09-05 17:51:05 +00:00
(
WindowEvent::KeyboardInput {
input: KeyboardInput {
scancode, state, ..
},
..
},
Some(handler),
) => {
2017-06-20 09:31:18 +00:00
match state {
ElementState::Pressed => *key_counter += 1,
ElementState::Released => {
*key_counter = key_counter.checked_sub(1).unwrap_or(0)
}
2017-06-04 21:13:19 +00:00
};
2017-06-20 09:31:18 +00:00
trace!(
logger,
"Calling on_keyboard_key with {:?}",
(scancode, state)
);
handler.on_keyboard_key(
seat,
WinitKeyboardInputEvent {
time: *time_counter,
key: scancode,
count: *key_counter,
state: state,
},
)
}
2017-09-05 17:51:05 +00:00
(
WindowEvent::MouseMoved {
position: (x, y), ..
},
Some(handler),
) => {
2017-06-20 09:31:18 +00:00
trace!(logger, "Calling on_pointer_move_absolute with {:?}", (x, y));
handler.on_pointer_move_absolute(
seat,
WinitMouseMovedEvent {
window: window.clone(),
time: *time_counter,
x: x,
y: y,
},
)
}
2017-09-05 17:51:05 +00:00
(WindowEvent::MouseWheel { delta, .. }, Some(handler)) => match delta {
MouseScrollDelta::LineDelta(x, y) | MouseScrollDelta::PixelDelta(x, y) => {
if x != 0.0 {
let event = WinitMouseWheelEvent {
axis: Axis::Horizontal,
time: *time_counter,
delta: delta,
};
trace!(
logger,
"Calling on_pointer_axis for Axis::Horizontal with {:?}",
x
);
handler.on_pointer_axis(seat, event);
}
if y != 0.0 {
let event = WinitMouseWheelEvent {
axis: Axis::Vertical,
time: *time_counter,
delta: delta,
};
trace!(
logger,
"Calling on_pointer_axis for Axis::Vertical with {:?}",
y
);
handler.on_pointer_axis(seat, event);
2017-06-20 09:31:18 +00:00
}
}
2017-09-05 17:51:05 +00:00
},
2017-06-20 09:31:18 +00:00
(WindowEvent::MouseInput { state, button, .. }, Some(handler)) => {
trace!(
logger,
"Calling on_pointer_button with {:?}",
(button, state)
);
handler.on_pointer_button(
seat,
WinitMouseInputEvent {
time: *time_counter,
button: button,
state: state,
},
)
}
2017-09-05 17:51:05 +00:00
(
WindowEvent::Touch(Touch {
phase: TouchPhase::Started,
location: (x, y),
id,
..
}),
Some(handler),
) => {
2017-06-20 09:31:18 +00:00
trace!(logger, "Calling on_touch_down at {:?}", (x, y));
handler.on_touch_down(
seat,
WinitTouchStartedEvent {
window: window.clone(),
time: *time_counter,
location: (x, y),
id: id,
},
)
}
2017-09-05 17:51:05 +00:00
(
WindowEvent::Touch(Touch {
phase: TouchPhase::Moved,
location: (x, y),
id,
..
}),
Some(handler),
) => {
2017-06-20 09:31:18 +00:00
trace!(logger, "Calling on_touch_motion at {:?}", (x, y));
handler.on_touch_motion(
seat,
WinitTouchMovedEvent {
window: window.clone(),
time: *time_counter,
location: (x, y),
id: id,
},
)
}
2017-09-05 17:51:05 +00:00
(
WindowEvent::Touch(Touch {
phase: TouchPhase::Ended,
location: (x, y),
id,
..
}),
Some(handler),
) => {
2017-06-20 09:31:18 +00:00
trace!(logger, "Calling on_touch_motion at {:?}", (x, y));
handler.on_touch_motion(
seat,
WinitTouchMovedEvent {
window: window.clone(),
time: *time_counter,
location: (x, y),
id: id,
},
);
trace!(logger, "Calling on_touch_up");
handler.on_touch_up(
seat,
WinitTouchEndedEvent {
time: *time_counter,
id: id,
},
);
}
2017-09-05 17:51:05 +00:00
(
WindowEvent::Touch(Touch {
phase: TouchPhase::Cancelled,
id,
..
}),
Some(handler),
) => {
2017-06-20 09:31:18 +00:00
trace!(logger, "Calling on_touch_cancel");
handler.on_touch_cancel(
seat,
WinitTouchCancelledEvent {
time: *time_counter,
id: id,
},
)
}
(WindowEvent::Closed, _) => {
warn!(logger, "Window closed");
*closed_ptr = true;
2017-06-04 21:13:19 +00:00
}
2017-06-20 09:31:18 +00:00
_ => {}
}
*time_counter += 1;
}
Event::DeviceEvent { .. } => {}
2017-06-23 14:02:15 +00:00
_ => {}
2017-06-20 09:31:18 +00:00
});
2017-05-18 20:28:02 +00:00
}
if closed {
Err(WinitInputError::WindowClosed)
} else {
Ok(())
}
}
}
impl From<WinitMouseButton> for MouseButton {
fn from(button: WinitMouseButton) -> MouseButton {
match button {
WinitMouseButton::Left => MouseButton::Left,
WinitMouseButton::Right => MouseButton::Right,
WinitMouseButton::Middle => MouseButton::Middle,
WinitMouseButton::Other(num) => MouseButton::Other(num),
}
}
}
impl From<ElementState> for KeyState {
fn from(state: ElementState) -> Self {
match state {
ElementState::Pressed => KeyState::Pressed,
ElementState::Released => KeyState::Released,
}
}
}
impl From<ElementState> for MouseButtonState {
fn from(state: ElementState) -> Self {
match state {
ElementState::Pressed => MouseButtonState::Pressed,
ElementState::Released => MouseButtonState::Released,
}
}
}
impl From<WinitCreationError> for CreationError {
fn from(error: WinitCreationError) -> Self {
match error {
WinitCreationError::OsError(x) => CreationError::OsError(x),
WinitCreationError::NotSupported => CreationError::NotSupported,
}
}
}