1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
ash / public / cpp / accessibility_event_rewriter_delegate.h [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_PUBLIC_CPP_ACCESSIBILITY_EVENT_REWRITER_DELEGATE_H_
#define ASH_PUBLIC_CPP_ACCESSIBILITY_EVENT_REWRITER_DELEGATE_H_
#include <memory>
#include "ash/public/cpp/ash_public_export.h"
#include "ui/gfx/geometry/point_f.h"
namespace ui {
class Event;
}
namespace ash {
enum class SwitchAccessCommand;
enum class MagnifierCommand;
// Allows a client to implement event processing for accessibility features;
// used for ChromeVox and Switch Access.
class ASH_PUBLIC_EXPORT AccessibilityEventRewriterDelegate {
public:
// Used to send key events to the ChromeVox extension. |capture| is true if
// the rewriter discarded the event, false if the rewriter continues event
// propagation.
virtual void DispatchKeyEventToChromeVox(std::unique_ptr<ui::Event> event,
bool capture) = 0;
// Used to send mouse events to accessibility component extensions.
virtual void DispatchMouseEvent(std::unique_ptr<ui::Event> event) = 0;
// Sends a command to Switch Access.
virtual void SendSwitchAccessCommand(SwitchAccessCommand command) = 0;
// Sends a point to Switch Access's Point Scan.
virtual void SendPointScanPoint(const gfx::PointF& point) = 0;
// Sends a command to Magnifier.
virtual void SendMagnifierCommand(MagnifierCommand command) = 0;
protected:
virtual ~AccessibilityEventRewriterDelegate() {}
};
} // namespace ash
#endif // ASH_PUBLIC_CPP_ACCESSIBILITY_EVENT_REWRITER_DELEGATE_H_