5 #ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_SOURCE_ACCESSIBILITY_BRIDGE_H_
6 #define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_SOURCE_ACCESSIBILITY_BRIDGE_H_
8 #import <UIKit/UIKit.h>
11 #include <unordered_map>
12 #include <unordered_set>
15 #include "flutter/fml/macros.h"
16 #include "flutter/fml/memory/weak_ptr.h"
17 #include "flutter/lib/ui/semantics/custom_accessibility_action.h"
18 #include "flutter/lib/ui/semantics/semantics_node.h"
53 std::unique_ptr<IosDelegate> ios_delegate =
nullptr);
57 const flutter::CustomAccessibilityActionUpdates& actions);
58 void HandleEvent(NSDictionary<NSString*, id>* annotatedEvent);
61 flutter::SemanticsAction action,
62 fml::MallocMapping args)
override;
68 UIView*
view()
const override {
return view_controller_.view; }
72 fml::WeakPtr<AccessibilityBridge>
GetWeakPtr();
75 return platform_views_controller_;
81 SemanticsObject* GetOrCreateObject(int32_t
id, flutter::SemanticsNodeUpdates& updates);
89 NSMutableArray<NSNumber*>* doomed_uids);
97 int32_t last_focused_semantics_object_id_;
99 NSMutableDictionary<NSNumber*, SemanticsObject*>* objects_;
101 int32_t previous_route_id_ = 0;
102 std::unordered_map<int32_t, flutter::CustomAccessibilityAction> actions_;
103 std::vector<int32_t> previous_routes_;
104 std::unique_ptr<IosDelegate> ios_delegate_;
105 fml::WeakPtrFactory<AccessibilityBridge> weak_factory_;
111 #endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_SOURCE_ACCESSIBILITY_BRIDGE_H_