|
1 | 1 | //
|
2 | 2 | // OpenSwiftUI_SPI.h
|
| 3 | +// OpenSwiftUI |
3 | 4 | //
|
4 |
| -// |
5 |
| -// |
| 5 | +// Audited for RELEASE_2021 |
| 6 | +// Status: WIP |
6 | 7 |
|
7 | 8 | #ifndef OpenSwiftUI_SPI_h
|
8 | 9 | #define OpenSwiftUI_SPI_h
|
9 | 10 |
|
| 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 | + |
10 | 27 | #if __has_include(<UIKit/UIKit.h>)
|
| 28 | + |
11 | 29 | #import <UIKit/UIKit.h>
|
| 30 | + |
| 31 | +OPENSWIFTUI_ASSUME_NONNULL_BEGIN |
| 32 | + |
12 | 33 | @interface UIApplication (OpenSwiftUI_SPI)
|
13 | 34 | - (void)startedTest:(nullable NSString *)name;
|
14 | 35 | - (void)finishedTest:(nullable NSString *)name;
|
15 | 36 | - (void)failedTest:(nullable NSString *)name withFailure:(nullable NSError*)failure;
|
16 | 37 | - (nullable NSString *)_launchTestName;
|
17 | 38 | @end
|
| 39 | + |
| 40 | +@interface UIView (OpenSwiftUI_SPI) |
| 41 | +- (BOOL)_shouldAnimatePropertyWithKey:(NSString *)key; |
| 42 | +@end |
| 43 | + |
| 44 | +OPENSWIFTUI_ASSUME_NONNULL_END |
| 45 | + |
18 | 46 | #elif __has_include(<AppKit/AppKit.h>)
|
| 47 | + |
19 | 48 | #import <AppKit/AppKit.h>
|
| 49 | + |
| 50 | +OPENSWIFTUI_ASSUME_NONNULL_BEGIN |
| 51 | + |
20 | 52 | @interface NSApplication (OpenSwiftUI_SPI)
|
21 | 53 | - (void)startedTest:(nullable NSString *)name;
|
22 | 54 | - (void)finishedTest:(nullable NSString *)name;
|
23 | 55 | - (void)failedTest:(nullable NSString *)name withFailure:(nullable NSError*)failure;
|
24 | 56 | @end
|
25 |
| -#endif |
| 57 | + |
| 58 | +OPENSWIFTUI_ASSUME_NONNULL_END |
| 59 | + |
| 60 | +#endif /* UIKit.h / AppKit.h */ |
26 | 61 |
|
27 | 62 | #endif /* OpenSwiftUI_SPI_h */
|
0 commit comments