Home
last modified time | relevance | path

Searched refs:track_bounds (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/ui/views/controls/scrollbar/
Dbitmap_scroll_bar.cc222 gfx::Rect track_bounds(prefsize.width(), 0, new_width, prefsize.height()); in GetTrackBounds() local
223 return track_bounds; in GetTrackBounds()
227 gfx::Rect track_bounds(0, prefsize.height(), prefsize.width(), in GetTrackBounds() local
229 return track_bounds; in GetTrackBounds()
263 gfx::Rect track_bounds = GetTrackBounds(); in Layout() local
279 if ((IsHorizontal() && (track_bounds.width() < thumb_prefsize.width()) || in Layout()
280 (!IsHorizontal() && (track_bounds.height() < thumb_prefsize.height())))) { in Layout()
292 gfx::Rect track_bounds = GetTrackBounds(); in OnPaint() local
294 track_bounds.x(), track_bounds.y(), in OnPaint()
295 track_bounds.width(), track_bounds.height()); in OnPaint()
Dbase_scroll_bar_thumb.cc52 gfx::Rect track_bounds = scroll_bar_->GetTrackBounds(); in SetPosition() local
54 thumb_bounds.set_x(track_bounds.x() + position); in SetPosition()
56 thumb_bounds.set_y(track_bounds.y() + position); in SetPosition()
62 gfx::Rect track_bounds = scroll_bar_->GetTrackBounds(); in GetPosition() local
64 return x() - track_bounds.x(); in GetPosition()
65 return y() - track_bounds.y(); in GetPosition()
Dbase_scroll_bar.cc475 gfx::Rect track_bounds = GetTrackBounds(); in GetTrackSize() local
476 return IsHorizontal() ? track_bounds.width() : track_bounds.height(); in GetTrackSize()