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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use objc2::__framework_prelude::*;
use objc2_foundation::*;

use crate::*;

// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIAlertActionStyle(pub NSInteger);
impl UIAlertActionStyle {
    #[doc(alias = "UIAlertActionStyleDefault")]
    pub const Default: Self = Self(0);
    #[doc(alias = "UIAlertActionStyleCancel")]
    pub const Cancel: Self = Self(1);
    #[doc(alias = "UIAlertActionStyleDestructive")]
    pub const Destructive: Self = Self(2);
}

unsafe impl Encode for UIAlertActionStyle {
    const ENCODING: Encoding = NSInteger::ENCODING;
}

unsafe impl RefEncode for UIAlertActionStyle {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIAlertControllerStyle(pub NSInteger);
impl UIAlertControllerStyle {
    #[doc(alias = "UIAlertControllerStyleActionSheet")]
    pub const ActionSheet: Self = Self(0);
    #[doc(alias = "UIAlertControllerStyleAlert")]
    pub const Alert: Self = Self(1);
}

unsafe impl Encode for UIAlertControllerStyle {
    const ENCODING: Encoding = NSInteger::ENCODING;
}

unsafe impl RefEncode for UIAlertControllerStyle {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UIAlertControllerSeverity(pub NSInteger);
impl UIAlertControllerSeverity {
    #[doc(alias = "UIAlertControllerSeverityDefault")]
    pub const Default: Self = Self(0);
    #[doc(alias = "UIAlertControllerSeverityCritical")]
    pub const Critical: Self = Self(1);
}

unsafe impl Encode for UIAlertControllerSeverity {
    const ENCODING: Encoding = NSInteger::ENCODING;
}

unsafe impl RefEncode for UIAlertControllerSeverity {
    const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}

extern_class!(
    #[derive(Debug, PartialEq, Eq, Hash)]
    pub struct UIAlertAction;

    unsafe impl ClassType for UIAlertAction {
        type Super = NSObject;
        type Mutability = MainThreadOnly;
    }
);

unsafe impl NSCopying for UIAlertAction {}

unsafe impl NSObjectProtocol for UIAlertAction {}

extern_methods!(
    unsafe impl UIAlertAction {
        #[cfg(feature = "block2")]
        #[method_id(@__retain_semantics Other actionWithTitle:style:handler:)]
        pub unsafe fn actionWithTitle_style_handler(
            title: Option<&NSString>,
            style: UIAlertActionStyle,
            handler: Option<&block2::Block<dyn Fn(NonNull<UIAlertAction>)>>,
            mtm: MainThreadMarker,
        ) -> Retained<Self>;

        #[method_id(@__retain_semantics Other title)]
        pub unsafe fn title(&self) -> Option<Retained<NSString>>;

        #[method(style)]
        pub unsafe fn style(&self) -> UIAlertActionStyle;

        #[method(isEnabled)]
        pub unsafe fn isEnabled(&self) -> bool;

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

extern_methods!(
    /// Methods declared on superclass `NSObject`
    unsafe impl UIAlertAction {
        #[method_id(@__retain_semantics Init init)]
        pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;

        #[method_id(@__retain_semantics New new)]
        pub unsafe fn new(mtm: MainThreadMarker) -> Retained<Self>;
    }
);

extern_class!(
    #[derive(Debug, PartialEq, Eq, Hash)]
    #[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
    pub struct UIAlertController;

    #[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
    unsafe impl ClassType for UIAlertController {
        #[inherits(UIResponder, NSObject)]
        type Super = UIViewController;
        type Mutability = MainThreadOnly;
    }
);

#[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
unsafe impl NSCoding for UIAlertController {}

#[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
unsafe impl NSObjectProtocol for UIAlertController {}

#[cfg(all(
    feature = "UIAppearance",
    feature = "UIResponder",
    feature = "UIViewController"
))]
unsafe impl UIAppearanceContainer for UIAlertController {}

#[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
unsafe impl UIContentContainer for UIAlertController {}

#[cfg(all(
    feature = "UIFocus",
    feature = "UIResponder",
    feature = "UIViewController"
))]
unsafe impl UIFocusEnvironment for UIAlertController {}

#[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
unsafe impl UIResponderStandardEditActions for UIAlertController {}

#[cfg(all(
    feature = "UIResponder",
    feature = "UITraitCollection",
    feature = "UIViewController"
))]
unsafe impl UITraitEnvironment for UIAlertController {}

extern_methods!(
    #[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
    unsafe impl UIAlertController {
        #[method_id(@__retain_semantics Other alertControllerWithTitle:message:preferredStyle:)]
        pub unsafe fn alertControllerWithTitle_message_preferredStyle(
            title: Option<&NSString>,
            message: Option<&NSString>,
            preferred_style: UIAlertControllerStyle,
            mtm: MainThreadMarker,
        ) -> Retained<Self>;

        #[method(addAction:)]
        pub unsafe fn addAction(&self, action: &UIAlertAction);

        #[method_id(@__retain_semantics Other actions)]
        pub unsafe fn actions(&self) -> Retained<NSArray<UIAlertAction>>;

        #[method_id(@__retain_semantics Other preferredAction)]
        pub unsafe fn preferredAction(&self) -> Option<Retained<UIAlertAction>>;

        #[method(setPreferredAction:)]
        pub unsafe fn setPreferredAction(&self, preferred_action: Option<&UIAlertAction>);

        #[cfg(all(
            feature = "UIControl",
            feature = "UITextField",
            feature = "UIView",
            feature = "block2"
        ))]
        #[method(addTextFieldWithConfigurationHandler:)]
        pub unsafe fn addTextFieldWithConfigurationHandler(
            &self,
            configuration_handler: Option<&block2::Block<dyn Fn(NonNull<UITextField>)>>,
        );

        #[cfg(all(feature = "UIControl", feature = "UITextField", feature = "UIView"))]
        #[method_id(@__retain_semantics Other textFields)]
        pub unsafe fn textFields(&self) -> Option<Retained<NSArray<UITextField>>>;

        #[method_id(@__retain_semantics Other title)]
        pub unsafe fn title(&self) -> Option<Retained<NSString>>;

        #[method(setTitle:)]
        pub unsafe fn setTitle(&self, title: Option<&NSString>);

        #[method_id(@__retain_semantics Other message)]
        pub unsafe fn message(&self) -> Option<Retained<NSString>>;

        #[method(setMessage:)]
        pub unsafe fn setMessage(&self, message: Option<&NSString>);

        #[method(preferredStyle)]
        pub unsafe fn preferredStyle(&self) -> UIAlertControllerStyle;

        #[method(severity)]
        pub unsafe fn severity(&self) -> UIAlertControllerSeverity;

        #[method(setSeverity:)]
        pub unsafe fn setSeverity(&self, severity: UIAlertControllerSeverity);
    }
);

extern_methods!(
    /// Methods declared on superclass `UIViewController`
    #[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
    unsafe impl UIAlertController {
        #[method_id(@__retain_semantics Init initWithNibName:bundle:)]
        pub unsafe fn initWithNibName_bundle(
            this: Allocated<Self>,
            nib_name_or_nil: Option<&NSString>,
            nib_bundle_or_nil: Option<&NSBundle>,
        ) -> Retained<Self>;

        #[method_id(@__retain_semantics Init initWithCoder:)]
        pub unsafe fn initWithCoder(
            this: Allocated<Self>,
            coder: &NSCoder,
        ) -> Option<Retained<Self>>;
    }
);

extern_methods!(
    /// Methods declared on superclass `NSObject`
    #[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
    unsafe impl UIAlertController {
        #[method_id(@__retain_semantics Init init)]
        pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;

        #[method_id(@__retain_semantics New new)]
        pub unsafe fn new(mtm: MainThreadMarker) -> Retained<Self>;
    }
);

extern_methods!(
    /// SpringLoading
    #[cfg(all(feature = "UIResponder", feature = "UIViewController"))]
    unsafe impl UIAlertController {}
);

#[cfg(all(
    feature = "UIResponder",
    feature = "UISpringLoadedInteractionSupporting",
    feature = "UIViewController"
))]
unsafe impl UISpringLoadedInteractionSupporting for UIAlertController {}