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
//! 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::*;
#[cfg(feature = "objc2-core-graphics")]
use objc2_core_graphics::*;
use objc2_foundation::*;
use crate::*;
/// Defines the type of content being shared
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/screencapturekit/scshareablecontentstyle?language=objc)
// NS_ENUM
#[repr(transparent)]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct SCShareableContentStyle(pub NSInteger);
impl SCShareableContentStyle {
#[doc(alias = "SCShareableContentStyleNone")]
pub const None: Self = Self(0);
#[doc(alias = "SCShareableContentStyleWindow")]
pub const Window: Self = Self(1);
#[doc(alias = "SCShareableContentStyleDisplay")]
pub const Display: Self = Self(2);
#[doc(alias = "SCShareableContentStyleApplication")]
pub const Application: Self = Self(3);
}
unsafe impl Encode for SCShareableContentStyle {
const ENCODING: Encoding = NSInteger::ENCODING;
}
unsafe impl RefEncode for SCShareableContentStyle {
const ENCODING_REF: Encoding = Encoding::Pointer(&Self::ENCODING);
}
extern_class!(
/// [Apple's documentation](https://developer.apple.com/documentation/screencapturekit/scrunningapplication?language=objc)
#[unsafe(super(NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct SCRunningApplication;
);
extern_conformance!(
unsafe impl NSObjectProtocol for SCRunningApplication {}
);
impl SCRunningApplication {
extern_methods!(
/// bundleIdentifier the bundleIdentifier for the SCRunningApplication
#[unsafe(method(bundleIdentifier))]
#[unsafe(method_family = none)]
pub unsafe fn bundleIdentifier(&self) -> Retained<NSString>;
/// applicationName the application name for the SCRunningApplication
#[unsafe(method(applicationName))]
#[unsafe(method_family = none)]
pub unsafe fn applicationName(&self) -> Retained<NSString>;
#[cfg(feature = "libc")]
/// processID the SCRunningApplication
#[unsafe(method(processID))]
#[unsafe(method_family = none)]
pub unsafe fn processID(&self) -> libc::pid_t;
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}
extern_class!(
/// [Apple's documentation](https://developer.apple.com/documentation/screencapturekit/scwindow?language=objc)
#[unsafe(super(NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct SCWindow;
);
extern_conformance!(
unsafe impl NSObjectProtocol for SCWindow {}
);
impl SCWindow {
extern_methods!(
#[cfg(feature = "objc2-core-graphics")]
/// windowID the CGWindowID for the SCWindow
#[unsafe(method(windowID))]
#[unsafe(method_family = none)]
pub unsafe fn windowID(&self) -> CGWindowID;
#[cfg(feature = "objc2-core-foundation")]
/// frame the CGRect for the SCWindow
#[unsafe(method(frame))]
#[unsafe(method_family = none)]
pub unsafe fn frame(&self) -> CGRect;
/// title the window title for the SCWindow
#[unsafe(method(title))]
#[unsafe(method_family = none)]
pub unsafe fn title(&self) -> Option<Retained<NSString>>;
/// windowLayer the window layer for the SCWindow
#[unsafe(method(windowLayer))]
#[unsafe(method_family = none)]
pub unsafe fn windowLayer(&self) -> NSInteger;
/// owningApplication is the SCRunningApplication that owns this SCWindow
#[unsafe(method(owningApplication))]
#[unsafe(method_family = none)]
pub unsafe fn owningApplication(&self) -> Option<Retained<SCRunningApplication>>;
/// onScreen the bool property denoting of the SCWindow is on the screen
#[unsafe(method(isOnScreen))]
#[unsafe(method_family = none)]
pub unsafe fn isOnScreen(&self) -> bool;
/// active the bool property denoting of the SCWindow is active. with Stage Manager, SCWindow can be offScreen and active
#[unsafe(method(isActive))]
#[unsafe(method_family = none)]
pub unsafe fn isActive(&self) -> bool;
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}
extern_class!(
/// [Apple's documentation](https://developer.apple.com/documentation/screencapturekit/scdisplay?language=objc)
#[unsafe(super(NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct SCDisplay;
);
extern_conformance!(
unsafe impl NSObjectProtocol for SCDisplay {}
);
impl SCDisplay {
extern_methods!(
#[cfg(feature = "objc2-core-graphics")]
/// displayId the CGDirectDisplayID for the SCDisplay
#[unsafe(method(displayID))]
#[unsafe(method_family = none)]
pub unsafe fn displayID(&self) -> CGDirectDisplayID;
/// width the width, in points, for the SCDisplay
#[unsafe(method(width))]
#[unsafe(method_family = none)]
pub unsafe fn width(&self) -> NSInteger;
/// height the height, in points, for the SCDisplay
#[unsafe(method(height))]
#[unsafe(method_family = none)]
pub unsafe fn height(&self) -> NSInteger;
#[cfg(feature = "objc2-core-foundation")]
/// frame the CGRect frame for the SCDisplay
#[unsafe(method(frame))]
#[unsafe(method_family = none)]
pub unsafe fn frame(&self) -> CGRect;
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}
extern_class!(
/// SCShareableContentInfo
///
/// SCShareableContentInformation is an object that has information about the content of the stream
///
/// See also [Apple's documentation](https://developer.apple.com/documentation/screencapturekit/scshareablecontentinfo?language=objc)
#[unsafe(super(NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct SCShareableContentInfo;
);
extern_conformance!(
unsafe impl NSObjectProtocol for SCShareableContentInfo {}
);
impl SCShareableContentInfo {
extern_methods!(
/// style of stream
#[unsafe(method(style))]
#[unsafe(method_family = none)]
pub unsafe fn style(&self) -> SCShareableContentStyle;
/// Pixel to points scaling factor
#[unsafe(method(pointPixelScale))]
#[unsafe(method_family = none)]
pub unsafe fn pointPixelScale(&self) -> c_float;
#[cfg(feature = "objc2-core-foundation")]
/// Size and location of content in points
#[unsafe(method(contentRect))]
#[unsafe(method_family = none)]
pub unsafe fn contentRect(&self) -> CGRect;
);
}
/// Methods declared on superclass `NSObject`.
impl SCShareableContentInfo {
extern_methods!(
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}
extern_class!(
/// [Apple's documentation](https://developer.apple.com/documentation/screencapturekit/scshareablecontent?language=objc)
#[unsafe(super(NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct SCShareableContent;
);
extern_conformance!(
unsafe impl NSObjectProtocol for SCShareableContent {}
);
impl SCShareableContent {
extern_methods!(
#[cfg(feature = "block2")]
/// getShareableContentWithCompletionHandler:completionHandler
///
/// Parameter `completionHandler`: the call back that will hand you back a SCShareableContent object
///
/// this method will create a SCShareableContent object that is called on the supplied queue. The SCShareableContent will contain the windows, displays and applications that are available to capture
#[unsafe(method(getShareableContentWithCompletionHandler:))]
#[unsafe(method_family = none)]
pub unsafe fn getShareableContentWithCompletionHandler(
completion_handler: &block2::DynBlock<dyn Fn(*mut SCShareableContent, *mut NSError)>,
);
#[cfg(feature = "block2")]
/// getCurrentProcessShareableContentWithCompletionHandler:completionHandler
///
/// Parameter `completionHandler`: the call back that will hand you back a SCShareableContent object
///
/// this method will create a SCShareableContent object that is called on the supplied queue. The SCShareableContent will contain redacted information about windows, displays and applications that are available to capture by current process without user consent via TCC
#[unsafe(method(getCurrentProcessShareableContentWithCompletionHandler:))]
#[unsafe(method_family = none)]
pub unsafe fn getCurrentProcessShareableContentWithCompletionHandler(
completion_handler: &block2::DynBlock<dyn Fn(*mut SCShareableContent, *mut NSError)>,
);
#[cfg(feature = "block2")]
/// getShareableContentExcludingDesktopWindows:onScreenWindowsOnly:completionHandler
///
/// Parameter `excludeDesktopWindows`: a BOOL indicating if we should exclude desktop windows
///
/// Parameter `onScreenWindowsOnly`: filter only windows that are on screen
///
/// Parameter `completionHandler`: the call back that will hand you back a SCShareableContent object
///
/// this method will create a SCShareableContent object that is called on the supplied queue. The SCShareableContent will contain the windows, displays and applications that are available to capture
#[unsafe(method(getShareableContentExcludingDesktopWindows:onScreenWindowsOnly:completionHandler:))]
#[unsafe(method_family = none)]
pub unsafe fn getShareableContentExcludingDesktopWindows_onScreenWindowsOnly_completionHandler(
exclude_desktop_windows: bool,
on_screen_windows_only: bool,
completion_handler: &block2::DynBlock<dyn Fn(*mut SCShareableContent, *mut NSError)>,
);
#[cfg(feature = "block2")]
/// getShareableContentExcludingDesktopWindows:onScreenWindowsOnlyBelowWindow:completionHandler
///
/// Parameter `excludeDesktopWindows`: a BOOL indicating if we should exclude desktop windows
///
/// Parameter `window`: filter only windows below this SCWindow
///
/// Parameter `completionHandler`: the call back that will hand you back a SCShareableContent object
///
/// this method will create a SCShareableContent object that is called on the supplied queue. The SCShareableContent will contain the windows, displays and applications that are available to capture
#[unsafe(method(getShareableContentExcludingDesktopWindows:onScreenWindowsOnlyBelowWindow:completionHandler:))]
#[unsafe(method_family = none)]
pub unsafe fn getShareableContentExcludingDesktopWindows_onScreenWindowsOnlyBelowWindow_completionHandler(
exclude_desktop_windows: bool,
window: &SCWindow,
completion_handler: &block2::DynBlock<dyn Fn(*mut SCShareableContent, *mut NSError)>,
);
#[cfg(feature = "block2")]
/// getShareableContentExcludingDesktopWindows:onScreenWindowsOnlyAboveWindow:completionHandler
///
/// Parameter `excludeDesktopWindows`: a BOOL indicating if we should exclude desktop windows
///
/// Parameter `window`: filter only windows above this SCWindow
///
/// Parameter `completionHandler`: the call back that will hand you back a SCShareableContent object
///
/// this method will create a SCShareableContent object that is called on the supplied queue. The SCShareableContent will contain the windows, displays and applications that are available to capture
#[unsafe(method(getShareableContentExcludingDesktopWindows:onScreenWindowsOnlyAboveWindow:completionHandler:))]
#[unsafe(method_family = none)]
pub unsafe fn getShareableContentExcludingDesktopWindows_onScreenWindowsOnlyAboveWindow_completionHandler(
exclude_desktop_windows: bool,
window: &SCWindow,
completion_handler: &block2::DynBlock<dyn Fn(*mut SCShareableContent, *mut NSError)>,
);
#[cfg(feature = "SCStream")]
/// infoForFilter:
///
/// Parameter `filter`: content filter to translate to content details
///
/// this method will create a SCShareableContentInformation object given a filter
#[unsafe(method(infoForFilter:))]
#[unsafe(method_family = none)]
pub unsafe fn infoForFilter(filter: &SCContentFilter) -> Retained<SCShareableContentInfo>;
/// windows SCShareableContent property that contains all the sharable SCWindows
#[unsafe(method(windows))]
#[unsafe(method_family = none)]
pub unsafe fn windows(&self) -> Retained<NSArray<SCWindow>>;
/// displays SCShareableContent property that contains all the sharable SCDisplays
#[unsafe(method(displays))]
#[unsafe(method_family = none)]
pub unsafe fn displays(&self) -> Retained<NSArray<SCDisplay>>;
/// applications SCShareableContent property that contains all the sharable SCRunningApplications
#[unsafe(method(applications))]
#[unsafe(method_family = none)]
pub unsafe fn applications(&self) -> Retained<NSArray<SCRunningApplication>>;
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}