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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/ui/native_theme/
native_theme_switches.cc 11 const char kEnableOverlayScrollbar[] = "enable-overlay-scrollbar";
14 const char kDisableOverlayScrollbar[] = "disable-overlay-scrollbar";
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ScrollAnimatorMac.mm 74 static ScrollbarPainter scrollbarPainterForScrollbar(Scrollbar* scrollbar)
77 return scrollbarTheme->painterForScrollbar(scrollbar);
241 blink::Scrollbar* scrollbar = 0;
243 scrollbar = _scrollableArea->horizontalScrollbar();
245 scrollbar = _scrollableArea->verticalScrollbar();
247 // It is possible to have a null scrollbar here since it is possible for this delegate
248 // method to be called between the moment when a scrollbar has been set to 0 and the
252 if (!scrollbar)
    [all...]
  /external/chromium_org/content/renderer/pepper/
ppb_scrollbar_impl.h 54 virtual void valueChanged(blink::WebPluginScrollbar* scrollbar) OVERRIDE;
55 virtual void overlayChanged(blink::WebPluginScrollbar* scrollbar) OVERRIDE;
56 virtual void invalidateScrollbarRect(blink::WebPluginScrollbar* scrollbar,
58 virtual void getTickmarks(blink::WebPluginScrollbar* scrollbar,
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventWithHitTestResults.h 31 class Scrollbar;
47 Scrollbar* scrollbar() const { return m_hitTestResult.scrollbar(); } function in class:blink::EventWithHitTestResults
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/
pinch-viewport-input-field.html 6 ::-webkit-scrollbar {
  /external/chromium_org/ui/gfx/
scrollbar_size.h 12 // This should return the thickness, in pixels, of a scrollbar in web content.
  /external/chromium_org/cc/animation/
scrollbar_animation_controller_linear_fade.cc 55 ScrollbarLayerImplBase* scrollbar = *it; local
56 if (scrollbar->is_overlay_scrollbar())
57 scrollbar->SetOpacity(opacity);
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(),
  /external/chromium_org/cc/test/
fake_scrollbar.h 9 #include "cc/input/scrollbar.h"
14 class FakeScrollbar : public Scrollbar {
20 // Scrollbar implementation.
fake_scrollbar.cc 64 // Fill the scrollbar with a different color each time.
71 // Emulate the how the real scrollbar works by using scrollbar's rect for
  /external/chromium_org/ui/views/controls/scrollbar/
overlay_scroll_bar.h 9 #include "ui/views/controls/scrollbar/base_scroll_bar.h"
13 // The transparent scrollbar which overlays its contents.
24 // ScrollBar overrides:
base_scroll_bar.h 13 #include "ui/views/controls/scrollbar/scroll_bar.h"
26 class VIEWS_EXPORT BaseScrollBar : public ScrollBar,
80 // ScrollBar overrides:
108 // scrollbars wrap around a different scrollbar. When calling the controller
109 // we need to pass in the appropriate scrollbar. For normal scrollbars it's
110 // the |this| scrollbar, for native scrollbars it's the native scrollbar used
132 // Returns the size (width or height) of the track area of the ScrollBar.
160 // The state of the scrollbar track. Typically, the track will highlight when
164 // The last amount of incremental scroll that this scrollbar performed. Thi
    [all...]
scrollbar_unittest.cc 5 #include "ui/views/controls/scrollbar/native_scroll_bar.h"
6 #include "ui/views/controls/scrollbar/native_scroll_bar_views.h"
7 #include "ui/views/controls/scrollbar/scroll_bar.h"
13 // The Scrollbar controller. This is the widget that should do the real
19 virtual void ScrollToPosition(views::ScrollBar* source,
25 virtual int GetScrollIncrement(views::ScrollBar* source,
39 views::ScrollBar* last_source;
86 // This is the native scrollbar the Views one wraps around.
89 // This is the Views scrollbar.
99 // TODO(dnicoara) Can't run the test on Windows since the scrollbar |Part
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebScrollbarThemePainter.h 34 class Scrollbar;
63 WebScrollbarThemePainter(ScrollbarTheme*, Scrollbar*);
74 // for the lifetime of this scrollbar. The painter has to use the real
75 // scrollbar (and not a WebScrollbar wrapper) due to static_casts for
77 Scrollbar* m_scrollbar;
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarTheme.h 60 void invalidateParts(ScrollbarThemeClient* scrollbar, ScrollbarControlPartMask mask)
63 invalidatePart(scrollbar, BackButtonStartPart);
65 invalidatePart(scrollbar, ForwardButtonStartPart);
67 invalidatePart(scrollbar, BackTrackPart);
69 invalidatePart(scrollbar, ThumbPart);
71 invalidatePart(scrollbar, ForwardTrackPart);
73 invalidatePart(scrollbar, BackButtonEndPart);
75 invalidatePart(scrollbar, ForwardButtonEndPart);
92 // The length of the thumb along the axis of the scrollbar.
94 // The position of the track relative to the scrollbar
    [all...]
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
chrome_gtk_frame.cc 117 // Scrollbar color properties:
121 "scrollbar-slider-prelight-color",
122 "Scrollbar Slider Prelight Color",
129 "scrollbar-slider-normal-color",
130 "Scrollbar Slider Normal Color",
137 "scrollbar-trough-color",
138 "Scrollbar Trough Color",
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameViewAutoSizeInfo.cpp 52 // Since autosize mode forces the scrollbar mode, change them to being auto.
99 // Check to see if a scrollbar is needed for a given dimension and
100 // if so, increase the other dimension to account for the scrollbar.
104 RefPtr<Scrollbar> localHorizontalScrollbar = m_frameView->horizontalScrollbar();
110 // Don't bother checking for a vertical scrollbar because the width is at
113 RefPtr<Scrollbar> localVerticalScrollbar = m_frameView->verticalScrollbar();
119 // Don't bother checking for a horizontal scrollbar because the height is
148 // Force the scrollbar state to avoid the scrollbar code adding them and causing them to be needed. For example,
149 // a vertical scrollbar may cause text to wrap and thus increase the height (which is the only reason the scollbar is need (…)
    [all...]
  /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());
65 scoped_ptr<Scrollbar> scrollbar(new FakeScrollbar);
67 host.get(), scrollbar.Pass(), false, false, 0, 0);
81 scoped_ptr<Scrollbar> scrollbar(new FakeScrollbar);
83 host.get(), scrollbar.Pass(), true, false, 0, 0)
    [all...]
scrollbar_layer_interface.h 9 #include "cc/input/scrollbar.h"
  /external/chromium_org/cc/blink/
web_scrollbar_layer_impl.cc 30 blink::WebScrollbar* scrollbar,
34 scoped_ptr<cc::Scrollbar>(
35 new ScrollbarImpl(make_scoped_ptr(scrollbar),
  /external/chromium_org/tools/traceline/svgui/
traceline.css 22 /* This needs to be at least 16px, the height of the scrollbar, to have the
23 scrollbar renderer in firefox */
32 /* the div needs to have a height for the scrollbar to render in firefox */
  /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/content/renderer/
webscrollbarbehavior_impl_gtkoraura.cc 29 // scrollbar thumb back to its origin. These calculations are based on
30 // observing the behavior of the MSVC8 main window scrollbar + some
40 // Even if the platform's scrollbar is narrower than the default Windows one,
42 // narrower scrollbar doesn't necessarily imply that users will drag
  /external/chromium_org/third_party/WebKit/ManualTests/
autoscroll-over-scrollbar.html 4 <p>Click down somewhere in this text, then move the pointer over the scrollbar at the bottom of the window, stop there, holding the mouse button down.</p>

Completed in 985 milliseconds

1 23 4 5 6 7 8 91011>>