cfleizach@apple.com | aa50410 | 2011-01-05 01:07:44 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions |
| 6 | * are met: |
| 7 | * |
| 8 | * 1. Redistributions of source code must retain the above copyright |
| 9 | * notice, this list of conditions and the following disclaimer. |
| 10 | * 2. Redistributions in binary form must reproduce the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer in the |
| 12 | * documentation and/or other materials provided with the distribution. |
| 13 | * |
| 14 | * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY |
| 15 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 16 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 17 | * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY |
| 18 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 19 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 20 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 21 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 23 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 | */ |
| 25 | |
| 26 | #ifndef AccessibilityScrollView_h |
| 27 | #define AccessibilityScrollView_h |
| 28 | |
| 29 | #include "AccessibilityObject.h" |
| 30 | |
| 31 | namespace WebCore { |
| 32 | |
| 33 | class AccessibilityScrollbar; |
| 34 | class Scrollbar; |
| 35 | class ScrollView; |
| 36 | |
| 37 | class AccessibilityScrollView : public AccessibilityObject { |
| 38 | public: |
| 39 | static PassRefPtr<AccessibilityScrollView> create(ScrollView*); |
| 40 | virtual AccessibilityRole roleValue() const { return ScrollAreaRole; } |
dmazzoni@google.com | a616ef6 | 2012-10-26 21:57:57 +0000 | [diff] [blame] | 41 | ScrollView* scrollView() const { return m_scrollView; } |
| 42 | |
| 43 | virtual ~AccessibilityScrollView(); |
| 44 | virtual void detach(); |
dmazzoni@google.com | ba72c18 | 2012-01-18 18:46:41 +0000 | [diff] [blame] | 45 | |
| 46 | protected: |
| 47 | virtual ScrollableArea* getScrollableAreaIfScrollable() const; |
| 48 | virtual void scrollTo(const IntPoint&) const; |
cfleizach@apple.com | aa50410 | 2011-01-05 01:07:44 +0000 | [diff] [blame] | 49 | |
| 50 | private: |
gyuyoung.kim@samsung.com | f106dcb | 2012-08-03 08:41:07 +0000 | [diff] [blame] | 51 | explicit AccessibilityScrollView(ScrollView*); |
cfleizach@apple.com | aa50410 | 2011-01-05 01:07:44 +0000 | [diff] [blame] | 52 | |
dmazzoni@google.com | 3b5179d | 2013-02-09 23:06:00 +0000 | [diff] [blame] | 53 | virtual bool computeAccessibilityIsIgnored() const; |
cfleizach@apple.com | aa50410 | 2011-01-05 01:07:44 +0000 | [diff] [blame] | 54 | virtual bool isAccessibilityScrollView() const { return true; } |
jhoneycutt@apple.com | 3326b80 | 2011-09-13 23:32:36 +0000 | [diff] [blame] | 55 | virtual bool isEnabled() const { return true; } |
cfleizach@apple.com | 1ed1691 | 2011-03-07 22:31:29 +0000 | [diff] [blame] | 56 | |
| 57 | virtual bool isAttachment() const; |
| 58 | virtual Widget* widgetForAttachmentView() const; |
| 59 | |
cfleizach@apple.com | 4cc08b2 | 2011-11-17 21:48:43 +0000 | [diff] [blame] | 60 | virtual AccessibilityObject* scrollBar(AccessibilityOrientation); |
cfleizach@apple.com | aa50410 | 2011-01-05 01:07:44 +0000 | [diff] [blame] | 61 | virtual void addChildren(); |
cfleizach@apple.com | 4cc08b2 | 2011-11-17 21:48:43 +0000 | [diff] [blame] | 62 | virtual void clearChildren(); |
leviw@chromium.org | 3be076e | 2012-03-22 15:07:02 +0000 | [diff] [blame] | 63 | virtual AccessibilityObject* accessibilityHitTest(const IntPoint&) const; |
cfleizach@apple.com | aa50410 | 2011-01-05 01:07:44 +0000 | [diff] [blame] | 64 | virtual void updateChildrenIfNecessary(); |
dmazzoni@google.com | 9c0c1ce | 2011-11-12 02:23:09 +0000 | [diff] [blame] | 65 | virtual void setNeedsToUpdateChildren() { m_childrenDirty = true; } |
cfleizach@apple.com | db16dcb | 2011-10-17 17:01:41 +0000 | [diff] [blame] | 66 | void updateScrollbars(); |
cfleizach@apple.com | aa50410 | 2011-01-05 01:07:44 +0000 | [diff] [blame] | 67 | |
cfleizach@apple.com | a0d34a3 | 2011-02-01 22:37:29 +0000 | [diff] [blame] | 68 | virtual FrameView* documentFrameView() const; |
leviw@chromium.org | c3f41a0 | 2011-08-18 01:18:55 +0000 | [diff] [blame] | 69 | virtual LayoutRect elementRect() const; |
cfleizach@apple.com | aa50410 | 2011-01-05 01:07:44 +0000 | [diff] [blame] | 70 | virtual AccessibilityObject* parentObject() const; |
dmazzoni@google.com | 9c0c1ce | 2011-11-12 02:23:09 +0000 | [diff] [blame] | 71 | virtual AccessibilityObject* parentObjectIfExists() const; |
cfleizach@apple.com | aa50410 | 2011-01-05 01:07:44 +0000 | [diff] [blame] | 72 | |
| 73 | AccessibilityObject* webAreaObject() const; |
cfleizach@apple.com | 1ed1691 | 2011-03-07 22:31:29 +0000 | [diff] [blame] | 74 | virtual AccessibilityObject* firstChild() const { return webAreaObject(); } |
cfleizach@apple.com | aa50410 | 2011-01-05 01:07:44 +0000 | [diff] [blame] | 75 | AccessibilityScrollbar* addChildScrollbar(Scrollbar*); |
| 76 | void removeChildScrollbar(AccessibilityObject*); |
| 77 | |
dmazzoni@google.com | a616ef6 | 2012-10-26 21:57:57 +0000 | [diff] [blame] | 78 | ScrollView* m_scrollView; |
cfleizach@apple.com | aa50410 | 2011-01-05 01:07:44 +0000 | [diff] [blame] | 79 | RefPtr<AccessibilityObject> m_horizontalScrollbar; |
| 80 | RefPtr<AccessibilityObject> m_verticalScrollbar; |
dmazzoni@google.com | 9c0c1ce | 2011-11-12 02:23:09 +0000 | [diff] [blame] | 81 | bool m_childrenDirty; |
cfleizach@apple.com | aa50410 | 2011-01-05 01:07:44 +0000 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | inline AccessibilityScrollView* toAccessibilityScrollView(AccessibilityObject* object) |
| 85 | { |
| 86 | ASSERT(!object || object->isAccessibilityScrollView()); |
| 87 | if (!object->isAccessibilityScrollView()) |
| 88 | return 0; |
| 89 | |
| 90 | return static_cast<AccessibilityScrollView*>(object); |
| 91 | } |
| 92 | |
| 93 | } // namespace WebCore |
| 94 | |
| 95 | #endif // AccessibilityScrollView_h |