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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/ui/views/controls/scrollbar/
kennedy_scroll_bar.h 8 #include "ui/views/controls/scrollbar/base_scroll_bar.h"
12 // The scrollbar of kennedy style. Transparent track and grey rectangle
24 // ScrollBar overrides:
native_scroll_bar_views.h 12 #include "ui/views/controls/scrollbar/base_scroll_bar.h"
13 #include "ui/views/controls/scrollbar/native_scroll_bar_wrapper.h"
24 // Views implementation for the scrollbar.
31 // Creates new scrollbar, either horizontal or vertical.
42 // ScrollBar overrides:
60 // Returns the area for the track. This is the area of the scrollbar minus
native_scroll_bar.h 12 #include "ui/views/controls/scrollbar/scroll_bar.h"
23 // The NativeScrollBar class is a scrollbar that uses platform's
25 class VIEWS_EXPORT NativeScrollBar : public ScrollBar {
30 // Create new scrollbar, either horizontal or vertical.
56 // Overridden from ScrollBar.
native_scroll_bar.cc 5 #include "ui/views/controls/scrollbar/native_scroll_bar.h"
12 #include "ui/views/controls/scrollbar/native_scroll_bar_views.h"
13 #include "ui/views/controls/scrollbar/native_scroll_bar_wrapper.h"
24 : ScrollBar(is_horizontal),
90 // NativeScrollBar, ScrollBar overrides:
94 ScrollBar::Update(viewport_size, content_size, current_pos);
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollbarThemeMock.cpp 37 IntRect ScrollbarThemeMock::trackRect(ScrollbarThemeClient* scrollbar, bool)
39 return scrollbar->frameRect();
52 void ScrollbarThemeMock::paintTrackBackground(GraphicsContext* context, ScrollbarThemeClient* scrollbar, const IntRect& trackRect)
54 context->fillRect(trackRect, scrollbar->enabled() ? Color::lightGray : Color(0xFFE0E0E0));
57 void ScrollbarThemeMock::paintThumb(GraphicsContext* context, ScrollbarThemeClient* scrollbar, const IntRect& thumbRect)
59 if (scrollbar->enabled())
ScrollableArea.h 31 #include "platform/scroll/Scrollbar.h"
98 void mouseEnteredScrollbar(Scrollbar*) const;
99 void mouseExitedScrollbar(Scrollbar*) const;
105 virtual void didAddScrollbar(Scrollbar*, ScrollbarOrientation);
106 virtual void willRemoveScrollbar(Scrollbar*, ScrollbarOrientation);
132 virtual void invalidateScrollbar(Scrollbar*, const IntRect&);
138 // Convert points and rects between the scrollbar and its containing view.
141 virtual IntRect convertFromScrollbarToContainingView(const Scrollbar* scrollbar, const IntRect& scrollbarRect) const
143 return scrollbar->Widget::convertToContainingView(scrollbarRect)
    [all...]
ScrollAnimator.h 46 class Scrollbar;
83 virtual void mouseEnteredScrollbar(Scrollbar*) const { }
84 virtual void mouseExitedScrollbar(Scrollbar*) const { }
93 virtual void didAddVerticalScrollbar(Scrollbar*) { }
94 virtual void willRemoveVerticalScrollbar(Scrollbar*) { }
95 virtual void didAddHorizontalScrollbar(Scrollbar*) { }
96 virtual void willRemoveHorizontalScrollbar(Scrollbar*) { }
98 virtual bool shouldScrollbarParticipateInHitTesting(Scrollbar*) { return true; }
  /external/chromium_org/ui/views/controls/
scroll_view.h 11 #include "ui/views/controls/scrollbar/scroll_bar.h"
63 // Retrieves the width/height of scrollbars. These return 0 if the scrollbar
68 // Returns the horizontal/vertical scrollbar. This may return NULL.
69 const ScrollBar* horizontal_scroll_bar() const { return horiz_sb_; }
70 const ScrollBar* vertical_scroll_bar() const { return vert_sb_; }
72 // Customize the scrollbar design. ScrollView takes the ownership of the
73 // specified ScrollBar. |horiz_sb| and |vert_sb| cannot be NULL.
74 void SetHorizontalScrollBar(ScrollBar* horiz_sb);
75 void SetVerticalScrollBar(ScrollBar* vert_sb);
89 virtual void ScrollToPosition(ScrollBar* source, int position) OVERRIDE
    [all...]
  /external/chromium_org/cc/blink/
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.
  /external/chromium_org/ppapi/cpp/dev/
widget_client_dev.h 33 * Notification that the given scrollbar should change value. This is the
36 virtual void ScrollbarValueChanged(Scrollbar_Dev scrollbar,
40 * Notification that the given scrollbar's overlay type has changed. This is
43 virtual void ScrollbarOverlayChanged(Scrollbar_Dev scrollbar,
scrollbar_dev.h 15 // This class allows a plugin to use the browser's scrollbar widget.
18 // Creates an is_null() Scrollbar object.
  /external/chromium_org/third_party/WebKit/ManualTests/
custom-scrollbar-renderer-removed-crash.html 5 ::-webkit-scrollbar { width: 1000; }
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/
200-by-300-viewport.html 7 ::-webkit-scrollbar {
200-by-800-viewport.html 7 ::-webkit-scrollbar {
pinch-viewport-fixed-pos.html 6 ::-webkit-scrollbar {
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXScrollbar.cpp 36 AXScrollbar::AXScrollbar(Scrollbar* scrollbar)
37 : m_scrollbar(scrollbar)
39 ASSERT(scrollbar);
48 PassRefPtr<AXScrollbar> AXScrollbar::create(Scrollbar* scrollbar)
50 return adoptRef(new AXScrollbar(scrollbar));
AXScrollbar.h 36 class Scrollbar;
40 static PassRefPtr<AXScrollbar> create(Scrollbar*);
42 Scrollbar* scrollbar() const { return m_scrollbar.get(); } function in class:blink::FINAL
45 explicit AXScrollbar(Scrollbar*);
64 RefPtr<Scrollbar> m_scrollbar;
  /external/chromium_org/ui/file_manager/file_manager/audio_player/css/
audio_player.css 38 /* Customized scrollbar for the playlist. */
40 ::-webkit-scrollbar {
45 ::-webkit-scrollbar-button {
50 ::-webkit-scrollbar-thumb {
58 ::-webkit-scrollbar-thumb:hover {
63 ::-webkit-scrollbar-thumb:active {
68 ::-webkit-scrollbar-thumb:vertical {
75 ::-webkit-scrollbar-track:hover {
80 ::-webkit-scrollbar-track:active {
86 ::-webkit-scrollbar-track:vertical
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
PseudoStyleRequest.h 38 PseudoStyleRequest(PseudoId pseudoId, RenderScrollbar* scrollbar = 0, ScrollbarPart scrollbarPart = NoPart)
42 , scrollbar(scrollbar)
50 , scrollbar(0)
63 RenderScrollbar* scrollbar; member in class:blink::PseudoStyleRequest
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebScrollbarThemeClientImpl.cpp 34 WebScrollbarThemeClientImpl::WebScrollbarThemeClientImpl(WebScrollbar* scrollbar)
35 : m_scrollbar(scrollbar)
77 // Unused by Chromium scrollbar themes.
84 // Unused by Chromium scrollbar themes.
91 // Unused by Chromium scrollbar themes.
102 // Unused by Chromium scrollbar themes.
108 // Unused by Chromium scrollbar themes.
133 // Unused by Chromium scrollbar themes.
140 // Unused by Chromium scrollbar themes.
  /external/chromium_org/cc/layers/
painted_scrollbar_layer.h 9 #include "cc/input/scrollbar.h"
26 scoped_ptr<Scrollbar> scrollbar,
51 PaintedScrollbarLayer(scoped_ptr<Scrollbar> scrollbar, int scroll_layer_id);
81 scoped_ptr<Scrollbar> scrollbar_;
  /external/chromium_org/cc/input/
scrollbar.h 22 class Scrollbar {
24 virtual ~Scrollbar() {}
  /external/chromium_org/ppapi/tests/
test_scrollbar.h 27 virtual void ScrollbarValueChanged(pp::Scrollbar_Dev scrollbar,
29 virtual void ScrollbarOverlayChanged(pp::Scrollbar_Dev scrollbar,
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbarTheme.h 45 virtual bool shouldCenterOnThumb(ScrollbarThemeClient* scrollbar, const PlatformMouseEvent& event) OVERRIDE { return ScrollbarTheme::theme()->shouldCenterOnThumb(scrollbar, event); }
46 virtual bool shouldSnapBackToDragOrigin(ScrollbarThemeClient* scrollbar, const PlatformMouseEvent& event) OVERRIDE { return ScrollbarTheme::theme()->shouldSnapBackToDragOrigin(scrollbar, event); }
51 virtual void registerScrollbar(ScrollbarThemeClient* scrollbar) OVERRIDE { return ScrollbarTheme::theme()->registerScrollbar(scrollbar); }
52 virtual void unregisterScrollbar(ScrollbarThemeClient* scrollbar) OVERRIDE { return ScrollbarTheme::theme()->unregisterScrollbar(scrollbar); }
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ScrollAnimatorMac.h 49 class Scrollbar;
104 virtual void mouseEnteredScrollbar(Scrollbar*) const OVERRIDE;
105 virtual void mouseExitedScrollbar(Scrollbar*) const OVERRIDE;
117 virtual void didAddVerticalScrollbar(Scrollbar*) OVERRIDE;
118 virtual void willRemoveVerticalScrollbar(Scrollbar*) OVERRIDE;
119 virtual void didAddHorizontalScrollbar(Scrollbar*) OVERRIDE;
120 virtual void willRemoveHorizontalScrollbar(Scrollbar*) OVERRIDE;
122 virtual bool shouldScrollbarParticipateInHitTesting(Scrollbar*) OVERRIDE;

Completed in 541 milliseconds

12 3 4 5 6 7 8 91011>>