aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/x11/mod.rs
blob: d6a8772949f350942c843bc66c90acde8c19a792 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg(all(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd"), 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, XNotSupported};

pub mod ffi;

mod events;
mod input;
mod monitor;
mod window;
mod xdisplay;