summaryrefslogtreecommitdiffstats
path: root/accessible/mac/HyperTextAccessibleWrap.h
blob: bb418ed179b658b6c27d3bb027effbff6e36f9b2 (plain)
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/* -*- 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_HyperTextAccessibleWrap_h__
#define mozilla_a11y_HyperTextAccessibleWrap_h__

#include "HyperTextAccessible.h"
#include "PlatformExtTypes.h"

namespace mozilla {
namespace a11y {

struct TextPoint;

class HyperTextAccessibleWrap : public HyperTextAccessible {
 public:
  HyperTextAccessibleWrap(nsIContent* aContent, DocAccessible* aDoc)
      : HyperTextAccessible(aContent, aDoc) {}

  void TextForRange(nsAString& aText, int32_t aStartOffset,
                    HyperTextAccessible* aEndContainer, int32_t aEndOffset);

  void AttributedTextForRange(nsTArray<nsString>& aStrings,
                              nsTArray<RefPtr<AccAttributes>>& aProperties,
                              nsTArray<LocalAccessible*>& aContainers,
                              int32_t aStartOffset,
                              HyperTextAccessible* aEndContainer,
                              int32_t aEndOffset);

  LayoutDeviceIntRect BoundsForRange(int32_t aStartOffset,
                                     HyperTextAccessible* aEndContainer,
                                     int32_t aEndOffset);

  int32_t LengthForRange(int32_t aStartOffset,
                         HyperTextAccessible* aEndContainer,
                         int32_t aEndOffset);

  void OffsetAtIndex(int32_t aIndex, HyperTextAccessible** aContainer,
                     int32_t* aOffset);

  void RangeAt(int32_t aOffset, EWhichRange aRangeType,
               HyperTextAccessible** aStartContainer, int32_t* aStartOffset,
               HyperTextAccessible** aEndContainer, int32_t* aEndOffset);

  void NextClusterAt(int32_t aOffset, HyperTextAccessible** aNextContainer,
                     int32_t* aNextOffset);

  void PreviousClusterAt(int32_t aOffset, HyperTextAccessible** aPrevContainer,
                         int32_t* aPrevOffset);

  void RangeOfChild(LocalAccessible* aChild, int32_t* aStartOffset,
                    int32_t* aEndOffset);

  LocalAccessible* LeafAtOffset(int32_t aOffset);

  MOZ_CAN_RUN_SCRIPT void SelectRange(int32_t aStartOffset,
                                      HyperTextAccessible* aEndContainer,
                                      int32_t aEndOffset);

 protected:
  ~HyperTextAccessibleWrap() {}

 private:
  TextPoint FindTextPoint(int32_t aOffset, nsDirection aDirection,
                          nsSelectionAmount aAmount,
                          EWordMovementType aWordMovementType);

  HyperTextAccessibleWrap* EditableRoot();

  void LeftWordAt(int32_t aOffset, HyperTextAccessible** aStartContainer,
                  int32_t* aStartOffset, HyperTextAccessible** aEndContainer,
                  int32_t* aEndOffset);

  void RightWordAt(int32_t aOffset, HyperTextAccessible** aStartContainer,
                   int32_t* aStartOffset, HyperTextAccessible** aEndContainer,
                   int32_t* aEndOffset);

  void LineAt(int32_t aOffset, bool aNextLine,
              HyperTextAccessible** aStartContainer, int32_t* aStartOffset,
              HyperTextAccessible** aEndContainer, int32_t* aEndOffset);

  void ParagraphAt(int32_t aOffset, HyperTextAccessible** aStartContainer,
                   int32_t* aStartOffset, HyperTextAccessible** aEndContainer,
                   int32_t* aEndOffset);

  void StyleAt(int32_t aOffset, HyperTextAccessible** aStartContainer,
               int32_t* aStartOffset, HyperTextAccessible** aEndContainer,
               int32_t* aEndOffset);
};

}  // namespace a11y
}  // namespace mozilla

#endif