2018-05-14 08:14:57 -04:00
|
|
|
use std::os::raw::*;
|
2014-09-19 15:42:47 +02:00
|
|
|
|
2018-05-14 08:14:57 -04:00
|
|
|
use parking_lot::Mutex;
|
2014-09-19 15:42:47 +02:00
|
|
|
|
2019-04-27 18:06:51 +02:00
|
|
|
use dpi::{PhysicalPosition, PhysicalSize};
|
2018-06-14 19:42:18 -04:00
|
|
|
use super::{util, XConnection, XError};
|
2018-05-14 08:14:57 -04:00
|
|
|
use super::ffi::{
|
|
|
|
|
RRCrtcChangeNotifyMask,
|
|
|
|
|
RROutputPropertyNotifyMask,
|
|
|
|
|
RRScreenChangeNotifyMask,
|
|
|
|
|
True,
|
|
|
|
|
Window,
|
|
|
|
|
XRRScreenResources,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Used to test XRandR < 1.5 code path. This should always be committed as false.
|
|
|
|
|
const FORCE_RANDR_COMPAT: bool = false;
|
|
|
|
|
// Also used for testing. This should always be committed as false.
|
|
|
|
|
const DISABLE_MONITOR_LIST_CACHING: bool = false;
|
|
|
|
|
|
|
|
|
|
lazy_static! {
|
2018-05-22 09:07:46 -04:00
|
|
|
static ref XRANDR_VERSION: Mutex<Option<(c_int, c_int)>> = Mutex::default();
|
2019-02-05 10:30:33 -05:00
|
|
|
static ref MONITORS: Mutex<Option<Vec<MonitorHandle>>> = Mutex::default();
|
2018-05-22 09:07:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn version_is_at_least(major: c_int, minor: c_int) -> bool {
|
|
|
|
|
if let Some((avail_major, avail_minor)) = *XRANDR_VERSION.lock() {
|
|
|
|
|
if avail_major == major {
|
|
|
|
|
avail_minor >= minor
|
|
|
|
|
} else {
|
|
|
|
|
avail_major > major
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
unreachable!();
|
|
|
|
|
}
|
2018-05-14 08:14:57 -04:00
|
|
|
}
|
|
|
|
|
|
2019-02-05 10:30:33 -05:00
|
|
|
pub fn invalidate_cached_monitor_list() -> Option<Vec<MonitorHandle>> {
|
2018-05-14 08:14:57 -04:00
|
|
|
// We update this lazily.
|
|
|
|
|
(*MONITORS.lock()).take()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
2019-02-05 10:30:33 -05:00
|
|
|
pub struct MonitorHandle {
|
2017-09-07 09:33:46 +01:00
|
|
|
/// The actual id
|
|
|
|
|
id: u32,
|
|
|
|
|
/// The name of the monitor
|
2018-06-14 19:42:18 -04:00
|
|
|
pub(crate) name: String,
|
2017-09-07 09:33:46 +01:00
|
|
|
/// The size of the monitor
|
|
|
|
|
dimensions: (u32, u32),
|
|
|
|
|
/// The position of the monitor in the X screen
|
2017-10-19 20:08:05 +03:00
|
|
|
position: (i32, i32),
|
2017-09-07 09:33:46 +01:00
|
|
|
/// If the monitor is the primary one
|
|
|
|
|
primary: bool,
|
2018-05-14 08:14:57 -04:00
|
|
|
/// The DPI scale factor
|
2018-06-14 19:42:18 -04:00
|
|
|
pub(crate) hidpi_factor: f64,
|
2018-05-14 08:14:57 -04:00
|
|
|
/// Used to determine which windows are on this monitor
|
2018-07-01 11:01:46 -04:00
|
|
|
pub(crate) rect: util::AaRect,
|
2017-09-07 09:33:46 +01:00
|
|
|
}
|
2015-05-07 13:14:09 +02:00
|
|
|
|
2019-02-05 10:30:33 -05:00
|
|
|
impl MonitorHandle {
|
2018-05-14 08:14:57 -04:00
|
|
|
fn from_repr(
|
2018-06-14 19:42:18 -04:00
|
|
|
xconn: &XConnection,
|
2018-05-14 08:14:57 -04:00
|
|
|
resources: *mut XRRScreenResources,
|
|
|
|
|
id: u32,
|
|
|
|
|
repr: util::MonitorRepr,
|
|
|
|
|
primary: bool,
|
2018-11-17 15:51:39 -05:00
|
|
|
) -> Option<Self> {
|
|
|
|
|
let (name, hidpi_factor) = unsafe { xconn.get_output_info(resources, &repr)? };
|
2018-05-14 08:14:57 -04:00
|
|
|
let (dimensions, position) = unsafe { (repr.get_dimensions(), repr.get_position()) };
|
2018-07-01 11:01:46 -04:00
|
|
|
let rect = util::AaRect::new(position, dimensions);
|
2019-02-05 10:30:33 -05:00
|
|
|
Some(MonitorHandle {
|
2018-05-14 08:14:57 -04:00
|
|
|
id,
|
|
|
|
|
name,
|
|
|
|
|
hidpi_factor,
|
|
|
|
|
dimensions,
|
|
|
|
|
position,
|
|
|
|
|
primary,
|
|
|
|
|
rect,
|
2018-11-17 15:51:39 -05:00
|
|
|
})
|
2017-09-07 09:33:46 +01:00
|
|
|
}
|
2014-09-19 15:42:47 +02:00
|
|
|
|
|
|
|
|
pub fn get_name(&self) -> Option<String> {
|
2017-09-07 09:33:46 +01:00
|
|
|
Some(self.name.clone())
|
2014-09-19 15:42:47 +02:00
|
|
|
}
|
|
|
|
|
|
2015-09-21 14:42:05 +02:00
|
|
|
#[inline]
|
2017-08-30 08:49:18 +02:00
|
|
|
pub fn get_native_identifier(&self) -> u32 {
|
2017-09-07 09:33:46 +01:00
|
|
|
self.id as u32
|
2015-03-16 13:52:58 -07:00
|
|
|
}
|
|
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
pub fn get_dimensions(&self) -> PhysicalSize {
|
|
|
|
|
self.dimensions.into()
|
2017-09-07 09:33:46 +01:00
|
|
|
}
|
|
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
pub fn get_position(&self) -> PhysicalPosition {
|
|
|
|
|
self.position.into()
|
2014-09-19 15:42:47 +02:00
|
|
|
}
|
2017-10-17 14:56:38 +03:00
|
|
|
|
|
|
|
|
#[inline]
|
2018-06-14 19:42:18 -04:00
|
|
|
pub fn get_hidpi_factor(&self) -> f64 {
|
2018-01-22 09:36:26 -08:00
|
|
|
self.hidpi_factor
|
2017-10-17 14:56:38 +03:00
|
|
|
}
|
2014-09-19 15:42:47 +02:00
|
|
|
}
|
2018-05-14 08:14:57 -04:00
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
impl XConnection {
|
2019-02-05 10:30:33 -05:00
|
|
|
pub fn get_monitor_for_window(&self, window_rect: Option<util::AaRect>) -> MonitorHandle {
|
2018-06-14 19:42:18 -04:00
|
|
|
let monitors = self.get_available_monitors();
|
|
|
|
|
let default = monitors
|
|
|
|
|
.get(0)
|
|
|
|
|
.expect("[winit] Failed to find any monitors using XRandR.");
|
2018-05-14 08:14:57 -04:00
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
let window_rect = match window_rect {
|
|
|
|
|
Some(rect) => rect,
|
|
|
|
|
None => return default.to_owned(),
|
|
|
|
|
};
|
2018-05-14 08:14:57 -04:00
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
let mut largest_overlap = 0;
|
|
|
|
|
let mut matched_monitor = default;
|
|
|
|
|
for monitor in &monitors {
|
|
|
|
|
let overlapping_area = window_rect.get_overlapping_area(&monitor.rect);
|
|
|
|
|
if overlapping_area > largest_overlap {
|
|
|
|
|
largest_overlap = overlapping_area;
|
|
|
|
|
matched_monitor = &monitor;
|
|
|
|
|
}
|
2018-05-14 08:14:57 -04:00
|
|
|
}
|
|
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
matched_monitor.to_owned()
|
|
|
|
|
}
|
2018-05-14 08:14:57 -04:00
|
|
|
|
2019-02-05 10:30:33 -05:00
|
|
|
fn query_monitor_list(&self) -> Vec<MonitorHandle> {
|
2018-06-14 19:42:18 -04:00
|
|
|
unsafe {
|
|
|
|
|
let root = (self.xlib.XDefaultRootWindow)(self.display);
|
2019-03-05 18:58:14 -07:00
|
|
|
let resources = if version_is_at_least(1, 3) {
|
|
|
|
|
(self.xrandr.XRRGetScreenResourcesCurrent)(self.display, root)
|
|
|
|
|
} else {
|
|
|
|
|
// WARNING: this function is supposedly very slow, on the order of hundreds of ms.
|
|
|
|
|
// Upon failure, `resources` will be null.
|
|
|
|
|
(self.xrandr.XRRGetScreenResources)(self.display, root)
|
|
|
|
|
};
|
|
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
if resources.is_null() {
|
|
|
|
|
panic!("[winit] `XRRGetScreenResources` returned NULL. That should only happen if the root window doesn't exist.");
|
|
|
|
|
}
|
2018-05-14 08:14:57 -04:00
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
let mut available;
|
|
|
|
|
let mut has_primary = false;
|
2018-05-14 08:14:57 -04:00
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
if self.xrandr_1_5.is_some() && version_is_at_least(1, 5) && !FORCE_RANDR_COMPAT {
|
|
|
|
|
// We're in XRandR >= 1.5, enumerate monitors. This supports things like MST and
|
|
|
|
|
// videowalls.
|
|
|
|
|
let xrandr_1_5 = self.xrandr_1_5.as_ref().unwrap();
|
|
|
|
|
let mut monitor_count = 0;
|
|
|
|
|
let monitors = (xrandr_1_5.XRRGetMonitors)(self.display, root, 1, &mut monitor_count);
|
|
|
|
|
assert!(monitor_count >= 0);
|
|
|
|
|
available = Vec::with_capacity(monitor_count as usize);
|
|
|
|
|
for monitor_index in 0..monitor_count {
|
|
|
|
|
let monitor = monitors.offset(monitor_index as isize);
|
|
|
|
|
let is_primary = (*monitor).primary != 0;
|
2018-05-22 09:07:46 -04:00
|
|
|
has_primary |= is_primary;
|
2019-02-05 10:30:33 -05:00
|
|
|
MonitorHandle::from_repr(
|
2018-06-14 19:42:18 -04:00
|
|
|
self,
|
2018-05-14 08:14:57 -04:00
|
|
|
resources,
|
2018-06-14 19:42:18 -04:00
|
|
|
monitor_index as u32,
|
|
|
|
|
monitor.into(),
|
2018-05-14 08:14:57 -04:00
|
|
|
is_primary,
|
2018-11-17 15:51:39 -05:00
|
|
|
).map(|monitor_id| available.push(monitor_id));
|
2018-05-14 08:14:57 -04:00
|
|
|
}
|
2018-06-14 19:42:18 -04:00
|
|
|
(xrandr_1_5.XRRFreeMonitors)(monitors);
|
|
|
|
|
} else {
|
|
|
|
|
// We're in XRandR < 1.5, enumerate CRTCs. Everything will work except MST and
|
|
|
|
|
// videowall setups will also show monitors that aren't in the logical groups the user
|
|
|
|
|
// cares about.
|
|
|
|
|
let primary = (self.xrandr.XRRGetOutputPrimary)(self.display, root);
|
|
|
|
|
available = Vec::with_capacity((*resources).ncrtc as usize);
|
|
|
|
|
for crtc_index in 0..(*resources).ncrtc {
|
|
|
|
|
let crtc_id = *((*resources).crtcs.offset(crtc_index as isize));
|
|
|
|
|
let crtc = (self.xrandr.XRRGetCrtcInfo)(self.display, resources, crtc_id);
|
|
|
|
|
let is_active = (*crtc).width > 0 && (*crtc).height > 0 && (*crtc).noutput > 0;
|
|
|
|
|
if is_active {
|
|
|
|
|
let crtc = util::MonitorRepr::from(crtc);
|
|
|
|
|
let is_primary = crtc.get_output() == primary;
|
|
|
|
|
has_primary |= is_primary;
|
2019-02-05 10:30:33 -05:00
|
|
|
MonitorHandle::from_repr(
|
2018-06-14 19:42:18 -04:00
|
|
|
self,
|
|
|
|
|
resources,
|
|
|
|
|
crtc_id as u32,
|
|
|
|
|
crtc,
|
|
|
|
|
is_primary,
|
2018-11-17 15:51:39 -05:00
|
|
|
).map(|monitor_id| available.push(monitor_id));
|
2018-06-14 19:42:18 -04:00
|
|
|
}
|
|
|
|
|
(self.xrandr.XRRFreeCrtcInfo)(crtc);
|
|
|
|
|
}
|
2018-05-14 08:14:57 -04:00
|
|
|
}
|
|
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
// If no monitors were detected as being primary, we just pick one ourselves!
|
|
|
|
|
if !has_primary {
|
|
|
|
|
if let Some(ref mut fallback) = available.first_mut() {
|
|
|
|
|
// Setting this here will come in handy if we ever add an `is_primary` method.
|
|
|
|
|
fallback.primary = true;
|
|
|
|
|
}
|
2018-05-22 09:07:46 -04:00
|
|
|
}
|
|
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
(self.xrandr.XRRFreeScreenResources)(resources);
|
|
|
|
|
available
|
|
|
|
|
}
|
2018-05-14 08:14:57 -04:00
|
|
|
}
|
|
|
|
|
|
2019-02-05 10:30:33 -05:00
|
|
|
pub fn get_available_monitors(&self) -> Vec<MonitorHandle> {
|
2018-06-14 19:42:18 -04:00
|
|
|
let mut monitors_lock = MONITORS.lock();
|
|
|
|
|
(*monitors_lock)
|
|
|
|
|
.as_ref()
|
|
|
|
|
.cloned()
|
|
|
|
|
.or_else(|| {
|
|
|
|
|
let monitors = Some(self.query_monitor_list());
|
|
|
|
|
if !DISABLE_MONITOR_LIST_CACHING {
|
|
|
|
|
(*monitors_lock) = monitors.clone();
|
|
|
|
|
}
|
|
|
|
|
monitors
|
|
|
|
|
})
|
|
|
|
|
.unwrap()
|
|
|
|
|
}
|
2018-05-14 08:14:57 -04:00
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
#[inline]
|
2019-02-05 10:30:33 -05:00
|
|
|
pub fn get_primary_monitor(&self) -> MonitorHandle {
|
2018-06-14 19:42:18 -04:00
|
|
|
self.get_available_monitors()
|
|
|
|
|
.into_iter()
|
|
|
|
|
.find(|monitor| monitor.primary)
|
|
|
|
|
.expect("[winit] Failed to find any monitors using XRandR.")
|
|
|
|
|
}
|
2018-05-14 08:14:57 -04:00
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
pub fn select_xrandr_input(&self, root: Window) -> Result<c_int, XError> {
|
|
|
|
|
{
|
|
|
|
|
let mut version_lock = XRANDR_VERSION.lock();
|
|
|
|
|
if version_lock.is_none() {
|
|
|
|
|
let mut major = 0;
|
|
|
|
|
let mut minor = 0;
|
|
|
|
|
let has_extension = unsafe {
|
|
|
|
|
(self.xrandr.XRRQueryVersion)(
|
|
|
|
|
self.display,
|
|
|
|
|
&mut major,
|
|
|
|
|
&mut minor,
|
|
|
|
|
)
|
|
|
|
|
};
|
|
|
|
|
if has_extension != True {
|
|
|
|
|
panic!("[winit] XRandR extension not available.");
|
|
|
|
|
}
|
|
|
|
|
*version_lock = Some((major, minor));
|
2018-05-22 09:07:46 -04:00
|
|
|
}
|
|
|
|
|
}
|
2018-05-14 08:14:57 -04:00
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
let mut event_offset = 0;
|
|
|
|
|
let mut error_offset = 0;
|
|
|
|
|
let status = unsafe {
|
|
|
|
|
(self.xrandr.XRRQueryExtension)(
|
|
|
|
|
self.display,
|
|
|
|
|
&mut event_offset,
|
|
|
|
|
&mut error_offset,
|
|
|
|
|
)
|
|
|
|
|
};
|
2018-05-14 08:14:57 -04:00
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
if status != True {
|
|
|
|
|
self.check_errors()?;
|
|
|
|
|
unreachable!("[winit] `XRRQueryExtension` failed but no error was received.");
|
|
|
|
|
}
|
2018-05-14 08:14:57 -04:00
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
let mask = RRCrtcChangeNotifyMask
|
|
|
|
|
| RROutputPropertyNotifyMask
|
|
|
|
|
| RRScreenChangeNotifyMask;
|
|
|
|
|
unsafe { (self.xrandr.XRRSelectInput)(self.display, root, mask) };
|
2018-05-14 08:14:57 -04:00
|
|
|
|
2018-06-14 19:42:18 -04:00
|
|
|
Ok(event_offset)
|
|
|
|
|
}
|
2018-05-14 08:14:57 -04:00
|
|
|
}
|