OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:thumbLength
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebCore/platform/qt/
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.
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);
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)
/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
;
Completed in 105 milliseconds