aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/x11/mod.rs
blob: 1ba6bc7d99d214b8bf40458459b00c9f251eb12f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![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;