blob: 908368769e97bcdccf8738c6f58938d302b26a0a [file] [log] [blame]
cfleizach@apple.comaa504102011-01-05 01:07:44 +00001/*
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
31namespace WebCore {
32
33class AccessibilityScrollbar;
34class Scrollbar;
35class ScrollView;
36
37class AccessibilityScrollView : public AccessibilityObject {
38public:
39 static PassRefPtr<AccessibilityScrollView> create(ScrollView*);
40 virtual AccessibilityRole roleValue() const { return ScrollAreaRole; }
41 ScrollView* scrollView() const { return m_scrollView.get(); }
42
43private:
44 AccessibilityScrollView(ScrollView*);
45
46 virtual bool accessibilityIsIgnored() const { return false; }
47 virtual bool isAccessibilityScrollView() const { return true; }
jhoneycutt@apple.com3326b802011-09-13 23:32:36 +000048 virtual bool isEnabled() const { return true; }
cfleizach@apple.com1ed16912011-03-07 22:31:29 +000049
50 virtual bool isAttachment() const;
51 virtual Widget* widgetForAttachmentView() const;
52
cfleizach@apple.comaa504102011-01-05 01:07:44 +000053 virtual AccessibilityObject* scrollBar(AccessibilityOrientation) const;
54 virtual void addChildren();
leviw@chromium.orgc3f41a02011-08-18 01:18:55 +000055 virtual AccessibilityObject* accessibilityHitTest(const LayoutPoint&) const;
cfleizach@apple.comaa504102011-01-05 01:07:44 +000056 virtual void updateChildrenIfNecessary();
cfleizach@apple.comdb16dcb2011-10-17 17:01:41 +000057 void updateScrollbars();
cfleizach@apple.comaa504102011-01-05 01:07:44 +000058
cfleizach@apple.coma0d34a32011-02-01 22:37:29 +000059 virtual FrameView* documentFrameView() const;
leviw@chromium.orgc3f41a02011-08-18 01:18:55 +000060 virtual LayoutRect elementRect() const;
cfleizach@apple.comaa504102011-01-05 01:07:44 +000061 virtual AccessibilityObject* parentObject() const;
62
63 AccessibilityObject* webAreaObject() const;
cfleizach@apple.com1ed16912011-03-07 22:31:29 +000064 virtual AccessibilityObject* firstChild() const { return webAreaObject(); }
cfleizach@apple.comaa504102011-01-05 01:07:44 +000065 AccessibilityScrollbar* addChildScrollbar(Scrollbar*);
66 void removeChildScrollbar(AccessibilityObject*);
67
68 RefPtr<ScrollView> m_scrollView;
69 RefPtr<AccessibilityObject> m_horizontalScrollbar;
70 RefPtr<AccessibilityObject> m_verticalScrollbar;
71};
72
73inline AccessibilityScrollView* toAccessibilityScrollView(AccessibilityObject* object)
74{
75 ASSERT(!object || object->isAccessibilityScrollView());
76 if (!object->isAccessibilityScrollView())
77 return 0;
78
79 return static_cast<AccessibilityScrollView*>(object);
80}
81
82} // namespace WebCore
83
84#endif // AccessibilityScrollView_h
85