Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
custom_accessibility_action.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_LIB_UI_SEMANTICS_CUSTOM_ACCESSIBILITY_ACTION_H_
6#define FLUTTER_LIB_UI_SEMANTICS_CUSTOM_ACCESSIBILITY_ACTION_H_
7
11
12namespace flutter {
13
14/// A custom accessibility action is used to indicate additional semantics
15/// actions that a user can perform on a semantics node beyond the
16/// preconfigured options.
20
21 int32_t id = 0;
22 int32_t overrideId = -1;
23 std::string label;
24 std::string hint;
25};
26
27// Contains custom accessibility actions that need to be updated.
28//
29// The keys in the map are stable action IDs, and the values contain
30// semantic information for the action corresponding to that id.
32 std::unordered_map<int32_t, CustomAccessibilityAction>;
33
34} // namespace flutter
35
36#endif // FLUTTER_LIB_UI_SEMANTICS_CUSTOM_ACCESSIBILITY_ACTION_H_
std::unordered_map< int32_t, CustomAccessibilityAction > CustomAccessibilityActionUpdates