Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1057)

Unified Diff: chrome/browser/chromeos/ui/accessibility_cursor_ring_layer.cc

Issue 1822823002: Implement Chrome OS accessibility features to highlight focus, caret & cursor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Landing without views_delegate change for now Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/ui/accessibility_cursor_ring_layer.cc
diff --git a/chrome/browser/chromeos/ui/accessibility_cursor_ring_layer.cc b/chrome/browser/chromeos/ui/accessibility_cursor_ring_layer.cc
new file mode 100644
index 0000000000000000000000000000000000000000..fe841c3645c8408ef63cd5480026a09623836a83
--- /dev/null
+++ b/chrome/browser/chromeos/ui/accessibility_cursor_ring_layer.cc
@@ -0,0 +1,85 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/chromeos/ui/accessibility_cursor_ring_layer.h"
+
+#include "ash/display/window_tree_host_manager.h"
+#include "ash/shell.h"
+#include "base/bind.h"
+#include "third_party/skia/include/core/SkPaint.h"
+#include "third_party/skia/include/core/SkPath.h"
+#include "ui/aura/window.h"
+#include "ui/compositor/layer.h"
+#include "ui/compositor/paint_recorder.h"
+#include "ui/gfx/canvas.h"
+
+namespace chromeos {
+
+namespace {
+
+// The number of pixels in the color gradient that fades to transparent.
+const int kGradientWidth = 8;
+
+// The radius of the ring in pixels.
+const int kCursorRingRadius = 24;
+
+// Extra margin to add to the layer in pixels.
+const int kLayerMargin = 8;
+
+} // namespace
+
+AccessibilityCursorRingLayer::AccessibilityCursorRingLayer(
+ FocusRingLayerDelegate* delegate,
+ int red,
+ int green,
+ int blue)
+ : FocusRingLayer(delegate), red_(red), green_(green), blue_(blue) {}
+
+AccessibilityCursorRingLayer::~AccessibilityCursorRingLayer() {}
+
+void AccessibilityCursorRingLayer::Set(const gfx::Point& location) {
+ location_ = location;
+
+ gfx::Rect bounds = gfx::Rect(location.x(), location.y(), 0, 0);
+ int inset = kGradientWidth + kCursorRingRadius + kLayerMargin;
+ bounds.Inset(-inset, -inset, -inset, -inset);
+
+ gfx::Display display = gfx::Screen::GetScreen()->GetDisplayMatching(bounds);
+ aura::Window* root_window = ash::Shell::GetInstance()
+ ->window_tree_host_manager()
+ ->GetRootWindowForDisplayId(display.id());
+ CreateOrUpdateLayer(root_window, "AccessibilityCursorRing");
+
+ // Update the layer bounds.
+ layer()->SetBounds(bounds);
+}
+
+void AccessibilityCursorRingLayer::SetOpacity(float opacity) {
+ layer()->SetOpacity(opacity);
+}
+
+void AccessibilityCursorRingLayer::OnPaintLayer(
+ const ui::PaintContext& context) {
+ ui::PaintRecorder recorder(context, layer()->size());
+
+ SkPaint paint;
+ paint.setFlags(SkPaint::kAntiAlias_Flag);
+ paint.setStyle(SkPaint::kStroke_Style);
+ paint.setStrokeWidth(2);
+
+ gfx::Rect r = layer()->bounds();
+ r.Offset(-r.OffsetFromOrigin());
+ r.Inset(kLayerMargin, kLayerMargin, kLayerMargin, kLayerMargin);
+ const int w = kGradientWidth;
+ for (int i = 0; i < w; ++i) {
+ paint.setColor(
+ SkColorSetARGBMacro(255 * (i) * (i) / (w * w), red_, green_, blue_));
+ SkPath path;
+ path.addOval(SkRect::MakeXYWH(r.x(), r.y(), r.width(), r.height()));
+ r.Inset(1, 1, 1, 1);
+ recorder.canvas()->DrawPath(path, paint);
+ }
+}
+
+} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698