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

12 3 4 5

  /external/chromium_org/content/renderer/compositor_bindings/
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_scrollbar_layer_impl.cc 30 blink::WebScrollbar* scrollbar,
34 scoped_ptr<cc::Scrollbar>(
35 new ScrollbarImpl(make_scoped_ptr(scrollbar),
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
FramelessScrollView.cpp 45 void FramelessScrollView::invalidateScrollbarRect(Scrollbar* scrollbar, const IntRect& rect)
49 dirtyRect.move(scrollbar->x(), scrollbar->y());
FramelessScrollView.h 70 virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&) OVERRIDE;
ScrollAnimatorNone.h 58 virtual void didAddVerticalScrollbar(Scrollbar*) OVERRIDE;
59 virtual void didAddHorizontalScrollbar(Scrollbar*) OVERRIDE;
ScrollView.cpp 100 PassRefPtr<Scrollbar> ScrollView::createScrollbar(ScrollbarOrientation orientation)
102 return Scrollbar::create(this, orientation, RegularScrollbar);
190 if (Scrollbar* verticalBar = verticalScrollbar())
192 if (Scrollbar* horizontalBar = horizontalScrollbar())
245 Scrollbar* scrollbar = ((orientation == HorizontalScrollbar) ? m_horizontalScrollbar : m_verticalScrollbar).get(); local
248 if (!scrollbar) {
254 return scrollbar->totalSize() - scrollbar->visibleSize();
372 // If we ever turn one scrollbar off, always turn the other one off too
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebScrollbar.h 37 class Scrollbar;
42 // A const accessor interface for a WebKit scrollbar
89 // Return true if this is an overlay scrollbar.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
ScrolledText.py 9 the Scrollbar widget.
16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
22 self.vbar = Scrollbar(self.frame)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
ScrolledText.py 9 the Scrollbar widget.
16 from Tkinter import Frame, Text, Scrollbar, Pack, Grid, Place
22 self.vbar = Scrollbar(self.frame)
  /external/chromium_org/third_party/WebKit/Source/web/
ScrollbarGroup.cpp 30 #include "platform/scroll/Scrollbar.h"
53 void ScrollbarGroup::scrollbarCreated(WebPluginScrollbarImpl* scrollbar)
56 if (scrollbar->scrollbar()->orientation() == HorizontalScrollbar) {
58 m_horizontalScrollbar = scrollbar;
59 didAddScrollbar(scrollbar->scrollbar(), HorizontalScrollbar);
62 m_verticalScrollbar = scrollbar;
63 didAddScrollbar(scrollbar->scrollbar(), VerticalScrollbar)
    [all...]
PopupListBox.h 245 // Our suggested width, not including scrollbar.
257 // The scrollbar which has mouse capture. Mouse events go straight to this
259 RefPtr<WebCore::Scrollbar> m_capturingScrollbar;
261 // The last scrollbar that the mouse was over. Used for mouseover highlights.
262 RefPtr<WebCore::Scrollbar> m_lastScrollbarUnderMouse;
WebScrollbarThemePainter.cpp 31 #include "platform/scroll/Scrollbar.h"
119 WebScrollbarThemePainter::WebScrollbarThemePainter(WebCore::ScrollbarTheme* theme, WebCore::Scrollbar* scrollbar)
121 , m_scrollbar(scrollbar)
  /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/third_party/WebKit/Source/core/rendering/
RenderScrollbar.cpp 39 PassRefPtr<Scrollbar> RenderScrollbar::createCustomScrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, Node* ownerNode, LocalFrame* owningFrame)
45 : Scrollbar(scrollableArea, orientation, RegularScrollbar, RenderScrollbarTheme::renderScrollbarTheme())
51 // FIXME: We need to do this because RenderScrollbar::styleChanged is called as soon as the scrollbar is created.
53 // Update the scrollbar size.
72 // When a scrollbar is detached from its parent (causing all parts removal) and
76 // scrollbar part. So, we need to destroy these parts since we don't want them
77 // to call on a destroyed scrollbar. See webkit bug 68009.
93 Scrollbar::setParent(parent);
95 // Destroy all of the scrollbar's RenderBoxes.
103 Scrollbar::setEnabled(e)
    [all...]
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...]
RenderPart.cpp 123 Scrollbar* frameScrollbar = childFrameView->scrollbarAtPoint(newHitTestLocation.roundedPoint());
RenderListBox.cpp 57 #include "platform/scroll/Scrollbar.h"
308 // For RTL, items start after the left-side vertical scrollbar.
772 void RenderListBox::invalidateScrollbarRect(Scrollbar* scrollbar, const IntRect& rect)
778 scrollRect.move(width() - borderRight() - scrollbar->width(), borderTop());
797 IntRect RenderListBox::convertFromScrollbarToContainingView(const Scrollbar* scrollbar, const IntRect& scrollbarRect) const
811 IntRect RenderListBox::convertFromContainingViewToScrollbar(const Scrollbar* scrollbar, const IntRect& parentRect) const
824 IntPoint RenderListBox::convertFromScrollbarToContainingView(const Scrollbar* scrollbar, const IntPoint& scrollbarPoint) cons
    [all...]
  /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/page/
EventHandler.h 75 class Scrollbar;
291 void updateLastScrollbarUnderMouse(Scrollbar*, bool);
344 RefPtr<Scrollbar> m_lastScrollbarUnderMouse;
383 RefPtr<Scrollbar> m_scrollbarHandlingScrollGesture;
  /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/third_party/WebKit/Source/core/frame/
FrameView.h 83 virtual PassRefPtr<Scrollbar> createScrollbar(ScrollbarOrientation) OVERRIDE;
213 virtual void paintScrollbar(GraphicsContext*, Scrollbar*, const IntRect&) OVERRIDE;
300 // Override scrollbar notifications to update the AXObject cache.
301 virtual void didAddScrollbar(Scrollbar*, ScrollbarOrientation) OVERRIDE;
302 virtual void willRemoveScrollbar(Scrollbar*, ScrollbarOrientation) OVERRIDE;
316 virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&) OVERRIDE;
PinchViewport.h 129 virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&) OVERRIDE;
  /external/chromium_org/cc/layers/
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...]
painted_scrollbar_layer.cc 30 scoped_ptr<Scrollbar> scrollbar,
33 new PaintedScrollbarLayer(scrollbar.Pass(), scroll_layer_id));
36 PaintedScrollbarLayer::PaintedScrollbarLayer(scoped_ptr<Scrollbar> scrollbar,
38 : scrollbar_(scrollbar.Pass()),
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
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));

Completed in 234 milliseconds

12 3 4 5