aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/x11/mod.rs
blob: 3dc31b50307df848af0f0b0acb7bcec6b17f585b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd"))]

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, XError};

pub mod ffi;

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