2018-05-06 03:36:34 +10:00
|
|
|
#![cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd",
|
2018-07-17 00:25:27 +10:00
|
|
|
target_os = "netbsd", target_os = "openbsd"))]
|
2015-04-30 15:49:46 +10:00
|
|
|
|
2019-06-22 01:33:15 +10:00
|
|
|
pub use self::{
|
|
|
|
event_loop::{
|
2019-07-30 04:16:14 +10:00
|
|
|
EventLoop, EventLoopProxy, EventLoopWindowTarget, MonitorHandle, VideoMode,
|
|
|
|
WindowEventsSink,
|
2019-06-22 01:33:15 +10:00
|
|
|
},
|
|
|
|
window::Window,
|
|
|
|
};
|
2017-03-05 00:04:01 +11:00
|
|
|
|
2019-06-18 04:27:00 +10:00
|
|
|
use smithay_client_toolkit::reexports::client::protocol::wl_surface;
|
2017-10-20 18:46:42 +11:00
|
|
|
|
2017-03-05 00:04:01 +11:00
|
|
|
mod event_loop;
|
2019-06-22 01:33:15 +10:00
|
|
|
mod keyboard;
|
2017-11-11 20:03:42 +11:00
|
|
|
mod pointer;
|
|
|
|
mod touch;
|
2015-12-09 08:54:06 +11:00
|
|
|
mod window;
|
2017-04-23 06:52:35 +10:00
|
|
|
|
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
|
|
pub struct DeviceId;
|
2017-10-20 18:46:42 +11:00
|
|
|
|
2018-12-22 03:51:48 +11:00
|
|
|
impl DeviceId {
|
|
|
|
pub unsafe fn dummy() -> Self {
|
|
|
|
DeviceId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-20 18:46:42 +11:00
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
|
|
pub struct WindowId(usize);
|
|
|
|
|
2018-12-22 03:51:48 +11:00
|
|
|
impl WindowId {
|
|
|
|
pub unsafe fn dummy() -> Self {
|
|
|
|
WindowId(0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-20 18:46:42 +11:00
|
|
|
#[inline]
|
2019-02-21 20:51:43 +11:00
|
|
|
fn make_wid(s: &wl_surface::WlSurface) -> WindowId {
|
|
|
|
WindowId(s.as_ref().c_ptr() as usize)
|
2018-05-06 03:36:34 +10:00
|
|
|
}
|