Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
accessibility_bridge.h
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_SOURCE_ACCESSIBILITY_BRIDGE_H_
6#define FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_SOURCE_ACCESSIBILITY_BRIDGE_H_
7
8#import <UIKit/UIKit.h>
9
10#include <memory>
11#include <unordered_map>
12#include <unordered_set>
13#include <vector>
14
15#include "flutter/fml/macros.h"
16#include "flutter/fml/memory/weak_ptr.h"
17#include "flutter/fml/platform/darwin/scoped_nsobject.h"
18#include "flutter/lib/ui/semantics/custom_accessibility_action.h"
19#include "flutter/lib/ui/semantics/semantics_node.h"
20#import "flutter/shell/platform/darwin/common/framework/Headers/FlutterChannels.h"
21#import "flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputPlugin.h"
22#import "flutter/shell/platform/darwin/ios/framework/Source/FlutterView.h"
23#import "flutter/shell/platform/darwin/ios/framework/Source/FlutterViewController_Internal.h"
24#import "flutter/shell/platform/darwin/ios/framework/Source/SemanticsObject.h"
25#import "flutter/shell/platform/darwin/ios/framework/Source/accessibility_bridge_ios.h"
27
28namespace flutter {
29class PlatformViewIOS;
30
31/**
32 * An accessibility instance is bound to one `FlutterViewController` and
33 * `FlutterView` instance.
34 *
35 * It helps populate the UIView's accessibilityElements property from Flutter's
36 * semantics nodes.
37 */
38class AccessibilityBridge final : public AccessibilityBridgeIos {
39 public:
40 /** Delegate for handling iOS operations. */
42 public:
43 virtual ~IosDelegate() = default;
44 /// Returns true when the FlutterViewController associated with the `view`
45 /// is presenting a modal view controller.
47 FlutterViewController* view_controller) = 0;
48 virtual void PostAccessibilityNotification(UIAccessibilityNotifications notification,
49 id argument) = 0;
50 };
51
54 std::shared_ptr<FlutterPlatformViewsController> platform_views_controller,
55 std::unique_ptr<IosDelegate> ios_delegate = nullptr);
57
60 void HandleEvent(NSDictionary<NSString*, id>* annotatedEvent);
62 void DispatchSemanticsAction(int32_t id,
64 fml::MallocMapping args) override;
65 void AccessibilityObjectDidBecomeFocused(int32_t id) override;
66 void AccessibilityObjectDidLoseFocus(int32_t id) override;
67
68 UIView<UITextInput>* textInputView() override;
69
70 UIView* view() const override { return view_controller_.view; }
71
72 bool isVoiceOverRunning() const override { return view_controller_.isVoiceOverRunning; }
73
75
76 std::shared_ptr<FlutterPlatformViewsController> GetPlatformViewsController() const override {
77 return platform_views_controller_;
78 };
79
80 void clearState();
81
82 private:
83 SemanticsObject* GetOrCreateObject(int32_t id, flutter::SemanticsNodeUpdates& updates);
84 SemanticsObject* FindNextFocusableIfNecessary();
85 // Finds the first focusable SemanticsObject rooted at the parent. This includes the parent itself
86 // if it is a focusable SemanticsObject.
87 //
88 // If the parent is nil, this function use the root SemanticsObject as the parent.
89 SemanticsObject* FindFirstFocusable(SemanticsObject* parent);
90 void VisitObjectsRecursivelyAndRemove(SemanticsObject* object,
91 NSMutableArray<NSNumber*>* doomed_uids);
92
93 FlutterViewController* view_controller_;
94 PlatformViewIOS* platform_view_;
95 const std::shared_ptr<FlutterPlatformViewsController> platform_views_controller_;
96 // If the this id is kSemanticObjectIdInvalid, it means either nothing has
97 // been focused or the focus is currently outside of the flutter application
98 // (i.e. the status bar or keyboard)
99 int32_t last_focused_semantics_object_id_;
102 int32_t previous_route_id_ = 0;
103 std::unordered_map<int32_t, flutter::CustomAccessibilityAction> actions_;
104 std::vector<int32_t> previous_routes_;
105 std::unique_ptr<IosDelegate> ios_delegate_;
106 fml::WeakPtrFactory<AccessibilityBridge> weak_factory_; // Must be the last member.
108};
109
110} // namespace flutter
111
112#endif // FLUTTER_SHELL_PLATFORM_DARWIN_IOS_FRAMEWORK_SOURCE_ACCESSIBILITY_BRIDGE_H_
std::unique_ptr< flutter::PlatformViewIOS > platform_view
virtual void PostAccessibilityNotification(UIAccessibilityNotifications notification, id argument)=0
virtual bool IsFlutterViewControllerPresentingModalViewController(FlutterViewController *view_controller)=0
AccessibilityBridge(FlutterViewController *view_controller, PlatformViewIOS *platform_view, std::shared_ptr< FlutterPlatformViewsController > platform_views_controller, std::unique_ptr< IosDelegate > ios_delegate=nullptr)
void UpdateSemantics(flutter::SemanticsNodeUpdates nodes, const flutter::CustomAccessibilityActionUpdates &actions)
UIView * view() const override
void DispatchSemanticsAction(int32_t id, flutter::SemanticsAction action) override
std::shared_ptr< FlutterPlatformViewsController > GetPlatformViewsController() const override
UIView< UITextInput > * textInputView() override
void AccessibilityObjectDidLoseFocus(int32_t id) override
void DispatchSemanticsAction(int32_t id, flutter::SemanticsAction action, fml::MallocMapping args) override
bool isVoiceOverRunning() const override
void HandleEvent(NSDictionary< NSString *, id > *annotatedEvent)
fml::WeakPtr< AccessibilityBridge > GetWeakPtr()
void AccessibilityObjectDidBecomeFocused(int32_t id) override
A Mapping like NonOwnedMapping, but uses Free as its release proc.
Definition mapping.h:144
G_BEGIN_DECLS G_MODULE_EXPORT FlValue * args
#define FML_DISALLOW_COPY_AND_ASSIGN(TypeName)
Definition macros.h:27
std::unordered_map< int32_t, SemanticsNode > SemanticsNodeUpdates
std::unordered_map< int32_t, CustomAccessibilityAction > CustomAccessibilityActionUpdates