Home
last modified time | relevance | path

Searched refs:pixelsPerLineStep (Results 1 – 20 of 20) sorted by relevance

/external/webkit/Source/WebCore/page/
DSpatialNavigation.cpp312 containerViewportRect.setX(containerViewportRect.x() - Scrollbar::pixelsPerLineStep()); in hasOffscreenRect()
313 … containerViewportRect.setWidth(containerViewportRect.width() + Scrollbar::pixelsPerLineStep()); in hasOffscreenRect()
316 … containerViewportRect.setWidth(containerViewportRect.width() + Scrollbar::pixelsPerLineStep()); in hasOffscreenRect()
319 containerViewportRect.setY(containerViewportRect.y() - Scrollbar::pixelsPerLineStep()); in hasOffscreenRect()
320 … containerViewportRect.setHeight(containerViewportRect.height() + Scrollbar::pixelsPerLineStep()); in hasOffscreenRect()
323 … containerViewportRect.setHeight(containerViewportRect.height() + Scrollbar::pixelsPerLineStep()); in hasOffscreenRect()
349 dx = - Scrollbar::pixelsPerLineStep(); in scrollInDirection()
352 dx = Scrollbar::pixelsPerLineStep(); in scrollInDirection()
355 dy = - Scrollbar::pixelsPerLineStep(); in scrollInDirection()
358 dy = Scrollbar::pixelsPerLineStep(); in scrollInDirection()
[all …]
/external/webkit/Source/WebCore/platform/haiku/
DPlatformWheelEventHaiku.cpp52 m_deltaX *= -Scrollbar::pixelsPerLineStep(); in PlatformWheelEvent()
53 m_deltaY *= -Scrollbar::pixelsPerLineStep(); in PlatformWheelEvent()
/external/webkit/Source/WebCore/platform/gtk/
DPlatformWheelEventGtk.cpp72 m_deltaX *= static_cast<float>(Scrollbar::pixelsPerLineStep()); in PlatformWheelEvent()
73 m_deltaY *= static_cast<float>(Scrollbar::pixelsPerLineStep()); in PlatformWheelEvent()
DScrollViewGtk.cpp116 resetValues ? 0 : Scrollbar::pixelsPerLineStep(), in setHorizontalAdjustment()
155 resetValues ? 0 : Scrollbar::pixelsPerLineStep(), in setVerticalAdjustment()
/external/webkit/Source/WebCore/platform/efl/
DPlatformWheelEventEfl.cpp68 m_deltaX *= static_cast<float>(Scrollbar::pixelsPerLineStep()); in PlatformWheelEvent()
69 m_deltaY *= static_cast<float>(Scrollbar::pixelsPerLineStep()); in PlatformWheelEvent()
/external/webkit/Source/WebCore/platform/mac/
DWheelEventMac.mm108 m_wheelTicksX = m_deltaX / static_cast<float>(Scrollbar::pixelsPerLineStep());
109 m_wheelTicksY = m_deltaY / static_cast<float>(Scrollbar::pixelsPerLineStep());
114 m_deltaX *= static_cast<float>(Scrollbar::pixelsPerLineStep());
115 m_deltaY *= static_cast<float>(Scrollbar::pixelsPerLineStep());
/external/webkit/Source/WebCore/platform/wx/
DScrollViewWx.cpp87 pos.x += Scrollbar::pixelsPerLineStep(); in OnScrollWinEvents()
89 pos.y += Scrollbar::pixelsPerLineStep(); in OnScrollWinEvents()
93 pos.x -= Scrollbar::pixelsPerLineStep(); in OnScrollWinEvents()
95 pos.y -= Scrollbar::pixelsPerLineStep(); in OnScrollWinEvents()
DMouseWheelEventWx.cpp50 m_deltaY *= static_cast<float>(Scrollbar::pixelsPerLineStep()); in PlatformWheelEvent()
/external/webkit/Source/WebKit/wx/
DWebView.cpp941 frame->view()->scrollBy(WebCore::IntSize(-WebCore::Scrollbar::pixelsPerLineStep(), 0)); in OnKeyEvents()
945 frame->view()->scrollBy(WebCore::IntSize(0, -WebCore::Scrollbar::pixelsPerLineStep())); in OnKeyEvents()
949 frame->view()->scrollBy(WebCore::IntSize(WebCore::Scrollbar::pixelsPerLineStep(), 0)); in OnKeyEvents()
953 frame->view()->scrollBy(WebCore::IntSize(0, WebCore::Scrollbar::pixelsPerLineStep())); in OnKeyEvents()
/external/webkit/Source/WebCore/platform/
DScrollbar.h53 static int pixelsPerLineStep() { return 40; } in pixelsPerLineStep() function
DScrollView.cpp585 m_horizontalScrollbar->setSteps(Scrollbar::pixelsPerLineStep(), pageStep); in updateScrollbars()
606 m_verticalScrollbar->setSteps(Scrollbar::pixelsPerLineStep(), pageStep); in updateScrollbars()
/external/webkit/Source/WebKit2/Shared/gtk/
DWebEventFactory.cpp161 float step = static_cast<float>(Scrollbar::pixelsPerLineStep()); in createWebWheelEvent()
/external/webkit/Source/WebKit/chromium/src/
DWebScrollbarImpl.cpp86 m_scrollbar->setSteps(Scrollbar::pixelsPerLineStep(), pageStep); in setLocation()
/external/webkit/Source/WebKit2/Shared/mac/
DWebEventFactory.mm1080 wheelTicksX = deltaX / static_cast<float>(Scrollbar::pixelsPerLineStep());
1081 wheelTicksY = deltaY / static_cast<float>(Scrollbar::pixelsPerLineStep());
1086 deltaX *= static_cast<float>(Scrollbar::pixelsPerLineStep());
1087 deltaY *= static_cast<float>(Scrollbar::pixelsPerLineStep());
/external/webkit/Source/WebCore/rendering/
DRenderLayer.cpp2261 m_hBar->setSteps(Scrollbar::pixelsPerLineStep(), pageStep); in updateScrollInfoAfterLayout()
2267 m_vBar->setSteps(Scrollbar::pixelsPerLineStep(), pageStep); in updateScrollInfoAfterLayout()
/external/webkit/Source/WebKit/mac/WebView/
DWebFrameView.mm342 [scrollView setLineScroll:Scrollbar::pixelsPerLineStep()];
/external/webkit/Source/WebKit/mac/
DChangeLog11744 (-[WebFrameView initWithFrame:]): Use Scrollbar::pixelsPerLineStep() instead of
/external/webkit/Source/WebCore/
DChangeLog-2010-05-2452389 (WebCore::Scrollbar::pixelsPerLineStep): Replaces cScrollbarPixelsPerLineStep.
52405 Scrollbar::pixelsPerLineStep() instead of cScrollbarPixelsPerLineStep.
DChangeLog-2010-12-06122816 … (WebCore::PlatformWheelEvent::PlatformWheelEvent): Only multiply by pixelsPerLineStep() if the
/external/webkit/Tools/
DChangeLog-2011-02-1632389 Scrollbar::pixelsPerLineStep() for DRT testing.