use core::ptr::NonNull;
use objc2::__framework_prelude::*;
#[cfg(feature = "objc2-app-kit")]
#[cfg(target_os = "macos")]
use objc2_app_kit::*;
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 DOMRGBColor;
);
#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
extern_conformance!(
unsafe impl NSCopying for DOMRGBColor {}
);
#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
unsafe impl CopyingHelper for DOMRGBColor {
type Result = Self;
}
#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
extern_conformance!(
unsafe impl NSObjectProtocol for DOMRGBColor {}
);
#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
impl DOMRGBColor {
extern_methods!(
#[cfg(all(feature = "DOMCSSPrimitiveValue", feature = "DOMCSSValue"))]
#[deprecated]
#[unsafe(method(red))]
#[unsafe(method_family = none)]
pub unsafe fn red(&self) -> Option<Retained<DOMCSSPrimitiveValue>>;
#[cfg(all(feature = "DOMCSSPrimitiveValue", feature = "DOMCSSValue"))]
#[deprecated]
#[unsafe(method(green))]
#[unsafe(method_family = none)]
pub unsafe fn green(&self) -> Option<Retained<DOMCSSPrimitiveValue>>;
#[cfg(all(feature = "DOMCSSPrimitiveValue", feature = "DOMCSSValue"))]
#[deprecated]
#[unsafe(method(blue))]
#[unsafe(method_family = none)]
pub unsafe fn blue(&self) -> Option<Retained<DOMCSSPrimitiveValue>>;
#[cfg(all(feature = "DOMCSSPrimitiveValue", feature = "DOMCSSValue"))]
#[deprecated]
#[unsafe(method(alpha))]
#[unsafe(method_family = none)]
pub unsafe fn alpha(&self) -> Option<Retained<DOMCSSPrimitiveValue>>;
#[cfg(feature = "objc2-app-kit")]
#[cfg(target_os = "macos")]
#[unsafe(method(color))]
#[unsafe(method_family = none)]
pub unsafe fn color(&self) -> Retained<NSColor>;
);
}
#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
impl DOMRGBColor {
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 DOMRGBColor {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}