objc2-web-kit 0.3.0

Bindings to the WebKit framework
Documentation
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ffi::*;
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use objc2_foundation::*;

use crate::*;

extern_class!(
    /// [Apple's documentation](https://developer.apple.com/documentation/webkit/domcssstylesheet?language=objc)
    #[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"
))]
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"
))]
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);
    );
}

/// Methods declared on superclass `DOMObject`.
#[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>;
    );
}

/// Methods declared on superclass `NSObject`.
#[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>;
    );
}

/// DOMCSSStyleSheetDeprecated.
#[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;
    );
}