| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_VIEWS_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_H_ | 5 #ifndef UI_VIEWS_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_H_ |
| 6 #define UI_VIEWS_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_H_ | 6 #define UI_VIEWS_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "build/build_config.h" | 11 #include "ui/accessibility/ax_enums.h" |
| 12 #include "ui/accessibility/ax_action_data.h" | |
| 13 #include "ui/accessibility/ax_node_data.h" | |
| 14 #include "ui/accessibility/platform/ax_platform_node.h" | |
| 15 #include "ui/accessibility/platform/ax_platform_node_delegate.h" | |
| 16 #include "ui/gfx/native_widget_types.h" | 12 #include "ui/gfx/native_widget_types.h" |
| 17 #include "ui/views/views_export.h" | 13 #include "ui/views/views_export.h" |
| 18 #include "ui/views/widget/widget_observer.h" | |
| 19 | |
| 20 // Set PLATFORM_HAS_NATIVE_VIEW_ACCESSIBILITY_IMPL if this platform has a | |
| 21 // specific implementation of NativeViewAccessibility::Create(). | |
| 22 #undef PLATFORM_HAS_NATIVE_VIEW_ACCESSIBILITY_IMPL | |
| 23 | |
| 24 #if defined(OS_WIN) | |
| 25 #define PLATFORM_HAS_NATIVE_VIEW_ACCESSIBILITY_IMPL 1 | |
| 26 #endif | |
| 27 | |
| 28 #if defined(OS_MACOSX) | |
| 29 #define PLATFORM_HAS_NATIVE_VIEW_ACCESSIBILITY_IMPL 1 | |
| 30 #endif | |
| 31 | |
| 32 #if defined(OS_LINUX) && defined(USE_X11) && !defined(OS_CHROMEOS) | |
| 33 #define PLATFORM_HAS_NATIVE_VIEW_ACCESSIBILITY_IMPL 1 | |
| 34 #endif | |
| 35 | 14 |
| 36 namespace views { | 15 namespace views { |
| 37 | 16 |
| 38 class View; | 17 class View; |
| 39 class Widget; | |
| 40 | 18 |
| 41 class VIEWS_EXPORT NativeViewAccessibility | 19 // Abstract base for that allows native platform accessibility toolkits to |
| 42 : public ui::AXPlatformNodeDelegate, | 20 // interface with a View. |
| 43 public WidgetObserver { | 21 class VIEWS_EXPORT NativeViewAccessibility { |
| 44 public: | 22 public: |
| 45 static std::unique_ptr<NativeViewAccessibility> Create(View* view); | 23 static std::unique_ptr<NativeViewAccessibility> Create(View* view); |
| 46 | 24 |
| 47 ~NativeViewAccessibility() override; | 25 virtual ~NativeViewAccessibility() {} |
| 48 | 26 |
| 49 gfx::NativeViewAccessible GetNativeObject(); | 27 virtual gfx::NativeViewAccessible GetNativeObject() = 0; |
| 50 | 28 virtual void NotifyAccessibilityEvent(ui::AXEvent event_type) = 0; |
| 51 void NotifyAccessibilityEvent(ui::AXEvent event_type); | |
| 52 | |
| 53 // Focuses or unfocuses a View. | |
| 54 bool SetFocused(bool focused); | |
| 55 | |
| 56 // ui::AXPlatformNodeDelegate | |
| 57 const ui::AXNodeData& GetData() override; | |
| 58 int GetChildCount() override; | |
| 59 gfx::NativeViewAccessible ChildAtIndex(int index) override; | |
| 60 gfx::NativeWindow GetTopLevelWidget() override; | |
| 61 gfx::NativeViewAccessible GetParent() override; | |
| 62 gfx::Vector2d GetGlobalCoordinateOffset() override; | |
| 63 gfx::NativeViewAccessible HitTestSync(int x, int y) override; | |
| 64 gfx::NativeViewAccessible GetFocus() override; | |
| 65 gfx::AcceleratedWidget GetTargetForNativeAccessibilityEvent() override; | |
| 66 bool AccessibilityPerformAction(const ui::AXActionData& data) override; | |
| 67 void DoDefaultAction() override; | |
| 68 | |
| 69 // WidgetObserver | |
| 70 void OnWidgetDestroying(Widget* widget) override; | |
| 71 | |
| 72 Widget* parent_widget() const { return parent_widget_; } | |
| 73 void SetParentWidget(Widget* parent_widget); | |
| 74 | 29 |
| 75 protected: | 30 protected: |
| 76 explicit NativeViewAccessibility(View* view); | 31 NativeViewAccessibility() {} |
| 77 | |
| 78 // Weak. Owns this. | |
| 79 View* view_; | |
| 80 | |
| 81 // Weak. Uses WidgetObserver to clear. This is set on the root view for | |
| 82 // a widget that's owned by another widget, so we can walk back up the | |
| 83 // tree. | |
| 84 Widget* parent_widget_; | |
| 85 | 32 |
| 86 private: | 33 private: |
| 87 void PopulateChildWidgetVector(std::vector<Widget*>* result_child_widgets); | |
| 88 | |
| 89 // We own this, but it is reference-counted on some platforms so we can't use | |
| 90 // a scoped_ptr. It is dereferenced in the destructor. | |
| 91 ui::AXPlatformNode* ax_node_; | |
| 92 | |
| 93 ui::AXNodeData data_; | |
| 94 | |
| 95 DISALLOW_COPY_AND_ASSIGN(NativeViewAccessibility); | 34 DISALLOW_COPY_AND_ASSIGN(NativeViewAccessibility); |
| 96 }; | 35 }; |
| 97 | 36 |
| 98 } // namespace views | 37 } // namespace views |
| 99 | 38 |
| 100 #endif // UI_VIEWS_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_H_ | 39 #endif // UI_VIEWS_ACCESSIBILITY_NATIVE_VIEW_ACCESSIBILITY_H_ |
| OLD | NEW |