objc2-web-kit 0.3.1

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/dommedialist?language=objc)
    #[unsafe(super(DOMObject, WebScriptObject, NSObject))]
    #[derive(Debug, PartialEq, Eq, Hash)]
    #[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
    #[deprecated]
    pub struct DOMMediaList;
);

#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
extern_conformance!(
    unsafe impl NSCopying for DOMMediaList {}
);

#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
unsafe impl CopyingHelper for DOMMediaList {
    type Result = Self;
}

#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
extern_conformance!(
    unsafe impl NSObjectProtocol for DOMMediaList {}
);

#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
impl DOMMediaList {
    extern_methods!(
        #[deprecated]
        #[unsafe(method(mediaText))]
        #[unsafe(method_family = none)]
        pub unsafe fn mediaText(&self) -> Retained<NSString>;

        /// Setter for [`mediaText`][Self::mediaText].
        #[deprecated]
        #[unsafe(method(setMediaText:))]
        #[unsafe(method_family = none)]
        pub unsafe fn setMediaText(&self, media_text: Option<&NSString>);

        #[deprecated]
        #[unsafe(method(length))]
        #[unsafe(method_family = none)]
        pub unsafe fn length(&self) -> c_uint;

        #[deprecated]
        #[unsafe(method(item:))]
        #[unsafe(method_family = none)]
        pub unsafe fn item(&self, index: c_uint) -> Option<Retained<NSString>>;

        #[deprecated]
        #[unsafe(method(deleteMedium:))]
        #[unsafe(method_family = none)]
        pub unsafe fn deleteMedium(&self, old_medium: Option<&NSString>);

        #[deprecated]
        #[unsafe(method(appendMedium:))]
        #[unsafe(method_family = none)]
        pub unsafe fn appendMedium(&self, new_medium: Option<&NSString>);
    );
}

/// Methods declared on superclass `DOMObject`.
#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
impl DOMMediaList {
    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 = "WebScriptObject"))]
impl DOMMediaList {
    extern_methods!(
        #[unsafe(method(new))]
        #[unsafe(method_family = new)]
        pub unsafe fn new() -> Retained<Self>;
    );
}