objc2_ui_kit/generated/
UIWindowSceneGeometryPreferencesMac.rs

1//! This file has been automatically generated by `objc2`'s `header-translator`.
2//! DO NOT EDIT
3use core::ffi::*;
4use core::ptr::NonNull;
5use objc2::__framework_prelude::*;
6#[cfg(feature = "objc2-core-foundation")]
7use objc2_core_foundation::*;
8
9use crate::*;
10
11extern_class!(
12    /// Use this class to express macOS-specific geometry preferences when calling `-[UIWindowScene requestGeometryUpdateWithPreferences:errorHandler:]`
13    ///
14    /// See also [Apple's documentation](https://developer.apple.com/documentation/uikit/uiwindowscenegeometrypreferencesmac?language=objc)
15    #[unsafe(super(UIWindowSceneGeometryPreferences, NSObject))]
16    #[derive(Debug, PartialEq, Eq, Hash)]
17    #[cfg(feature = "UIWindowSceneGeometryPreferences")]
18    pub struct UIWindowSceneGeometryPreferencesMac;
19);
20
21#[cfg(feature = "UIWindowSceneGeometryPreferences")]
22unsafe impl NSObjectProtocol for UIWindowSceneGeometryPreferencesMac {}
23
24#[cfg(feature = "UIWindowSceneGeometryPreferences")]
25impl UIWindowSceneGeometryPreferencesMac {
26    extern_methods!(
27        #[unsafe(method(init))]
28        #[unsafe(method_family = init)]
29        pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
30
31        #[cfg(feature = "objc2-core-foundation")]
32        #[unsafe(method(initWithSystemFrame:))]
33        #[unsafe(method_family = init)]
34        pub unsafe fn initWithSystemFrame(
35            this: Allocated<Self>,
36            system_frame: CGRect,
37        ) -> Retained<Self>;
38
39        #[cfg(feature = "objc2-core-foundation")]
40        /// The preferred system frame in the system scale where an origin of (0, 0) corresponds to the top-left
41        /// corner of the main display. Defaults to CGRectNull to indicate no preference.
42        #[unsafe(method(systemFrame))]
43        #[unsafe(method_family = none)]
44        pub unsafe fn systemFrame(&self) -> CGRect;
45
46        #[cfg(feature = "objc2-core-foundation")]
47        /// Setter for [`systemFrame`][Self::systemFrame].
48        #[unsafe(method(setSystemFrame:))]
49        #[unsafe(method_family = none)]
50        pub unsafe fn setSystemFrame(&self, system_frame: CGRect);
51    );
52}
53
54/// Methods declared on superclass `UIWindowSceneGeometryPreferences`.
55#[cfg(feature = "UIWindowSceneGeometryPreferences")]
56impl UIWindowSceneGeometryPreferencesMac {
57    extern_methods!(
58        #[unsafe(method(new))]
59        #[unsafe(method_family = new)]
60        pub unsafe fn new() -> Retained<Self>;
61    );
62}