use core::ffi::*;
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
extern_class!(
#[unsafe(super(DOMObject, WebScriptObject, NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
#[deprecated]
pub struct DOMStyleSheet;
);
#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
extern_conformance!(
unsafe impl NSCopying for DOMStyleSheet {}
);
#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
unsafe impl CopyingHelper for DOMStyleSheet {
type Result = Self;
}
#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
extern_conformance!(
unsafe impl NSObjectProtocol for DOMStyleSheet {}
);
#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
impl DOMStyleSheet {
extern_methods!(
#[deprecated]
#[unsafe(method(type))]
#[unsafe(method_family = none)]
pub unsafe fn r#type(&self) -> Retained<NSString>;
#[deprecated]
#[unsafe(method(disabled))]
#[unsafe(method_family = none)]
pub unsafe fn disabled(&self) -> bool;
#[deprecated]
#[unsafe(method(setDisabled:))]
#[unsafe(method_family = none)]
pub unsafe fn setDisabled(&self, disabled: bool);
#[cfg(feature = "DOMNode")]
#[deprecated]
#[unsafe(method(ownerNode))]
#[unsafe(method_family = none)]
pub unsafe fn ownerNode(&self) -> Option<Retained<DOMNode>>;
#[deprecated]
#[unsafe(method(parentStyleSheet))]
#[unsafe(method_family = none)]
pub unsafe fn parentStyleSheet(&self) -> Option<Retained<DOMStyleSheet>>;
#[deprecated]
#[unsafe(method(href))]
#[unsafe(method_family = none)]
pub unsafe fn href(&self) -> Retained<NSString>;
#[deprecated]
#[unsafe(method(title))]
#[unsafe(method_family = none)]
pub unsafe fn title(&self) -> Retained<NSString>;
#[cfg(feature = "DOMMediaList")]
#[deprecated]
#[unsafe(method(media))]
#[unsafe(method_family = none)]
pub unsafe fn media(&self) -> Option<Retained<DOMMediaList>>;
);
}
#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
impl DOMStyleSheet {
extern_methods!(
#[deprecated]
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
);
}
#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
impl DOMStyleSheet {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}