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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
|
/* clang-format off */
/* -*- Mode: Objective-C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* clang-format on */
/* 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/. */
#import "GeckoTextMarker.h"
#import "MacUtils.h"
#include "AccAttributes.h"
#include "DocAccessible.h"
#include "DocAccessibleParent.h"
#include "nsCocoaUtils.h"
#include "HyperTextAccessible.h"
#include "States.h"
#include "nsAccUtils.h"
namespace mozilla {
namespace a11y {
struct TextMarkerData {
TextMarkerData(uintptr_t aDoc, uintptr_t aID, int32_t aOffset)
: mDoc(aDoc), mID(aID), mOffset(aOffset) {}
TextMarkerData() {}
uintptr_t mDoc;
uintptr_t mID;
int32_t mOffset;
};
// GeckoTextMarker
GeckoTextMarker::GeckoTextMarker(Accessible* aAcc, int32_t aOffset) {
HyperTextAccessibleBase* ht = aAcc->AsHyperTextBase();
if (ht && aOffset != nsIAccessibleText::TEXT_OFFSET_END_OF_TEXT &&
aOffset <= static_cast<int32_t>(ht->CharacterCount())) {
mPoint = aAcc->AsHyperTextBase()->ToTextLeafPoint(aOffset);
} else {
mPoint = TextLeafPoint(aAcc, aOffset);
}
}
GeckoTextMarker GeckoTextMarker::MarkerFromAXTextMarker(
Accessible* aDoc, AXTextMarkerRef aTextMarker) {
MOZ_ASSERT(aDoc);
if (!aTextMarker) {
return GeckoTextMarker();
}
if (AXTextMarkerGetLength(aTextMarker) != sizeof(TextMarkerData)) {
MOZ_ASSERT_UNREACHABLE("Malformed AXTextMarkerRef");
return GeckoTextMarker();
}
TextMarkerData markerData;
memcpy(&markerData, AXTextMarkerGetBytePtr(aTextMarker),
sizeof(TextMarkerData));
if (!utils::DocumentExists(aDoc, markerData.mDoc)) {
return GeckoTextMarker();
}
Accessible* doc = reinterpret_cast<Accessible*>(markerData.mDoc);
MOZ_ASSERT(doc->IsDoc());
int32_t offset = markerData.mOffset;
Accessible* acc = nullptr;
if (doc->IsRemote()) {
acc = doc->AsRemote()->AsDoc()->GetAccessible(markerData.mID);
} else {
acc = doc->AsLocal()->AsDoc()->GetAccessibleByUniqueID(
reinterpret_cast<void*>(markerData.mID));
}
if (!acc) {
return GeckoTextMarker();
}
return GeckoTextMarker(acc, offset);
}
GeckoTextMarker GeckoTextMarker::MarkerFromIndex(Accessible* aRoot,
int32_t aIndex) {
TextLeafRange range(
TextLeafPoint(aRoot, 0),
TextLeafPoint(aRoot, nsIAccessibleText::TEXT_OFFSET_END_OF_TEXT));
int32_t index = aIndex;
// Iterate through all segments until we exhausted the index sum
// so we can find the segment the index lives in.
for (TextLeafRange segment : range) {
if (segment.Start().mAcc->IsMenuPopup() &&
(segment.Start().mAcc->State() & states::INVISIBLE)) {
// XXX: Invisible XUL menu popups are in our tree and we need to skip
// them.
continue;
}
if (segment.End().mAcc->Role() == roles::LISTITEM_MARKER) {
// XXX: MacOS expects bullets to be in the range's text, but not in
// the calculated length!
continue;
}
index -= segment.End().mOffset - segment.Start().mOffset;
if (index <= 0) {
// The index is in the current segment.
return GeckoTextMarker(segment.Start().mAcc,
segment.End().mOffset + index);
}
}
return GeckoTextMarker();
}
AXTextMarkerRef GeckoTextMarker::CreateAXTextMarker() {
if (!IsValid()) {
return nil;
}
Accessible* doc = nsAccUtils::DocumentFor(mPoint.mAcc);
TextMarkerData markerData(reinterpret_cast<uintptr_t>(doc), mPoint.mAcc->ID(),
mPoint.mOffset);
AXTextMarkerRef cf_text_marker = AXTextMarkerCreate(
kCFAllocatorDefault, reinterpret_cast<const UInt8*>(&markerData),
sizeof(TextMarkerData));
return (__bridge AXTextMarkerRef)[(__bridge id)(cf_text_marker)autorelease];
}
bool GeckoTextMarker::Next() {
TextLeafPoint next =
mPoint.FindBoundary(nsIAccessibleText::BOUNDARY_CHAR, eDirNext,
TextLeafPoint::BoundaryFlags::eIgnoreListItemMarker);
if (next && next != mPoint) {
mPoint = next;
return true;
}
return false;
}
bool GeckoTextMarker::Previous() {
TextLeafPoint prev =
mPoint.FindBoundary(nsIAccessibleText::BOUNDARY_CHAR, eDirPrevious,
TextLeafPoint::BoundaryFlags::eIgnoreListItemMarker);
if (prev && mPoint != prev) {
mPoint = prev;
return true;
}
return false;
}
/**
* Return true if the given point is inside editable content.
*/
static bool IsPointInEditable(const TextLeafPoint& aPoint) {
if (aPoint.mAcc) {
if (aPoint.mAcc->State() & states::EDITABLE) {
return true;
}
Accessible* parent = aPoint.mAcc->Parent();
if (parent && (parent->State() & states::EDITABLE)) {
return true;
}
}
return false;
}
GeckoTextMarkerRange GeckoTextMarker::LeftWordRange() const {
bool includeCurrentInStart = !mPoint.IsParagraphStart(true);
if (includeCurrentInStart) {
TextLeafPoint prevChar =
mPoint.FindBoundary(nsIAccessibleText::BOUNDARY_CHAR, eDirPrevious);
if (!prevChar.IsSpace()) {
includeCurrentInStart = false;
}
}
TextLeafPoint start = mPoint.FindBoundary(
nsIAccessibleText::BOUNDARY_WORD_START, eDirPrevious,
includeCurrentInStart
? (TextLeafPoint::BoundaryFlags::eIncludeOrigin |
TextLeafPoint::BoundaryFlags::eStopInEditable |
TextLeafPoint::BoundaryFlags::eIgnoreListItemMarker)
: (TextLeafPoint::BoundaryFlags::eStopInEditable |
TextLeafPoint::BoundaryFlags::eIgnoreListItemMarker));
TextLeafPoint end;
if (start == mPoint) {
end = start.FindBoundary(nsIAccessibleText::BOUNDARY_WORD_END, eDirPrevious,
TextLeafPoint::BoundaryFlags::eStopInEditable);
}
if (start != mPoint || end == start) {
end = start.FindBoundary(nsIAccessibleText::BOUNDARY_WORD_END, eDirNext,
TextLeafPoint::BoundaryFlags::eStopInEditable);
if (end < mPoint && IsPointInEditable(end) && !IsPointInEditable(mPoint)) {
start = end;
end = mPoint;
}
}
return GeckoTextMarkerRange(start < end ? start : end,
start < end ? end : start);
}
GeckoTextMarkerRange GeckoTextMarker::RightWordRange() const {
TextLeafPoint prevChar =
mPoint.FindBoundary(nsIAccessibleText::BOUNDARY_CHAR, eDirPrevious,
TextLeafPoint::BoundaryFlags::eStopInEditable);
if (prevChar != mPoint && mPoint.IsParagraphStart(true)) {
return GeckoTextMarkerRange(mPoint, mPoint);
}
TextLeafPoint end =
mPoint.FindBoundary(nsIAccessibleText::BOUNDARY_WORD_END, eDirNext,
TextLeafPoint::BoundaryFlags::eStopInEditable);
if (end == mPoint) {
// No word to the right of this point.
return GeckoTextMarkerRange(mPoint, mPoint);
}
TextLeafPoint start =
end.FindBoundary(nsIAccessibleText::BOUNDARY_WORD_START, eDirPrevious,
TextLeafPoint::BoundaryFlags::eStopInEditable);
if (start.FindBoundary(nsIAccessibleText::BOUNDARY_WORD_END, eDirNext,
TextLeafPoint::BoundaryFlags::eStopInEditable) <
mPoint) {
// Word end is inside of an input to the left of this.
return GeckoTextMarkerRange(mPoint, mPoint);
}
if (mPoint < start) {
end = start;
start = mPoint;
}
return GeckoTextMarkerRange(start < end ? start : end,
start < end ? end : start);
}
GeckoTextMarkerRange GeckoTextMarker::LineRange() const {
TextLeafPoint start = mPoint.FindBoundary(
nsIAccessibleText::BOUNDARY_LINE_START, eDirPrevious,
TextLeafPoint::BoundaryFlags::eStopInEditable |
TextLeafPoint::BoundaryFlags::eIgnoreListItemMarker |
TextLeafPoint::BoundaryFlags::eIncludeOrigin);
// If this is a blank line containing only a line feed, the start boundary
// is the same as the end boundary. We do not want to walk to the end of the
// next line.
TextLeafPoint end =
start.IsLineFeedChar()
? start
: start.FindBoundary(nsIAccessibleText::BOUNDARY_LINE_END, eDirNext,
TextLeafPoint::BoundaryFlags::eStopInEditable);
return GeckoTextMarkerRange(start, end);
}
GeckoTextMarkerRange GeckoTextMarker::LeftLineRange() const {
TextLeafPoint start = mPoint.FindBoundary(
nsIAccessibleText::BOUNDARY_LINE_START, eDirPrevious,
TextLeafPoint::BoundaryFlags::eStopInEditable |
TextLeafPoint::BoundaryFlags::eIgnoreListItemMarker);
TextLeafPoint end =
start.FindBoundary(nsIAccessibleText::BOUNDARY_LINE_END, eDirNext,
TextLeafPoint::BoundaryFlags::eStopInEditable);
return GeckoTextMarkerRange(start, end);
}
GeckoTextMarkerRange GeckoTextMarker::RightLineRange() const {
TextLeafPoint end =
mPoint.FindBoundary(nsIAccessibleText::BOUNDARY_LINE_END, eDirNext,
TextLeafPoint::BoundaryFlags::eStopInEditable);
TextLeafPoint start =
end.FindBoundary(nsIAccessibleText::BOUNDARY_LINE_START, eDirPrevious,
TextLeafPoint::BoundaryFlags::eStopInEditable);
return GeckoTextMarkerRange(start, end);
}
GeckoTextMarkerRange GeckoTextMarker::ParagraphRange() const {
// XXX: WebKit gets trapped in inputs. Maybe we shouldn't?
TextLeafPoint end =
mPoint.FindBoundary(nsIAccessibleText::BOUNDARY_PARAGRAPH, eDirNext,
TextLeafPoint::BoundaryFlags::eStopInEditable);
TextLeafPoint start =
end.FindBoundary(nsIAccessibleText::BOUNDARY_PARAGRAPH, eDirPrevious,
TextLeafPoint::BoundaryFlags::eStopInEditable);
return GeckoTextMarkerRange(start, end);
}
GeckoTextMarkerRange GeckoTextMarker::StyleRange() const {
if (mPoint.mOffset == 0) {
// If the marker is on the boundary between two leafs, MacOS expects the
// previous leaf.
TextLeafPoint prev = mPoint.FindBoundary(
nsIAccessibleText::BOUNDARY_CHAR, eDirPrevious,
TextLeafPoint::BoundaryFlags::eIgnoreListItemMarker);
if (prev != mPoint) {
return GeckoTextMarker(prev).StyleRange();
}
}
TextLeafPoint start(mPoint.mAcc, 0);
TextLeafPoint end(mPoint.mAcc, nsAccUtils::TextLength(mPoint.mAcc));
return GeckoTextMarkerRange(start, end);
}
Accessible* GeckoTextMarker::Leaf() {
MOZ_ASSERT(mPoint.mAcc);
Accessible* acc = mPoint.mAcc;
if (mPoint.mOffset == 0) {
// If the marker is on the boundary between two leafs, MacOS expects the
// previous leaf.
TextLeafPoint prev = mPoint.FindBoundary(
nsIAccessibleText::BOUNDARY_CHAR, eDirPrevious,
TextLeafPoint::BoundaryFlags::eIgnoreListItemMarker);
acc = prev.mAcc;
}
Accessible* parent = acc->Parent();
return parent && nsAccUtils::MustPrune(parent) ? parent : acc;
}
// GeckoTextMarkerRange
GeckoTextMarkerRange::GeckoTextMarkerRange(Accessible* aAccessible) {
mRange = TextLeafRange(
TextLeafPoint(aAccessible, 0),
TextLeafPoint(aAccessible, nsIAccessibleText::TEXT_OFFSET_END_OF_TEXT));
}
GeckoTextMarkerRange GeckoTextMarkerRange::MarkerRangeFromAXTextMarkerRange(
Accessible* aDoc, AXTextMarkerRangeRef aTextMarkerRange) {
if (!aTextMarkerRange ||
CFGetTypeID(aTextMarkerRange) != AXTextMarkerRangeGetTypeID()) {
return GeckoTextMarkerRange();
}
AXTextMarkerRef start_marker(
AXTextMarkerRangeCopyStartMarker(aTextMarkerRange));
AXTextMarkerRef end_marker(AXTextMarkerRangeCopyEndMarker(aTextMarkerRange));
GeckoTextMarker start =
GeckoTextMarker::MarkerFromAXTextMarker(aDoc, start_marker);
GeckoTextMarker end =
GeckoTextMarker::MarkerFromAXTextMarker(aDoc, end_marker);
CFRelease(start_marker);
CFRelease(end_marker);
return GeckoTextMarkerRange(start, end);
}
AXTextMarkerRangeRef GeckoTextMarkerRange::CreateAXTextMarkerRange() {
if (!IsValid()) {
return nil;
}
GeckoTextMarker start = GeckoTextMarker(mRange.Start());
GeckoTextMarker end = GeckoTextMarker(mRange.End());
AXTextMarkerRangeRef cf_text_marker_range =
AXTextMarkerRangeCreate(kCFAllocatorDefault, start.CreateAXTextMarker(),
end.CreateAXTextMarker());
return (__bridge AXTextMarkerRangeRef)[(__bridge id)(
cf_text_marker_range)autorelease];
}
NSString* GeckoTextMarkerRange::Text() const {
if (mRange.Start() == mRange.End()) {
return @"";
}
if ((mRange.Start().mAcc == mRange.End().mAcc) &&
(mRange.Start().mAcc->ChildCount() == 0) &&
(mRange.Start().mAcc->State() & states::EDITABLE)) {
return @"";
}
nsAutoString text;
TextLeafPoint prev = mRange.Start().FindBoundary(
nsIAccessibleText::BOUNDARY_CHAR, eDirPrevious);
TextLeafRange range =
prev != mRange.Start() && prev.mAcc->Role() == roles::LISTITEM_MARKER
? TextLeafRange(TextLeafPoint(prev.mAcc, 0), mRange.End())
: mRange;
for (TextLeafRange segment : range) {
TextLeafPoint start = segment.Start();
if (start.mAcc->IsMenuPopup() &&
(start.mAcc->State() & states::INVISIBLE)) {
// XXX: Invisible XUL menu popups are in our tree and we need to skip
// them.
continue;
}
if (start.mAcc->IsTextField() && start.mAcc->ChildCount() == 0) {
continue;
}
start.mAcc->AppendTextTo(text, start.mOffset,
segment.End().mOffset - start.mOffset);
}
return nsCocoaUtils::ToNSString(text);
}
static void AppendTextToAttributedString(
NSMutableAttributedString* aAttributedString, Accessible* aAccessible,
const nsString& aString, AccAttributes* aAttributes) {
NSAttributedString* substr = [[[NSAttributedString alloc]
initWithString:nsCocoaUtils::ToNSString(aString)
attributes:utils::StringAttributesFromAccAttributes(
aAttributes, aAccessible)] autorelease];
[aAttributedString appendAttributedString:substr];
}
static RefPtr<AccAttributes> GetTextAttributes(TextLeafPoint aPoint) {
RefPtr<AccAttributes> attrs = aPoint.GetTextAttributes();
if (!attrs) {
// If we can't fetch text attributes for the given point, return null.
// We avoid creating a new AccAttributes here because our AttributedText()
// code below relies on this null return value to indicate we're dealing
// with a non-text control.
return nullptr;
}
// Mac expects some object properties to be exposed as text attributes. We
// add these here rather than in utils::StringAttributesFromAccAttributes so
// we can use AccAttributes::Equal to determine whether we need to start a new
// run, rather than needing additional special case comparisons.
for (Accessible* ancestor = aPoint.mAcc->Parent();
ancestor && !ancestor->IsDoc(); ancestor = ancestor->Parent()) {
if (ancestor->Role() == roles::MARK) {
attrs->SetAttribute(nsGkAtoms::mark, true);
}
}
return attrs;
}
NSAttributedString* GeckoTextMarkerRange::AttributedText() const {
NSMutableAttributedString* str =
[[[NSMutableAttributedString alloc] init] autorelease];
if (mRange.Start() == mRange.End()) {
return str;
}
if ((mRange.Start().mAcc == mRange.End().mAcc) &&
(mRange.Start().mAcc->ChildCount() == 0) &&
(mRange.Start().mAcc->IsTextField())) {
return str;
}
TextLeafPoint prev = mRange.Start().FindBoundary(
nsIAccessibleText::BOUNDARY_CHAR, eDirPrevious);
TextLeafRange range =
prev != mRange.Start() && prev.mAcc->Role() == roles::LISTITEM_MARKER
? TextLeafRange(TextLeafPoint(prev.mAcc, 0), mRange.End())
: mRange;
nsAutoString text;
TextLeafPoint start = range.Start();
const TextLeafPoint stop = range.End();
RefPtr<AccAttributes> currentRun = GetTextAttributes(start);
Accessible* runAcc = start.mAcc;
do {
TextLeafPoint attributesNext = start.FindTextAttrsStart(eDirNext, false);
if (stop < attributesNext) {
attributesNext = stop;
}
if (start.mAcc->IsMenuPopup() &&
(start.mAcc->State() & states::INVISIBLE)) {
// XXX: Invisible XUL menu popups are in our tree and we need to skip
// them.
start = attributesNext;
continue;
}
RefPtr<AccAttributes> attributes = GetTextAttributes(start);
if (!currentRun || !attributes || !attributes->Equal(currentRun)) {
// If currentRun is null this is a non-text control and we will
// append a run with no text or attributes, just an AXAttachment
// referencing this accessible.
AppendTextToAttributedString(str, runAcc, text, currentRun);
text.Truncate();
currentRun = attributes;
runAcc = start.mAcc;
}
for (TextLeafRange segment : TextLeafRange(start, attributesNext)) {
TextLeafPoint segStart = segment.Start();
segStart.mAcc->AppendTextTo(text, segStart.mOffset,
segment.End().mOffset - segStart.mOffset);
}
start = attributesNext;
} while (start != stop);
if (!text.IsEmpty()) {
AppendTextToAttributedString(str, runAcc, text, currentRun);
}
return str;
}
int32_t GeckoTextMarkerRange::Length() const {
int32_t length = 0;
for (TextLeafRange segment : mRange) {
if (segment.End().mAcc->Role() == roles::LISTITEM_MARKER) {
// XXX: MacOS expects bullets to be in the range's text, but not in
// the calculated length!
continue;
}
length += segment.End().mOffset - segment.Start().mOffset;
}
return length;
}
NSValue* GeckoTextMarkerRange::Bounds() const {
LayoutDeviceIntRect rect = mRange ? mRange.Bounds() : LayoutDeviceIntRect();
// We need to find the NSScreen that this range belongs to. Because we
// are not guaranteed to get a native accessible for the range's start or
// end acc (whitespace, for ex. has no native acc) we fetch the doc
// and then use its native acc to retrieve the screen.
Accessible* acc = nsAccUtils::DocumentFor(mRange.Start().mAcc);
NSScreen* screen =
utils::GetNSScreenForAcc(GetNativeFromGeckoAccessible(acc));
CGFloat scaleFactor = nsCocoaUtils::GetBackingScaleFactor(screen);
// Regardless of screen selected above, VO is only happy if we use the
// main screen height for Y coordinate conversion. This is consistent with
// moxHitTest and moxFrame.
NSScreen* mainView = [[NSScreen screens] objectAtIndex:0];
NSRect r =
NSMakeRect(static_cast<CGFloat>(rect.x) / scaleFactor,
[mainView frame].size.height -
static_cast<CGFloat>(rect.y + rect.height) / scaleFactor,
static_cast<CGFloat>(rect.width) / scaleFactor,
static_cast<CGFloat>(rect.height) / scaleFactor);
return [NSValue valueWithRect:r];
}
void GeckoTextMarkerRange::Select() const { mRange.SetSelection(0); }
} // namespace a11y
} // namespace mozilla
|