HomeSort by relevance Sort by last modified time
    Searched refs:scrollbar (Results 26 - 50 of 129) sorted by null

12 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollableArea.cpp 173 Scrollbar* verticalScrollbar = this->verticalScrollbar();
176 if (Scrollbar* horizontalScrollbar = this->horizontalScrollbar()) {
276 void ScrollableArea::mouseEnteredScrollbar(Scrollbar* scrollbar) const
278 scrollAnimator()->mouseEnteredScrollbar(scrollbar);
281 void ScrollableArea::mouseExitedScrollbar(Scrollbar* scrollbar) const
283 scrollAnimator()->mouseExitedScrollbar(scrollbar);
304 void ScrollableArea::didAddScrollbar(Scrollbar* scrollbar, ScrollbarOrientation orientation
    [all...]
ScrollableArea.h 31 #include "platform/scroll/Scrollbar.h"
92 void mouseEnteredScrollbar(Scrollbar*) const;
93 void mouseExitedScrollbar(Scrollbar*) const;
99 virtual void didAddScrollbar(Scrollbar*, ScrollbarOrientation);
100 virtual void willRemoveScrollbar(Scrollbar*, ScrollbarOrientation);
120 virtual void invalidateScrollbar(Scrollbar*, const IntRect&);
126 // Convert points and rects between the scrollbar and its containing view.
129 virtual IntRect convertFromScrollbarToContainingView(const Scrollbar* scrollbar, const IntRect& scrollbarRect) const
131 return scrollbar->Widget::convertToContainingView(scrollbarRect)
    [all...]
ScrollbarThemeMacCommon.mm 91 void ScrollbarThemeMacCommon::registerScrollbar(ScrollbarThemeClient* scrollbar)
93 scrollbarSet().add(scrollbar);
96 void ScrollbarThemeMacCommon::unregisterScrollbar(ScrollbarThemeClient* scrollbar)
98 scrollbarSet().remove(scrollbar);
101 void ScrollbarThemeMacCommon::paintGivenTickmarks(GraphicsContext* context, ScrollbarThemeClient* scrollbar, const IntRect& rect, const Vector<IntRect>& tickmarks)
103 if (scrollbar->orientation() != VerticalScrollbar)
119 const float percent = static_cast<float>(i->y()) / scrollbar->totalSize();
267 void ScrollbarThemeMacCommon::paintTickmarks(GraphicsContext* context, ScrollbarThemeClient* scrollbar, const IntRect& rect)
270 if (scrollbar->orientation() != VerticalScrollbar)
277 scrollbar->getTickmarks(tickmarks)
    [all...]
Scrollbar.cpp 27 #include "platform/scroll/Scrollbar.h"
41 // The position of the scrollbar thumb affects the appearance of the steppers, so
48 PassRefPtr<Scrollbar> Scrollbar::create(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize size)
50 return adoptRef(new Scrollbar(scrollableArea, orientation, size));
53 Scrollbar::Scrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, ScrollbarTheme* theme)
69 , m_scrollTimer(this, &Scrollbar::autoscrollTimerFired)
80 // scrollbar thickness and use it when sizing scrollbars (rather than leaving one dimension of the scrollbar
    [all...]
  /external/chromium_org/cc/animation/
scrollbar_animation_controller_thinning.cc 137 ScrollbarLayerImplBase* scrollbar = *it; local
138 if (scrollbar->is_overlay_scrollbar()) {
139 scrollbar->SetOpacity(
140 AdjustScale(opacity, scrollbar->opacity(), opacity_change_));
141 scrollbar->SetThumbThicknessScaleFactor(
143 scrollbar->thumb_thickness_scale_factor(),
scrollbar_animation_controller_linear_fade.cc 55 ScrollbarLayerImplBase* scrollbar = *it; local
56 if (scrollbar->is_overlay_scrollbar())
57 scrollbar->SetOpacity(opacity);
  /external/chromium_org/ppapi/tests/
test_scrollbar.cc 15 REGISTER_TEST_CASE(Scrollbar);
51 "" : "Didn't get callback for scrollbar value change";
58 void TestScrollbar::ScrollbarValueChanged(pp::Scrollbar_Dev scrollbar,
60 if (scrollbar == scrollbar_)
64 void TestScrollbar::ScrollbarOverlayChanged(pp::Scrollbar_Dev scrollbar,
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbar.h 30 #include "platform/scroll/Scrollbar.h"
41 class RenderScrollbar FINAL : public Scrollbar {
46 friend class Scrollbar;
47 static PassRefPtr<Scrollbar> createCustomScrollbar(ScrollableArea*, ScrollbarOrientation, Node*, LocalFrame* owningFrame = 0);
80 // This Scrollbar(Widget) may outlive the DOM which created it (during tear down),
81 // so we keep a reference to the Node which caused this custom scrollbar creation.
90 DEFINE_TYPE_CASTS(RenderScrollbar, ScrollbarThemeClient, scrollbar, scrollbar->isCustomScrollbar(), scrollbar.isCustomScrollbar());
RenderLayerScrollableArea.cpp 168 void RenderLayerScrollableArea::invalidateScrollbarRect(Scrollbar* scrollbar, const IntRect& rect)
173 if (scrollbar == m_vBar.get()) {
190 if (scrollbar == m_vBar.get())
193 scrollRect.move(horizontalScrollbarStart(0), box().height() - box().borderBottom() - scrollbar->height());
204 if (scrollbar == m_vBar.get()) {
248 static IntRect cornerRect(const RenderStyle* style, const Scrollbar* horizontalScrollbar, const Scrollbar* verticalScrollbar, const IntRect& bounds)
275 // We have a scrollbar corner when a scrollbar is visible and not filling the entire length of the box
863 RefPtr<Scrollbar>& scrollbar = orientation == HorizontalScrollbar ? m_hBar : m_vBar; local
    [all...]
  /external/chromium_org/content/renderer/compositor_bindings/
web_scrollbar_layer_impl.h 25 blink::WebScrollbar* scrollbar,
web_scrollbar_layer_impl.cc 30 blink::WebScrollbar* scrollbar,
34 scoped_ptr<cc::Scrollbar>(
35 new ScrollbarImpl(make_scoped_ptr(scrollbar),
scrollbar_impl.h 10 #include "cc/input/scrollbar.h"
20 class ScrollbarImpl : public cc::Scrollbar {
22 ScrollbarImpl(scoped_ptr<blink::WebScrollbar> scrollbar,
27 // cc::Scrollbar implementation.
web_compositor_support_impl.cc 85 WebScrollbar* scrollbar,
88 return new WebScrollbarLayerImpl(scrollbar, painter, geometry);
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXScrollbar.h 36 class Scrollbar;
40 static PassRefPtr<AXScrollbar> create(Scrollbar*);
42 Scrollbar* scrollbar() const { return m_scrollbar.get(); } function in class:WebCore::FINAL
45 explicit AXScrollbar(Scrollbar*);
64 RefPtr<Scrollbar> m_scrollbar;
AXScrollView.cpp 59 AXObject* AXScrollView::scrollBar(AccessibilityOrientation orientation)
117 void AXScrollView::removeChildScrollbar(AXObject* scrollbar)
119 size_t pos = m_children.find(scrollbar);
126 AXScrollbar* AXScrollView::addChildScrollbar(Scrollbar* scrollbar)
128 if (!scrollbar)
131 AXScrollbar* scrollBarObject = toAXScrollbar(axObjectCache()->getOrCreate(scrollbar));
  /external/chromium_org/content/child/
webthemeengine_impl_mac.cc 44 trackInfo.trackInfo.scrollbar.viewsize = scrollbarInfo.visibleSize;
53 trackInfo.trackInfo.scrollbar.pressState =
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
scrollbar.js 12 var ScrollBar = cr.ui.define('div');
15 * Mode of the scrollbar. As for now, only vertical scrollbars are supported.
18 ScrollBar.Mode = {
23 ScrollBar.prototype = {
26 if (this.mode_ == ScrollBar.Mode.VERTICAL) {
27 this.classList.remove('scrollbar-horizontal');
28 this.classList.add('scrollbar-vertical');
30 this.classList.remove('scrollbar-vertical');
31 this.classList.add('scrollbar-horizontal');
43 ScrollBar.prototype.__proto__ = HTMLDivElement.prototype
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ScrollAnimatorMac.mm 73 static ScrollbarPainter scrollbarPainterForScrollbar(Scrollbar* scrollbar)
76 return scrollbarTheme->painterForScrollbar(scrollbar);
240 WebCore::Scrollbar* scrollbar = 0;
242 scrollbar = _scrollableArea->horizontalScrollbar();
244 scrollbar = _scrollableArea->verticalScrollbar();
246 // It is possible to have a null scrollbar here since it is possible for this delegate
247 // method to be called between the moment when a scrollbar has been set to 0 and the
251 if (!scrollbar)
    [all...]
  /external/chromium_org/content/renderer/pepper/
ppb_scrollbar_impl.cc 39 scoped_refptr<PPB_Scrollbar_Impl> scrollbar(new PPB_Scrollbar_Impl(instance));
40 scrollbar->Init(vertical);
41 return scrollbar->GetReference();
160 void PPB_Scrollbar_Impl::valueChanged(blink::WebPluginScrollbar* scrollbar) {
181 void PPB_Scrollbar_Impl::overlayChanged(WebPluginScrollbar* scrollbar) {
197 blink::WebPluginScrollbar* scrollbar,
214 blink::WebPluginScrollbar* scrollbar,
  /external/chromium_org/cc/layers/
painted_scrollbar_layer.h 9 #include "cc/input/scrollbar.h"
26 scoped_ptr<Scrollbar> scrollbar,
55 PaintedScrollbarLayer(scoped_ptr<Scrollbar> scrollbar, int scroll_layer_id);
85 scoped_ptr<Scrollbar> scrollbar_;
scrollbar_layer_unittest.cc 37 scoped_ptr<Scrollbar> scrollbar,
47 child2 = SolidColorScrollbarLayer::Create(scrollbar->Orientation(),
53 child2 = PaintedScrollbarLayer::Create(scrollbar.Pass(), child1->id());
64 scoped_ptr<Scrollbar> scrollbar(new FakeScrollbar);
66 host.get(), scrollbar.Pass(), false, false, 0, 0);
79 scoped_ptr<Scrollbar> scrollbar(new FakeScrollbar);
81 host.get(), scrollbar.Pass(), true, false, 0, 0)
    [all...]
scrollbar_layer_impl_base.cc 57 void RegisterScrollbarWithLayers(ScrollbarLayerImplBase* scrollbar,
64 DCHECK(scrollbar);
75 (current_layer->*operation)(scrollbar);
155 // horizontal scrollbar - inputs are above the scrollbar, computed values
209 // horizontal scrollbar down by the vertical_adjust_ factor and lay the
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebScrollbarImpl.cpp 30 #include "platform/scroll/Scrollbar.h"
34 WebScrollbarImpl::WebScrollbarImpl(WebCore::Scrollbar* scrollbar)
35 : m_scrollbar(scrollbar)
  /external/chromium_org/chrome/browser/resources/ntp4/
tile_page.css 13 .tile-page-scrollbar {
33 * the scrollbar. */
36 /* Scrollbar width(13px) + balance right padding. */
187 .tile-page-content::-webkit-scrollbar {
191 .tile-page-content::-webkit-scrollbar-button {
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/css/
overlay.css 149 .overlay .page .content-area::-webkit-scrollbar {
154 .overlay .page .content-area::-webkit-scrollbar-thumb {
160 .overlay .page .content-area::-webkit-scrollbar-thumb:hover {

Completed in 496 milliseconds

12 3 4 5 6