OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 10 matching lines...) Expand all Loading... |
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
23 */ | 23 */ |
24 | 24 |
25 #include "config.h" | 25 #include "config.h" |
26 | 26 |
27 #include "core/platform/chromium/support/WebScrollbarImpl.h" | 27 #include "core/platform/chromium/support/WebScrollbarImpl.h" |
28 | 28 |
29 #include "core/platform/Scrollbar.h" | 29 #include "core/platform/Scrollbar.h" |
30 #include "core/platform/graphics/IntRect.h" | 30 #include "core/platform/graphics/IntRect.h" |
| 31 #include "core/platform/text/TextDirection.h" |
31 | 32 |
32 namespace WebKit { | 33 namespace WebKit { |
33 | 34 |
34 WebScrollbarImpl::WebScrollbarImpl(WebCore::Scrollbar* scrollbar) | 35 WebScrollbarImpl::WebScrollbarImpl(WebCore::Scrollbar* scrollbar) |
35 : m_scrollbar(scrollbar) | 36 : m_scrollbar(scrollbar) |
36 { | 37 { |
37 } | 38 } |
38 | 39 |
39 bool WebScrollbarImpl::isOverlay() const | 40 bool WebScrollbarImpl::isOverlay() const |
40 { | 41 { |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 WebScrollbar::ScrollbarOverlayStyle WebScrollbarImpl::scrollbarOverlayStyle() co
nst | 112 WebScrollbar::ScrollbarOverlayStyle WebScrollbarImpl::scrollbarOverlayStyle() co
nst |
112 { | 113 { |
113 return static_cast<WebScrollbar::ScrollbarOverlayStyle>(m_scrollbar->scrollb
arOverlayStyle()); | 114 return static_cast<WebScrollbar::ScrollbarOverlayStyle>(m_scrollbar->scrollb
arOverlayStyle()); |
114 } | 115 } |
115 | 116 |
116 WebScrollbar::Orientation WebScrollbarImpl::orientation() const | 117 WebScrollbar::Orientation WebScrollbarImpl::orientation() const |
117 { | 118 { |
118 return static_cast<WebScrollbar::Orientation>(m_scrollbar->orientation()); | 119 return static_cast<WebScrollbar::Orientation>(m_scrollbar->orientation()); |
119 } | 120 } |
120 | 121 |
| 122 bool WebScrollbarImpl::isRightToLeft() const |
| 123 { |
| 124 return m_scrollbar->textDirection() == WebCore::RTL; |
| 125 } |
| 126 |
121 bool WebScrollbarImpl::isCustomScrollbar() const | 127 bool WebScrollbarImpl::isCustomScrollbar() const |
122 { | 128 { |
123 return m_scrollbar->isCustomScrollbar(); | 129 return m_scrollbar->isCustomScrollbar(); |
124 } | 130 } |
125 | 131 |
126 bool WebScrollbarImpl::isAlphaLocked() const | 132 bool WebScrollbarImpl::isAlphaLocked() const |
127 { | 133 { |
128 return m_scrollbar->isAlphaLocked(); | 134 return m_scrollbar->isAlphaLocked(); |
129 } | 135 } |
130 | 136 |
131 void WebScrollbarImpl::setIsAlphaLocked(bool flag) | 137 void WebScrollbarImpl::setIsAlphaLocked(bool flag) |
132 { | 138 { |
133 m_scrollbar->setIsAlphaLocked(flag); | 139 m_scrollbar->setIsAlphaLocked(flag); |
134 } | 140 } |
135 | 141 |
136 } // namespace WebKit | 142 } // namespace WebKit |
OLD | NEW |