2018-06-15 09:42:18 +10:00
|
|
|
use winapi::shared::minwindef::{BOOL, DWORD, LPARAM, TRUE};
|
|
|
|
use winapi::shared::windef::{HDC, HMONITOR, HWND, LPRECT, POINT};
|
2018-07-02 01:01:46 +10:00
|
|
|
use winapi::um::winnt::LONG;
|
2017-12-25 00:46:47 +11:00
|
|
|
use winapi::um::winuser;
|
2014-07-31 18:52:05 +10:00
|
|
|
|
2017-10-26 02:12:39 +11:00
|
|
|
use std::{mem, ptr};
|
2018-06-15 09:42:18 +10:00
|
|
|
use std::collections::VecDeque;
|
2015-01-02 18:09:16 +11:00
|
|
|
|
2019-02-06 02:30:33 +11:00
|
|
|
use super::{EventLoop, util};
|
2018-06-17 00:14:12 +10:00
|
|
|
use dpi::{PhysicalPosition, PhysicalSize};
|
2019-02-06 02:30:33 +11:00
|
|
|
use platform_impl::platform::dpi::{dpi_to_scale_factor, get_monitor_dpi};
|
|
|
|
use platform_impl::platform::window::Window;
|
2017-09-01 19:04:57 +10:00
|
|
|
|
2019-02-06 02:30:33 +11:00
|
|
|
/// Win32 implementation of the main `MonitorHandle` object.
|
2018-05-14 22:14:57 +10:00
|
|
|
#[derive(Debug, Clone)]
|
2019-02-06 02:30:33 +11:00
|
|
|
pub struct MonitorHandle {
|
2017-10-26 02:12:39 +11:00
|
|
|
/// Monitor handle.
|
|
|
|
hmonitor: HMonitor,
|
2014-08-02 07:02:26 +10:00
|
|
|
/// The system name of the monitor.
|
2015-03-25 07:29:17 +11:00
|
|
|
monitor_name: String,
|
2015-04-12 17:32:25 +10:00
|
|
|
/// True if this is the primary monitor.
|
|
|
|
primary: bool,
|
2014-08-02 07:02:26 +10:00
|
|
|
/// The position of the monitor in pixels on the desktop.
|
|
|
|
///
|
2017-10-20 04:08:05 +11:00
|
|
|
/// A window that is positioned at these coordinates will overlap the monitor.
|
|
|
|
position: (i32, i32),
|
2014-08-02 19:17:49 +10:00
|
|
|
/// The current resolution in pixels on the monitor.
|
2015-01-13 23:21:36 +11:00
|
|
|
dimensions: (u32, u32),
|
2018-06-15 09:42:18 +10:00
|
|
|
/// DPI scale factor.
|
|
|
|
hidpi_factor: f64,
|
2015-03-25 07:29:17 +11:00
|
|
|
}
|
2014-07-31 18:52:05 +10:00
|
|
|
|
2017-10-26 02:12:39 +11:00
|
|
|
// Send is not implemented for HMONITOR, we have to wrap it and implement it manually.
|
|
|
|
// For more info see:
|
|
|
|
// https://github.com/retep998/winapi-rs/issues/360
|
|
|
|
// https://github.com/retep998/winapi-rs/issues/396
|
2018-05-14 22:14:57 +10:00
|
|
|
#[derive(Debug, Clone)]
|
2017-12-25 00:46:47 +11:00
|
|
|
struct HMonitor(HMONITOR);
|
2014-08-02 07:02:26 +10:00
|
|
|
|
2017-10-26 02:12:39 +11:00
|
|
|
unsafe impl Send for HMonitor {}
|
2014-07-31 18:52:05 +10:00
|
|
|
|
2018-06-15 09:42:18 +10:00
|
|
|
unsafe extern "system" fn monitor_enum_proc(
|
|
|
|
hmonitor: HMONITOR,
|
|
|
|
_hdc: HDC,
|
|
|
|
_place: LPRECT,
|
|
|
|
data: LPARAM,
|
|
|
|
) -> BOOL {
|
2019-02-06 02:30:33 +11:00
|
|
|
let monitors = data as *mut VecDeque<MonitorHandle>;
|
|
|
|
(*monitors).push_back(MonitorHandle::from_hmonitor(hmonitor));
|
2018-06-15 09:42:18 +10:00
|
|
|
TRUE // continue enumeration
|
2017-10-26 02:12:39 +11:00
|
|
|
}
|
|
|
|
|
2019-02-06 02:30:33 +11:00
|
|
|
pub fn get_available_monitors() -> VecDeque<MonitorHandle> {
|
|
|
|
let mut monitors: VecDeque<MonitorHandle> = VecDeque::new();
|
2018-06-17 00:14:12 +10:00
|
|
|
unsafe {
|
|
|
|
winuser::EnumDisplayMonitors(
|
|
|
|
ptr::null_mut(),
|
|
|
|
ptr::null_mut(),
|
|
|
|
Some(monitor_enum_proc),
|
|
|
|
&mut monitors as *mut _ as LPARAM,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
monitors
|
|
|
|
}
|
|
|
|
|
2019-02-06 02:30:33 +11:00
|
|
|
pub fn get_primary_monitor() -> MonitorHandle {
|
2018-06-17 00:14:12 +10:00
|
|
|
const ORIGIN: POINT = POINT { x: 0, y: 0 };
|
|
|
|
let hmonitor = unsafe {
|
|
|
|
winuser::MonitorFromPoint(ORIGIN, winuser::MONITOR_DEFAULTTOPRIMARY)
|
|
|
|
};
|
2019-02-06 02:30:33 +11:00
|
|
|
MonitorHandle::from_hmonitor(hmonitor)
|
2018-06-17 00:14:12 +10:00
|
|
|
}
|
|
|
|
|
2019-02-06 02:30:33 +11:00
|
|
|
pub fn get_current_monitor(hwnd: HWND) -> MonitorHandle {
|
|
|
|
let hmonitor = unsafe {
|
|
|
|
winuser::MonitorFromWindow(hwnd, winuser::MONITOR_DEFAULTTONEAREST)
|
|
|
|
};
|
|
|
|
MonitorHandle::from_hmonitor(hmonitor)
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> EventLoop<T> {
|
2018-06-15 09:42:18 +10:00
|
|
|
// TODO: Investigate opportunities for caching
|
2019-02-06 02:30:33 +11:00
|
|
|
pub fn get_available_monitors(&self) -> VecDeque<MonitorHandle> {
|
2018-06-17 00:14:12 +10:00
|
|
|
get_available_monitors()
|
2014-07-31 18:52:05 +10:00
|
|
|
}
|
|
|
|
|
2019-02-06 02:30:33 +11:00
|
|
|
pub fn get_primary_monitor(&self) -> MonitorHandle {
|
2018-06-17 00:14:12 +10:00
|
|
|
get_primary_monitor()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Window {
|
2019-02-06 02:30:33 +11:00
|
|
|
pub fn get_available_monitors(&self) -> VecDeque<MonitorHandle> {
|
2018-06-17 00:14:12 +10:00
|
|
|
get_available_monitors()
|
|
|
|
}
|
|
|
|
|
2019-02-06 02:30:33 +11:00
|
|
|
pub fn get_primary_monitor(&self) -> MonitorHandle {
|
2018-06-17 00:14:12 +10:00
|
|
|
get_primary_monitor()
|
2018-06-15 09:42:18 +10:00
|
|
|
}
|
|
|
|
}
|
2014-07-31 18:52:05 +10:00
|
|
|
|
2019-02-05 03:52:00 +11:00
|
|
|
pub(crate) fn get_monitor_info(hmonitor: HMONITOR) -> Result<winuser::MONITORINFOEXW, util::WinError> {
|
2018-06-15 09:42:18 +10:00
|
|
|
let mut monitor_info: winuser::MONITORINFOEXW = unsafe { mem::uninitialized() };
|
|
|
|
monitor_info.cbSize = mem::size_of::<winuser::MONITORINFOEXW>() as DWORD;
|
|
|
|
let status = unsafe {
|
|
|
|
winuser::GetMonitorInfoW(
|
|
|
|
hmonitor,
|
|
|
|
&mut monitor_info as *mut winuser::MONITORINFOEXW as *mut winuser::MONITORINFO,
|
|
|
|
)
|
|
|
|
};
|
|
|
|
if status == 0 {
|
|
|
|
Err(util::WinError::from_last_error())
|
|
|
|
} else {
|
|
|
|
Ok(monitor_info)
|
2017-09-01 19:04:57 +10:00
|
|
|
}
|
2014-07-31 18:52:05 +10:00
|
|
|
}
|
|
|
|
|
2019-02-06 02:30:33 +11:00
|
|
|
impl MonitorHandle {
|
2018-06-15 09:42:18 +10:00
|
|
|
pub(crate) fn from_hmonitor(hmonitor: HMONITOR) -> Self {
|
|
|
|
let monitor_info = get_monitor_info(hmonitor).expect("`GetMonitorInfoW` failed");
|
|
|
|
let place = monitor_info.rcMonitor;
|
|
|
|
let dimensions = (
|
|
|
|
(place.right - place.left) as u32,
|
|
|
|
(place.bottom - place.top) as u32,
|
|
|
|
);
|
2019-02-06 02:30:33 +11:00
|
|
|
MonitorHandle {
|
2018-06-15 09:42:18 +10:00
|
|
|
hmonitor: HMonitor(hmonitor),
|
|
|
|
monitor_name: util::wchar_ptr_to_string(monitor_info.szDevice.as_ptr()),
|
|
|
|
primary: util::has_flag(monitor_info.dwFlags, winuser::MONITORINFOF_PRIMARY),
|
|
|
|
position: (place.left as i32, place.top as i32),
|
|
|
|
dimensions,
|
|
|
|
hidpi_factor: dpi_to_scale_factor(get_monitor_dpi(hmonitor).unwrap_or(96)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-02 01:01:46 +10:00
|
|
|
pub(crate) fn contains_point(&self, point: &POINT) -> bool {
|
|
|
|
let left = self.position.0 as LONG;
|
|
|
|
let right = left + self.dimensions.0 as LONG;
|
|
|
|
let top = self.position.1 as LONG;
|
|
|
|
let bottom = top + self.dimensions.1 as LONG;
|
|
|
|
point.x >= left && point.x <= right && point.y >= top && point.y <= bottom
|
|
|
|
}
|
|
|
|
|
2015-09-21 22:42:05 +10:00
|
|
|
#[inline]
|
2014-07-31 18:52:05 +10:00
|
|
|
pub fn get_name(&self) -> Option<String> {
|
2017-10-26 02:12:39 +11:00
|
|
|
Some(self.monitor_name.clone())
|
2014-07-31 18:52:05 +10:00
|
|
|
}
|
|
|
|
|
2015-09-21 22:42:05 +10:00
|
|
|
#[inline]
|
2017-08-30 16:49:18 +10:00
|
|
|
pub fn get_native_identifier(&self) -> String {
|
|
|
|
self.monitor_name.clone()
|
2015-03-17 07:52:58 +11:00
|
|
|
}
|
|
|
|
|
2017-10-26 02:12:39 +11:00
|
|
|
#[inline]
|
2017-12-25 00:46:47 +11:00
|
|
|
pub fn get_hmonitor(&self) -> HMONITOR {
|
2017-10-26 02:12:39 +11:00
|
|
|
self.hmonitor.0
|
|
|
|
}
|
|
|
|
|
2015-09-21 22:42:05 +10:00
|
|
|
#[inline]
|
2018-06-15 09:42:18 +10:00
|
|
|
pub fn get_dimensions(&self) -> PhysicalSize {
|
|
|
|
self.dimensions.into()
|
2014-08-02 19:17:49 +10:00
|
|
|
}
|
|
|
|
|
2015-09-21 22:42:05 +10:00
|
|
|
#[inline]
|
2018-06-15 09:42:18 +10:00
|
|
|
pub fn get_position(&self) -> PhysicalPosition {
|
|
|
|
self.position.into()
|
2014-07-31 18:52:05 +10:00
|
|
|
}
|
2017-10-17 22:56:38 +11:00
|
|
|
|
|
|
|
#[inline]
|
2018-06-15 09:42:18 +10:00
|
|
|
pub fn get_hidpi_factor(&self) -> f64 {
|
2017-10-26 02:12:39 +11:00
|
|
|
self.hidpi_factor
|
2017-10-17 22:56:38 +11:00
|
|
|
}
|
2014-07-31 18:52:05 +10:00
|
|
|
}
|