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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ffi::*;
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
#[cfg(feature = "objc2-core-foundation")]
use objc2_core_foundation::*;
use objc2_foundation::*;
#[cfg(feature = "objc2-ui-kit")]
use objc2_ui_kit::*;
use crate::*;
extern "C" {
/// [Apple's documentation](https://developer.apple.com/documentation/carplay/cpnowplayingbuttonmaximumimagesize?language=objc)
#[cfg(feature = "objc2-core-foundation")]
pub static CPNowPlayingButtonMaximumImageSize: CGSize;
}
extern_class!(
/// [Apple's documentation](https://developer.apple.com/documentation/carplay/cpnowplayingbutton?language=objc)
#[unsafe(super(NSObject))]
#[thread_kind = MainThreadOnly]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct CPNowPlayingButton;
);
extern_conformance!(
unsafe impl NSCoding for CPNowPlayingButton {}
);
extern_conformance!(
unsafe impl NSObjectProtocol for CPNowPlayingButton {}
);
extern_conformance!(
unsafe impl NSSecureCoding for CPNowPlayingButton {}
);
impl CPNowPlayingButton {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new(mtm: MainThreadMarker) -> Retained<Self>;
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[cfg(feature = "block2")]
/// Initialize a now playing button with a handler. The handler will be called when the user
/// selects this button.
///
///
/// Note: Your app should use this method in one of the six concrete subclasses of
/// `CPNowPlayingButton.`Do not initialize this class directly.
#[unsafe(method(initWithHandler:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithHandler(
this: Allocated<Self>,
handler: Option<&block2::DynBlock<dyn Fn(NonNull<CPNowPlayingButton>)>>,
) -> Retained<Self>;
/// A Boolean value indicating whether the button is enabled.
///
///
/// Set the value of this property to
/// `YES`to enable the button or
/// `NO`to disable it. The default value of this property is
/// `YES.`
#[unsafe(method(isEnabled))]
#[unsafe(method_family = none)]
pub unsafe fn isEnabled(&self) -> bool;
/// Setter for [`isEnabled`][Self::isEnabled].
#[unsafe(method(setEnabled:))]
#[unsafe(method_family = none)]
pub unsafe fn setEnabled(&self, enabled: bool);
/// A Boolean value indicating whether the button is selected. When selected, the button draws with a selected appearance to
/// indicate its selected state.
///
///
/// Only custom image buttons may display a custom selected state. Other system-provided buttons, like repeat
/// and shuffle, change their selected states depending on what your app reports for current repeat and shuffle states.
#[unsafe(method(isSelected))]
#[unsafe(method_family = none)]
pub unsafe fn isSelected(&self) -> bool;
/// Setter for [`isSelected`][Self::isSelected].
#[unsafe(method(setSelected:))]
#[unsafe(method_family = none)]
pub unsafe fn setSelected(&self, selected: bool);
);
}
extern_class!(
/// A now playing button that indicates the current shuffle mode for your app.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/carplay/cpnowplayingshufflebutton?language=objc)
#[unsafe(super(CPNowPlayingButton, NSObject))]
#[thread_kind = MainThreadOnly]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct CPNowPlayingShuffleButton;
);
extern_conformance!(
unsafe impl NSCoding for CPNowPlayingShuffleButton {}
);
extern_conformance!(
unsafe impl NSObjectProtocol for CPNowPlayingShuffleButton {}
);
extern_conformance!(
unsafe impl NSSecureCoding for CPNowPlayingShuffleButton {}
);
impl CPNowPlayingShuffleButton {
extern_methods!();
}
/// Methods declared on superclass `CPNowPlayingButton`.
impl CPNowPlayingShuffleButton {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new(mtm: MainThreadMarker) -> Retained<Self>;
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[cfg(feature = "block2")]
/// Initialize a now playing button with a handler. The handler will be called when the user
/// selects this button.
///
///
/// Note: Your app should use this method in one of the six concrete subclasses of
/// `CPNowPlayingButton.`Do not initialize this class directly.
#[unsafe(method(initWithHandler:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithHandler(
this: Allocated<Self>,
handler: Option<&block2::DynBlock<dyn Fn(NonNull<CPNowPlayingButton>)>>,
) -> Retained<Self>;
);
}
extern_class!(
/// A now playing button that can be used to allow the user to add the current
/// playing item to a collection, like their library.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/carplay/cpnowplayingaddtolibrarybutton?language=objc)
#[unsafe(super(CPNowPlayingButton, NSObject))]
#[thread_kind = MainThreadOnly]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct CPNowPlayingAddToLibraryButton;
);
extern_conformance!(
unsafe impl NSCoding for CPNowPlayingAddToLibraryButton {}
);
extern_conformance!(
unsafe impl NSObjectProtocol for CPNowPlayingAddToLibraryButton {}
);
extern_conformance!(
unsafe impl NSSecureCoding for CPNowPlayingAddToLibraryButton {}
);
impl CPNowPlayingAddToLibraryButton {
extern_methods!();
}
/// Methods declared on superclass `CPNowPlayingButton`.
impl CPNowPlayingAddToLibraryButton {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new(mtm: MainThreadMarker) -> Retained<Self>;
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[cfg(feature = "block2")]
/// Initialize a now playing button with a handler. The handler will be called when the user
/// selects this button.
///
///
/// Note: Your app should use this method in one of the six concrete subclasses of
/// `CPNowPlayingButton.`Do not initialize this class directly.
#[unsafe(method(initWithHandler:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithHandler(
this: Allocated<Self>,
handler: Option<&block2::DynBlock<dyn Fn(NonNull<CPNowPlayingButton>)>>,
) -> Retained<Self>;
);
}
extern_class!(
/// A now playing button that shows a callout-style action. For example,
/// your app could present a
/// `CPActionSheetTemplate`to show more actions
/// when the user taps this button.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/carplay/cpnowplayingmorebutton?language=objc)
#[unsafe(super(CPNowPlayingButton, NSObject))]
#[thread_kind = MainThreadOnly]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct CPNowPlayingMoreButton;
);
extern_conformance!(
unsafe impl NSCoding for CPNowPlayingMoreButton {}
);
extern_conformance!(
unsafe impl NSObjectProtocol for CPNowPlayingMoreButton {}
);
extern_conformance!(
unsafe impl NSSecureCoding for CPNowPlayingMoreButton {}
);
impl CPNowPlayingMoreButton {
extern_methods!();
}
/// Methods declared on superclass `CPNowPlayingButton`.
impl CPNowPlayingMoreButton {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new(mtm: MainThreadMarker) -> Retained<Self>;
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[cfg(feature = "block2")]
/// Initialize a now playing button with a handler. The handler will be called when the user
/// selects this button.
///
///
/// Note: Your app should use this method in one of the six concrete subclasses of
/// `CPNowPlayingButton.`Do not initialize this class directly.
#[unsafe(method(initWithHandler:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithHandler(
this: Allocated<Self>,
handler: Option<&block2::DynBlock<dyn Fn(NonNull<CPNowPlayingButton>)>>,
) -> Retained<Self>;
);
}
extern_class!(
/// A now playing button that shows the current playback rate and allows
/// the user to cycle between different playback rates provided by your app.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/carplay/cpnowplayingplaybackratebutton?language=objc)
#[unsafe(super(CPNowPlayingButton, NSObject))]
#[thread_kind = MainThreadOnly]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct CPNowPlayingPlaybackRateButton;
);
extern_conformance!(
unsafe impl NSCoding for CPNowPlayingPlaybackRateButton {}
);
extern_conformance!(
unsafe impl NSObjectProtocol for CPNowPlayingPlaybackRateButton {}
);
extern_conformance!(
unsafe impl NSSecureCoding for CPNowPlayingPlaybackRateButton {}
);
impl CPNowPlayingPlaybackRateButton {
extern_methods!();
}
/// Methods declared on superclass `CPNowPlayingButton`.
impl CPNowPlayingPlaybackRateButton {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new(mtm: MainThreadMarker) -> Retained<Self>;
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[cfg(feature = "block2")]
/// Initialize a now playing button with a handler. The handler will be called when the user
/// selects this button.
///
///
/// Note: Your app should use this method in one of the six concrete subclasses of
/// `CPNowPlayingButton.`Do not initialize this class directly.
#[unsafe(method(initWithHandler:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithHandler(
this: Allocated<Self>,
handler: Option<&block2::DynBlock<dyn Fn(NonNull<CPNowPlayingButton>)>>,
) -> Retained<Self>;
);
}
extern_class!(
/// A now playing button that shows the current repeat state, like "once"
/// or "all".
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/carplay/cpnowplayingrepeatbutton?language=objc)
#[unsafe(super(CPNowPlayingButton, NSObject))]
#[thread_kind = MainThreadOnly]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct CPNowPlayingRepeatButton;
);
extern_conformance!(
unsafe impl NSCoding for CPNowPlayingRepeatButton {}
);
extern_conformance!(
unsafe impl NSObjectProtocol for CPNowPlayingRepeatButton {}
);
extern_conformance!(
unsafe impl NSSecureCoding for CPNowPlayingRepeatButton {}
);
impl CPNowPlayingRepeatButton {
extern_methods!();
}
/// Methods declared on superclass `CPNowPlayingButton`.
impl CPNowPlayingRepeatButton {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new(mtm: MainThreadMarker) -> Retained<Self>;
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[cfg(feature = "block2")]
/// Initialize a now playing button with a handler. The handler will be called when the user
/// selects this button.
///
///
/// Note: Your app should use this method in one of the six concrete subclasses of
/// `CPNowPlayingButton.`Do not initialize this class directly.
#[unsafe(method(initWithHandler:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithHandler(
this: Allocated<Self>,
handler: Option<&block2::DynBlock<dyn Fn(NonNull<CPNowPlayingButton>)>>,
) -> Retained<Self>;
);
}
extern_class!(
/// A now playing button that shows a custom image provided by your app
/// for any other custom actions on the now playing screen.
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/carplay/cpnowplayingimagebutton?language=objc)
#[unsafe(super(CPNowPlayingButton, NSObject))]
#[thread_kind = MainThreadOnly]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct CPNowPlayingImageButton;
);
extern_conformance!(
unsafe impl NSCoding for CPNowPlayingImageButton {}
);
extern_conformance!(
unsafe impl NSObjectProtocol for CPNowPlayingImageButton {}
);
extern_conformance!(
unsafe impl NSSecureCoding for CPNowPlayingImageButton {}
);
impl CPNowPlayingImageButton {
extern_methods!(
#[cfg(all(feature = "block2", feature = "objc2-ui-kit"))]
/// Initialize a button with a custom image.
///
///
/// Parameter `image`: A custom image for this button. The maximum image size is CPNowPlayingButtonMaximumImageSize; larger images will be scaled down.
///
/// Parameter `handler`: A block to execute when the user selects the button. The block has no return value and takes the selected button as its only parameter.
///
///
/// Provided image should be dark variant and will be recolored.
#[unsafe(method(initWithImage:handler:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithImage_handler(
this: Allocated<Self>,
image: &UIImage,
handler: Option<&block2::DynBlock<dyn Fn(NonNull<CPNowPlayingButton>)>>,
) -> Retained<Self>;
#[cfg(feature = "objc2-ui-kit")]
/// The custom image, if any, displayed on the button.
///
///
/// Animated images are not supported. If an animated image is assigned, only the first image will be used. If an empty or zero-size image is provided, a system placeholder glyph will be displayed instead.
#[unsafe(method(image))]
#[unsafe(method_family = none)]
pub unsafe fn image(&self) -> Option<Retained<UIImage>>;
);
}
/// Methods declared on superclass `CPNowPlayingButton`.
impl CPNowPlayingImageButton {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new(mtm: MainThreadMarker) -> Retained<Self>;
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[cfg(feature = "block2")]
/// Initialize a now playing button with a handler. The handler will be called when the user
/// selects this button.
///
///
/// Note: Your app should use this method in one of the six concrete subclasses of
/// `CPNowPlayingButton.`Do not initialize this class directly.
#[unsafe(method(initWithHandler:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithHandler(
this: Allocated<Self>,
handler: Option<&block2::DynBlock<dyn Fn(NonNull<CPNowPlayingButton>)>>,
) -> Retained<Self>;
);
}