2022-12-22 21:35:33 +02:00
|
|
|
#![allow(clippy::unnecessary_cast)]
|
|
|
|
|
|
2023-08-14 21:19:57 +02:00
|
|
|
use std::collections::VecDeque;
|
2019-05-25 18:10:41 -07:00
|
|
|
|
2023-08-14 21:19:57 +02:00
|
|
|
use icrate::Foundation::{CGFloat, CGPoint, CGRect, CGSize, MainThreadBound, MainThreadMarker};
|
2023-12-25 09:25:09 +01:00
|
|
|
use log::{debug, warn};
|
2023-07-29 00:33:03 +02:00
|
|
|
use objc2::rc::Id;
|
2024-02-22 22:28:49 +01:00
|
|
|
use objc2::runtime::{AnyObject, NSObject};
|
|
|
|
|
use objc2::{class, declare_class, msg_send, msg_send_id, mutability, ClassType, DeclaredClass};
|
2019-06-21 11:33:15 -04:00
|
|
|
|
2023-08-27 17:04:39 +02:00
|
|
|
use super::app_state::EventWrapper;
|
2024-02-22 22:28:49 +01:00
|
|
|
use super::uikit::{
|
|
|
|
|
UIApplication, UIResponder, UIScreen, UIScreenOverscanCompensation, UIViewController, UIWindow,
|
|
|
|
|
};
|
|
|
|
|
use super::view::WinitView;
|
|
|
|
|
use super::view_controller::WinitViewController;
|
2019-06-21 11:33:15 -04:00
|
|
|
use crate::{
|
2023-12-25 07:20:52 +01:00
|
|
|
cursor::Cursor,
|
2019-10-18 18:31:26 +03:00
|
|
|
dpi::{self, LogicalPosition, LogicalSize, PhysicalPosition, PhysicalSize, Position, Size},
|
2019-06-21 11:33:15 -04:00
|
|
|
error::{ExternalError, NotSupportedError, OsError as RootOsError},
|
2019-09-16 21:27:46 +03:00
|
|
|
event::{Event, WindowEvent},
|
2019-06-21 11:33:15 -04:00
|
|
|
icon::Icon,
|
2023-10-20 12:26:10 +02:00
|
|
|
platform::ios::{ScreenEdge, StatusBarStyle, ValidOrientations},
|
2024-01-31 17:29:59 +04:00
|
|
|
platform_impl::platform::{app_state, monitor, ActiveEventLoop, Fullscreen, MonitorHandle},
|
2020-11-27 03:03:08 +01:00
|
|
|
window::{
|
2023-12-25 07:20:52 +01:00
|
|
|
CursorGrabMode, ImePurpose, ResizeDirection, Theme, UserAttentionType, WindowAttributes,
|
|
|
|
|
WindowButtons, WindowId as RootWindowId, WindowLevel,
|
2020-11-27 03:03:08 +01:00
|
|
|
},
|
2019-05-25 18:10:41 -07:00
|
|
|
};
|
|
|
|
|
|
2024-02-22 22:28:49 +01:00
|
|
|
declare_class!(
|
|
|
|
|
#[derive(Debug, PartialEq, Eq, Hash)]
|
|
|
|
|
pub(crate) struct WinitUIWindow;
|
|
|
|
|
|
|
|
|
|
unsafe impl ClassType for WinitUIWindow {
|
|
|
|
|
#[inherits(UIResponder, NSObject)]
|
|
|
|
|
type Super = UIWindow;
|
|
|
|
|
type Mutability = mutability::InteriorMutable;
|
|
|
|
|
const NAME: &'static str = "WinitUIWindow";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl DeclaredClass for WinitUIWindow {}
|
|
|
|
|
|
|
|
|
|
unsafe impl WinitUIWindow {
|
|
|
|
|
#[method(becomeKeyWindow)]
|
|
|
|
|
fn become_key_window(&self) {
|
|
|
|
|
let mtm = MainThreadMarker::new().unwrap();
|
|
|
|
|
app_state::handle_nonuser_event(
|
|
|
|
|
mtm,
|
|
|
|
|
EventWrapper::StaticEvent(Event::WindowEvent {
|
|
|
|
|
window_id: RootWindowId(self.id()),
|
|
|
|
|
event: WindowEvent::Focused(true),
|
|
|
|
|
}),
|
|
|
|
|
);
|
|
|
|
|
let _: () = unsafe { msg_send![super(self), becomeKeyWindow] };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[method(resignKeyWindow)]
|
|
|
|
|
fn resign_key_window(&self) {
|
|
|
|
|
let mtm = MainThreadMarker::new().unwrap();
|
|
|
|
|
app_state::handle_nonuser_event(
|
|
|
|
|
mtm,
|
|
|
|
|
EventWrapper::StaticEvent(Event::WindowEvent {
|
|
|
|
|
window_id: RootWindowId(self.id()),
|
|
|
|
|
event: WindowEvent::Focused(false),
|
|
|
|
|
}),
|
|
|
|
|
);
|
|
|
|
|
let _: () = unsafe { msg_send![super(self), resignKeyWindow] };
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
impl WinitUIWindow {
|
|
|
|
|
pub(crate) fn new(
|
|
|
|
|
mtm: MainThreadMarker,
|
|
|
|
|
window_attributes: &WindowAttributes,
|
|
|
|
|
frame: CGRect,
|
|
|
|
|
view_controller: &UIViewController,
|
|
|
|
|
) -> Id<Self> {
|
|
|
|
|
let this: Id<Self> = unsafe { msg_send_id![Self::alloc(), initWithFrame: frame] };
|
|
|
|
|
|
|
|
|
|
this.setRootViewController(Some(view_controller));
|
|
|
|
|
|
|
|
|
|
match window_attributes.fullscreen.clone().map(Into::into) {
|
|
|
|
|
Some(Fullscreen::Exclusive(ref video_mode)) => {
|
|
|
|
|
let monitor = video_mode.monitor();
|
|
|
|
|
let screen = monitor.ui_screen(mtm);
|
|
|
|
|
screen.setCurrentMode(Some(video_mode.screen_mode(mtm)));
|
|
|
|
|
this.setScreen(screen);
|
|
|
|
|
}
|
|
|
|
|
Some(Fullscreen::Borderless(Some(ref monitor))) => {
|
|
|
|
|
let screen = monitor.ui_screen(mtm);
|
|
|
|
|
this.setScreen(screen);
|
|
|
|
|
}
|
|
|
|
|
_ => (),
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub(crate) fn id(&self) -> WindowId {
|
|
|
|
|
(self as *const Self as usize as u64).into()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-25 18:10:41 -07:00
|
|
|
pub struct Inner {
|
2023-08-14 21:19:57 +02:00
|
|
|
window: Id<WinitUIWindow>,
|
|
|
|
|
view_controller: Id<WinitViewController>,
|
|
|
|
|
view: Id<WinitView>,
|
2019-09-04 14:23:11 -07:00
|
|
|
gl_or_metal_backed: bool,
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Inner {
|
|
|
|
|
pub fn set_title(&self, _title: &str) {
|
|
|
|
|
debug!("`Window::set_title` is ignored on iOS")
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-15 23:39:36 +03:00
|
|
|
pub fn set_transparent(&self, _transparent: bool) {
|
|
|
|
|
debug!("`Window::set_transparent` is ignored on iOS")
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-08 22:53:15 +03:00
|
|
|
pub fn set_blur(&self, _blur: bool) {
|
|
|
|
|
debug!("`Window::set_blur` is ignored on iOS")
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn set_visible(&self, visible: bool) {
|
2022-12-28 18:36:32 +01:00
|
|
|
self.window.setHidden(!visible)
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2022-02-17 20:44:14 +02:00
|
|
|
pub fn is_visible(&self) -> Option<bool> {
|
|
|
|
|
warn!("`Window::is_visible` is ignored on iOS");
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-25 18:10:41 -07:00
|
|
|
pub fn request_redraw(&self) {
|
2023-08-27 17:04:39 +02:00
|
|
|
if self.gl_or_metal_backed {
|
|
|
|
|
let mtm = MainThreadMarker::new().unwrap();
|
|
|
|
|
// `setNeedsDisplay` does nothing on UIViews which are directly backed by CAEAGLLayer or CAMetalLayer.
|
|
|
|
|
// Ordinarily the OS sets up a bunch of UIKit state before calling drawRect: on a UIView, but when using
|
|
|
|
|
// raw or gl/metal for drawing this work is completely avoided.
|
|
|
|
|
//
|
|
|
|
|
// The docs for `setNeedsDisplay` don't mention `CAMetalLayer`; however, this has been confirmed via
|
|
|
|
|
// testing.
|
|
|
|
|
//
|
|
|
|
|
// https://developer.apple.com/documentation/uikit/uiview/1622437-setneedsdisplay?language=objc
|
|
|
|
|
app_state::queue_gl_or_metal_redraw(mtm, self.window.clone());
|
|
|
|
|
} else {
|
|
|
|
|
self.view.setNeedsDisplay();
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
}
|
2019-05-29 21:29:54 -04:00
|
|
|
|
2023-06-22 08:08:53 +04:00
|
|
|
pub fn pre_present_notify(&self) {}
|
|
|
|
|
|
2020-01-04 01:33:07 -05:00
|
|
|
pub fn inner_position(&self) -> Result<PhysicalPosition<i32>, NotSupportedError> {
|
2023-08-14 21:19:57 +02:00
|
|
|
let safe_area = self.safe_area_screen_space();
|
|
|
|
|
let position = LogicalPosition {
|
|
|
|
|
x: safe_area.origin.x as f64,
|
|
|
|
|
y: safe_area.origin.y as f64,
|
|
|
|
|
};
|
|
|
|
|
let scale_factor = self.scale_factor();
|
|
|
|
|
Ok(position.to_physical(scale_factor))
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2020-01-04 01:33:07 -05:00
|
|
|
pub fn outer_position(&self) -> Result<PhysicalPosition<i32>, NotSupportedError> {
|
2023-08-14 21:19:57 +02:00
|
|
|
let screen_frame = self.screen_frame();
|
|
|
|
|
let position = LogicalPosition {
|
|
|
|
|
x: screen_frame.origin.x as f64,
|
|
|
|
|
y: screen_frame.origin.y as f64,
|
|
|
|
|
};
|
|
|
|
|
let scale_factor = self.scale_factor();
|
|
|
|
|
Ok(position.to_physical(scale_factor))
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2019-10-18 18:31:26 +03:00
|
|
|
pub fn set_outer_position(&self, physical_position: Position) {
|
2023-08-14 21:19:57 +02:00
|
|
|
let scale_factor = self.scale_factor();
|
|
|
|
|
let position = physical_position.to_logical::<f64>(scale_factor);
|
|
|
|
|
let screen_frame = self.screen_frame();
|
|
|
|
|
let new_screen_frame = CGRect {
|
|
|
|
|
origin: CGPoint {
|
|
|
|
|
x: position.x as _,
|
|
|
|
|
y: position.y as _,
|
|
|
|
|
},
|
|
|
|
|
size: screen_frame.size,
|
|
|
|
|
};
|
|
|
|
|
let bounds = self.rect_from_screen_space(new_screen_frame);
|
|
|
|
|
self.window.setBounds(bounds);
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2020-01-04 01:33:07 -05:00
|
|
|
pub fn inner_size(&self) -> PhysicalSize<u32> {
|
2023-08-14 21:19:57 +02:00
|
|
|
let scale_factor = self.scale_factor();
|
|
|
|
|
let safe_area = self.safe_area_screen_space();
|
|
|
|
|
let size = LogicalSize {
|
|
|
|
|
width: safe_area.size.width as f64,
|
|
|
|
|
height: safe_area.size.height as f64,
|
|
|
|
|
};
|
|
|
|
|
size.to_physical(scale_factor)
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2020-01-04 01:33:07 -05:00
|
|
|
pub fn outer_size(&self) -> PhysicalSize<u32> {
|
2023-08-14 21:19:57 +02:00
|
|
|
let scale_factor = self.scale_factor();
|
|
|
|
|
let screen_frame = self.screen_frame();
|
|
|
|
|
let size = LogicalSize {
|
|
|
|
|
width: screen_frame.size.width as f64,
|
|
|
|
|
height: screen_frame.size.height as f64,
|
|
|
|
|
};
|
|
|
|
|
size.to_physical(scale_factor)
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2023-07-10 04:02:26 +00:00
|
|
|
pub fn request_inner_size(&self, _size: Size) -> Option<PhysicalSize<u32>> {
|
|
|
|
|
Some(self.inner_size())
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2019-10-18 18:31:26 +03:00
|
|
|
pub fn set_min_inner_size(&self, _dimensions: Option<Size>) {
|
2019-05-29 21:29:54 -04:00
|
|
|
warn!("`Window::set_min_inner_size` is ignored on iOS")
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2019-10-18 18:31:26 +03:00
|
|
|
pub fn set_max_inner_size(&self, _dimensions: Option<Size>) {
|
2019-05-29 21:29:54 -04:00
|
|
|
warn!("`Window::set_max_inner_size` is ignored on iOS")
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2022-09-03 21:50:22 +03:00
|
|
|
pub fn resize_increments(&self) -> Option<PhysicalSize<u32>> {
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn set_resize_increments(&self, _increments: Option<Size>) {
|
|
|
|
|
warn!("`Window::set_resize_increments` is ignored on iOS")
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-25 18:10:41 -07:00
|
|
|
pub fn set_resizable(&self, _resizable: bool) {
|
|
|
|
|
warn!("`Window::set_resizable` is ignored on iOS")
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-17 17:03:17 +02:00
|
|
|
pub fn is_resizable(&self) -> bool {
|
|
|
|
|
warn!("`Window::is_resizable` is ignored on iOS");
|
|
|
|
|
false
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-29 12:03:51 +02:00
|
|
|
#[inline]
|
|
|
|
|
pub fn set_enabled_buttons(&self, _buttons: WindowButtons) {
|
|
|
|
|
warn!("`Window::set_enabled_buttons` is ignored on iOS");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn enabled_buttons(&self) -> WindowButtons {
|
|
|
|
|
warn!("`Window::enabled_buttons` is ignored on iOS");
|
|
|
|
|
WindowButtons::all()
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 14:52:27 -05:00
|
|
|
pub fn scale_factor(&self) -> f64 {
|
2022-12-28 18:36:32 +01:00
|
|
|
self.view.contentScaleFactor() as _
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2023-12-25 07:20:52 +01:00
|
|
|
pub fn set_cursor(&self, _cursor: Cursor) {
|
|
|
|
|
debug!("`Window::set_cursor` ignored on iOS")
|
2023-12-16 22:02:17 +02:00
|
|
|
}
|
|
|
|
|
|
2019-10-18 18:31:26 +03:00
|
|
|
pub fn set_cursor_position(&self, _position: Position) -> Result<(), ExternalError> {
|
2019-05-29 21:29:54 -04:00
|
|
|
Err(ExternalError::NotSupported(NotSupportedError::new()))
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2022-06-13 09:43:14 +03:00
|
|
|
pub fn set_cursor_grab(&self, _: CursorGrabMode) -> Result<(), ExternalError> {
|
2019-05-29 21:29:54 -04:00
|
|
|
Err(ExternalError::NotSupported(NotSupportedError::new()))
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn set_cursor_visible(&self, _visible: bool) {
|
|
|
|
|
debug!("`Window::set_cursor_visible` is ignored on iOS")
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2021-03-07 10:43:23 +01:00
|
|
|
pub fn drag_window(&self) -> Result<(), ExternalError> {
|
|
|
|
|
Err(ExternalError::NotSupported(NotSupportedError::new()))
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-11 18:07:09 +01:00
|
|
|
pub fn drag_resize_window(&self, _direction: ResizeDirection) -> Result<(), ExternalError> {
|
|
|
|
|
Err(ExternalError::NotSupported(NotSupportedError::new()))
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-11 01:16:16 +03:30
|
|
|
#[inline]
|
|
|
|
|
pub fn show_window_menu(&self, _position: Position) {}
|
|
|
|
|
|
2022-04-12 19:10:46 +02:00
|
|
|
pub fn set_cursor_hittest(&self, _hittest: bool) -> Result<(), ExternalError> {
|
|
|
|
|
Err(ExternalError::NotSupported(NotSupportedError::new()))
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-22 01:04:11 -05:00
|
|
|
pub fn set_minimized(&self, _minimized: bool) {
|
|
|
|
|
warn!("`Window::set_minimized` is ignored on iOS")
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-19 23:39:04 +02:00
|
|
|
pub fn is_minimized(&self) -> Option<bool> {
|
|
|
|
|
warn!("`Window::is_minimized` is ignored on iOS");
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-25 18:10:41 -07:00
|
|
|
pub fn set_maximized(&self, _maximized: bool) {
|
|
|
|
|
warn!("`Window::set_maximized` is ignored on iOS")
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-27 20:01:17 +02:00
|
|
|
pub fn is_maximized(&self) -> bool {
|
|
|
|
|
warn!("`Window::is_maximized` is ignored on iOS");
|
|
|
|
|
false
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-21 10:04:28 +02:00
|
|
|
pub(crate) fn set_fullscreen(&self, monitor: Option<Fullscreen>) {
|
2023-08-27 17:04:39 +02:00
|
|
|
let mtm = MainThreadMarker::new().unwrap();
|
2022-12-28 18:36:32 +01:00
|
|
|
let uiscreen = match &monitor {
|
|
|
|
|
Some(Fullscreen::Exclusive(video_mode)) => {
|
2023-08-27 17:04:39 +02:00
|
|
|
let uiscreen = video_mode.monitor.ui_screen(mtm);
|
|
|
|
|
uiscreen.setCurrentMode(Some(video_mode.screen_mode(mtm)));
|
2022-12-28 18:36:32 +01:00
|
|
|
uiscreen.clone()
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
2023-08-27 17:04:39 +02:00
|
|
|
Some(Fullscreen::Borderless(Some(monitor))) => monitor.ui_screen(mtm).clone(),
|
|
|
|
|
Some(Fullscreen::Borderless(None)) => {
|
|
|
|
|
self.current_monitor_inner().ui_screen(mtm).clone()
|
|
|
|
|
}
|
2022-12-28 18:36:32 +01:00
|
|
|
None => {
|
|
|
|
|
warn!("`Window::set_fullscreen(None)` ignored on iOS");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
};
|
2019-08-06 23:47:00 +03:00
|
|
|
|
2022-12-28 18:36:32 +01:00
|
|
|
// this is pretty slow on iOS, so avoid doing it if we can
|
|
|
|
|
let current = self.window.screen();
|
|
|
|
|
if uiscreen != current {
|
|
|
|
|
self.window.setScreen(&uiscreen);
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
2022-12-28 18:36:32 +01:00
|
|
|
|
|
|
|
|
let bounds = uiscreen.bounds();
|
|
|
|
|
self.window.setFrame(bounds);
|
|
|
|
|
|
|
|
|
|
// For external displays, we must disable overscan compensation or
|
|
|
|
|
// the displayed image will have giant black bars surrounding it on
|
|
|
|
|
// each side
|
|
|
|
|
uiscreen.setOverscanCompensation(UIScreenOverscanCompensation::None);
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2022-09-21 10:04:28 +02:00
|
|
|
pub(crate) fn fullscreen(&self) -> Option<Fullscreen> {
|
2023-08-27 17:04:39 +02:00
|
|
|
let mtm = MainThreadMarker::new().unwrap();
|
2023-08-14 21:19:57 +02:00
|
|
|
let monitor = self.current_monitor_inner();
|
2023-08-27 17:04:39 +02:00
|
|
|
let uiscreen = monitor.ui_screen(mtm);
|
2023-08-14 21:19:57 +02:00
|
|
|
let screen_space_bounds = self.screen_frame();
|
|
|
|
|
let screen_bounds = uiscreen.bounds();
|
|
|
|
|
|
|
|
|
|
// TODO: track fullscreen instead of relying on brittle float comparisons
|
|
|
|
|
if screen_space_bounds.origin.x == screen_bounds.origin.x
|
|
|
|
|
&& screen_space_bounds.origin.y == screen_bounds.origin.y
|
|
|
|
|
&& screen_space_bounds.size.width == screen_bounds.size.width
|
|
|
|
|
&& screen_space_bounds.size.height == screen_bounds.size.height
|
|
|
|
|
{
|
|
|
|
|
Some(Fullscreen::Borderless(Some(monitor)))
|
|
|
|
|
} else {
|
|
|
|
|
None
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-28 07:50:34 +00:00
|
|
|
pub fn set_decorations(&self, _decorations: bool) {}
|
2019-05-25 18:10:41 -07:00
|
|
|
|
2022-02-17 15:31:13 +02:00
|
|
|
pub fn is_decorated(&self) -> bool {
|
|
|
|
|
true
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-26 03:50:58 +02:00
|
|
|
pub fn set_window_level(&self, _level: WindowLevel) {
|
|
|
|
|
warn!("`Window::set_window_level` is ignored on iOS")
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_window_icon(&self, _icon: Option<Icon>) {
|
|
|
|
|
warn!("`Window::set_window_icon` is ignored on iOS")
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-22 19:12:14 +00:00
|
|
|
pub fn set_ime_cursor_area(&self, _position: Position, _size: Size) {
|
|
|
|
|
warn!("`Window::set_ime_cursor_area` is ignored on iOS")
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2022-05-07 05:29:25 +03:00
|
|
|
pub fn set_ime_allowed(&self, _allowed: bool) {
|
|
|
|
|
warn!("`Window::set_ime_allowed` is ignored on iOS")
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-29 16:46:46 +01:00
|
|
|
pub fn set_ime_purpose(&self, _purpose: ImePurpose) {
|
|
|
|
|
warn!("`Window::set_ime_allowed` is ignored on iOS")
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-19 18:39:53 +02:00
|
|
|
pub fn focus_window(&self) {
|
|
|
|
|
warn!("`Window::set_focus` is ignored on iOS")
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-27 03:03:08 +01:00
|
|
|
pub fn request_user_attention(&self, _request_type: Option<UserAttentionType>) {
|
|
|
|
|
warn!("`Window::request_user_attention` is ignored on iOS")
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-07 20:09:24 +03:00
|
|
|
// Allow directly accessing the current monitor internally without unwrapping.
|
2022-09-21 10:04:28 +02:00
|
|
|
fn current_monitor_inner(&self) -> MonitorHandle {
|
2022-12-28 18:36:32 +01:00
|
|
|
MonitorHandle::new(self.window.screen())
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2022-09-21 10:04:28 +02:00
|
|
|
pub fn current_monitor(&self) -> Option<MonitorHandle> {
|
2020-09-07 20:09:24 +03:00
|
|
|
Some(self.current_monitor_inner())
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-29 21:29:54 -04:00
|
|
|
pub fn available_monitors(&self) -> VecDeque<MonitorHandle> {
|
2022-12-28 18:36:32 +01:00
|
|
|
monitor::uiscreens(MainThreadMarker::new().unwrap())
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2022-09-21 10:04:28 +02:00
|
|
|
pub fn primary_monitor(&self) -> Option<MonitorHandle> {
|
2022-12-28 18:36:32 +01:00
|
|
|
Some(MonitorHandle::new(UIScreen::main(
|
|
|
|
|
MainThreadMarker::new().unwrap(),
|
|
|
|
|
)))
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn id(&self) -> WindowId {
|
2022-12-28 18:36:32 +01:00
|
|
|
self.window.id()
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
2019-08-14 07:57:16 -04:00
|
|
|
|
2023-10-14 19:07:39 -07:00
|
|
|
#[cfg(feature = "rwh_04")]
|
|
|
|
|
pub fn raw_window_handle_rwh_04(&self) -> rwh_04::RawWindowHandle {
|
|
|
|
|
let mut window_handle = rwh_04::UiKitHandle::empty();
|
2022-12-28 18:36:32 +01:00
|
|
|
window_handle.ui_window = Id::as_ptr(&self.window) as _;
|
|
|
|
|
window_handle.ui_view = Id::as_ptr(&self.view) as _;
|
|
|
|
|
window_handle.ui_view_controller = Id::as_ptr(&self.view_controller) as _;
|
2023-10-14 19:07:39 -07:00
|
|
|
rwh_04::RawWindowHandle::UiKit(window_handle)
|
2022-07-21 22:22:36 +03:00
|
|
|
}
|
|
|
|
|
|
2023-10-14 19:07:39 -07:00
|
|
|
#[cfg(feature = "rwh_05")]
|
|
|
|
|
pub fn raw_window_handle_rwh_05(&self) -> rwh_05::RawWindowHandle {
|
|
|
|
|
let mut window_handle = rwh_05::UiKitWindowHandle::empty();
|
|
|
|
|
window_handle.ui_window = Id::as_ptr(&self.window) as _;
|
|
|
|
|
window_handle.ui_view = Id::as_ptr(&self.view) as _;
|
|
|
|
|
window_handle.ui_view_controller = Id::as_ptr(&self.view_controller) as _;
|
|
|
|
|
rwh_05::RawWindowHandle::UiKit(window_handle)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "rwh_05")]
|
|
|
|
|
pub fn raw_display_handle_rwh_05(&self) -> rwh_05::RawDisplayHandle {
|
|
|
|
|
rwh_05::RawDisplayHandle::UiKit(rwh_05::UiKitDisplayHandle::empty())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "rwh_06")]
|
2023-12-22 22:33:50 +01:00
|
|
|
pub fn raw_window_handle_rwh_06(&self) -> rwh_06::RawWindowHandle {
|
2023-10-14 19:07:39 -07:00
|
|
|
let mut window_handle = rwh_06::UiKitWindowHandle::new({
|
|
|
|
|
let ui_view = Id::as_ptr(&self.view) as _;
|
|
|
|
|
std::ptr::NonNull::new(ui_view).expect("Id<T> should never be null")
|
|
|
|
|
});
|
|
|
|
|
window_handle.ui_view_controller =
|
|
|
|
|
std::ptr::NonNull::new(Id::as_ptr(&self.view_controller) as _);
|
2023-12-22 22:33:50 +01:00
|
|
|
rwh_06::RawWindowHandle::UiKit(window_handle)
|
2023-10-14 19:07:39 -07:00
|
|
|
}
|
|
|
|
|
|
2022-10-19 03:34:36 +09:00
|
|
|
pub fn theme(&self) -> Option<Theme> {
|
|
|
|
|
warn!("`Window::theme` is ignored on iOS");
|
|
|
|
|
None
|
|
|
|
|
}
|
2022-11-03 10:11:37 -07:00
|
|
|
|
2023-09-01 23:14:16 +02:00
|
|
|
pub fn set_content_protected(&self, _protected: bool) {}
|
|
|
|
|
|
2023-01-17 03:30:14 +02:00
|
|
|
pub fn has_focus(&self) -> bool {
|
|
|
|
|
self.window.isKeyWindow()
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-29 11:05:51 +02:00
|
|
|
#[inline]
|
|
|
|
|
pub fn set_theme(&self, _theme: Option<Theme>) {
|
|
|
|
|
warn!("`Window::set_theme` is ignored on iOS");
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-03 10:11:37 -07:00
|
|
|
pub fn title(&self) -> String {
|
|
|
|
|
warn!("`Window::title` is ignored on iOS");
|
|
|
|
|
String::new()
|
|
|
|
|
}
|
2023-05-28 20:02:59 +02:00
|
|
|
|
|
|
|
|
pub fn reset_dead_keys(&self) {
|
|
|
|
|
// Noop
|
|
|
|
|
}
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub struct Window {
|
2023-08-14 21:19:57 +02:00
|
|
|
inner: MainThreadBound<Inner>,
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Window {
|
2024-01-13 21:36:53 +01:00
|
|
|
pub(crate) fn new(
|
2024-01-31 17:29:59 +04:00
|
|
|
event_loop: &ActiveEventLoop,
|
2019-05-25 18:10:41 -07:00
|
|
|
window_attributes: WindowAttributes,
|
2019-05-29 21:29:54 -04:00
|
|
|
) -> Result<Window, RootOsError> {
|
2023-08-27 17:04:39 +02:00
|
|
|
let mtm = event_loop.mtm;
|
2022-12-28 18:36:32 +01:00
|
|
|
|
2022-06-10 13:43:33 +03:00
|
|
|
if window_attributes.min_inner_size.is_some() {
|
2019-05-29 21:29:54 -04:00
|
|
|
warn!("`WindowAttributes::min_inner_size` is ignored on iOS");
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
2022-06-10 13:43:33 +03:00
|
|
|
if window_attributes.max_inner_size.is_some() {
|
2019-05-29 21:29:54 -04:00
|
|
|
warn!("`WindowAttributes::max_inner_size` is ignored on iOS");
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
2022-11-26 03:50:58 +02:00
|
|
|
|
2019-05-25 18:10:41 -07:00
|
|
|
// TODO: transparency, visible
|
|
|
|
|
|
2022-12-28 18:36:32 +01:00
|
|
|
let main_screen = UIScreen::main(mtm);
|
2023-12-26 20:13:02 +01:00
|
|
|
let fullscreen = window_attributes.fullscreen.clone().map(Into::into);
|
2023-01-27 07:38:56 +02:00
|
|
|
let screen = match fullscreen {
|
2023-08-27 17:04:39 +02:00
|
|
|
Some(Fullscreen::Exclusive(ref video_mode)) => video_mode.monitor.ui_screen(mtm),
|
|
|
|
|
Some(Fullscreen::Borderless(Some(ref monitor))) => monitor.ui_screen(mtm),
|
2022-12-28 18:36:32 +01:00
|
|
|
Some(Fullscreen::Borderless(None)) | None => &main_screen,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let screen_bounds = screen.bounds();
|
|
|
|
|
|
|
|
|
|
let frame = match window_attributes.inner_size {
|
|
|
|
|
Some(dim) => {
|
|
|
|
|
let scale_factor = screen.scale();
|
|
|
|
|
let size = dim.to_logical::<f64>(scale_factor as f64);
|
|
|
|
|
CGRect {
|
|
|
|
|
origin: screen_bounds.origin,
|
|
|
|
|
size: CGSize {
|
|
|
|
|
width: size.width as _,
|
|
|
|
|
height: size.height as _,
|
|
|
|
|
},
|
2019-10-18 18:31:26 +03:00
|
|
|
}
|
2022-12-28 18:36:32 +01:00
|
|
|
}
|
|
|
|
|
None => screen_bounds,
|
|
|
|
|
};
|
|
|
|
|
|
2024-01-17 23:37:28 +01:00
|
|
|
let view = WinitView::new(mtm, &window_attributes, frame);
|
2022-12-28 18:36:32 +01:00
|
|
|
|
|
|
|
|
let gl_or_metal_backed = unsafe {
|
|
|
|
|
let layer_class = WinitView::layerClass();
|
|
|
|
|
let is_metal = msg_send![layer_class, isSubclassOfClass: class!(CAMetalLayer)];
|
|
|
|
|
let is_gl = msg_send![layer_class, isSubclassOfClass: class!(CAEAGLLayer)];
|
|
|
|
|
is_metal || is_gl
|
|
|
|
|
};
|
|
|
|
|
|
2024-01-17 23:37:28 +01:00
|
|
|
let view_controller = WinitViewController::new(mtm, &window_attributes, &view);
|
|
|
|
|
let window = WinitUIWindow::new(mtm, &window_attributes, frame, &view_controller);
|
2022-12-28 18:36:32 +01:00
|
|
|
|
2023-08-27 17:04:39 +02:00
|
|
|
app_state::set_key_window(mtm, &window);
|
2022-12-28 18:36:32 +01:00
|
|
|
|
|
|
|
|
// Like the Windows and macOS backends, we send a `ScaleFactorChanged` and `Resized`
|
|
|
|
|
// event on window creation if the DPI factor != 1.0
|
|
|
|
|
let scale_factor = view.contentScaleFactor();
|
|
|
|
|
let scale_factor = scale_factor as f64;
|
|
|
|
|
if scale_factor != 1.0 {
|
|
|
|
|
let bounds = view.bounds();
|
|
|
|
|
let screen = window.screen();
|
|
|
|
|
let screen_space = screen.coordinateSpace();
|
|
|
|
|
let screen_frame = view.convertRect_toCoordinateSpace(bounds, &screen_space);
|
|
|
|
|
let size = crate::dpi::LogicalSize {
|
2023-08-27 17:04:39 +02:00
|
|
|
width: screen_frame.size.width as f64,
|
|
|
|
|
height: screen_frame.size.height as f64,
|
2019-05-25 18:10:41 -07:00
|
|
|
};
|
2022-12-28 18:36:32 +01:00
|
|
|
let window_id = RootWindowId(window.id());
|
2023-08-27 17:04:39 +02:00
|
|
|
app_state::handle_nonuser_events(
|
|
|
|
|
mtm,
|
|
|
|
|
std::iter::once(EventWrapper::ScaleFactorChanged(
|
|
|
|
|
app_state::ScaleFactorChanged {
|
2022-12-28 18:36:32 +01:00
|
|
|
window: window.clone(),
|
2020-01-03 14:52:27 -05:00
|
|
|
scale_factor,
|
2023-08-27 17:04:39 +02:00
|
|
|
suggested_size: size.to_physical(scale_factor),
|
|
|
|
|
},
|
|
|
|
|
))
|
|
|
|
|
.chain(std::iter::once(EventWrapper::StaticEvent(
|
|
|
|
|
Event::WindowEvent {
|
|
|
|
|
window_id,
|
|
|
|
|
event: WindowEvent::Resized(size.to_physical(scale_factor)),
|
|
|
|
|
},
|
|
|
|
|
))),
|
|
|
|
|
);
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
2022-12-28 18:36:32 +01:00
|
|
|
|
2023-08-14 21:19:57 +02:00
|
|
|
let inner = Inner {
|
|
|
|
|
window,
|
|
|
|
|
view_controller,
|
|
|
|
|
view,
|
|
|
|
|
gl_or_metal_backed,
|
|
|
|
|
};
|
2022-12-28 18:36:32 +01:00
|
|
|
Ok(Window {
|
2023-08-14 21:19:57 +02:00
|
|
|
inner: MainThreadBound::new(inner, mtm),
|
2022-12-28 18:36:32 +01:00
|
|
|
})
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
2023-08-14 21:19:57 +02:00
|
|
|
|
|
|
|
|
pub(crate) fn maybe_queue_on_main(&self, f: impl FnOnce(&Inner) + Send + 'static) {
|
|
|
|
|
// For now, don't actually do queuing, since it may be less predictable
|
|
|
|
|
self.maybe_wait_on_main(f)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub(crate) fn maybe_wait_on_main<R: Send>(&self, f: impl FnOnce(&Inner) -> R + Send) -> R {
|
2023-12-23 18:04:24 +01:00
|
|
|
self.inner.get_on_main(|inner| f(inner))
|
2023-08-14 21:19:57 +02:00
|
|
|
}
|
2023-12-22 22:33:50 +01:00
|
|
|
|
|
|
|
|
#[cfg(feature = "rwh_06")]
|
|
|
|
|
#[inline]
|
|
|
|
|
pub(crate) fn raw_window_handle_rwh_06(
|
|
|
|
|
&self,
|
|
|
|
|
) -> Result<rwh_06::RawWindowHandle, rwh_06::HandleError> {
|
2023-12-22 23:18:35 +01:00
|
|
|
if let Some(mtm) = MainThreadMarker::new() {
|
|
|
|
|
Ok(self.inner.get(mtm).raw_window_handle_rwh_06())
|
|
|
|
|
} else {
|
|
|
|
|
Err(rwh_06::HandleError::Unavailable)
|
|
|
|
|
}
|
2023-12-22 22:33:50 +01:00
|
|
|
}
|
2023-12-26 20:13:02 +01:00
|
|
|
|
|
|
|
|
#[cfg(feature = "rwh_06")]
|
|
|
|
|
#[inline]
|
|
|
|
|
pub(crate) fn raw_display_handle_rwh_06(
|
|
|
|
|
&self,
|
|
|
|
|
) -> Result<rwh_06::RawDisplayHandle, rwh_06::HandleError> {
|
|
|
|
|
Ok(rwh_06::RawDisplayHandle::UiKit(
|
|
|
|
|
rwh_06::UiKitDisplayHandle::new(),
|
|
|
|
|
))
|
|
|
|
|
}
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// WindowExtIOS
|
|
|
|
|
impl Inner {
|
2020-01-03 14:52:27 -05:00
|
|
|
pub fn set_scale_factor(&self, scale_factor: f64) {
|
2022-12-28 18:36:32 +01:00
|
|
|
assert!(
|
|
|
|
|
dpi::validate_scale_factor(scale_factor),
|
|
|
|
|
"`WindowExtIOS::set_scale_factor` received an invalid hidpi factor"
|
|
|
|
|
);
|
|
|
|
|
let scale_factor = scale_factor as CGFloat;
|
|
|
|
|
self.view.setContentScaleFactor(scale_factor);
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_valid_orientations(&self, valid_orientations: ValidOrientations) {
|
2022-12-28 18:36:32 +01:00
|
|
|
self.view_controller.set_supported_interface_orientations(
|
|
|
|
|
MainThreadMarker::new().unwrap(),
|
|
|
|
|
valid_orientations,
|
|
|
|
|
);
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
2019-07-30 23:57:31 -07:00
|
|
|
|
|
|
|
|
pub fn set_prefers_home_indicator_hidden(&self, hidden: bool) {
|
2022-12-28 18:36:32 +01:00
|
|
|
self.view_controller
|
2023-07-08 22:36:42 +03:00
|
|
|
.set_prefers_home_indicator_auto_hidden(hidden);
|
2019-07-30 23:57:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn set_preferred_screen_edges_deferring_system_gestures(&self, edges: ScreenEdge) {
|
2022-12-28 18:36:32 +01:00
|
|
|
self.view_controller
|
2023-07-08 22:36:42 +03:00
|
|
|
.set_preferred_screen_edges_deferring_system_gestures(edges.into());
|
2019-07-30 23:57:31 -07:00
|
|
|
}
|
2019-08-09 02:10:54 +03:00
|
|
|
|
|
|
|
|
pub fn set_prefers_status_bar_hidden(&self, hidden: bool) {
|
2023-07-08 22:36:42 +03:00
|
|
|
self.view_controller.set_prefers_status_bar_hidden(hidden);
|
2019-08-09 02:10:54 +03:00
|
|
|
}
|
2023-10-20 12:26:10 +02:00
|
|
|
|
|
|
|
|
pub fn set_preferred_status_bar_style(&self, status_bar_style: StatusBarStyle) {
|
|
|
|
|
self.view_controller
|
|
|
|
|
.set_preferred_status_bar_style(status_bar_style.into());
|
|
|
|
|
}
|
2024-01-16 21:31:18 +01:00
|
|
|
|
|
|
|
|
pub fn recognize_pinch_gesture(&self, should_recognize: bool) {
|
|
|
|
|
self.view.recognize_pinch_gesture(should_recognize);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn recognize_doubletap_gesture(&self, should_recognize: bool) {
|
|
|
|
|
self.view.recognize_doubletap_gesture(should_recognize);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn recognize_rotation_gesture(&self, should_recognize: bool) {
|
|
|
|
|
self.view.recognize_rotation_gesture(should_recognize);
|
|
|
|
|
}
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Inner {
|
2023-08-14 21:19:57 +02:00
|
|
|
fn screen_frame(&self) -> CGRect {
|
2022-12-28 18:36:32 +01:00
|
|
|
self.rect_to_screen_space(self.window.bounds())
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2023-08-14 21:19:57 +02:00
|
|
|
fn rect_to_screen_space(&self, rect: CGRect) -> CGRect {
|
2022-12-28 18:36:32 +01:00
|
|
|
let screen_space = self.window.screen().coordinateSpace();
|
|
|
|
|
self.window
|
|
|
|
|
.convertRect_toCoordinateSpace(rect, &screen_space)
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2023-08-14 21:19:57 +02:00
|
|
|
fn rect_from_screen_space(&self, rect: CGRect) -> CGRect {
|
2022-12-28 18:36:32 +01:00
|
|
|
let screen_space = self.window.screen().coordinateSpace();
|
|
|
|
|
self.window
|
|
|
|
|
.convertRect_fromCoordinateSpace(rect, &screen_space)
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
2023-08-14 21:19:57 +02:00
|
|
|
fn safe_area_screen_space(&self) -> CGRect {
|
2022-12-28 18:36:32 +01:00
|
|
|
let bounds = self.window.bounds();
|
2019-08-26 15:47:23 -07:00
|
|
|
if app_state::os_capabilities().safe_area {
|
2022-12-28 18:36:32 +01:00
|
|
|
let safe_area = self.window.safeAreaInsets();
|
2019-05-25 18:10:41 -07:00
|
|
|
let safe_bounds = CGRect {
|
|
|
|
|
origin: CGPoint {
|
|
|
|
|
x: bounds.origin.x + safe_area.left,
|
|
|
|
|
y: bounds.origin.y + safe_area.top,
|
|
|
|
|
},
|
|
|
|
|
size: CGSize {
|
|
|
|
|
width: bounds.size.width - safe_area.left - safe_area.right,
|
|
|
|
|
height: bounds.size.height - safe_area.top - safe_area.bottom,
|
|
|
|
|
},
|
|
|
|
|
};
|
2022-06-10 13:43:33 +03:00
|
|
|
self.rect_to_screen_space(safe_bounds)
|
2019-05-25 18:10:41 -07:00
|
|
|
} else {
|
2022-06-10 13:43:33 +03:00
|
|
|
let screen_frame = self.rect_to_screen_space(bounds);
|
2022-12-28 18:36:32 +01:00
|
|
|
let status_bar_frame = {
|
2023-08-14 21:19:57 +02:00
|
|
|
let app = UIApplication::shared(MainThreadMarker::new().unwrap()).expect(
|
2022-12-28 18:36:32 +01:00
|
|
|
"`Window::get_inner_position` cannot be called before `EventLoop::run` on iOS",
|
2019-06-21 11:33:15 -04:00
|
|
|
);
|
2022-12-28 18:36:32 +01:00
|
|
|
app.statusBarFrame()
|
2019-05-25 18:10:41 -07:00
|
|
|
};
|
|
|
|
|
let (y, height) = if screen_frame.origin.y > status_bar_frame.size.height {
|
|
|
|
|
(screen_frame.origin.y, screen_frame.size.height)
|
|
|
|
|
} else {
|
|
|
|
|
let y = status_bar_frame.size.height;
|
2019-06-21 11:33:15 -04:00
|
|
|
let height = screen_frame.size.height
|
|
|
|
|
- (status_bar_frame.size.height - screen_frame.origin.y);
|
2019-05-25 18:10:41 -07:00
|
|
|
(y, height)
|
|
|
|
|
};
|
|
|
|
|
CGRect {
|
|
|
|
|
origin: CGPoint {
|
|
|
|
|
x: screen_frame.origin.x,
|
|
|
|
|
y,
|
|
|
|
|
},
|
|
|
|
|
size: CGSize {
|
|
|
|
|
width: screen_frame.size.width,
|
|
|
|
|
height,
|
2019-06-21 11:33:15 -04:00
|
|
|
},
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
|
|
|
|
pub struct WindowId {
|
2023-01-23 00:01:45 +01:00
|
|
|
window: *mut WinitUIWindow,
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl WindowId {
|
2021-08-30 19:40:02 +02:00
|
|
|
pub const unsafe fn dummy() -> Self {
|
2019-05-25 18:10:41 -07:00
|
|
|
WindowId {
|
|
|
|
|
window: std::ptr::null_mut(),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-02 14:27:19 +03:00
|
|
|
impl From<WindowId> for u64 {
|
|
|
|
|
fn from(window_id: WindowId) -> Self {
|
|
|
|
|
window_id.window as u64
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl From<u64> for WindowId {
|
|
|
|
|
fn from(raw_id: u64) -> Self {
|
|
|
|
|
Self {
|
|
|
|
|
window: raw_id as _,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-25 18:10:41 -07:00
|
|
|
unsafe impl Send for WindowId {}
|
|
|
|
|
unsafe impl Sync for WindowId {}
|
|
|
|
|
|
2023-08-02 16:30:41 +02:00
|
|
|
impl From<&AnyObject> for WindowId {
|
|
|
|
|
fn from(window: &AnyObject) -> WindowId {
|
2019-06-21 11:33:15 -04:00
|
|
|
WindowId {
|
|
|
|
|
window: window as *const _ as _,
|
|
|
|
|
}
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-17 23:37:28 +01:00
|
|
|
#[derive(Clone, Debug, Default)]
|
2024-01-31 17:29:59 +04:00
|
|
|
pub struct PlatformSpecificWindowAttributes {
|
2020-01-03 14:52:27 -05:00
|
|
|
pub scale_factor: Option<f64>,
|
2019-05-25 18:10:41 -07:00
|
|
|
pub valid_orientations: ValidOrientations,
|
2019-07-30 23:57:31 -07:00
|
|
|
pub prefers_home_indicator_hidden: bool,
|
2019-08-09 02:10:54 +03:00
|
|
|
pub prefers_status_bar_hidden: bool,
|
2023-10-20 12:26:10 +02:00
|
|
|
pub preferred_status_bar_style: StatusBarStyle,
|
2019-07-30 23:57:31 -07:00
|
|
|
pub preferred_screen_edges_deferring_system_gestures: ScreenEdge,
|
2019-05-25 18:10:41 -07:00
|
|
|
}
|