HomeSort by relevance Sort by last modified time
    Searched refs:BaseScrollBar (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/ui/views/controls/scrollbar/
base_scroll_bar_thumb.h 19 class BaseScrollBar;
31 explicit BaseScrollBarThumb(BaseScrollBar* scroll_bar);
63 BaseScrollBar* scroll_bar() { return scroll_bar_; }
66 // The BaseScrollBar that owns us.
67 BaseScrollBar* scroll_bar_;
base_scroll_bar.cc 36 // BaseScrollBar, public:
38 BaseScrollBar::BaseScrollBar(bool horizontal, BaseScrollBarThumb* thumb)
46 repeater_(base::Bind(&BaseScrollBar::TrackClicked,
55 void BaseScrollBar::ScrollByAmount(ScrollAmount amount) {
87 BaseScrollBar::~BaseScrollBar() {
90 void BaseScrollBar::ScrollToThumbPosition(int thumb_position,
103 bool BaseScrollBar::ScrollByContentsOffset(int contents_offset) {
118 void BaseScrollBar::OnThumbStateChanged(CustomButton::ButtonState old_state
    [all...]
kennedy_scroll_bar.h 15 class VIEWS_EXPORT KennedyScrollBar : public BaseScrollBar {
21 // BaseScrollBar overrides:
scrollbar_unittest.cc 90 BaseScrollBar* scrollbar_;
134 scrollbar_->ScrollByAmount(BaseScrollBar::SCROLL_NEXT_LINE);
137 scrollbar_->ScrollByAmount(BaseScrollBar::SCROLL_PREV_LINE);
140 scrollbar_->ScrollByAmount(BaseScrollBar::SCROLL_NEXT_PAGE);
143 scrollbar_->ScrollByAmount(BaseScrollBar::SCROLL_PREV_PAGE);
base_scroll_bar.h 23 // BaseScrollBar
26 class VIEWS_EXPORT BaseScrollBar : public ScrollBar,
31 BaseScrollBar(bool horizontal, BaseScrollBarThumb* thumb);
32 virtual ~BaseScrollBar();
181 DISALLOW_COPY_AND_ASSIGN(BaseScrollBar);
overlay_scroll_bar.h 14 class VIEWS_EXPORT OverlayScrollBar : public BaseScrollBar {
20 // BaseScrollBar overrides:
kennedy_scroll_bar.cc 26 explicit KennedyScrollBarThumb(BaseScrollBar* scroll_bar);
38 KennedyScrollBarThumb::KennedyScrollBarThumb(BaseScrollBar* scroll_bar)
61 : BaseScrollBar(horizontal, new KennedyScrollBarThumb(this)) {
bitmap_scroll_bar.h 26 class VIEWS_EXPORT BitmapScrollBar : public BaseScrollBar,
native_scroll_bar_views.h 25 class VIEWS_EXPORT NativeScrollBarViews : public BaseScrollBar,
45 // BaseScrollBar overrides:
overlay_scroll_bar.cc 28 explicit OverlayScrollBarThumb(BaseScrollBar* scroll_bar);
44 OverlayScrollBarThumb::OverlayScrollBarThumb(BaseScrollBar* scroll_bar)
88 : BaseScrollBar(horizontal, new OverlayScrollBarThumb(this)),
140 BaseScrollBar::OnGestureEvent(event);
native_scroll_bar_views.cc 54 explicit ScrollBarThumb(BaseScrollBar* scroll_bar);
157 ScrollBarThumb::ScrollBarThumb(BaseScrollBar* scroll_bar)
233 : BaseScrollBar(scroll_bar->IsHorizontal(),
337 return BaseScrollBar::GetPosition();
347 BaseScrollBar::Update(viewport_size, content_size, current_pos);
base_scroll_bar_thumb.cc 19 BaseScrollBarThumb::BaseScrollBarThumb(BaseScrollBar* scroll_bar)
bitmap_scroll_bar.cc 171 : BaseScrollBar(horizontal, new BitmapScrollBarThumb(this)),

Completed in 43 milliseconds