use core::ffi::*;
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use crate::*;
extern_class!(
#[unsafe(super(NSObject))]
#[thread_kind = MainThreadOnly]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct UISceneWindowingBehaviors;
);
extern_conformance!(
unsafe impl NSObjectProtocol for UISceneWindowingBehaviors {}
);
impl UISceneWindowingBehaviors {
extern_methods!(
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new(mtm: MainThreadMarker) -> Retained<Self>;
#[unsafe(method(isClosable))]
#[unsafe(method_family = none)]
pub fn isClosable(&self) -> bool;
#[unsafe(method(setClosable:))]
#[unsafe(method_family = none)]
pub fn setClosable(&self, closable: bool);
#[unsafe(method(isMiniaturizable))]
#[unsafe(method_family = none)]
pub fn isMiniaturizable(&self) -> bool;
#[unsafe(method(setMiniaturizable:))]
#[unsafe(method_family = none)]
pub fn setMiniaturizable(&self, miniaturizable: bool);
);
}