1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use objc2::__framework_prelude::*;
use objc2_foundation::*;

use crate::*;

extern_protocol!(
    #[cfg(feature = "UIPickerView")]
    pub unsafe trait UIPickerViewAccessibilityDelegate:
        UIPickerViewDelegate + IsMainThreadOnly
    {
        #[cfg(all(feature = "UIResponder", feature = "UIView"))]
        #[optional]
        #[method_id(@__retain_semantics Other pickerView:accessibilityLabelForComponent:)]
        unsafe fn pickerView_accessibilityLabelForComponent(
            &self,
            picker_view: &UIPickerView,
            component: NSInteger,
        ) -> Option<Retained<NSString>>;

        #[cfg(all(feature = "UIResponder", feature = "UIView"))]
        #[optional]
        #[method_id(@__retain_semantics Other pickerView:accessibilityHintForComponent:)]
        unsafe fn pickerView_accessibilityHintForComponent(
            &self,
            picker_view: &UIPickerView,
            component: NSInteger,
        ) -> Option<Retained<NSString>>;

        #[cfg(all(feature = "UIResponder", feature = "UIView"))]
        #[optional]
        #[method_id(@__retain_semantics Other pickerView:accessibilityUserInputLabelsForComponent:)]
        unsafe fn pickerView_accessibilityUserInputLabelsForComponent(
            &self,
            picker_view: &UIPickerView,
            component: NSInteger,
        ) -> Retained<NSArray<NSString>>;

        #[cfg(all(feature = "UIResponder", feature = "UIView"))]
        #[optional]
        #[method_id(@__retain_semantics Other pickerView:accessibilityAttributedLabelForComponent:)]
        unsafe fn pickerView_accessibilityAttributedLabelForComponent(
            &self,
            picker_view: &UIPickerView,
            component: NSInteger,
        ) -> Option<Retained<NSAttributedString>>;

        #[cfg(all(feature = "UIResponder", feature = "UIView"))]
        #[optional]
        #[method_id(@__retain_semantics Other pickerView:accessibilityAttributedHintForComponent:)]
        unsafe fn pickerView_accessibilityAttributedHintForComponent(
            &self,
            picker_view: &UIPickerView,
            component: NSInteger,
        ) -> Option<Retained<NSAttributedString>>;

        #[cfg(all(feature = "UIResponder", feature = "UIView"))]
        #[optional]
        #[method_id(@__retain_semantics Other pickerView:accessibilityAttributedUserInputLabelsForComponent:)]
        unsafe fn pickerView_accessibilityAttributedUserInputLabelsForComponent(
            &self,
            picker_view: &UIPickerView,
            component: NSInteger,
        ) -> Retained<NSArray<NSAttributedString>>;
    }

    #[cfg(feature = "UIPickerView")]
    unsafe impl ProtocolType for dyn UIPickerViewAccessibilityDelegate {}
);

extern_protocol!(
    #[cfg(feature = "UIScrollView")]
    pub unsafe trait UIScrollViewAccessibilityDelegate:
        UIScrollViewDelegate + IsMainThreadOnly
    {
        #[cfg(all(feature = "UIResponder", feature = "UIView"))]
        #[optional]
        #[method_id(@__retain_semantics Other accessibilityScrollStatusForScrollView:)]
        unsafe fn accessibilityScrollStatusForScrollView(
            &self,
            scroll_view: &UIScrollView,
        ) -> Option<Retained<NSString>>;

        #[cfg(all(feature = "UIResponder", feature = "UIView"))]
        #[optional]
        #[method_id(@__retain_semantics Other accessibilityAttributedScrollStatusForScrollView:)]
        unsafe fn accessibilityAttributedScrollStatusForScrollView(
            &self,
            scroll_view: &UIScrollView,
        ) -> Option<Retained<NSAttributedString>>;
    }

    #[cfg(feature = "UIScrollView")]
    unsafe impl ProtocolType for dyn UIScrollViewAccessibilityDelegate {}
);

extern_methods!(
    /// UIAccessibilityInvertColors
    #[cfg(all(feature = "UIResponder", feature = "UIView"))]
    unsafe impl UIView {
        #[method(accessibilityIgnoresInvertColors)]
        pub unsafe fn accessibilityIgnoresInvertColors(&self) -> bool;

        #[method(setAccessibilityIgnoresInvertColors:)]
        pub unsafe fn setAccessibilityIgnoresInvertColors(
            &self,
            accessibility_ignores_invert_colors: bool,
        );
    }
);

extern_methods!(
    /// UIAccessibility
    #[cfg(feature = "UIColor")]
    unsafe impl UIColor {
        #[method_id(@__retain_semantics Other accessibilityName)]
        pub unsafe fn accessibilityName(&self) -> Retained<NSString>;
    }
);