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

Unified Diff: ui/accessibility/platform/ax_fake_caret_win.cc

Issue 2781613003: Added a class acting as a fake caret for accessibility. (Closed)
Patch Set: Fixed compilation error due to rebase. Created 3 years, 7 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
« no previous file with comments | « ui/accessibility/platform/ax_fake_caret_win.h ('k') | ui/accessibility/platform/ax_platform_node_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/accessibility/platform/ax_fake_caret_win.cc
diff --git a/ui/accessibility/platform/ax_fake_caret_win.cc b/ui/accessibility/platform/ax_fake_caret_win.cc
new file mode 100644
index 0000000000000000000000000000000000000000..8b645dce949080156e0bc4c7f12211c54d0f8ba2
--- /dev/null
+++ b/ui/accessibility/platform/ax_fake_caret_win.cc
@@ -0,0 +1,102 @@
+// Copyright 2017 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 "ui/accessibility/platform/ax_fake_caret_win.h"
+
+#include <windows.h>
+
+#include "base/logging.h"
+#include "ui/accessibility/ax_enums.h"
+#include "ui/accessibility/platform/ax_platform_node_win.h"
+#include "ui/accessibility/platform/ax_platform_unique_id.h"
+#include "ui/gfx/geometry/rect_conversions.h"
+#include "ui/gfx/geometry/rect_f.h"
+
+namespace ui {
+
+AXFakeCaretWin::AXFakeCaretWin(gfx::AcceleratedWidget event_target)
+ : event_target_(event_target) {
+ caret_ = static_cast<AXPlatformNodeWin*>(AXPlatformNodeWin::Create(this));
+ data_.id = GetNextAXPlatformNodeUniqueId();
+ data_.role = AX_ROLE_CARET;
+ data_.state = 0;
+ data_.SetName(L"caret");
+ data_.offset_container_id = -1;
+}
+
+AXFakeCaretWin::~AXFakeCaretWin() {
+ caret_->Destroy();
+ caret_ = nullptr;
+}
+
+base::win::ScopedComPtr<IAccessible> AXFakeCaretWin::GetCaret() const {
+ base::win::ScopedComPtr<IAccessible> caret_accessible;
+ HRESULT hr = caret_->QueryInterface(
+ IID_IAccessible,
+ reinterpret_cast<void**>(caret_accessible.GetAddressOf()));
+ DCHECK(SUCCEEDED(hr));
+ return caret_accessible;
+}
+
+void AXFakeCaretWin::MoveCaretTo(const gfx::Rect& bounds) {
+ if (bounds.IsEmpty())
+ return;
+ data_.location = gfx::RectF(bounds);
+ if (event_target_) {
+ ::NotifyWinEvent(EVENT_OBJECT_LOCATIONCHANGE, event_target_, OBJID_CARET,
+ -data_.id);
+ }
+}
+
+const AXNodeData& AXFakeCaretWin::GetData() const {
+ return data_;
+}
+
+gfx::NativeWindow AXFakeCaretWin::GetTopLevelWidget() {
+ return nullptr;
+}
+
+gfx::NativeViewAccessible AXFakeCaretWin::GetParent() {
+ if (!event_target_)
+ return nullptr;
+
+ gfx::NativeViewAccessible parent;
+ HRESULT hr =
+ ::AccessibleObjectFromWindow(event_target_, OBJID_WINDOW, IID_IAccessible,
+ reinterpret_cast<void**>(&parent));
+ if (SUCCEEDED(hr))
+ return parent;
+ return nullptr;
+}
+
+int AXFakeCaretWin::GetChildCount() {
+ return 0;
+}
+
+gfx::NativeViewAccessible AXFakeCaretWin::ChildAtIndex(int index) {
+ return nullptr;
+}
+
+gfx::Rect AXFakeCaretWin::GetScreenBoundsRect() const {
+ gfx::Rect bounds = ToEnclosingRect(data_.location);
+ return bounds;
+}
+
+gfx::NativeViewAccessible AXFakeCaretWin::HitTestSync(int x, int y) {
+ return nullptr;
+}
+
+gfx::NativeViewAccessible AXFakeCaretWin::GetFocus() {
+ return nullptr;
+}
+
+gfx::AcceleratedWidget AXFakeCaretWin::GetTargetForNativeAccessibilityEvent() {
+ return event_target_;
+}
+
+bool AXFakeCaretWin::AccessibilityPerformAction(const ui::AXActionData& data) {
+ return false;
+}
+
+} // namespace ui
« no previous file with comments | « ui/accessibility/platform/ax_fake_caret_win.h ('k') | ui/accessibility/platform/ax_platform_node_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698