2016-01-17 10:12:21 +11:00
|
|
|
#![cfg(target_os = "macos")]
|
|
|
|
|
|
|
|
use std::os::raw::c_void;
|
2019-05-02 09:03:30 +10:00
|
|
|
|
|
|
|
use crate::dpi::LogicalSize;
|
|
|
|
use crate::monitor::MonitorHandle;
|
|
|
|
use crate::window::{Window, WindowBuilder};
|
2016-01-17 10:12:21 +11:00
|
|
|
|
|
|
|
/// Additional methods on `Window` that are specific to MacOS.
|
2019-02-06 02:30:33 +11:00
|
|
|
pub trait WindowExtMacOS {
|
2016-01-17 10:12:21 +11:00
|
|
|
/// Returns a pointer to the cocoa `NSWindow` that is used by this window.
|
|
|
|
///
|
2016-10-07 03:58:15 +11:00
|
|
|
/// The pointer will become invalid when the `Window` is destroyed.
|
2019-05-30 11:29:54 +10:00
|
|
|
fn nswindow(&self) -> *mut c_void;
|
2016-01-17 10:12:21 +11:00
|
|
|
|
2016-10-07 03:58:15 +11:00
|
|
|
/// Returns a pointer to the cocoa `NSView` that is used by this window.
|
|
|
|
///
|
|
|
|
/// The pointer will become invalid when the `Window` is destroyed.
|
2019-05-30 11:29:54 +10:00
|
|
|
fn nsview(&self) -> *mut c_void;
|
2018-11-07 15:50:40 +11:00
|
|
|
|
|
|
|
/// Request user attention, causing the application's dock icon to bounce.
|
|
|
|
/// Note that this has no effect if the application is already focused.
|
|
|
|
///
|
|
|
|
/// The `is_critical` flag has the following effects:
|
|
|
|
/// - `false`: the dock icon will only bounce once.
|
|
|
|
/// - `true`: the dock icon will bounce until the application is focused.
|
|
|
|
fn request_user_attention(&self, is_critical: bool);
|
2018-12-19 15:07:33 +11:00
|
|
|
|
2019-04-26 03:09:32 +10:00
|
|
|
/// Returns whether or not the window is in simple fullscreen mode.
|
2019-05-30 11:29:54 +10:00
|
|
|
fn simple_fullscreen(&self) -> bool;
|
2019-04-26 03:09:32 +10:00
|
|
|
|
2018-12-19 15:07:33 +11:00
|
|
|
/// Toggles a fullscreen mode that doesn't require a new macOS space.
|
|
|
|
/// Returns a boolean indicating whether the transition was successful (this
|
|
|
|
/// won't work if the window was already in the native fullscreen).
|
|
|
|
///
|
|
|
|
/// This is how fullscreen used to work on macOS in versions before Lion.
|
|
|
|
/// And allows the user to have a fullscreen window without using another
|
|
|
|
/// space or taking control over the entire monitor.
|
|
|
|
fn set_simple_fullscreen(&self, fullscreen: bool) -> bool;
|
2016-01-17 10:12:21 +11:00
|
|
|
}
|
2016-04-29 09:30:44 +10:00
|
|
|
|
2019-02-06 02:30:33 +11:00
|
|
|
impl WindowExtMacOS for Window {
|
2016-10-08 18:18:00 +11:00
|
|
|
#[inline]
|
2019-05-30 11:29:54 +10:00
|
|
|
fn nswindow(&self) -> *mut c_void {
|
|
|
|
self.window.nswindow()
|
2016-10-08 18:18:00 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2019-05-30 11:29:54 +10:00
|
|
|
fn nsview(&self) -> *mut c_void {
|
|
|
|
self.window.nsview()
|
2016-10-08 18:18:00 +11:00
|
|
|
}
|
2018-11-07 15:50:40 +11:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn request_user_attention(&self, is_critical: bool) {
|
|
|
|
self.window.request_user_attention(is_critical)
|
|
|
|
}
|
2018-12-19 15:07:33 +11:00
|
|
|
|
2019-04-26 03:09:32 +10:00
|
|
|
#[inline]
|
2019-05-30 11:29:54 +10:00
|
|
|
fn simple_fullscreen(&self) -> bool {
|
|
|
|
self.window.simple_fullscreen()
|
2019-04-26 03:09:32 +10:00
|
|
|
}
|
|
|
|
|
2018-12-19 15:07:33 +11:00
|
|
|
#[inline]
|
|
|
|
fn set_simple_fullscreen(&self, fullscreen: bool) -> bool {
|
|
|
|
self.window.set_simple_fullscreen(fullscreen)
|
|
|
|
}
|
2016-10-08 18:18:00 +11:00
|
|
|
}
|
|
|
|
|
2016-04-29 09:30:44 +10:00
|
|
|
/// Corresponds to `NSApplicationActivationPolicy`.
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq)]
|
|
|
|
pub enum ActivationPolicy {
|
|
|
|
/// Corresponds to `NSApplicationActivationPolicyRegular`.
|
|
|
|
Regular,
|
|
|
|
/// Corresponds to `NSApplicationActivationPolicyAccessory`.
|
|
|
|
Accessory,
|
|
|
|
/// Corresponds to `NSApplicationActivationPolicyProhibited`.
|
|
|
|
Prohibited,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for ActivationPolicy {
|
|
|
|
fn default() -> Self {
|
|
|
|
ActivationPolicy::Regular
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Additional methods on `WindowBuilder` that are specific to MacOS.
|
2018-03-23 03:57:35 +11:00
|
|
|
///
|
|
|
|
/// **Note:** Properties dealing with the titlebar will be overwritten by the `with_decorations` method
|
|
|
|
/// on the base `WindowBuilder`:
|
|
|
|
///
|
|
|
|
/// - `with_titlebar_transparent`
|
|
|
|
/// - `with_title_hidden`
|
|
|
|
/// - `with_titlebar_hidden`
|
|
|
|
/// - `with_titlebar_buttons_hidden`
|
|
|
|
/// - `with_fullsize_content_view`
|
2019-02-06 02:30:33 +11:00
|
|
|
pub trait WindowBuilderExtMacOS {
|
2018-05-17 00:16:36 +10:00
|
|
|
/// Sets the activation policy for the window being built.
|
2017-01-22 17:55:30 +11:00
|
|
|
fn with_activation_policy(self, activation_policy: ActivationPolicy) -> WindowBuilder;
|
2018-05-17 00:16:36 +10:00
|
|
|
/// Enables click-and-drag behavior for the entire window, not just the titlebar.
|
2018-01-23 05:07:51 +11:00
|
|
|
fn with_movable_by_window_background(self, movable_by_window_background: bool) -> WindowBuilder;
|
2018-05-17 00:16:36 +10:00
|
|
|
/// Makes the titlebar transparent and allows the content to appear behind it.
|
2018-03-23 03:57:35 +11:00
|
|
|
fn with_titlebar_transparent(self, titlebar_transparent: bool) -> WindowBuilder;
|
2018-05-17 00:16:36 +10:00
|
|
|
/// Hides the window title.
|
2018-03-23 03:57:35 +11:00
|
|
|
fn with_title_hidden(self, title_hidden: bool) -> WindowBuilder;
|
2018-05-17 00:16:36 +10:00
|
|
|
/// Hides the window titlebar.
|
2018-03-23 03:57:35 +11:00
|
|
|
fn with_titlebar_hidden(self, titlebar_hidden: bool) -> WindowBuilder;
|
2018-05-17 00:16:36 +10:00
|
|
|
/// Hides the window titlebar buttons.
|
2018-03-23 03:57:35 +11:00
|
|
|
fn with_titlebar_buttons_hidden(self, titlebar_buttons_hidden: bool) -> WindowBuilder;
|
2018-05-17 00:16:36 +10:00
|
|
|
/// Makes the window content appear behind the titlebar.
|
2018-03-23 03:57:35 +11:00
|
|
|
fn with_fullsize_content_view(self, fullsize_content_view: bool) -> WindowBuilder;
|
2018-05-17 00:16:36 +10:00
|
|
|
/// Build window with `resizeIncrements` property. Values must not be 0.
|
2018-06-15 09:42:18 +10:00
|
|
|
fn with_resize_increments(self, increments: LogicalSize) -> WindowBuilder;
|
2016-04-29 09:30:44 +10:00
|
|
|
}
|
|
|
|
|
2019-02-06 02:30:33 +11:00
|
|
|
impl WindowBuilderExtMacOS for WindowBuilder {
|
2016-04-29 09:30:44 +10:00
|
|
|
#[inline]
|
2016-09-20 04:05:48 +10:00
|
|
|
fn with_activation_policy(mut self, activation_policy: ActivationPolicy) -> WindowBuilder {
|
2016-04-29 09:30:44 +10:00
|
|
|
self.platform_specific.activation_policy = activation_policy;
|
|
|
|
self
|
|
|
|
}
|
2018-01-23 05:07:51 +11:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn with_movable_by_window_background(mut self, movable_by_window_background: bool) -> WindowBuilder {
|
|
|
|
self.platform_specific.movable_by_window_background = movable_by_window_background;
|
|
|
|
self
|
|
|
|
}
|
2018-03-23 03:57:35 +11:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn with_titlebar_transparent(mut self, titlebar_transparent: bool) -> WindowBuilder {
|
|
|
|
self.platform_specific.titlebar_transparent = titlebar_transparent;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn with_titlebar_hidden(mut self, titlebar_hidden: bool) -> WindowBuilder {
|
|
|
|
self.platform_specific.titlebar_hidden = titlebar_hidden;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn with_titlebar_buttons_hidden(mut self, titlebar_buttons_hidden: bool) -> WindowBuilder {
|
|
|
|
self.platform_specific.titlebar_buttons_hidden = titlebar_buttons_hidden;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn with_title_hidden(mut self, title_hidden: bool) -> WindowBuilder {
|
|
|
|
self.platform_specific.title_hidden = title_hidden;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn with_fullsize_content_view(mut self, fullsize_content_view: bool) -> WindowBuilder {
|
|
|
|
self.platform_specific.fullsize_content_view = fullsize_content_view;
|
|
|
|
self
|
|
|
|
}
|
2018-05-17 00:16:36 +10:00
|
|
|
|
|
|
|
#[inline]
|
2018-06-15 09:42:18 +10:00
|
|
|
fn with_resize_increments(mut self, increments: LogicalSize) -> WindowBuilder {
|
|
|
|
self.platform_specific.resize_increments = Some(increments.into());
|
2018-05-17 00:16:36 +10:00
|
|
|
self
|
|
|
|
}
|
2016-04-29 09:30:44 +10:00
|
|
|
}
|
2017-08-30 16:49:18 +10:00
|
|
|
|
2019-02-06 02:30:33 +11:00
|
|
|
/// Additional methods on `MonitorHandle` that are specific to MacOS.
|
|
|
|
pub trait MonitorHandleExtMacOS {
|
2017-08-30 16:49:18 +10:00
|
|
|
/// Returns the identifier of the monitor for Cocoa.
|
|
|
|
fn native_id(&self) -> u32;
|
2018-03-06 19:35:04 +11:00
|
|
|
/// Returns a pointer to the NSScreen representing this monitor.
|
2019-05-30 11:29:54 +10:00
|
|
|
fn nsscreen(&self) -> Option<*mut c_void>;
|
2017-08-30 16:49:18 +10:00
|
|
|
}
|
|
|
|
|
2019-02-06 02:30:33 +11:00
|
|
|
impl MonitorHandleExtMacOS for MonitorHandle {
|
2017-08-30 16:49:18 +10:00
|
|
|
#[inline]
|
|
|
|
fn native_id(&self) -> u32 {
|
2019-05-30 11:29:54 +10:00
|
|
|
self.inner.native_identifier()
|
2017-08-30 16:49:18 +10:00
|
|
|
}
|
2018-03-06 19:35:04 +11:00
|
|
|
|
2019-05-30 11:29:54 +10:00
|
|
|
fn nsscreen(&self) -> Option<*mut c_void> {
|
|
|
|
self.inner.nsscreen().map(|s| s as *mut c_void)
|
2018-03-06 19:35:04 +11:00
|
|
|
}
|
2017-08-30 16:49:18 +10:00
|
|
|
}
|