HomeSort by relevance Sort by last modified time
    Searched full:scrollbar (Results 76 - 100 of 451) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/ManualTests/
user-drag-with-decorations.html 1 This tests that we don't include overflow decorations from our ancestor nodes in the drag image for -webkit-user-drag: element. To perform this test drag the green square below. The drag image should not contain any parts of the scrollbar graphics visible on the page.
select-scroll.html 2 When you click the following <select>, you should see a scrollbar,
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
Scrollbar.h 46 class PLATFORM_EXPORT Scrollbar : public Widget,
50 static PassRefPtr<Scrollbar> create(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize);
52 virtual ~Scrollbar();
124 // when the mouse went down in a scrollbar, since it is assumed the scrollbar will start
153 Scrollbar(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize, ScrollbarTheme* = 0);
159 void autoscrollTimerFired(Timer<Scrollbar>*);
185 Timer<Scrollbar> m_scrollTimer;
198 DEFINE_TYPE_CASTS(Scrollbar, Widget, widget, widget->isScrollbar(), widget.isScrollbar());
ScrollView.cpp 97 PassRefPtr<Scrollbar> ScrollView::createScrollbar(ScrollbarOrientation orientation)
99 return Scrollbar::create(this, orientation, RegularScrollbar);
177 if (Scrollbar* verticalBar = verticalScrollbar())
179 if (Scrollbar* horizontalBar = horizontalScrollbar())
244 Scrollbar* scrollbar = ((orientation == HorizontalScrollbar) ? m_horizontalScrollbar : m_verticalScrollbar).get(); local
247 if (!scrollbar) {
253 return scrollbar->totalSize() - scrollbar->visibleSize();
372 // If we ever turn one scrollbar off, always turn the other one off too
    [all...]
ScrollView.h 35 #include "platform/scroll/Scrollbar.h"
42 class Scrollbar;
72 virtual Scrollbar* horizontalScrollbar() const OVERRIDE { return m_horizontalScrollbar.get(); }
73 virtual Scrollbar* verticalScrollbar() const OVERRIDE { return m_verticalScrollbar.get(); }
79 // AlwaysOff, AlwaysOn, and Auto. AlwaysOff means never show a scrollbar, AlwaysOn means always show a scrollbar.
80 // Auto means show a scrollbar only when one is needed.
106 virtual PassRefPtr<Scrollbar> createScrollbar(ScrollbarOrientation);
188 virtual void setParent(Widget*) OVERRIDE; // Overridden to update the overlapping scrollbar count.
197 Scrollbar* scrollbarAtWindowPoint(const IntPoint& windowPoint)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
ScrollbarGroup.h 51 virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&) OVERRIDE;
57 virtual IntPoint convertFromContainingViewToScrollbar(const Scrollbar*, const IntPoint& parentPoint) const OVERRIDE;
58 virtual Scrollbar* horizontalScrollbar() const OVERRIDE;
59 virtual Scrollbar* verticalScrollbar() const OVERRIDE;
WebPluginScrollbarImpl.h 37 class Scrollbar;
53 Scrollbar* scrollbar() { return m_scrollbar.get(); } function in class:blink::FINAL
96 RefPtr<Scrollbar> m_scrollbar;
WebScrollbarThemePainter.cpp 31 #include "platform/scroll/Scrollbar.h"
117 WebScrollbarThemePainter::WebScrollbarThemePainter(ScrollbarTheme* theme, Scrollbar* scrollbar)
119 , m_scrollbar(scrollbar)
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/
pinch-viewport-input-field-long-and-wide.html 6 ::-webkit-scrollbar {
scale_oscillate.html 6 ::-webkit-scrollbar {
  /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.h 73 virtual Scrollbar* horizontalScrollbar() const OVERRIDE { return m_hBar.get(); }
74 virtual Scrollbar* verticalScrollbar() const OVERRIDE { return m_vBar.get(); }
83 virtual void invalidateScrollbarRect(Scrollbar*, const IntRect&) OVERRIDE;
88 virtual IntRect convertFromScrollbarToContainingView(const Scrollbar*, const IntRect&) const OVERRIDE;
89 virtual IntRect convertFromContainingViewToScrollbar(const Scrollbar*, const IntRect&) const OVERRIDE;
90 virtual IntPoint convertFromScrollbarToContainingView(const Scrollbar*, const IntPoint&) const OVERRIDE;
91 virtual IntPoint convertFromContainingViewToScrollbar(const Scrollbar*, const IntPoint&) const OVERRIDE;
201 IntSize scrollbarOffset(const Scrollbar*) const;
203 PassRefPtr<Scrollbar> createScrollbar(ScrollbarOrientation);
250 RefPtr<Scrollbar> m_hBar
    [all...]
RenderLayerScrollableArea.cpp 181 void RenderLayerScrollableArea::invalidateScrollbarRect(Scrollbar* scrollbar, const IntRect& rect)
186 if (scrollbar == m_vBar.get()) {
203 if (scrollbar == m_vBar.get())
206 scrollRect.move(horizontalScrollbarStart(0), box().height() - box().borderBottom() - scrollbar->height());
217 addScrollbarDamage(scrollbar, intRect);
253 static IntRect cornerRect(const RenderStyle* style, const Scrollbar* horizontalScrollbar, const Scrollbar* verticalScrollbar, const IntRect& bounds)
280 // We have a scrollbar corner when a scrollbar is visible and not filling the entire length of the box
875 RefPtr<Scrollbar>& scrollbar = orientation == HorizontalScrollbar ? m_hBar : m_vBar; local
    [all...]
  /external/chromium_org/cc/animation/
scrollbar_animation_controller_thinning.h 15 // Scrollbar animation that partially fades and thins after an idle delay,
71 // How close should the mouse be to the scrollbar before we thicken it.
  /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/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));
AXScrollView.h 34 class Scrollbar;
60 virtual AXObject* scrollBar(AccessibilityOrientation) OVERRIDE;
75 AXScrollbar* addChildScrollbar(Scrollbar*);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasTransform.java 22 import org.eclipse.swt.widgets.ScrollBar;
58 /** Scrollbar widget. */
59 private ScrollBar mScrollbar;
61 public CanvasTransform(LayoutCanvas layoutCanvas, ScrollBar scrollbar) {
63 mScrollbar = scrollbar;
89 /** Recomputes the scrollbar and view port settings */
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebScrollbarImpl.h 33 class Scrollbar;
36 explicit WebScrollbarImpl(Scrollbar*);
60 RefPtr<Scrollbar> m_scrollbar;
WebScrollbarImpl.cpp 30 #include "platform/scroll/Scrollbar.h"
34 WebScrollbarImpl::WebScrollbarImpl(Scrollbar* scrollbar)
35 : m_scrollbar(scrollbar)
  /external/chromium_org/third_party/WebKit/public/web/
WebPluginScrollbar.h 48 // Gets the thickness of the scrollbar in pixels.
51 // Sets the rectangle of the scrollbar.
56 // for the vertical scrollbar would have passed in a rectangle like:
  /external/chromium_org/cc/blink/
web_scrollbar_layer_impl.h 25 blink::WebScrollbar* scrollbar,
  /external/chromium_org/content/test/data/accessibility/
aria-valuemax.html 11 <div role="scrollbar" aria-valuenow="52" aria-valuemin="2" aria-valuemax="102">Scroll</div>
aria-valuemin.html 12 <div role="scrollbar" aria-valuenow="52" aria-valuemin="2" aria-valuemax="102">Scroll</div>
  /external/chromium_org/ui/views/controls/scrollbar/
base_scroll_bar_thumb.cc 5 #include "ui/views/controls/scrollbar/base_scroll_bar_thumb.h"
9 #include "ui/views/controls/scrollbar/base_scroll_bar.h"
13 // dragging before the scrollbar will snap back to its regular position.
85 // the bounds of the thumb, the scrollbar will snap the scroll back to the

Completed in 1391 milliseconds

1 2 34 5 6 7 8 91011>>