pyobjc-framework-BrowserEngineKit 11.0__cp313-cp313t-macosx_10_13_universal2.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,73 @@
1
+ """
2
+ Python mapping for the BrowserEngineKit framework.
3
+
4
+ This module does not contain docstrings for the wrapped code, check Apple's
5
+ documentation for details on how to use these functions and classes.
6
+ """
7
+
8
+
9
+ def _setup():
10
+ import sys
11
+
12
+ import Foundation
13
+ import objc
14
+ from . import _BrowserEngineKit, _metadata
15
+
16
+ dir_func, getattr_func = objc.createFrameworkDirAndGetattr(
17
+ name="BrowserEngineKit",
18
+ frameworkIdentifier="com.apple.BrowserEngineKit",
19
+ frameworkPath=objc.pathForFramework(
20
+ "/System/Library/Frameworks/BrowserEngineKit.framework"
21
+ ),
22
+ globals_dict=globals(),
23
+ inline_list=None,
24
+ parents=(_BrowserEngineKit, Foundation),
25
+ metadict=_metadata.__dict__,
26
+ )
27
+
28
+ globals()["__dir__"] = dir_func
29
+ globals()["__getattr__"] = getattr_func
30
+
31
+ for cls, sel in (
32
+ ("BETextDocumentRequest", b"init"),
33
+ ("BETextDocumentRequest", b"new"),
34
+ ("BELayerHierarchyHandle", b"init"),
35
+ ("BELayerHierarchyHandle", b"new"),
36
+ ("BEAutoFillTextSuggestion", b"init"),
37
+ ("BEAutoFillTextSuggestion", b"new"),
38
+ ("BEKeyEntryContext", b"init"),
39
+ ("BEKeyEntryContext", b"new"),
40
+ (
41
+ "BEContextMenuConfiguration",
42
+ b"configurationWithIdentifier:previewProvider:actionProvider:",
43
+ ),
44
+ ("BETextAlternatives", b"init"),
45
+ ("BETextAlternatives", b"new"),
46
+ ("BEWebAppManifest", b"init"),
47
+ ("BEMediaEnvironment", b"init"),
48
+ ("BEMediaEnvironment", b"new"),
49
+ ("BERenderingProcess", b"init"),
50
+ ("BERenderingProcess", b"new"),
51
+ ("BETextSuggestion", b"init"),
52
+ ("BETextSuggestion", b"new"),
53
+ ("BELayerHierarchyHostingTransactionCoordinator", b"init"),
54
+ ("BELayerHierarchyHostingTransactionCoordinator", b"new"),
55
+ ("BELayerHierarchy", b"init"),
56
+ ("BELayerHierarchy", b"new"),
57
+ ("BENetworkingProcess", b"init"),
58
+ ("BENetworkingProcess", b"new"),
59
+ ("BEScrollViewScrollUpdate", b"init"),
60
+ ("BEScrollViewScrollUpdate", b"new"),
61
+ ("BEKeyEntry", b"init"),
62
+ ("BEKeyEntry", b"new"),
63
+ ("BEWebContentProcess", b"init"),
64
+ ("BEWebContentProcess", b"new"),
65
+ ("BETextDocumentContext", b"init"),
66
+ ("BETextDocumentContext", b"new"),
67
+ ):
68
+ objc.registerUnavailableMethod(cls, sel)
69
+
70
+ del sys.modules["BrowserEngineKit._metadata"]
71
+
72
+
73
+ globals().pop("_setup")()
@@ -0,0 +1,690 @@
1
+ # This file is generated by objective.metadata
2
+ #
3
+ # Last update: Sun Nov 17 11:38:52 2024
4
+ #
5
+ # flake8: noqa
6
+
7
+ import objc, sys
8
+ from typing import NewType
9
+
10
+ if sys.maxsize > 2**32:
11
+
12
+ def sel32or64(a, b):
13
+ return b
14
+
15
+ else:
16
+
17
+ def sel32or64(a, b):
18
+ return a
19
+
20
+
21
+ if objc.arch == "arm64":
22
+
23
+ def selAorI(a, b):
24
+ return a
25
+
26
+ else:
27
+
28
+ def selAorI(a, b):
29
+ return b
30
+
31
+
32
+ misc = {}
33
+ constants = """$$"""
34
+ enums = """$BEAccessibilityContainerTypeAlert@1024$BEAccessibilityContainerTypeArticle@128$BEAccessibilityContainerTypeDescriptionList@2048$BEAccessibilityContainerTypeDialog@16$BEAccessibilityContainerTypeFieldset@8$BEAccessibilityContainerTypeFrame@64$BEAccessibilityContainerTypeLandmark@1$BEAccessibilityContainerTypeList@4$BEAccessibilityContainerTypeNone@0$BEAccessibilityContainerTypeScrollArea@512$BEAccessibilityContainerTypeSemanticGroup@256$BEAccessibilityContainerTypeTable@2$BEAccessibilityContainerTypeTree@32$BEAccessibilityPressedStateFalse@1$BEAccessibilityPressedStateMixed@3$BEAccessibilityPressedStateTrue@2$BEAccessibilityPressedStateUndefined@0$BEGestureTypeDoubleTap@3$BEGestureTypeDoubleTapAndHold@2$BEGestureTypeForceTouch@15$BEGestureTypeIMPhraseBoundaryDrag@14$BEGestureTypeLoupe@0$BEGestureTypeOneFingerDoubleTap@8$BEGestureTypeOneFingerTap@1$BEGestureTypeOneFingerTripleTap@9$BEGestureTypeTwoFingerRangedSelectGesture@11$BEGestureTypeTwoFingerSingleTap@10$BEPhraseBoundaryChanged@4$BESelectionFlagsNone@0$BESelectionFlipped@2$BESelectionTouchPhaseEnded@2$BESelectionTouchPhaseEndedMovingBackward@4$BESelectionTouchPhaseEndedMovingForward@3$BESelectionTouchPhaseEndedNotMoving@5$BESelectionTouchPhaseMoved@1$BESelectionTouchPhaseStarted@0$BEWordIsNearTap@1$"""
35
+ misc.update(
36
+ {
37
+ "BESelectionFlags": NewType("BESelectionFlags", int),
38
+ "BESelectionTouchPhase": NewType("BESelectionTouchPhase", int),
39
+ "BEGestureType": NewType("BEGestureType", int),
40
+ "BEAccessibilityContainerType": NewType("BEAccessibilityContainerType", int),
41
+ "BEAccessibilityPressedState": NewType("BEAccessibilityPressedState", int),
42
+ }
43
+ )
44
+ misc.update({})
45
+ misc.update({})
46
+ r = objc.registerMetaDataForSelector
47
+ objc._updatingMetadata(True)
48
+ try:
49
+ r(
50
+ b"BEDownloadMonitor",
51
+ b"beginMonitoring:",
52
+ {
53
+ "arguments": {
54
+ 2: {
55
+ "callable": {
56
+ "retval": {"type": b"v"},
57
+ "arguments": {
58
+ 0: {"type": b"^v"},
59
+ 1: {"type": b"@"},
60
+ 2: {"type": b"@"},
61
+ },
62
+ }
63
+ }
64
+ }
65
+ },
66
+ )
67
+ r(
68
+ b"BEDownloadMonitor",
69
+ b"resumeMonitoring:completionHandler:",
70
+ {
71
+ "arguments": {
72
+ 3: {
73
+ "callable": {
74
+ "retval": {"type": b"v"},
75
+ "arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
76
+ }
77
+ }
78
+ }
79
+ },
80
+ )
81
+ r(
82
+ b"BEDownloadMonitor",
83
+ b"useDownloadsFolderWithPlaceholderType:finalFileCreatedHandler:",
84
+ {
85
+ "arguments": {
86
+ 3: {
87
+ "callable": {
88
+ "retval": {"type": b"v"},
89
+ "arguments": {0: {"type": b"^v"}, 1: {"type": b"@"}},
90
+ }
91
+ }
92
+ }
93
+ },
94
+ )
95
+ r(
96
+ b"BELayerHierarchy",
97
+ b"layerHierarchyWithError:",
98
+ {"arguments": {2: {"type_modifier": b"o"}}},
99
+ )
100
+ r(
101
+ b"BELayerHierarchyHostingTransactionCoordinator",
102
+ b"coordinatorWithError:",
103
+ {"arguments": {2: {"type_modifier": b"o"}}},
104
+ )
105
+ r(
106
+ b"BEMediaEnvironment",
107
+ b"activateWithError:",
108
+ {"retval": {"type": b"Z"}, "arguments": {2: {"type_modifier": b"o"}}},
109
+ )
110
+ r(
111
+ b"BEMediaEnvironment",
112
+ b"makeCaptureSessionWithError:",
113
+ {"arguments": {2: {"type_modifier": b"o"}}},
114
+ )
115
+ r(
116
+ b"BEMediaEnvironment",
117
+ b"suspendWithError:",
118
+ {"retval": {"type": b"Z"}, "arguments": {2: {"type_modifier": b"o"}}},
119
+ )
120
+ r(
121
+ b"BENetworkingProcess",
122
+ b"grantCapability:error:",
123
+ {"arguments": {3: {"type_modifier": b"o"}}},
124
+ )
125
+ r(
126
+ b"BENetworkingProcess",
127
+ b"grantCapability:error:invalidationHandler:",
128
+ {
129
+ "arguments": {
130
+ 3: {"type_modifier": b"o"},
131
+ 4: {
132
+ "callable": {
133
+ "retval": {"type": b"v"},
134
+ "arguments": {0: {"type": b"^v"}},
135
+ }
136
+ },
137
+ }
138
+ },
139
+ )
140
+ r(
141
+ b"BENetworkingProcess",
142
+ b"makeLibXPCConnectionError:",
143
+ {"arguments": {2: {"type_modifier": b"o"}}},
144
+ )
145
+ r(
146
+ b"BENetworkingProcess",
147
+ b"networkProcessWithBundleID:interruptionHandler:completion:",
148
+ {
149
+ "arguments": {
150
+ 3: {
151
+ "callable": {
152
+ "retval": {"type": b"v"},
153
+ "arguments": {0: {"type": b"^v"}},
154
+ }
155
+ },
156
+ 4: {
157
+ "callable": {
158
+ "retval": {"type": b"v"},
159
+ "arguments": {
160
+ 0: {"type": b"^v"},
161
+ 1: {"type": b"@"},
162
+ 2: {"type": b"@"},
163
+ },
164
+ }
165
+ },
166
+ }
167
+ },
168
+ )
169
+ r(
170
+ b"BENetworkingProcess",
171
+ b"networkProcessWithInterruptionHandler:completion:",
172
+ {
173
+ "arguments": {
174
+ 2: {
175
+ "callable": {
176
+ "retval": {"type": b"v"},
177
+ "arguments": {0: {"type": b"^v"}},
178
+ }
179
+ },
180
+ 3: {
181
+ "callable": {
182
+ "retval": {"type": b"v"},
183
+ "arguments": {
184
+ 0: {"type": b"^v"},
185
+ 1: {"type": b"@"},
186
+ 2: {"type": b"@"},
187
+ },
188
+ }
189
+ },
190
+ }
191
+ },
192
+ )
193
+ r(
194
+ b"BEProcessCapability",
195
+ b"requestWithError:",
196
+ {"arguments": {2: {"type_modifier": b"o"}}},
197
+ )
198
+ r(
199
+ b"BERenderingProcess",
200
+ b"grantCapability:error:",
201
+ {"arguments": {3: {"type_modifier": b"o"}}},
202
+ )
203
+ r(
204
+ b"BERenderingProcess",
205
+ b"grantCapability:error:invalidationHandler:",
206
+ {
207
+ "arguments": {
208
+ 3: {"type_modifier": b"o"},
209
+ 4: {
210
+ "callable": {
211
+ "retval": {"type": b"v"},
212
+ "arguments": {0: {"type": b"^v"}},
213
+ }
214
+ },
215
+ }
216
+ },
217
+ )
218
+ r(
219
+ b"BERenderingProcess",
220
+ b"makeLibXPCConnectionError:",
221
+ {"arguments": {2: {"type_modifier": b"o"}}},
222
+ )
223
+ r(
224
+ b"BERenderingProcess",
225
+ b"renderingProcessWithBundleID:interruptionHandler:completion:",
226
+ {
227
+ "arguments": {
228
+ 3: {
229
+ "callable": {
230
+ "retval": {"type": b"v"},
231
+ "arguments": {0: {"type": b"^v"}},
232
+ }
233
+ },
234
+ 4: {
235
+ "callable": {
236
+ "retval": {"type": b"v"},
237
+ "arguments": {
238
+ 0: {"type": b"^v"},
239
+ 1: {"type": b"@"},
240
+ 2: {"type": b"@"},
241
+ },
242
+ }
243
+ },
244
+ }
245
+ },
246
+ )
247
+ r(
248
+ b"BERenderingProcess",
249
+ b"renderingProcessWithInterruptionHandler:completion:",
250
+ {
251
+ "arguments": {
252
+ 2: {
253
+ "callable": {
254
+ "retval": {"type": b"v"},
255
+ "arguments": {0: {"type": b"^v"}},
256
+ }
257
+ },
258
+ 3: {
259
+ "callable": {
260
+ "retval": {"type": b"v"},
261
+ "arguments": {
262
+ 0: {"type": b"^v"},
263
+ 1: {"type": b"@"},
264
+ 2: {"type": b"@"},
265
+ },
266
+ }
267
+ },
268
+ }
269
+ },
270
+ )
271
+ r(
272
+ b"BEWebContentProcess",
273
+ b"grantCapability:error:",
274
+ {"arguments": {3: {"type_modifier": b"o"}}},
275
+ )
276
+ r(
277
+ b"BEWebContentProcess",
278
+ b"grantCapability:error:invalidationHandler:",
279
+ {
280
+ "arguments": {
281
+ 3: {"type_modifier": b"o"},
282
+ 4: {
283
+ "callable": {
284
+ "retval": {"type": b"v"},
285
+ "arguments": {0: {"type": b"^v"}},
286
+ }
287
+ },
288
+ }
289
+ },
290
+ )
291
+ r(
292
+ b"BEWebContentProcess",
293
+ b"makeLibXPCConnectionError:",
294
+ {"arguments": {2: {"type_modifier": b"o"}}},
295
+ )
296
+ r(
297
+ b"BEWebContentProcess",
298
+ b"webContentProcessWithBundleID:interruptionHandler:completion:",
299
+ {
300
+ "arguments": {
301
+ 3: {
302
+ "callable": {
303
+ "retval": {"type": b"v"},
304
+ "arguments": {0: {"type": b"^v"}},
305
+ }
306
+ },
307
+ 4: {
308
+ "callable": {
309
+ "retval": {"type": b"v"},
310
+ "arguments": {
311
+ 0: {"type": b"^v"},
312
+ 1: {"type": b"@"},
313
+ 2: {"type": b"@"},
314
+ },
315
+ }
316
+ },
317
+ }
318
+ },
319
+ )
320
+ r(
321
+ b"BEWebContentProcess",
322
+ b"webContentProcessWithInterruptionHandler:completion:",
323
+ {
324
+ "arguments": {
325
+ 2: {
326
+ "callable": {
327
+ "retval": {"type": b"v"},
328
+ "arguments": {0: {"type": b"^v"}},
329
+ }
330
+ },
331
+ 3: {
332
+ "callable": {
333
+ "retval": {"type": b"v"},
334
+ "arguments": {
335
+ 0: {"type": b"^v"},
336
+ 1: {"type": b"@"},
337
+ 2: {"type": b"@"},
338
+ },
339
+ }
340
+ },
341
+ }
342
+ },
343
+ )
344
+ r(
345
+ b"NSObject",
346
+ b"accessibilityBoundsForTextMarkerRange:",
347
+ {
348
+ "required": True,
349
+ "retval": {"type": b"{CGRect={CGPoint=dd}{CGSize=dd}}"},
350
+ "arguments": {2: {"type": b"@"}},
351
+ },
352
+ )
353
+ r(
354
+ b"NSObject",
355
+ b"accessibilityContentForTextMarkerRange:",
356
+ {"required": True, "retval": {"type": b"@"}, "arguments": {2: {"type": b"@"}}},
357
+ )
358
+ r(
359
+ b"NSObject",
360
+ b"accessibilityLineEndMarkerForMarker:",
361
+ {"required": True, "retval": {"type": b"@"}, "arguments": {2: {"type": b"@"}}},
362
+ )
363
+ r(
364
+ b"NSObject",
365
+ b"accessibilityLineEndPositionFromCurrentSelection",
366
+ {"retval": {"type": b"q"}},
367
+ )
368
+ r(
369
+ b"NSObject",
370
+ b"accessibilityLineRangeForPosition:",
371
+ {"retval": {"type": b"{_NSRange=QQ}"}, "arguments": {2: {"type": b"q"}}},
372
+ )
373
+ r(
374
+ b"NSObject",
375
+ b"accessibilityLineStartMarkerForMarker:",
376
+ {"required": True, "retval": {"type": b"@"}, "arguments": {2: {"type": b"@"}}},
377
+ )
378
+ r(
379
+ b"NSObject",
380
+ b"accessibilityLineStartPositionFromCurrentSelection",
381
+ {"retval": {"type": b"q"}},
382
+ )
383
+ r(
384
+ b"NSObject",
385
+ b"accessibilityMarkerForPoint:",
386
+ {
387
+ "required": True,
388
+ "retval": {"type": b"@"},
389
+ "arguments": {2: {"type": b"{CGPoint=dd}"}},
390
+ },
391
+ )
392
+ r(
393
+ b"NSObject",
394
+ b"accessibilityNextTextMarker:",
395
+ {"required": True, "retval": {"type": b"@"}, "arguments": {2: {"type": b"@"}}},
396
+ )
397
+ r(
398
+ b"NSObject",
399
+ b"accessibilityPreviousTextMarker:",
400
+ {"required": True, "retval": {"type": b"@"}, "arguments": {2: {"type": b"@"}}},
401
+ )
402
+ r(
403
+ b"NSObject",
404
+ b"accessibilityRangeForTextMarkerRange:",
405
+ {
406
+ "required": True,
407
+ "retval": {"type": b"{_NSRange=QQ}"},
408
+ "arguments": {2: {"type": b"@"}},
409
+ },
410
+ )
411
+ r(
412
+ b"NSObject",
413
+ b"accessibilityTextMarkerForPosition:",
414
+ {"required": True, "retval": {"type": b"@"}, "arguments": {2: {"type": b"q"}}},
415
+ )
416
+ r(
417
+ b"NSObject",
418
+ b"accessibilityTextMarkerRange",
419
+ {"required": True, "retval": {"type": b"@"}},
420
+ )
421
+ r(
422
+ b"NSObject",
423
+ b"accessibilityTextMarkerRangeForCurrentSelection",
424
+ {"required": True, "retval": {"type": b"@"}},
425
+ )
426
+ r(
427
+ b"NSObject",
428
+ b"accessibilityTextMarkerRangeForRange:",
429
+ {
430
+ "required": True,
431
+ "retval": {"type": b"@"},
432
+ "arguments": {2: {"type": b"{_NSRange=QQ}"}},
433
+ },
434
+ )
435
+ r(
436
+ b"NSObject",
437
+ b"browserAccessibilityAttributedValueInRange:",
438
+ {"retval": {"type": b"@"}, "arguments": {2: {"type": b"{_NSRange=QQ}"}}},
439
+ )
440
+ r(b"NSObject", b"browserAccessibilityContainerType", {"retval": {"type": b"Q"}})
441
+ r(b"NSObject", b"browserAccessibilityCurrentStatus", {"retval": {"type": b"@"}})
442
+ r(
443
+ b"NSObject",
444
+ b"browserAccessibilityDeleteTextAtCursor:",
445
+ {"retval": {"type": b"v"}, "arguments": {2: {"type": b"q"}}},
446
+ )
447
+ r(b"NSObject", b"browserAccessibilityHasDOMFocus", {"retval": {"type": b"Z"}})
448
+ r(
449
+ b"NSObject",
450
+ b"browserAccessibilityInsertTextAtCursor:",
451
+ {"retval": {"type": b"v"}, "arguments": {2: {"type": b"@"}}},
452
+ )
453
+ r(b"NSObject", b"browserAccessibilityIsRequired", {"retval": {"type": b"Z"}})
454
+ r(b"NSObject", b"browserAccessibilityPressedState", {"retval": {"type": b"q"}})
455
+ r(b"NSObject", b"browserAccessibilityRoleDescription", {"retval": {"type": b"@"}})
456
+ r(
457
+ b"NSObject",
458
+ b"browserAccessibilitySelectedTextRange",
459
+ {"retval": {"type": b"{_NSRange=QQ}"}},
460
+ )
461
+ r(
462
+ b"NSObject",
463
+ b"browserAccessibilitySetSelectedTextRange:",
464
+ {"retval": {"type": b"v"}, "arguments": {2: {"type": b"{_NSRange=QQ}"}}},
465
+ )
466
+ r(b"NSObject", b"browserAccessibilitySortDirection", {"retval": {"type": b"@"}})
467
+ r(
468
+ b"NSObject",
469
+ b"browserAccessibilityValueInRange:",
470
+ {"retval": {"type": b"@"}, "arguments": {2: {"type": b"{_NSRange=QQ}"}}},
471
+ )
472
+ r(b"NSObject", b"invalidate", {"required": True, "retval": {"type": b"Z"}})
473
+ r(
474
+ b"NSObject",
475
+ b"invalidateTextEntryContextForTextInput:",
476
+ {"required": True, "retval": {"type": b"v"}, "arguments": {2: {"type": b"@"}}},
477
+ )
478
+ r(b"NSObject", b"isValid", {"required": True, "retval": {"type": b"Z"}})
479
+ r(
480
+ b"NSObject",
481
+ b"selectionDidChangeForTextInput:",
482
+ {"required": True, "retval": {"type": b"v"}, "arguments": {2: {"type": b"@"}}},
483
+ )
484
+ r(
485
+ b"NSObject",
486
+ b"selectionWillChangeForTextInput:",
487
+ {"required": True, "retval": {"type": b"v"}, "arguments": {2: {"type": b"@"}}},
488
+ )
489
+ r(
490
+ b"NSObject",
491
+ b"setBrowserAccessibilityContainerType:",
492
+ {"retval": {"type": b"v"}, "arguments": {2: {"type": b"Q"}}},
493
+ )
494
+ r(
495
+ b"NSObject",
496
+ b"setBrowserAccessibilityCurrentStatus:",
497
+ {"retval": {"type": b"v"}, "arguments": {2: {"type": b"@"}}},
498
+ )
499
+ r(
500
+ b"NSObject",
501
+ b"setBrowserAccessibilityHasDOMFocus:",
502
+ {"retval": {"type": b"v"}, "arguments": {2: {"type": b"Z"}}},
503
+ )
504
+ r(
505
+ b"NSObject",
506
+ b"setBrowserAccessibilityIsRequired:",
507
+ {"retval": {"type": b"v"}, "arguments": {2: {"type": b"Z"}}},
508
+ )
509
+ r(
510
+ b"NSObject",
511
+ b"setBrowserAccessibilityPressedState:",
512
+ {"retval": {"type": b"v"}, "arguments": {2: {"type": b"q"}}},
513
+ )
514
+ r(
515
+ b"NSObject",
516
+ b"setBrowserAccessibilityRoleDescription:",
517
+ {"retval": {"type": b"v"}, "arguments": {2: {"type": b"@"}}},
518
+ )
519
+ r(
520
+ b"NSObject",
521
+ b"setBrowserAccessibilitySortDirection:",
522
+ {"retval": {"type": b"v"}, "arguments": {2: {"type": b"@"}}},
523
+ )
524
+ r(
525
+ b"NSObject",
526
+ b"shouldDeferEventHandlingToSystemForTextInput:context:",
527
+ {
528
+ "required": True,
529
+ "retval": {"type": b"Z"},
530
+ "arguments": {2: {"type": b"@"}, 3: {"type": b"@"}},
531
+ },
532
+ )
533
+ r(
534
+ b"NSObject",
535
+ b"systemDidChangeSelectionForInteraction:",
536
+ {"required": True, "retval": {"type": b"v"}, "arguments": {2: {"type": b"@"}}},
537
+ )
538
+ r(
539
+ b"NSObject",
540
+ b"systemWillChangeSelectionForInteraction:",
541
+ {"required": True, "retval": {"type": b"v"}, "arguments": {2: {"type": b"@"}}},
542
+ )
543
+ r(
544
+ b"NSObject",
545
+ b"textInput:deferReplaceTextActionToSystem:",
546
+ {
547
+ "required": True,
548
+ "retval": {"type": b"v"},
549
+ "arguments": {2: {"type": b"@"}, 3: {"type": b"@"}},
550
+ },
551
+ )
552
+ r(
553
+ b"NSObject",
554
+ b"textInput:setCandidateSuggestions:",
555
+ {
556
+ "required": True,
557
+ "retval": {"type": b"v"},
558
+ "arguments": {2: {"type": b"@"}, 3: {"type": b"@"}},
559
+ },
560
+ )
561
+ finally:
562
+ objc._updatingMetadata(False)
563
+
564
+ objc.registerNewKeywordsFromSelector(
565
+ "BEDownloadMonitor",
566
+ b"initWithSourceURL:destinationURL:observedProgress:liveActivityAccessToken:",
567
+ )
568
+ objc.registerNewKeywordsFromSelector("BEMediaEnvironment", b"initWithWebPageURL:")
569
+ objc.registerNewKeywordsFromSelector("BETextSuggestion", b"initWithInputText:")
570
+ objc.registerNewKeywordsFromSelector(
571
+ "BEWebAppManifest", b"initWithJSONData:manifestURL:"
572
+ )
573
+ protocols = {
574
+ "BEAccessibility": objc.informal_protocol(
575
+ "BEAccessibility",
576
+ [
577
+ objc.selector(
578
+ None, b"setBrowserAccessibilityIsRequired:", b"v@:Z", isRequired=False
579
+ ),
580
+ objc.selector(
581
+ None,
582
+ b"accessibilityLineRangeForPosition:",
583
+ b"{_NSRange=QQ}@:q",
584
+ isRequired=False,
585
+ ),
586
+ objc.selector(
587
+ None, b"browserAccessibilityCurrentStatus", b"@@:", isRequired=False
588
+ ),
589
+ objc.selector(
590
+ None,
591
+ b"browserAccessibilityInsertTextAtCursor:",
592
+ b"v@:@",
593
+ isRequired=False,
594
+ ),
595
+ objc.selector(
596
+ None,
597
+ b"accessibilityLineStartPositionFromCurrentSelection",
598
+ b"q@:",
599
+ isRequired=False,
600
+ ),
601
+ objc.selector(
602
+ None,
603
+ b"setBrowserAccessibilityContainerType:",
604
+ b"v@:Q",
605
+ isRequired=False,
606
+ ),
607
+ objc.selector(
608
+ None,
609
+ b"setBrowserAccessibilityCurrentStatus:",
610
+ b"v@:@",
611
+ isRequired=False,
612
+ ),
613
+ objc.selector(
614
+ None,
615
+ b"setBrowserAccessibilitySortDirection:",
616
+ b"v@:@",
617
+ isRequired=False,
618
+ ),
619
+ objc.selector(
620
+ None, b"setBrowserAccessibilityHasDOMFocus:", b"v@:Z", isRequired=False
621
+ ),
622
+ objc.selector(
623
+ None, b"browserAccessibilityRoleDescription", b"@@:", isRequired=False
624
+ ),
625
+ objc.selector(
626
+ None,
627
+ b"accessibilityLineEndPositionFromCurrentSelection",
628
+ b"q@:",
629
+ isRequired=False,
630
+ ),
631
+ objc.selector(
632
+ None,
633
+ b"browserAccessibilitySetSelectedTextRange:",
634
+ b"v@:{_NSRange=QQ}",
635
+ isRequired=False,
636
+ ),
637
+ objc.selector(
638
+ None, b"browserAccessibilityIsRequired", b"Z@:", isRequired=False
639
+ ),
640
+ objc.selector(
641
+ None,
642
+ b"browserAccessibilitySelectedTextRange",
643
+ b"{_NSRange=QQ}@:",
644
+ isRequired=False,
645
+ ),
646
+ objc.selector(
647
+ None,
648
+ b"browserAccessibilityAttributedValueInRange:",
649
+ b"@@:{_NSRange=QQ}",
650
+ isRequired=False,
651
+ ),
652
+ objc.selector(
653
+ None, b"browserAccessibilityHasDOMFocus", b"Z@:", isRequired=False
654
+ ),
655
+ objc.selector(
656
+ None, b"browserAccessibilitySortDirection", b"@@:", isRequired=False
657
+ ),
658
+ objc.selector(
659
+ None, b"browserAccessibilityPressedState", b"q@:", isRequired=False
660
+ ),
661
+ objc.selector(
662
+ None, b"browserAccessibilityContainerType", b"Q@:", isRequired=False
663
+ ),
664
+ objc.selector(
665
+ None,
666
+ b"setBrowserAccessibilityRoleDescription:",
667
+ b"v@:@",
668
+ isRequired=False,
669
+ ),
670
+ objc.selector(
671
+ None,
672
+ b"browserAccessibilityDeleteTextAtCursor:",
673
+ b"v@:q",
674
+ isRequired=False,
675
+ ),
676
+ objc.selector(
677
+ None,
678
+ b"browserAccessibilityValueInRange:",
679
+ b"@@:{_NSRange=QQ}",
680
+ isRequired=False,
681
+ ),
682
+ objc.selector(
683
+ None, b"setBrowserAccessibilityPressedState:", b"v@:q", isRequired=False
684
+ ),
685
+ ],
686
+ )
687
+ }
688
+ expressions = {}
689
+
690
+ # END OF FILE
@@ -0,0 +1,71 @@
1
+ Metadata-Version: 2.2
2
+ Name: pyobjc-framework-BrowserEngineKit
3
+ Version: 11.0
4
+ Summary: Wrappers for the framework BrowserEngineKit on macOS
5
+ Home-page: https://github.com/ronaldoussoren/pyobjc
6
+ Author: Ronald Oussoren
7
+ Author-email: pyobjc-dev@lists.sourceforge.net
8
+ License: MIT License
9
+ Keywords: PyObjC,BrowserEngineKit
10
+ Platform: MacOS X (>=10.7)
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Environment :: Console
13
+ Classifier: Environment :: MacOS X :: Cocoa
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Natural Language :: English
17
+ Classifier: Operating System :: MacOS :: MacOS X
18
+ Classifier: Programming Language :: Python
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3 :: Only
21
+ Classifier: Programming Language :: Python :: 3.9
22
+ Classifier: Programming Language :: Python :: 3.10
23
+ Classifier: Programming Language :: Python :: 3.11
24
+ Classifier: Programming Language :: Python :: 3.12
25
+ Classifier: Programming Language :: Python :: 3.13
26
+ Classifier: Programming Language :: Python :: 3.14
27
+ Classifier: Programming Language :: Python :: Implementation :: CPython
28
+ Classifier: Programming Language :: Objective C
29
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
30
+ Classifier: Topic :: Software Development :: User Interfaces
31
+ Requires-Python: >=3.9
32
+ Description-Content-Type: text/x-rst; charset=UTF-8
33
+ Requires-Dist: pyobjc-core>=11.0
34
+ Requires-Dist: pyobjc-framework-CoreMedia>=11.0
35
+ Requires-Dist: pyobjc-framework-CoreAudio>=11.0
36
+ Requires-Dist: pyobjc-framework-Cocoa>=11.0
37
+ Requires-Dist: pyobjc-framework-Quartz>=11.0
38
+ Dynamic: author
39
+ Dynamic: author-email
40
+ Dynamic: classifier
41
+ Dynamic: description
42
+ Dynamic: description-content-type
43
+ Dynamic: home-page
44
+ Dynamic: keywords
45
+ Dynamic: license
46
+ Dynamic: platform
47
+ Dynamic: requires-dist
48
+ Dynamic: requires-python
49
+ Dynamic: summary
50
+ Project-URL: Documentation, https://pyobjc.readthedocs.io/en/latest/
51
+ Project-URL: Issue tracker, https://github.com/ronaldoussoren/pyobjc/issues
52
+ Project-URL: Repository, https://github.com/ronaldoussoren/pyobjc
53
+
54
+
55
+ Wrappers for the "BrowserEngineKit" framework on macOS.
56
+
57
+ These wrappers don't include documentation, please check Apple's documentation
58
+ for information on how to use this framework and PyObjC's documentation
59
+ for general tips and tricks regarding the translation between Python
60
+ and (Objective-)C frameworks
61
+
62
+
63
+ Project links
64
+ -------------
65
+
66
+ * `Documentation <https://pyobjc.readthedocs.io/en/latest/>`_
67
+
68
+ * `Issue Tracker <https://github.com/ronaldoussoren/pyobjc/issues>`_
69
+
70
+ * `Repository <https://github.com/ronaldoussoren/pyobjc/>`_
71
+
@@ -0,0 +1,8 @@
1
+ BrowserEngineKit/_BrowserEngineKit.cpython-313t-darwin.so,sha256=yuAyF8kbyiy_Eqm_VRuwZ-8A2f0120HlZI6NKq9tHIo,69032
2
+ BrowserEngineKit/__init__.py,sha256=4X7rGAhTKoMZXyIReY_dFRyuliG3kpQZ1IfIWALpfgM,2460
3
+ BrowserEngineKit/_metadata.py,sha256=K3CVTMtVI0G-hTEe2Ygwh0XezZDFjqHOtI4yy1pcMA4,22101
4
+ pyobjc_framework_BrowserEngineKit-11.0.dist-info/METADATA,sha256=rHDIsn9e_0p60q1eUzrjAYxE8hMEg6fwr717lTx07QE,2655
5
+ pyobjc_framework_BrowserEngineKit-11.0.dist-info/WHEEL,sha256=vmKAF-w3NxL0fWr6YyduqKUKgIU_eNDksc7lj0RTN34,116
6
+ pyobjc_framework_BrowserEngineKit-11.0.dist-info/pyobjc-build-info.txt,sha256=R5YEsJoyZ8GByMQk4k_4WWEg6V4RNO715NMQwx6YaNI,85
7
+ pyobjc_framework_BrowserEngineKit-11.0.dist-info/top_level.txt,sha256=M9rbiFwQqCiKaNR1bCgoYBlrxO4ZFr7pDjLAaa6kGtQ,17
8
+ pyobjc_framework_BrowserEngineKit-11.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.8.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313t-macosx_10_13_universal2
5
+
@@ -0,0 +1,3 @@
1
+ macOS 15.3 (24D5040f)
2
+ Apple clang version 16.0.0 (clang-1600.0.26.6)
3
+ SDK: macOS 15.2
@@ -0,0 +1 @@
1
+ BrowserEngineKit