Home
last modified time | relevance | path

Searched refs:visibleSize (Results 1 – 11 of 11) sorted by relevance

/external/webkit/WebCore/rendering/
DRenderScrollbarPart.cpp91 …int visibleSize = m_scrollbar->owningRenderer()->width() - m_scrollbar->owningRenderer()->borderLe… in computeScrollbarWidth() local
92 int w = calcScrollbarThicknessUsing(style()->width(), visibleSize); in computeScrollbarWidth()
93 int minWidth = calcScrollbarThicknessUsing(style()->minWidth(), visibleSize); in computeScrollbarWidth()
94 …le()->maxWidth().isUndefined() ? w : calcScrollbarThicknessUsing(style()->maxWidth(), visibleSize); in computeScrollbarWidth()
98 m_marginLeft = style()->marginLeft().calcMinValue(visibleSize); in computeScrollbarWidth()
99 m_marginRight = style()->marginRight().calcMinValue(visibleSize); in computeScrollbarWidth()
104 …int visibleSize = m_scrollbar->owningRenderer()->height() - m_scrollbar->owningRenderer()->border… in computeScrollbarHeight() local
105 int h = calcScrollbarThicknessUsing(style()->height(), visibleSize); in computeScrollbarHeight()
106 int minHeight = calcScrollbarThicknessUsing(style()->minHeight(), visibleSize); in computeScrollbarHeight()
107 …()->maxHeight().isUndefined() ? h : calcScrollbarThicknessUsing(style()->maxHeight(), visibleSize); in computeScrollbarHeight()
[all …]
/external/webkit/WebCore/platform/
DScrollbar.h66 int visibleSize() const { return m_visibleSize; } in visibleSize() function
82 void setProportion(int visibleSize, int totalSize);
DScrollbar.cpp100 void Scrollbar::setProportion(int visibleSize, int totalSize) in setProportion() argument
102 if (visibleSize == m_visibleSize && totalSize == m_totalSize) in setProportion()
105 m_visibleSize = visibleSize; in setProportion()
DScrollbarThemeComposite.cpp103 … float proportion = static_cast<float>(scrollbar->visibleSize()) / scrollbar->totalSize(); in paint()
268 float proportion = (float)scrollbar->visibleSize() / scrollbar->totalSize(); in thumbLength()
/external/webkit/WebKit/win/
DWebScrollBar.cpp128 /* [in] */ int visibleSize, in setProportion() argument
131 m_scrollBar->setProportion(visibleSize, totalSize); in setProportion()
DWebScrollBar.h75 /* [in] */ int visibleSize,
/external/webkit/WebKit/mac/WebView/
DWebDynamicScrollBarsView.mm140 NSSize visibleSize = [self documentVisibleRect].size;
144 newHasHorizontalScroller = documentSize.width > visibleSize.width;
150 newHasVerticalScroller = documentSize.height > visibleSize.height;
/external/webkit/WebKit/win/Interfaces/
DIWebScrollBarPrivate.idl49 HRESULT setProportion([in] int visibleSize, [in] int totalSize);
/external/webkit/WebCore/platform/qt/
DScrollbarThemeQt.cpp117 opt.pageStep = scrollbar->visibleSize(); in styleOptionSlider()
/external/webkit/WebCore/
DChangeLog-2008-08-1081199 Clamp any ImageBuffer allocation within SVG to the RenderView's visibleSize
DChangeLog-2009-06-1690680 (WebCore::Scrollbar::visibleSize):