winit-sonoma-fix/src/platform/linux/wayland/mod.rs

26 lines
704 B
Rust
Raw Normal View History

#![cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd"))]
2015-04-30 15:49:46 +10:00
pub use self::window::Window;
pub use self::event_loop::{EventsLoop, EventsLoopProxy, EventsLoopSink, MonitorId};
2017-03-05 00:04:01 +11:00
2015-05-15 05:46:29 +10:00
extern crate wayland_kbd;
extern crate wayland_window;
extern crate wayland_protocols;
2015-04-30 15:49:46 +10:00
use wayland_client::protocol::wl_surface;
use wayland_client::Proxy;
2017-03-05 00:04:01 +11:00
mod event_loop;
mod keyboard;
mod window;
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct DeviceId;
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct WindowId(usize);
#[inline]
fn make_wid(s: &wl_surface::WlSurface) -> WindowId {
WindowId(s.ptr() as usize)
}