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
//! 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(all(
        feature = "UIPasteConfigurationSupporting",
        feature = "UITextInput",
        feature = "UITextInputTraits",
        feature = "UITextPasteConfigurationSupporting"
    ))]
    pub unsafe trait UITextDroppable:
        UITextInput + UITextPasteConfigurationSupporting + IsMainThreadOnly
    {
        #[method_id(@__retain_semantics Other textDropDelegate)]
        unsafe fn textDropDelegate(
            &self,
        ) -> Option<Retained<ProtocolObject<dyn UITextDropDelegate>>>;

        #[method(setTextDropDelegate:)]
        unsafe fn setTextDropDelegate(
            &self,
            text_drop_delegate: Option<&ProtocolObject<dyn UITextDropDelegate>>,
        );

        #[cfg(feature = "UIDropInteraction")]
        #[method_id(@__retain_semantics Other textDropInteraction)]
        unsafe fn textDropInteraction(&self) -> Option<Retained<UIDropInteraction>>;

        #[method(isTextDropActive)]
        unsafe fn isTextDropActive(&self) -> bool;
    }

    #[cfg(all(
        feature = "UIPasteConfigurationSupporting",
        feature = "UITextInput",
        feature = "UITextInputTraits",
        feature = "UITextPasteConfigurationSupporting"
    ))]
    unsafe impl ProtocolType for dyn UITextDroppable {}
);

// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct UITextDropEditability(pub NSUInteger);
impl UITextDropEditability {
    #[doc(alias = "UITextDropEditabilityNo")]
    pub const No: Self = Self(0);
    #[doc(alias = "UITextDropEditabilityTemporary")]
    pub const Temporary: Self = Self(1);
    #[doc(alias = "UITextDropEditabilityYes")]
    pub const Yes: Self = Self(2);
}

unsafe impl Encode for UITextDropEditability {
    const ENCODING: Encoding = NSUInteger::ENCODING;
}

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

extern_protocol!(
    pub unsafe trait UITextDropDelegate: NSObjectProtocol + IsMainThreadOnly {
        #[cfg(all(
            feature = "UIPasteConfigurationSupporting",
            feature = "UIResponder",
            feature = "UITextInput",
            feature = "UITextInputTraits",
            feature = "UITextPasteConfigurationSupporting",
            feature = "UIView"
        ))]
        #[optional]
        #[method(textDroppableView:willBecomeEditableForDrop:)]
        unsafe fn textDroppableView_willBecomeEditableForDrop(
            &self,
            text_droppable_view: &UIView,
            drop: &ProtocolObject<dyn UITextDropRequest>,
        ) -> UITextDropEditability;

        #[cfg(all(
            feature = "UIDropInteraction",
            feature = "UIPasteConfigurationSupporting",
            feature = "UIResponder",
            feature = "UITextDropProposal",
            feature = "UITextInput",
            feature = "UITextInputTraits",
            feature = "UITextPasteConfigurationSupporting",
            feature = "UIView"
        ))]
        #[optional]
        #[method_id(@__retain_semantics Other textDroppableView:proposalForDrop:)]
        unsafe fn textDroppableView_proposalForDrop(
            &self,
            text_droppable_view: &UIView,
            drop: &ProtocolObject<dyn UITextDropRequest>,
        ) -> Retained<UITextDropProposal>;

        #[cfg(all(
            feature = "UIPasteConfigurationSupporting",
            feature = "UIResponder",
            feature = "UITextInput",
            feature = "UITextInputTraits",
            feature = "UITextPasteConfigurationSupporting",
            feature = "UIView"
        ))]
        #[optional]
        #[method(textDroppableView:willPerformDrop:)]
        unsafe fn textDroppableView_willPerformDrop(
            &self,
            text_droppable_view: &UIView,
            drop: &ProtocolObject<dyn UITextDropRequest>,
        );

        #[cfg(all(
            feature = "UIPasteConfigurationSupporting",
            feature = "UIResponder",
            feature = "UITargetedDragPreview",
            feature = "UITargetedPreview",
            feature = "UITextInput",
            feature = "UITextInputTraits",
            feature = "UITextPasteConfigurationSupporting",
            feature = "UIView"
        ))]
        #[optional]
        #[method_id(@__retain_semantics Other textDroppableView:previewForDroppingAllItemsWithDefault:)]
        unsafe fn textDroppableView_previewForDroppingAllItemsWithDefault(
            &self,
            text_droppable_view: &UIView,
            default_preview: &UITargetedDragPreview,
        ) -> Option<Retained<UITargetedDragPreview>>;

        #[cfg(all(
            feature = "UIDragSession",
            feature = "UIPasteConfigurationSupporting",
            feature = "UIResponder",
            feature = "UITextInput",
            feature = "UITextInputTraits",
            feature = "UITextPasteConfigurationSupporting",
            feature = "UIView"
        ))]
        #[optional]
        #[method(textDroppableView:dropSessionDidEnter:)]
        unsafe fn textDroppableView_dropSessionDidEnter(
            &self,
            text_droppable_view: &UIView,
            session: &ProtocolObject<dyn UIDropSession>,
        );

        #[cfg(all(
            feature = "UIDragSession",
            feature = "UIPasteConfigurationSupporting",
            feature = "UIResponder",
            feature = "UITextInput",
            feature = "UITextInputTraits",
            feature = "UITextPasteConfigurationSupporting",
            feature = "UIView"
        ))]
        #[optional]
        #[method(textDroppableView:dropSessionDidUpdate:)]
        unsafe fn textDroppableView_dropSessionDidUpdate(
            &self,
            text_droppable_view: &UIView,
            session: &ProtocolObject<dyn UIDropSession>,
        );

        #[cfg(all(
            feature = "UIDragSession",
            feature = "UIPasteConfigurationSupporting",
            feature = "UIResponder",
            feature = "UITextInput",
            feature = "UITextInputTraits",
            feature = "UITextPasteConfigurationSupporting",
            feature = "UIView"
        ))]
        #[optional]
        #[method(textDroppableView:dropSessionDidExit:)]
        unsafe fn textDroppableView_dropSessionDidExit(
            &self,
            text_droppable_view: &UIView,
            session: &ProtocolObject<dyn UIDropSession>,
        );

        #[cfg(all(
            feature = "UIDragSession",
            feature = "UIPasteConfigurationSupporting",
            feature = "UIResponder",
            feature = "UITextInput",
            feature = "UITextInputTraits",
            feature = "UITextPasteConfigurationSupporting",
            feature = "UIView"
        ))]
        #[optional]
        #[method(textDroppableView:dropSessionDidEnd:)]
        unsafe fn textDroppableView_dropSessionDidEnd(
            &self,
            text_droppable_view: &UIView,
            session: &ProtocolObject<dyn UIDropSession>,
        );
    }

    unsafe impl ProtocolType for dyn UITextDropDelegate {}
);

extern_protocol!(
    pub unsafe trait UITextDropRequest: NSObjectProtocol + IsMainThreadOnly {
        #[cfg(feature = "UITextInput")]
        #[method_id(@__retain_semantics Other dropPosition)]
        unsafe fn dropPosition(&self) -> Retained<UITextPosition>;

        #[cfg(all(feature = "UIDropInteraction", feature = "UITextDropProposal"))]
        #[method_id(@__retain_semantics Other suggestedProposal)]
        unsafe fn suggestedProposal(&self) -> Retained<UITextDropProposal>;

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

        #[cfg(feature = "UIDragSession")]
        #[method_id(@__retain_semantics Other dropSession)]
        unsafe fn dropSession(&self) -> Retained<ProtocolObject<dyn UIDropSession>>;
    }

    unsafe impl ProtocolType for dyn UITextDropRequest {}
);