Searched defs:beforeThumbRect (Results 1 - 2 of 2) sorted by relevance

/external/webkit/WebCore/platform/wx/
H A DScrollbarThemeWx.cpp88 void ScrollbarThemeWx::splitTrack(Scrollbar* scrollbar, const IntRect& unconstrainedTrackRect, IntRect& beforeThumbRect, IntRect& thumbRect, IntRect& afterThumbRect) argument
90 ScrollbarThemeComposite::splitTrack(scrollbar, unconstrainedTrackRect, beforeThumbRect, thumbRect, afterThumbRect);
/external/webkit/WebCore/platform/
H A DScrollbarThemeComposite.cpp176 IntRect beforeThumbRect; local
179 splitTrack(scrollbar, track, beforeThumbRect, thumbRect, afterThumbRect);
182 else if (beforeThumbRect.contains(mousePosition))
225 IntRect beforeThumbRect, thumbRect, afterThumbRect; local
226 splitTrack(scrollbar, trackRect(scrollbar), beforeThumbRect, thumbRect, afterThumbRect);
228 result = beforeThumbRect;
239 void ScrollbarThemeComposite::splitTrack(Scrollbar* scrollbar, const IntRect& unconstrainedTrackRect, IntRect& beforeThumbRect, IntRect& thumbRect, IntRect& afterThumbRect) argument
248 beforeThumbRect = IntRect(trackRect.x(), trackRect.y(), thumbPos + thumbRect.width() / 2, trackRect.height());
249 afterThumbRect = IntRect(trackRect.x() + beforeThumbRect.width(), trackRect.y(), trackRect.right() - beforeThumbRect
[all...]

Completed in 356 milliseconds