HomeSort by relevance Sort by last modified time
    Searched refs:thumbLength (Results 1 - 16 of 16) sorted by null

  /external/webkit/Source/WebCore/platform/wx/wxcode/
scrollbar_render.h 54 int step, int *thumbStart, int *thumbLength)
65 if (thumbLength)
66 *thumbLength = thumbSize;
  /external/webkit/Source/WebCore/platform/qt/
ScrollbarThemeQt.h 53 virtual int thumbLength(Scrollbar*);
ScrollbarQt.cpp 80 int position = theme()->trackPosition(this) + theme()->thumbPosition(this) + theme()->thumbLength(this) / 2;
ScrollbarThemeQt.cpp 211 return (int)((float)scrollbar->currentPos() * (trackLength(scrollbar) - thumbLength(scrollbar)) / scrollbar->maximum());
215 int ScrollbarThemeQt::thumbLength(Scrollbar* scrollbar)
  /external/webkit/Source/WebCore/platform/wx/wxcode/gtk/
scrollbar_render.cpp 149 int thumbLength = 0;
150 calcThumbStartAndLength(physicalLength, max, current, step, &thumbStart, &thumbLength);
155 buttonRect.width = thumbLength;
159 buttonRect.height = thumbLength;
  /external/webkit/Source/WebCore/platform/
ScrollbarTheme.h 85 virtual int thumbLength(Scrollbar*) { return 0; } // The length of the thumb along the axis of the scrollbar.
ScrollbarThemeComposite.h 42 virtual int thumbLength(Scrollbar*);
ScrollbarThemeComposite.cpp 249 thumbRect = IntRect(trackRect.x() + thumbPos, trackRect.y() + (trackRect.height() - thickness) / 2, thumbLength(scrollbar), thickness);
253 thumbRect = IntRect(trackRect.x() + (trackRect.width() - thickness) / 2, trackRect.y() + thumbPos, thickness, thumbLength(scrollbar));
272 return max(0.0f, scrollbar->currentPos()) * (trackLength(scrollbar) - thumbLength(scrollbar)) / (usedTotalSize(scrollbar) - scrollbar->visibleSize());
276 int ScrollbarThemeComposite::thumbLength(Scrollbar* scrollbar)
Scrollbar.cpp 181 int thumbLength = scrollbar->theme()->thumbLength(scrollbar);
182 return scrollbar->pressedPos() >= thumbPos && scrollbar->pressedPos() < thumbPos + thumbLength;
260 int thumbLen = theme()->thumbLength(this);
371 int thumbLen = theme()->thumbLength(this);
  /external/webkit/Source/WebCore/platform/wx/wxcode/win/
scrollbar_render.cpp 183 int thumbLength = 0;
185 current, step, &thumbStart, &thumbLength);
189 buttonRect.right = buttonRect.left + thumbLength;
192 buttonRect.bottom = buttonRect.top + thumbLength;
  /external/webkit/Source/WebCore/platform/gtk/
ScrollbarThemeGtk.cpp 93 return thumbLength(scrollbar) > 0;
179 return IntRect(trackRect.x() + thumbPos, trackRect.y() + (trackRect.height() - m_thumbFatness) / 2, thumbLength(scrollbar), m_thumbFatness);
182 return IntRect(trackRect.x() + (trackRect.width() - m_thumbFatness) / 2, trackRect.y() + thumbPos, m_thumbFatness, thumbLength(scrollbar));
  /external/webkit/Source/WebCore/platform/chromium/
ScrollbarThemeChromium.cpp 47 return thumbLength(scrollbar) > 0;
  /external/webkit/Source/WebCore/platform/haiku/
ScrollbarThemeHaiku.cpp 70 return scrollbar->enabled() && thumbLength(scrollbar) > 0;
  /external/webkit/Source/WebCore/rendering/
RenderScrollbarTheme.cpp 64 return trackLength(scrollbar) - thumbLength(scrollbar) >= 0;
  /external/webkit/Source/WebCore/platform/wx/
ScrollbarThemeWx.cpp 71 return thumbLength(scrollbar) > 0;
  /external/webkit/Source/WebCore/platform/win/
ScrollbarThemeWin.cpp 135 return thumbLength(scrollbar) > 0;

Completed in 95 milliseconds