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
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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/. */
#include "AccessibleCaret.h"
#include "AccessibleCaretLogger.h"
#include "mozilla/Assertions.h"
#include "mozilla/BuiltInStyleSheets.h"
#include "mozilla/ErrorResult.h"
#include "mozilla/FloatingPoint.h"
#include "mozilla/PresShell.h"
#include "mozilla/StaticPrefs_layout.h"
#include "mozilla/dom/Document.h"
#include "mozilla/dom/ShadowRoot.h"
#include "mozilla/ToString.h"
#include "nsCanvasFrame.h"
#include "nsCaret.h"
#include "nsCSSFrameConstructor.h"
#include "nsDOMTokenList.h"
#include "nsGenericHTMLElement.h"
#include "nsIFrame.h"
#include "nsLayoutUtils.h"
#include "nsPlaceholderFrame.h"
namespace mozilla {
using namespace dom;
#undef AC_LOG
#define AC_LOG(message, ...) \
AC_LOG_BASE("AccessibleCaret (%p): " message, this, ##__VA_ARGS__);
#undef AC_LOGV
#define AC_LOGV(message, ...) \
AC_LOGV_BASE("AccessibleCaret (%p): " message, this, ##__VA_ARGS__);
NS_IMPL_ISUPPORTS(AccessibleCaret::DummyTouchListener, nsIDOMEventListener)
static constexpr auto kTextOverlayElementId = u"text-overlay"_ns;
static constexpr auto kCaretImageElementId = u"image"_ns;
#define AC_PROCESS_ENUM_TO_STREAM(e) \
case (e): \
aStream << #e; \
break;
std::ostream& operator<<(std::ostream& aStream,
const AccessibleCaret::Appearance& aAppearance) {
using Appearance = AccessibleCaret::Appearance;
switch (aAppearance) {
AC_PROCESS_ENUM_TO_STREAM(Appearance::None);
AC_PROCESS_ENUM_TO_STREAM(Appearance::Normal);
AC_PROCESS_ENUM_TO_STREAM(Appearance::NormalNotShown);
AC_PROCESS_ENUM_TO_STREAM(Appearance::Left);
AC_PROCESS_ENUM_TO_STREAM(Appearance::Right);
}
return aStream;
}
std::ostream& operator<<(
std::ostream& aStream,
const AccessibleCaret::PositionChangedResult& aResult) {
using PositionChangedResult = AccessibleCaret::PositionChangedResult;
switch (aResult) {
AC_PROCESS_ENUM_TO_STREAM(PositionChangedResult::NotChanged);
AC_PROCESS_ENUM_TO_STREAM(PositionChangedResult::Position);
AC_PROCESS_ENUM_TO_STREAM(PositionChangedResult::Zoom);
AC_PROCESS_ENUM_TO_STREAM(PositionChangedResult::Invisible);
}
return aStream;
}
#undef AC_PROCESS_ENUM_TO_STREAM
// -----------------------------------------------------------------------------
// Implementation of AccessibleCaret methods
AccessibleCaret::AccessibleCaret(PresShell* aPresShell)
: mPresShell(aPresShell) {
// Check all resources required.
if (mPresShell) {
MOZ_ASSERT(mPresShell->GetDocument());
InjectCaretElement(mPresShell->GetDocument());
}
}
AccessibleCaret::~AccessibleCaret() {
if (mPresShell) {
RemoveCaretElement(mPresShell->GetDocument());
}
}
dom::Element* AccessibleCaret::TextOverlayElement() const {
return mCaretElementHolder->Root()->GetElementById(kTextOverlayElementId);
}
dom::Element* AccessibleCaret::CaretImageElement() const {
return mCaretElementHolder->Root()->GetElementById(kCaretImageElementId);
}
void AccessibleCaret::SetAppearance(Appearance aAppearance) {
if (mAppearance == aAppearance) {
return;
}
IgnoredErrorResult rv;
CaretElement().ClassList()->Remove(AppearanceString(mAppearance), rv);
MOZ_ASSERT(!rv.Failed(), "Remove old appearance failed!");
CaretElement().ClassList()->Add(AppearanceString(aAppearance), rv);
MOZ_ASSERT(!rv.Failed(), "Add new appearance failed!");
AC_LOG("%s: %s -> %s", __FUNCTION__, ToString(mAppearance).c_str(),
ToString(aAppearance).c_str());
mAppearance = aAppearance;
// Need to reset rect since the cached rect will be compared in SetPosition.
if (mAppearance == Appearance::None) {
ClearCachedData();
}
}
/* static */
nsAutoString AccessibleCaret::AppearanceString(Appearance aAppearance) {
nsAutoString string;
switch (aAppearance) {
case Appearance::None:
string = u"none"_ns;
break;
case Appearance::NormalNotShown:
string = u"hidden"_ns;
break;
case Appearance::Normal:
string = u"normal"_ns;
break;
case Appearance::Right:
string = u"right"_ns;
break;
case Appearance::Left:
string = u"left"_ns;
break;
}
return string;
}
bool AccessibleCaret::Intersects(const AccessibleCaret& aCaret) const {
MOZ_ASSERT(mPresShell == aCaret.mPresShell);
if (!IsVisuallyVisible() || !aCaret.IsVisuallyVisible()) {
return false;
}
nsRect rect =
nsLayoutUtils::GetRectRelativeToFrame(&CaretElement(), RootFrame());
nsRect rhsRect = nsLayoutUtils::GetRectRelativeToFrame(&aCaret.CaretElement(),
RootFrame());
return rect.Intersects(rhsRect);
}
bool AccessibleCaret::Contains(const nsPoint& aPoint,
TouchArea aTouchArea) const {
if (!IsVisuallyVisible()) {
return false;
}
nsRect textOverlayRect =
nsLayoutUtils::GetRectRelativeToFrame(TextOverlayElement(), RootFrame());
nsRect caretImageRect =
nsLayoutUtils::GetRectRelativeToFrame(CaretImageElement(), RootFrame());
if (aTouchArea == TouchArea::CaretImage) {
return caretImageRect.Contains(aPoint);
}
MOZ_ASSERT(aTouchArea == TouchArea::Full, "Unexpected TouchArea type!");
return textOverlayRect.Contains(aPoint) || caretImageRect.Contains(aPoint);
}
void AccessibleCaret::EnsureApzAware() {
// If the caret element was cloned, the listener might have been lost. So
// if that's the case we register a dummy listener if there isn't one on
// the element already.
if (!CaretElement().IsApzAware()) {
CaretElement().AddEventListener(u"touchstart"_ns, mDummyTouchListener,
false);
}
}
bool AccessibleCaret::IsInPositionFixedSubtree() const {
return nsLayoutUtils::IsInPositionFixedSubtree(
mImaginaryCaretReferenceFrame.GetFrame());
}
void AccessibleCaret::InjectCaretElement(Document* aDocument) {
mCaretElementHolder = aDocument->InsertAnonymousContent(IgnoreErrors());
MOZ_RELEASE_ASSERT(mCaretElementHolder, "We must have anonymous content!");
CreateCaretElement();
EnsureApzAware();
}
void AccessibleCaret::CreateCaretElement() const {
// Content structure of AccessibleCaret
// <div class="moz-accessiblecaret"> <- CaretElement()
// <#shadow-root>
// <div id="text-overlay"> <- TextOverlayElement()
// <div id="image"> <- CaretImageElement()
constexpr bool kNotify = false;
Element& host = CaretElement();
host.SetAttr(kNameSpaceID_None, nsGkAtoms::_class,
u"moz-accessiblecaret none"_ns, kNotify);
ShadowRoot* root = mCaretElementHolder->Root();
Document* doc = host.OwnerDoc();
root->AppendBuiltInStyleSheet(BuiltInStyleSheet::AccessibleCaret);
auto CreateAndAppendChildElement = [&](const nsLiteralString& aElementId) {
RefPtr<Element> child = doc->CreateHTMLElement(nsGkAtoms::div);
child->SetAttr(kNameSpaceID_None, nsGkAtoms::id, aElementId, kNotify);
mCaretElementHolder->Root()->AppendChildTo(child, kNotify, IgnoreErrors());
};
CreateAndAppendChildElement(kTextOverlayElementId);
CreateAndAppendChildElement(kCaretImageElementId);
}
void AccessibleCaret::RemoveCaretElement(Document* aDocument) {
CaretElement().RemoveEventListener(u"touchstart"_ns, mDummyTouchListener,
false);
aDocument->RemoveAnonymousContent(*mCaretElementHolder);
}
void AccessibleCaret::ClearCachedData() {
mImaginaryCaretRect = nsRect();
mImaginaryCaretRectInContainerFrame = nsRect();
mImaginaryCaretReferenceFrame = nullptr;
mZoomLevel = 0.0f;
}
AccessibleCaret::PositionChangedResult AccessibleCaret::SetPosition(
nsIFrame* aFrame, int32_t aOffset) {
if (!CustomContentContainerFrame()) {
return PositionChangedResult::NotChanged;
}
nsRect imaginaryCaretRectInFrame =
nsCaret::GetGeometryForFrame(aFrame, aOffset, nullptr);
imaginaryCaretRectInFrame =
nsLayoutUtils::ClampRectToScrollFrames(aFrame, imaginaryCaretRectInFrame);
if (imaginaryCaretRectInFrame.IsEmpty()) {
// Don't bother to set the caret position since it's invisible.
ClearCachedData();
return PositionChangedResult::Invisible;
}
// SetCaretElementStyle() requires the input rect relative to the custom
// content container frame.
nsRect imaginaryCaretRectInContainerFrame = imaginaryCaretRectInFrame;
nsLayoutUtils::TransformRect(aFrame, CustomContentContainerFrame(),
imaginaryCaretRectInContainerFrame);
const float zoomLevel = GetZoomLevel();
const bool isSamePosition = imaginaryCaretRectInContainerFrame.IsEqualEdges(
mImaginaryCaretRectInContainerFrame);
const bool isSameZoomLevel = FuzzyEqualsMultiplicative(zoomLevel, mZoomLevel);
// Always update cached mImaginaryCaretRect (relative to the root frame)
// because it can change when the caret is scrolled.
mImaginaryCaretRect = imaginaryCaretRectInFrame;
nsLayoutUtils::TransformRect(aFrame, RootFrame(), mImaginaryCaretRect);
if (isSamePosition && isSameZoomLevel) {
return PositionChangedResult::NotChanged;
}
mImaginaryCaretRectInContainerFrame = imaginaryCaretRectInContainerFrame;
mImaginaryCaretReferenceFrame = aFrame;
mZoomLevel = zoomLevel;
SetCaretElementStyle(imaginaryCaretRectInContainerFrame, mZoomLevel);
return isSamePosition ? PositionChangedResult::Zoom
: PositionChangedResult::Position;
}
nsIFrame* AccessibleCaret::RootFrame() const {
return mPresShell->GetRootFrame();
}
nsIFrame* AccessibleCaret::CustomContentContainerFrame() const {
Element* container = mPresShell->GetDocument()->GetCustomContentContainer();
return container->GetPrimaryFrame();
}
void AccessibleCaret::SetCaretElementStyle(const nsRect& aRect,
float aZoomLevel) {
nsPoint position = CaretElementPosition(aRect);
nsAutoString styleStr;
// We can't use AppendPrintf here, because it does locale-specific
// formatting of floating-point values.
styleStr.AppendLiteral("left: ");
styleStr.AppendFloat(nsPresContext::AppUnitsToFloatCSSPixels(position.x));
styleStr.AppendLiteral("px; top: ");
styleStr.AppendFloat(nsPresContext::AppUnitsToFloatCSSPixels(position.y));
styleStr.AppendLiteral("px; width: ");
styleStr.AppendFloat(StaticPrefs::layout_accessiblecaret_width() /
aZoomLevel);
styleStr.AppendLiteral("px; margin-left: ");
styleStr.AppendFloat(StaticPrefs::layout_accessiblecaret_margin_left() /
aZoomLevel);
styleStr.AppendLiteral("px; transition-duration: ");
styleStr.AppendFloat(
StaticPrefs::layout_accessiblecaret_transition_duration());
styleStr.AppendLiteral("ms");
CaretElement().SetAttr(kNameSpaceID_None, nsGkAtoms::style, styleStr, true);
AC_LOG("%s: %s", __FUNCTION__, NS_ConvertUTF16toUTF8(styleStr).get());
// Set style string for children.
SetTextOverlayElementStyle(aRect, aZoomLevel);
SetCaretImageElementStyle(aRect, aZoomLevel);
}
void AccessibleCaret::SetTextOverlayElementStyle(const nsRect& aRect,
float aZoomLevel) {
nsAutoString styleStr;
styleStr.AppendLiteral("height: ");
styleStr.AppendFloat(nsPresContext::AppUnitsToFloatCSSPixels(aRect.height));
styleStr.AppendLiteral("px;");
TextOverlayElement()->SetAttr(kNameSpaceID_None, nsGkAtoms::style, styleStr,
true);
AC_LOG("%s: %s", __FUNCTION__, NS_ConvertUTF16toUTF8(styleStr).get());
}
void AccessibleCaret::SetCaretImageElementStyle(const nsRect& aRect,
float aZoomLevel) {
nsAutoString styleStr;
styleStr.AppendLiteral("height: ");
styleStr.AppendFloat(StaticPrefs::layout_accessiblecaret_height() /
aZoomLevel);
styleStr.AppendLiteral("px;");
CaretImageElement()->SetAttr(kNameSpaceID_None, nsGkAtoms::style, styleStr,
true);
AC_LOG("%s: %s", __FUNCTION__, NS_ConvertUTF16toUTF8(styleStr).get());
}
float AccessibleCaret::GetZoomLevel() {
// Full zoom on desktop.
float fullZoom = mPresShell->GetPresContext()->GetFullZoom();
// Pinch-zoom on fennec.
float resolution = mPresShell->GetCumulativeResolution();
return fullZoom * resolution;
}
} // namespace mozilla
|