use core::ffi::*;
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
extern_class!(
#[unsafe(super(DOMStyleSheet, DOMObject, WebScriptObject, NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(all(
feature = "DOMObject",
feature = "DOMStyleSheet",
feature = "WebScriptObject"
))]
#[deprecated]
pub struct DOMCSSStyleSheet;
);
#[cfg(all(
feature = "DOMObject",
feature = "DOMStyleSheet",
feature = "WebScriptObject"
))]
extern_conformance!(
unsafe impl NSCopying for DOMCSSStyleSheet {}
);
#[cfg(all(
feature = "DOMObject",
feature = "DOMStyleSheet",
feature = "WebScriptObject"
))]
unsafe impl CopyingHelper for DOMCSSStyleSheet {
type Result = Self;
}
#[cfg(all(
feature = "DOMObject",
feature = "DOMStyleSheet",
feature = "WebScriptObject"
))]
extern_conformance!(
unsafe impl NSObjectProtocol for DOMCSSStyleSheet {}
);
#[cfg(all(
feature = "DOMObject",
feature = "DOMStyleSheet",
feature = "WebScriptObject"
))]
impl DOMCSSStyleSheet {
extern_methods!(
#[cfg(feature = "DOMCSSRule")]
#[deprecated]
#[unsafe(method(ownerRule))]
#[unsafe(method_family = none)]
pub unsafe fn ownerRule(&self) -> Option<Retained<DOMCSSRule>>;
#[cfg(feature = "DOMCSSRuleList")]
#[deprecated]
#[unsafe(method(cssRules))]
#[unsafe(method_family = none)]
pub unsafe fn cssRules(&self) -> Option<Retained<DOMCSSRuleList>>;
#[cfg(feature = "DOMCSSRuleList")]
#[unsafe(method(rules))]
#[unsafe(method_family = none)]
pub unsafe fn rules(&self) -> Option<Retained<DOMCSSRuleList>>;
#[unsafe(method(insertRule:index:))]
#[unsafe(method_family = none)]
pub unsafe fn insertRule_index(&self, rule: Option<&NSString>, index: c_uint) -> c_uint;
#[deprecated]
#[unsafe(method(deleteRule:))]
#[unsafe(method_family = none)]
pub unsafe fn deleteRule(&self, index: c_uint);
#[unsafe(method(addRule:style:index:))]
#[unsafe(method_family = none)]
pub unsafe fn addRule_style_index(
&self,
selector: Option<&NSString>,
style: Option<&NSString>,
index: c_uint,
) -> c_int;
#[unsafe(method(removeRule:))]
#[unsafe(method_family = none)]
pub unsafe fn removeRule(&self, index: c_uint);
);
}
#[cfg(all(
feature = "DOMObject",
feature = "DOMStyleSheet",
feature = "WebScriptObject"
))]
impl DOMCSSStyleSheet {
extern_methods!(
#[deprecated]
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
);
}
#[cfg(all(
feature = "DOMObject",
feature = "DOMStyleSheet",
feature = "WebScriptObject"
))]
impl DOMCSSStyleSheet {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}
#[cfg(all(
feature = "DOMObject",
feature = "DOMStyleSheet",
feature = "WebScriptObject"
))]
impl DOMCSSStyleSheet {
extern_methods!(
#[deprecated]
#[unsafe(method(insertRule::))]
#[unsafe(method_family = none)]
pub unsafe fn insertRule(&self, rule: Option<&NSString>, index: c_uint) -> c_uint;
);
}