Searched refs:thumbPos (Results 1 – 4 of 4) sorted by relevance
/external/webkit/Source/WebCore/platform/ |
D | Scrollbar.cpp | 180 …int thumbPos = scrollbar->theme()->trackPosition(scrollbar) + scrollbar->theme()->thumbPosition(sc… in thumbUnderMouse() local 182 return scrollbar->pressedPos() >= thumbPos && scrollbar->pressedPos() < thumbPos + thumbLength; in thumbUnderMouse() 259 int thumbPos = theme()->thumbPosition(this); in moveThumb() local 265 delta = min(maxPos - thumbPos, delta); in moveThumb() 267 delta = max(-thumbPos, delta); in moveThumb() 270 … float newPosition = static_cast<float>(thumbPos + delta) * maximum() / (trackLen - thumbLen); in moveThumb()
|
D | ScrollbarThemeComposite.cpp | 247 int thumbPos = thumbPosition(scrollbar); in splitTrack() local 249 …thumbRect = IntRect(trackRect.x() + thumbPos, trackRect.y() + (trackRect.height() - thickness) / 2… in splitTrack() 250 …beforeThumbRect = IntRect(trackRect.x(), trackRect.y(), thumbPos + thumbRect.width() / 2, trackRec… in splitTrack() 253 …ct(trackRect.x() + (trackRect.width() - thickness) / 2, trackRect.y() + thumbPos, thickness, thumb… in splitTrack() 254 …beforeThumbRect = IntRect(trackRect.x(), trackRect.y(), trackRect.width(), thumbPos + thumbRect.he… in splitTrack()
|
/external/webkit/Source/WebCore/platform/wx/wxcode/ |
D | scrollbar_render.h | 61 float thumbPos = ((float)current / (float)max) * ((float)physicalLength - thumbSize); in calcThumbStartAndLength() local 63 *thumbStart = thumbPos; in calcThumbStartAndLength()
|
/external/webkit/Source/WebCore/platform/gtk/ |
D | ScrollbarThemeGtk.cpp | 177 int thumbPos = thumbPosition(scrollbar); in thumbRect() local 179 …return IntRect(trackRect.x() + thumbPos, trackRect.y() + (trackRect.height() - m_thumbFatness) / 2… in thumbRect() 182 …ackRect.x() + (trackRect.width() - m_thumbFatness) / 2, trackRect.y() + thumbPos, m_thumbFatness, … in thumbRect()
|