objc2_web_kit/generated/
DOMRGBColor.rs1use core::ptr::NonNull;
4use objc2::__framework_prelude::*;
5#[cfg(feature = "objc2-app-kit")]
6#[cfg(target_os = "macos")]
7use objc2_app_kit::*;
8use objc2_foundation::*;
9
10use crate::*;
11
12extern_class!(
13 #[unsafe(super(DOMObject, WebScriptObject, NSObject))]
15 #[derive(Debug, PartialEq, Eq, Hash)]
16 #[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
17 #[deprecated]
18 pub struct DOMRGBColor;
19);
20
21#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
22unsafe impl NSCopying for DOMRGBColor {}
23
24#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
25unsafe impl CopyingHelper for DOMRGBColor {
26 type Result = Self;
27}
28
29#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
30unsafe impl NSObjectProtocol for DOMRGBColor {}
31
32#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
33impl DOMRGBColor {
34 extern_methods!(
35 #[cfg(all(feature = "DOMCSSPrimitiveValue", feature = "DOMCSSValue"))]
36 #[deprecated]
37 #[unsafe(method(red))]
38 #[unsafe(method_family = none)]
39 pub unsafe fn red(&self) -> Option<Retained<DOMCSSPrimitiveValue>>;
40
41 #[cfg(all(feature = "DOMCSSPrimitiveValue", feature = "DOMCSSValue"))]
42 #[deprecated]
43 #[unsafe(method(green))]
44 #[unsafe(method_family = none)]
45 pub unsafe fn green(&self) -> Option<Retained<DOMCSSPrimitiveValue>>;
46
47 #[cfg(all(feature = "DOMCSSPrimitiveValue", feature = "DOMCSSValue"))]
48 #[deprecated]
49 #[unsafe(method(blue))]
50 #[unsafe(method_family = none)]
51 pub unsafe fn blue(&self) -> Option<Retained<DOMCSSPrimitiveValue>>;
52
53 #[cfg(all(feature = "DOMCSSPrimitiveValue", feature = "DOMCSSValue"))]
54 #[deprecated]
55 #[unsafe(method(alpha))]
56 #[unsafe(method_family = none)]
57 pub unsafe fn alpha(&self) -> Option<Retained<DOMCSSPrimitiveValue>>;
58
59 #[cfg(feature = "objc2-app-kit")]
60 #[cfg(target_os = "macos")]
61 #[unsafe(method(color))]
62 #[unsafe(method_family = none)]
63 pub unsafe fn color(&self) -> Retained<NSColor>;
64 );
65}
66
67#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
69impl DOMRGBColor {
70 extern_methods!(
71 #[deprecated]
72 #[unsafe(method(init))]
73 #[unsafe(method_family = init)]
74 pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
75 );
76}
77
78#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
80impl DOMRGBColor {
81 extern_methods!(
82 #[unsafe(method(new))]
83 #[unsafe(method_family = new)]
84 pub unsafe fn new() -> Retained<Self>;
85 );
86}