blob: 6a4ec9686ee8fb4a43766797a1c04c502e83c3a0 [file]
// 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.
#ifndef UI_ACCESSIBILITY_PLATFORM_AX_SYSTEM_CARET_WIN_H_
#define UI_ACCESSIBILITY_PLATFORM_AX_SYSTEM_CARET_WIN_H_
#include <oleacc.h>
#include <wrl/client.h>
#include "base/macros.h"
#include "ui/accessibility/ax_export.h"
#include "ui/accessibility/ax_node_data.h"
#include "ui/accessibility/ax_tree_data.h"
#include "ui/accessibility/platform/ax_platform_node_delegate.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/native_widget_types.h"
namespace ui {
class AXPlatformNodeWin;
// A class representing the position of the caret to assistive software on
// Windows. This is required because Chrome doesn't use the standard system
// caret and because some assistive software still relies on specific
// accessibility APIs to retrieve the caret position.
class AX_EXPORT AXSystemCaretWin : private AXPlatformNodeDelegate {
public:
explicit AXSystemCaretWin(gfx::AcceleratedWidget event_target);
virtual ~AXSystemCaretWin();
Microsoft::WRL::ComPtr<IAccessible> GetCaret() const;
void MoveCaretTo(const gfx::Rect& bounds);
private:
// |AXPlatformNodeDelegate| members.
const AXNodeData& GetData() const override;
const AXTreeData& GetTreeData() const override;
gfx::NativeWindow GetTopLevelWidget() override;
gfx::NativeViewAccessible GetParent() override;
int GetChildCount() override;
gfx::NativeViewAccessible ChildAtIndex(int index) override;
gfx::Rect GetScreenBoundsRect() const override;
gfx::NativeViewAccessible HitTestSync(int x, int y) override;
gfx::NativeViewAccessible GetFocus() override;
AXPlatformNode* GetFromNodeID(int32_t id) override;
int GetIndexInParent() const override;
gfx::AcceleratedWidget GetTargetForNativeAccessibilityEvent() override;
bool AccessibilityPerformAction(const AXActionData& data) override;
bool ShouldIgnoreHoveredStateForTesting() override;
bool IsOffscreen() const override;
const ui::AXUniqueId& GetUniqueId() const override;
std::set<int32_t> GetReverseRelations(AXIntAttribute attr,
int32_t dst_id) override;
std::set<int32_t> GetReverseRelations(AXIntListAttribute attr,
int32_t dst_id) override;
AXPlatformNodeWin* caret_;
gfx::AcceleratedWidget event_target_;
AXNodeData data_;
friend class AXPlatformNodeWin;
DISALLOW_COPY_AND_ASSIGN(AXSystemCaretWin);
private:
ui::AXUniqueId unique_id_;
};
} // namespace ui
#endif // UI_ACCESSIBILITY_PLATFORM_AX_SYSTEM_CARET_WIN_H_