Searched refs:VerticalScrollbar (Results 1 - 23 of 23) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/accessibility/
H A DAccessibilityScrollbar.cpp73 if (m_scrollbar->orientation() == VerticalScrollbar)
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DScrollbarThemeGtk2.cpp72 return scrollbar->orientation() == VerticalScrollbar ? theme->gtkVScrollbar() : theme->gtkHScrollbar();
121 if (scrollbar->orientation() == VerticalScrollbar) {
155 int buttonSize = (orientation == VerticalScrollbar) ? rect.height() : rect.width();
173 if (orientation == VerticalScrollbar) {
182 const char* detail = orientation == VerticalScrollbar ? "vscrollbar" : "hscrollbar";
205 if (orientation == VerticalScrollbar) {
H A DScrollbarThemeGtk3.cpp72 gtk_style_context_add_class(context, orientation == VerticalScrollbar ? GTK_STYLE_CLASS_VERTICAL : GTK_STYLE_CLASS_HORIZONTAL);
124 orientation == VerticalScrollbar ? GTK_ORIENTATION_VERTICAL : GTK_ORIENTATION_HORIZONTAL);
170 if (orientation == VerticalScrollbar) {
H A DScrollbarThemeGtk.cpp113 // VerticalScrollbar alternate button
134 // VerticalScrollbar
190 // VerticalScrollbar
275 if (scrollbar->orientation() == VerticalScrollbar)
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DScrollTypes.h118 enum ScrollbarOrientation { HorizontalScrollbar, VerticalScrollbar }; enumerator in enum:WebCore::ScrollbarOrientation
H A DScrollableArea.cpp89 orientation = VerticalScrollbar;
265 if (orientation == VerticalScrollbar)
276 if (orientation == VerticalScrollbar)
H A DScrollAnimator.cpp112 scroll(VerticalScrollbar, granularity, verticalScrollbar->pixelStep(), -deltaY);
H A DScrollView.cpp106 m_verticalScrollbar = createScrollbar(VerticalScrollbar);
108 didAddScrollbar(m_verticalScrollbar.get(), VerticalScrollbar);
111 willRemoveScrollbar(m_verticalScrollbar.get(), VerticalScrollbar);
401 if (scrollbar->orientation() == VerticalScrollbar)
H A DScrollAnimatorNone.cpp456 PerAxisData& data = (orientation == VerticalScrollbar) ? m_verticalData : m_horizontalData;
/macosx-10.9.5/WebCore-7537.78.1/platform/win/
H A DScrollbarThemeSafari.cpp216 paintThemePart(scrollbar->orientation() == VerticalScrollbar ? VScrollTrackPart : HScrollTrackPart, graphicsContext->platformContext(), trackRect, size, state);
232 paintThemePart(scrollbar->orientation() == VerticalScrollbar ? ScrollUpArrowPart : ScrollLeftArrowPart, graphicsContext->platformContext(),
235 paintThemePart(scrollbar->orientation() == VerticalScrollbar ? ScrollDownArrowPart : ScrollRightArrowPart, graphicsContext->platformContext(),
251 paintThemePart(scrollbar->orientation() == VerticalScrollbar ? VScrollThumbPart : HScrollThumbPart, graphicsContext->platformContext(),
H A DPopupMenuWin.cpp154 m_scrollbar = client()->createScrollbar(this, VerticalScrollbar, SmallScrollbar);
560 ScrollableArea::scrollToOffsetWithoutAnimation(VerticalScrollbar, index);
565 ScrollableArea::scrollToOffsetWithoutAnimation(VerticalScrollbar, index - visibleItems() + 1);
692 return ((orientation == VerticalScrollbar) && m_scrollbar) ? (m_scrollbar->totalSize() - m_scrollbar->visibleSize()) : 0;
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderListBox.cpp185 scrollToOffsetWithoutAnimation(VerticalScrollbar, 0);
601 scrollToOffsetWithoutAnimation(VerticalScrollbar, newOffset);
630 return ((orientation == VerticalScrollbar) && m_vBar) ? (m_vBar->totalSize() - m_vBar->visibleSize()) : 0;
697 scrollToOffsetWithoutAnimation(VerticalScrollbar, index);
872 widget = RenderScrollbar::createCustomScrollbar(this, VerticalScrollbar, this->node());
874 widget = Scrollbar::createNativeScrollbar(this, VerticalScrollbar, theme()->scrollbarControlSizeForPart(ListboxPart));
875 didAddScrollbar(widget.get(), VerticalScrollbar);
887 ScrollableArea::willRemoveScrollbar(m_vBar.get(), VerticalScrollbar);
H A DRenderLayer.cpp251 destroyScrollbar(VerticalScrollbar);
2566 if (scrollbar->orientation() == VerticalScrollbar)
2949 m_vBar = createScrollbar(VerticalScrollbar);
2951 destroyScrollbar(VerticalScrollbar);
H A DRenderLayerCompositor.cpp2744 scrollingCoordinator->scrollableAreaScrollbarLayerDidChange(m_renderView->frameView(), VerticalScrollbar);
2751 scrollingCoordinator->scrollableAreaScrollbarLayerDidChange(m_renderView->frameView(), VerticalScrollbar);
2868 scrollingCoordinator->scrollableAreaScrollbarLayerDidChange(m_renderView->frameView(), VerticalScrollbar);
H A DRenderLayerBacking.cpp1076 scrollingCoordinator->scrollableAreaScrollbarLayerDidChange(m_owningLayer, VerticalScrollbar);
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebScrollBar.cpp206 *w = m_scrollBar->orientation() == VerticalScrollbar ? ScrollbarTheme::theme()->scrollbarThickness(m_scrollBar->controlSize()) : -1;
285 return m_scrollBar->orientation() == VerticalScrollbar ? m_scrollBar.get() : 0;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/Plugins/PDF/
H A DSimplePDFPlugin.mm225 destroyScrollbar(VerticalScrollbar);
227 m_verticalScrollbar = createScrollbar(VerticalScrollbar);
456 destroyScrollbar(VerticalScrollbar);
894 if (scrollbar->orientation() == VerticalScrollbar)
H A DPDFPlugin.mm561 destroyScrollbar(VerticalScrollbar);
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DScrollbarThemeQStyle.cpp106 opt.slider.orientation = (scrollbar->orientation() == VerticalScrollbar) ? Qt::Vertical : Qt::Horizontal;
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DSelectorChecker.cpp847 return scrollbar->orientation() == VerticalScrollbar;
/macosx-10.9.5/WebKit-7537.78.2/qt/WebCoreSupport/
H A DQWebFrameAdapter.cpp759 sb->scrollableArea()->scrollToOffsetWithoutAnimation(orientation == Qt::Horizontal ? HorizontalScrollbar : VerticalScrollbar, value);
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DScrollAnimatorMac.mm480 if (part == WebCore::ThumbPart && _scrollbar->orientation() == VerticalScrollbar) {
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DFrameView.cpp2910 localVerticalScrollbar = createScrollbar(VerticalScrollbar);

Completed in 189 milliseconds