Files
winit/src/api/x11/mod.rs
Robert Knight 94c31e42a4 Use XInput2 for event handling
This provides smooth scrolling for touchpad devices and will
enable support for touch events etc. in future.
2015-06-28 13:25:09 +01:00

14 lines
353 B
Rust

#![cfg(all(target_os = "linux", feature = "window"))]
pub use self::monitor::{MonitorID, get_available_monitors, get_primary_monitor};
pub use self::window::{Window, XWindow, PollEventsIterator, WaitEventsIterator, Context, WindowProxy};
pub use self::xdisplay::XConnection;
pub mod ffi;
mod events;
mod input;
mod monitor;
mod window;
mod xdisplay;