/external/webkit/Source/WebCore/platform/gtk/ |
PlatformWheelEventGtk.cpp | 30 #include "Scrollbar.h" 72 m_deltaX *= static_cast<float>(Scrollbar::pixelsPerLineStep()); 73 m_deltaY *= static_cast<float>(Scrollbar::pixelsPerLineStep());
|
/external/webkit/Source/WebCore/platform/haiku/ |
PlatformWheelEventHaiku.cpp | 33 #include "Scrollbar.h" 52 m_deltaX *= -Scrollbar::pixelsPerLineStep(); 53 m_deltaY *= -Scrollbar::pixelsPerLineStep();
|
/external/webkit/Source/WebKit/chromium/public/ |
WebScrollbar.h | 67 // Gets the thickness of the scrollbar in pixels. 70 // Sets the rectangle of the scrollbar. 81 // for the vertical scrollbar would have passed in a rectangle like:
|
/external/webkit/Source/WebKit/chromium/src/ |
WebScrollbarImpl.cpp | 37 #include "Scrollbar.h" 67 m_scrollbar = Scrollbar::createNativeScrollbar( 85 int pageStep = max(max(static_cast<int>(static_cast<float>(length) * Scrollbar::minFractionToStepWhenPaging()), length - Scrollbar::maxOverlapBetweenPages()), 1); 86 m_scrollbar->setSteps(Scrollbar::pixelsPerLineStep(), pageStep); 208 delta = max(max(static_cast<float>(m_scrollbar->visibleSize()) * Scrollbar::minFractionToStepWhenPaging(), static_cast<float>(m_scrollbar->visibleSize() - Scrollbar::maxOverlapBetweenPages())), 1.0f); 250 // Will return false if scroll direction wasn't compatible with this scrollbar. 261 int WebScrollbarImpl::scrollPosition(Scrollbar*) const 276 void WebScrollbarImpl::invalidateScrollbarRect(Scrollbar*, const IntRect& rect [all...] |
/external/webkit/Source/WebCore/platform/ |
ScrollView.h | 31 #include "Scrollbar.h" 54 class Scrollbar; 66 virtual int scrollPosition(Scrollbar*) const; 89 virtual Scrollbar* horizontalScrollbar() const { return m_horizontalScrollbar.get(); } 90 virtual Scrollbar* verticalScrollbar() const { return m_verticalScrollbar.get(); } 96 // AlwaysOff, AlwaysOn, and Auto. AlwaysOff means never show a scrollbar, AlwaysOn means always show a scrollbar. 97 // Auto means show a scrollbar only when one is needed. 136 virtual PassRefPtr<Scrollbar> createScrollbar(ScrollbarOrientation); 237 virtual void setParent(ScrollView*); // Overridden to update the overlapping scrollbar count [all...] |
PopupMenuClient.h | 34 class Scrollbar; 69 virtual PassRefPtr<Scrollbar> createScrollbar(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize) = 0;
|
/external/webkit/Source/WebCore/manual-tests/ |
select-scroll.html | 2 When you click the following <select>, you should see a scrollbar,
|
select_webkit_appearance_off_popup_alignment.html | 8 No scrollbar in popup:<br> 28 Popup has scrollbar:<br>
|
stale-scrollbar-client-crash.html | 14 Each scrollbar will disappear when clicked, along with the box containing it, but the browser will not crash as you continue to drag. 18 The scrollbar will disappear and Safari will crash as you continue dragging.
|
/external/webkit/Source/WebCore/page/gtk/ |
EventHandlerGtk.cpp | 41 #include "Scrollbar.h" 126 // horizontal scrollbar while scrolling with the wheel; we need to 131 return result.scrollbar() && result.scrollbar()->orientation() == HorizontalScrollbar;
|
/external/webkit/Source/WebCore/platform/win/ |
PopupMenuWin.cpp | 40 #include "Scrollbar.h" 333 // We need room for a scrollbar 672 int PopupMenuWin::scrollPosition(Scrollbar*) const 716 void PopupMenuWin::invalidateScrollbarRect(Scrollbar* scrollbar, const IntRect& rect) 719 scrollRect.move(scrollbar->x(), scrollbar->y()); 798 if (!scrollbar()) 802 scrollbar()->setFrameRect(IntRect(size.width() - scrollbar()->width(), 0, scrollbar()->width(), size.height())) [all...] |
/external/webkit/Source/WebKit2/UIProcess/win/ |
WebPopupMenuProxyWin.cpp | 205 m_scrollbar = Scrollbar::createNativeScrollbar(this, VerticalScrollbar, SmallScrollbar); 384 // We need room for a scrollbar 461 int WebPopupMenuProxyWin::scrollPosition(Scrollbar*) const 505 void WebPopupMenuProxyWin::invalidateScrollbarRect(Scrollbar* scrollbar, const IntRect& rect) 508 scrollRect.move(scrollbar->x(), scrollbar->y()); 524 if (!scrollbar()) 528 scrollbar()->setFrameRect(IntRect(size.width() - scrollbar()->width(), 0, scrollbar()->width(), size.height())) [all...] |
/external/chromium/chrome/browser/resources/ |
print_preview_animations.js | 8 // Scrollbar will never get smaller than this 20 * Makes the scrollbars visible. If |el| has already a scrollbar timer, it 55 while (!el.classList.contains('scrollbar-inside') && el != document.body) 145 var insideEl = scrollableEl.querySelector('.scrollbar-inside'); 150 // Determine the width/height of native scrollbar elements. 154 // Create scrollbar elements 156 insideEl.scrollHorEl.className = 'scrollbar hor'; 160 insideEl.scrollVertEl.className = 'scrollbar vert';
|
/external/chromium/webkit/glue/ |
webthemeengine_impl_mac.cc | 43 trackInfo.trackInfo.scrollbar.viewsize = scrollbarInfo.visibleSize; 52 trackInfo.trackInfo.scrollbar.pressState =
|
/external/webkit/Source/WebCore/platform/wx/ |
MouseWheelEventWx.cpp | 28 #include "Scrollbar.h" 50 m_deltaY *= static_cast<float>(Scrollbar::pixelsPerLineStep());
|
/external/webkit/Source/WebCore/rendering/ |
RenderListBox.cpp | 53 #include "Scrollbar.h" 599 int RenderListBox::scrollPosition(Scrollbar*) const 702 void RenderListBox::invalidateScrollbarRect(Scrollbar* scrollbar, const IntRect& rect) 705 scrollRect.move(width() - borderRight() - scrollbar->width(), borderTop()); 709 IntRect RenderListBox::convertFromScrollbarToContainingView(const Scrollbar* scrollbar, const IntRect& scrollbarRect) const 717 int scrollbarLeft = width() - borderRight() - scrollbar->width(); 724 IntRect RenderListBox::convertFromContainingViewToScrollbar(const Scrollbar* scrollbar, const IntRect& parentRect) cons [all...] |
HitTestResult.h | 44 class Scrollbar; 63 Scrollbar* scrollbar() const { return m_scrollbar.get(); } function in class:WebCore::HitTestResult 73 void setScrollbar(Scrollbar*); 138 RefPtr<Scrollbar> m_scrollbar;
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/win/ |
WebPageWin.cpp | 384 hitScrollbar = result.scrollbar(); 407 static bool scrollbarAtTopOrBottomOfDocument(Scrollbar* scrollbar) 409 ASSERT_ARG(scrollbar, scrollbar); 410 return !scrollbar->currentPos() || scrollbar->currentPos() >= scrollbar->maximum(); 420 Scrollbar* verticalScrollbar = 0;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
completion12-expected-completion75.txt | 21 android:scrollbarStyle : Controls the scrollbar style and position. [enum] 24 android:scrollbarFadeDuration : Defines the delay in milliseconds that a scrollbar takes to fade out. [integer] 25 android:scrollbarDefaultDelayBeforeFade : Defines the delay in milliseconds that a scrollbar waits before fade out. [integer] 27 android:scrollbarThumbHorizontal : Defines the horizontal scrollbar thumb drawable. [reference] 28 android:scrollbarThumbVertical : Defines the vertical scrollbar thumb drawable. [reference] 29 android:scrollbarTrackHorizontal : Defines the horizontal scrollbar track drawable. [reference] 30 android:scrollbarTrackVertical : Defines the vertical scrollbar track drawable. [reference] 31 android:scrollbarAlwaysDrawHorizontalTrack : Defines whether the horizontal scrollbar track should always be drawn. [boolean] 32 android:scrollbarAlwaysDrawVerticalTrack : Defines whether the vertical scrollbar track should always be drawn. [boolean]
|
/external/webkit/Source/WebCore/platform/efl/ |
ScrollbarEfl.cpp | 45 PassRefPtr<Scrollbar> Scrollbar::createNativeScrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize size) 51 : Scrollbar(scrollableArea, orientation, controlSize) 115 ? "scrollbar.horizontal" : "scrollbar.vertical";
|
/external/webkit/Source/WebKit/qt/Api/ |
qwebframe_p.h | 48 class Scrollbar; 93 WebCore::Scrollbar* horizontalScrollBar() const; 94 WebCore::Scrollbar* verticalScrollBar() const;
|
/external/webkit/Source/WebKit/efl/ |
CMakeListsEfl.txt | 176 ${WEBKIT_DIR}/efl/DefaultTheme/widget/scrollbar/scrollbar_h.png 177 ${WEBKIT_DIR}/efl/DefaultTheme/widget/scrollbar/scrollbar_v.png 178 ${WEBKIT_DIR}/efl/DefaultTheme/widget/scrollbar/scrollbar_knob_v.png 179 ${WEBKIT_DIR}/efl/DefaultTheme/widget/scrollbar/scrollbar_knob_h.png 180 ${WEBKIT_DIR}/efl/DefaultTheme/widget/scrollbar/scrollbar.edc
|
/external/webkit/Source/WebKit/win/ |
WebScrollBar.cpp | 33 #include <WebCore/Scrollbar.h> 104 m_scrollBar = Scrollbar::createNativeScrollbar(this, webCoreOrientation, webCoreControlSize); 261 int WebScrollBar::scrollPosition(Scrollbar*) const 272 void WebScrollBar::invalidateScrollbarRect(Scrollbar*, const IntRect& rect) 278 Scrollbar* WebScrollBar::horizontalScrollbar() const 283 Scrollbar* WebScrollBar::verticalScrollbar() const
|
/external/webkit/Source/WebKit/efl/DefaultTheme/ |
default.edc | 66 #include "widget/scrollbar/scrollbar.edc"
|
/external/chromium/chrome/browser/ui/views/ |
find_bar_host_win.cc | 13 #include "views/controls/scrollbar/native_scroll_bar.h"
|