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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef mozilla_a11y_AccessibleWrap_h_
#define mozilla_a11y_AccessibleWrap_h_
#include "LocalAccessible.h"
#include "mozilla/a11y/RemoteAccessible.h"
#include "mozilla/java/GeckoBundleWrappers.h"
#include "nsCOMPtr.h"
namespace mozilla {
namespace a11y {
class AccessibleWrap : public LocalAccessible {
public:
AccessibleWrap(nsIContent* aContent, DocAccessible* aDoc);
virtual ~AccessibleWrap();
MOZ_CAN_RUN_SCRIPT_BOUNDARY // TODO: Mark this as MOZ_CAN_RUN_SCRIPT
virtual nsresult
HandleAccEvent(AccEvent* aEvent) override;
virtual void Shutdown() override;
virtual bool DoAction(uint8_t aIndex) const override;
MOZ_CAN_RUN_SCRIPT_BOUNDARY
virtual bool PivotTo(int32_t aGranularity, bool aForward, bool aInclusive);
virtual void NavigateText(int32_t aGranularity, int32_t aStartOffset,
int32_t aEndOffset, bool aForward, bool aSelect);
virtual void SetSelection(int32_t aStart, int32_t aEnd);
virtual void Cut();
virtual void Copy();
MOZ_CAN_RUN_SCRIPT_BOUNDARY
virtual void Paste();
void ExploreByTouch(float aX, float aY);
static uint32_t GetFlags(role aRole, uint64_t aState, uint8_t aActionCount);
static int32_t GetInputType(const nsString& aInputTypeAttr);
static int32_t GetAndroidClass(role aRole);
static void GetRoleDescription(role aRole, AccAttributes* aAttributes,
nsAString& aGeckoRole,
nsAString& aRoleDescription);
static int32_t AndroidClass(Accessible* aAccessible);
static int32_t GetVirtualViewID(Accessible* aAccessible);
static void SetVirtualViewID(Accessible* aAccessible, int32_t aVirtualViewID);
static Accessible* DoPivot(Accessible* aAccessible, int32_t aGranularity,
bool aForward, bool aInclusive);
protected:
int32_t mID;
private:
void GetTextEquiv(nsString& aText);
bool HandleLiveRegionEvent(AccEvent* aEvent);
void GetSelectionOrCaret(int32_t* aStartOffset, int32_t* aEndOffset);
};
} // namespace a11y
} // namespace mozilla
#endif
|