use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use crate::*;
extern_class!(
#[unsafe(super(NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct UISceneWindowingControlStyle;
);
unsafe impl Send for UISceneWindowingControlStyle {}
unsafe impl Sync for UISceneWindowingControlStyle {}
extern_conformance!(
unsafe impl NSObjectProtocol for UISceneWindowingControlStyle {}
);
impl UISceneWindowingControlStyle {
extern_methods!(
#[unsafe(method(automaticStyle))]
#[unsafe(method_family = none)]
pub fn automaticStyle() -> Retained<UISceneWindowingControlStyle>;
#[unsafe(method(unifiedStyle))]
#[unsafe(method_family = none)]
pub fn unifiedStyle() -> Retained<UISceneWindowingControlStyle>;
#[unsafe(method(minimalStyle))]
#[unsafe(method_family = none)]
pub fn minimalStyle() -> Retained<UISceneWindowingControlStyle>;
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
);
}
impl UISceneWindowingControlStyle {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}