mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-27 15:13:13 -04:00
This provides smooth scrolling for touchpad devices and will enable support for touch events etc. in future.
14 lines
353 B
Rust
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;
|