Skip to content

Commit 953f403

Browse files
authored
Add _UIGraphicsView (#49)
1 parent e68e7a4 commit 953f403

File tree

12 files changed

+90
-23
lines changed

12 files changed

+90
-23
lines changed

PrivateFrameworks/CoreServices.xcframework/ios-arm64-arm64e/CoreServices.framework/Headers/Private/LSApplicationWorkspace.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
#import <Foundation/Foundation.h>
1010
#import "_LSOpenConfiguration.h"
1111

12+
NS_ASSUME_NONNULL_BEGIN
1213
@interface LSApplicationWorkspace : NSObject
1314
+(nullable instancetype)defaultWorkspace;
14-
-(void)openURL:(nonnull NSURL *)url configuration:(nonnull _LSOpenConfiguration *)config completionHandler:(void (^ _Nonnull)(BOOL))completion;
15-
15+
-(void)openURL:(NSURL *)url configuration:(_LSOpenConfiguration *)config completionHandler:(void (^)(BOOL))completion;
1616
@end
17+
NS_ASSUME_NONNULL_END

PrivateFrameworks/CoreServices.xcframework/ios-arm64-arm64e/CoreServices.framework/Headers/Private/_LSOpenConfiguration.h

+5-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@
88

99
#import <Foundation/Foundation.h>
1010

11+
NS_ASSUME_NONNULL_BEGIN
1112
@interface _LSOpenConfiguration : NSObject
1213
@property(assign, getter=isSensitive,nonatomic) BOOL sensitive;
1314
@property(nonatomic, retain, nullable) id targetConnectionEndpoint;
14-
-(nonnull instancetype)init;
15+
-(instancetype)init;
1516
-(BOOL)isSensitive;
1617
-(void)setSensitive:(BOOL)sensitive;
17-
-(void)setTargetConnectionEndpoint:(id)endpoint ;
18-
-(id)targetConnectionEndpoint;
18+
-(void)setTargetConnectionEndpoint:(nullable id)endpoint ;
19+
-(nullable id)targetConnectionEndpoint;
1920
@end
21+
NS_ASSUME_NONNULL_END

PrivateFrameworks/CoreServices.xcframework/ios-arm64-x86_64-simulator/CoreServices.framework/Headers/Private/LSApplicationWorkspace.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
#import <Foundation/Foundation.h>
1010
#import "_LSOpenConfiguration.h"
1111

12+
NS_ASSUME_NONNULL_BEGIN
1213
@interface LSApplicationWorkspace : NSObject
1314
+(nullable instancetype)defaultWorkspace;
14-
-(void)openURL:(nonnull NSURL *)url configuration:(nonnull _LSOpenConfiguration *)config completionHandler:(void (^ _Nonnull)(BOOL))completion;
15-
15+
-(void)openURL:(NSURL *)url configuration:(_LSOpenConfiguration *)config completionHandler:(void (^)(BOOL))completion;
1616
@end
17+
NS_ASSUME_NONNULL_END

PrivateFrameworks/CoreServices.xcframework/ios-arm64-x86_64-simulator/CoreServices.framework/Headers/Private/_LSOpenConfiguration.h

+5-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@
88

99
#import <Foundation/Foundation.h>
1010

11+
NS_ASSUME_NONNULL_BEGIN
1112
@interface _LSOpenConfiguration : NSObject
1213
@property(assign, getter=isSensitive,nonatomic) BOOL sensitive;
1314
@property(nonatomic, retain, nullable) id targetConnectionEndpoint;
14-
-(nonnull instancetype)init;
15+
-(instancetype)init;
1516
-(BOOL)isSensitive;
1617
-(void)setSensitive:(BOOL)sensitive;
17-
-(void)setTargetConnectionEndpoint:(id)endpoint ;
18-
-(id)targetConnectionEndpoint;
18+
-(void)setTargetConnectionEndpoint:(nullable id)endpoint ;
19+
-(nullable id)targetConnectionEndpoint;
1920
@end
21+
NS_ASSUME_NONNULL_END

Sources/COpenSwiftUI/include/LockedPointer.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
//
22
// LockedPointer.h
3-
//
4-
//
3+
// OpenSwiftUI
54
//
5+
// Audited for RELEASE_2021
6+
// Status: Complete
67

78
#ifndef LockedPointer_h
89
#define LockedPointer_h

Sources/COpenSwiftUI/include/OpenSwiftUIBase.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
//
22
// OpenSwiftUIBase.h
3-
//
4-
//
3+
// OpenSwiftUI
54
//
5+
// Audited for RELEASE_2021
6+
// Status: Complete
67

78
#ifndef OpenSwiftUIBase_h
89
#define OpenSwiftUIBase_h
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,62 @@
11
//
22
// OpenSwiftUI_SPI.h
3+
// OpenSwiftUI
34
//
4-
//
5-
//
5+
// Audited for RELEASE_2021
6+
// Status: WIP
67

78
#ifndef OpenSwiftUI_SPI_h
89
#define OpenSwiftUI_SPI_h
910

11+
#include "OpenSwiftUIBase.h"
12+
13+
#if __has_include(<QuartzCore/CoreAnimation.h>)
14+
15+
#import <QuartzCore/CoreAnimation.h>
16+
17+
OPENSWIFTUI_ASSUME_NONNULL_BEGIN
18+
19+
@interface CALayer (OpenSwiftUI_SPI)
20+
- (BOOL)hasBeenCommitted;
21+
@end
22+
23+
OPENSWIFTUI_ASSUME_NONNULL_END
24+
25+
#endif /* CoreAnimation.h */
26+
1027
#if __has_include(<UIKit/UIKit.h>)
28+
1129
#import <UIKit/UIKit.h>
30+
31+
OPENSWIFTUI_ASSUME_NONNULL_BEGIN
32+
1233
@interface UIApplication (OpenSwiftUI_SPI)
1334
- (void)startedTest:(nullable NSString *)name;
1435
- (void)finishedTest:(nullable NSString *)name;
1536
- (void)failedTest:(nullable NSString *)name withFailure:(nullable NSError*)failure;
1637
- (nullable NSString *)_launchTestName;
1738
@end
39+
40+
@interface UIView (OpenSwiftUI_SPI)
41+
- (BOOL)_shouldAnimatePropertyWithKey:(NSString *)key;
42+
@end
43+
44+
OPENSWIFTUI_ASSUME_NONNULL_END
45+
1846
#elif __has_include(<AppKit/AppKit.h>)
47+
1948
#import <AppKit/AppKit.h>
49+
50+
OPENSWIFTUI_ASSUME_NONNULL_BEGIN
51+
2052
@interface NSApplication (OpenSwiftUI_SPI)
2153
- (void)startedTest:(nullable NSString *)name;
2254
- (void)finishedTest:(nullable NSString *)name;
2355
- (void)failedTest:(nullable NSString *)name withFailure:(nullable NSError*)failure;
2456
@end
25-
#endif
57+
58+
OPENSWIFTUI_ASSUME_NONNULL_END
59+
60+
#endif /* UIKit.h / AppKit.h */
2661

2762
#endif /* OpenSwiftUI_SPI_h */

Sources/COpenSwiftUI/include/ProtocolDescriptor.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
//
22
// ProtocolDescriptor_h
3+
// OpenSwiftUI
34
//
4-
//
5-
//
5+
// Audited for RELEASE_2021
6+
// Status: WIP
67

78
#ifndef ProtocolDescriptor_h
89
#define ProtocolDescriptor_h

Sources/COpenSwiftUI/include/TLS.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
//
22
// TLS.h
3-
//
4-
//
3+
// OpenSwiftUI
54
//
5+
// Audited for RELEASE_2021
6+
// Status: Complete
67

78
#ifndef TLS_h
89
#define TLS_h

Sources/COpenSwiftUI/include/dyld_Private.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
//
22
// dyld_Private.h
3+
// OpenSwiftUI
34
//
4-
//
5-
//
5+
// Audited for RELEASE_2021
6+
// Status: Complete
67

78
#ifndef dyld_Private_h
89
#define dyld_Private_h
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
//
2+
// _UIGraphicsView.swift
3+
// OpenSwiftUI
4+
//
5+
// Audited for RELEASE_2021
6+
// Status: Complete
7+
8+
#if os(iOS)
9+
internal import COpenSwiftUI
10+
import UIKit
11+
12+
class _UIGraphicsView: UIView {
13+
override func _shouldAnimateProperty(withKey key: String) -> Bool {
14+
if layer.hasBeenCommitted() {
15+
super._shouldAnimateProperty(withKey: key)
16+
} else {
17+
false
18+
}
19+
}
20+
}
21+
#endif

0 commit comments

Comments
 (0)