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