5 #ifndef FLUTTER_SHELL_PLATFORM_DARWIN_MACOS_FRAMEWORK_SOURCE_FLUTTERENGINE_INTERNAL_H_
6 #define FLUTTER_SHELL_PLATFORM_DARWIN_MACOS_FRAMEWORK_SOURCE_FLUTTERENGINE_INTERNAL_H_
10 #import <Cocoa/Cocoa.h>
23 #pragma mark - Typedefs
27 #pragma mark - Enumerations
35 typedef NS_ENUM(NSInteger, FlutterAppExitType) {
36 kFlutterAppExitTypeCancelable = 0,
37 kFlutterAppExitTypeRequired = 1,
46 typedef NS_ENUM(NSInteger, FlutterAppExitResponse) {
47 kFlutterAppExitResponseCancel = 0,
48 kFlutterAppExitResponseExit = 1,
51 #pragma mark - FlutterEngineTerminationHandler
65 - (void)handleRequestAppExitMethodCall:(NSDictionary<NSString*,
id>*)data
67 - (void)requestApplicationTermination:(NSApplication*)sender
68 exitType:(FlutterAppExitType)type
77 - (NSString*)stringForType:(NSPasteboardType)dataType;
78 - (BOOL)setString:(NSString*)string forType:(NSPasteboardType)dataType;
86 @property(nonatomic, readonly) BOOL running;
97 @property(nonatomic) FlutterEngineProcTable& embedderAPI;
103 @property(nonatomic) BOOL semanticsEnabled;
108 @property(nonatomic, readonly, nonnull) NSString* executableName;
118 @property(nonatomic, readonly) std::vector<std::string> switches;
167 - (void)sendPointerEvent:(const FlutterPointerEvent&)event;
172 - (BOOL)registerTextureWithID:(int64_t)textureId;
177 - (BOOL)markTextureFrameAvailable:(int64_t)textureID;
182 - (BOOL)unregisterTextureWithID:(int64_t)textureID;
200 - (void)dispatchSemanticsAction:(FlutterSemanticsAction)action
201 toTarget:(uint16_t)target
202 withData:(fml::MallocMapping)data;
207 - (void)handleAccessibilityEvent:(NSDictionary<NSString*,
id>*)annotatedEvent;
212 - (void)announceAccessibilityMessage:(NSString*)message
213 withPriority:(NSAccessibilityPriorityLevel)priority;
223 - (NSArray<NSScreen*>*)screens;
234 + (nullable
FlutterEngine*)engineForIdentifier:(int64_t)identifier;
243 #endif // FLUTTER_SHELL_PLATFORM_DARWIN_MACOS_FRAMEWORK_SOURCE_FLUTTERENGINE_INTERNAL_H_