Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Unified Diff: views/controls/scrollbar/base_scroll_bar_thumb.cc

Issue 7669028: Adding a Views scrollbar implementation. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Refactored the bitmap code to be shared with the native_scroll_bar_views Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: views/controls/scrollbar/base_scroll_bar_thumb.cc
diff --git a/views/controls/scrollbar/base_scroll_bar_thumb.cc b/views/controls/scrollbar/base_scroll_bar_thumb.cc
new file mode 100644
index 0000000000000000000000000000000000000000..bbd42f9ef230d6833b1aa115c6d4043c0183e119
--- /dev/null
+++ b/views/controls/scrollbar/base_scroll_bar_thumb.cc
@@ -0,0 +1,127 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "views/controls/scrollbar/base_scroll_bar_thumb.h"
+
+#include "views/controls/scrollbar/base_scroll_bar.h"
+#include "ui/gfx/canvas.h"
+#include "ui/gfx/rect.h"
+
+namespace {
+// The distance the mouse can be dragged outside the bounds of the thumb during
+// dragging before the scrollbar will snap back to its regular position.
+static const int kScrollThumbDragOutSnap = 100;
+}
+
+namespace views {
+
+BaseScrollBarThumb::BaseScrollBarThumb(BaseScrollBar* scroll_bar)
+ : scroll_bar_(scroll_bar),
+ drag_start_position_(-1),
+ mouse_offset_(-1),
+ state_(CustomButton::BS_NORMAL) {
+}
+
+BaseScrollBarThumb::~BaseScrollBarThumb() {
+}
+
+void BaseScrollBarThumb::SetSize(int size) {
+ // Make sure the thumb is never sized smaller than its minimum possible
+ // display size.
+ gfx::Size prefsize = GetPreferredSize();
+ size = std::max(size, scroll_bar_->IsHorizontal() ? prefsize.width() :
+ prefsize.height());
+ gfx::Rect thumb_bounds = bounds();
+ if (scroll_bar_->IsHorizontal()) {
+ thumb_bounds.set_width(size);
+ } else {
+ thumb_bounds.set_height(size);
+ }
+ SetBoundsRect(thumb_bounds);
+}
+
+int BaseScrollBarThumb::GetSize() const {
+ if (scroll_bar_->IsHorizontal())
+ return width();
+ return height();
+}
+
+void BaseScrollBarThumb::SetPosition(int position) {
+ gfx::Rect thumb_bounds = bounds();
+ gfx::Rect track_bounds = scroll_bar_->GetTrackBounds();
+ if (scroll_bar_->IsHorizontal()) {
+ thumb_bounds.set_x(track_bounds.x() + position);
+ } else {
+ thumb_bounds.set_y(track_bounds.y() + position);
+ }
+ SetBoundsRect(thumb_bounds);
+}
+
+int BaseScrollBarThumb::GetPosition() const {
+ gfx::Rect track_bounds = scroll_bar_->GetTrackBounds();
+ if (scroll_bar_->IsHorizontal())
+ return x() - track_bounds.x();
+ return y() - track_bounds.y();
+}
+
+void BaseScrollBarThumb::OnMouseEntered(const MouseEvent& event) {
+ SetState(CustomButton::BS_HOT);
+}
+
+void BaseScrollBarThumb::OnMouseExited(const MouseEvent& event) {
+ SetState(CustomButton::BS_NORMAL);
+}
+
+bool BaseScrollBarThumb::OnMousePressed(const MouseEvent& event) {
+ mouse_offset_ = scroll_bar_->IsHorizontal() ? event.x() : event.y();
+ drag_start_position_ = GetPosition();
+ SetState(CustomButton::BS_PUSHED);
+ return true;
+}
+
+bool BaseScrollBarThumb::OnMouseDragged(const MouseEvent& event) {
+ // If the user moves the mouse more than |kScrollThumbDragOutSnap| outside
+ // the bounds of the thumb, the scrollbar will snap the scroll back to the
+ // point it was at before the drag began.
+ if (scroll_bar_->IsHorizontal()) {
+ if ((event.y() < y() - kScrollThumbDragOutSnap) ||
+ (event.y() > (y() + height() + kScrollThumbDragOutSnap))) {
+ scroll_bar_->ScrollToThumbPosition(drag_start_position_, false);
+ return true;
+ }
+ } else {
+ if ((event.x() < x() - kScrollThumbDragOutSnap) ||
+ (event.x() > (x() + width() + kScrollThumbDragOutSnap))) {
+ scroll_bar_->ScrollToThumbPosition(drag_start_position_, false);
+ return true;
+ }
+ }
+ if (scroll_bar_->IsHorizontal()) {
+ int thumb_x = event.x() - mouse_offset_;
+ scroll_bar_->ScrollToThumbPosition(GetPosition() + thumb_x, false);
+ } else {
+ int thumb_y = event.y() - mouse_offset_;
+ scroll_bar_->ScrollToThumbPosition(GetPosition() + thumb_y, false);
+ }
+ return true;
+}
+
+void BaseScrollBarThumb::OnMouseReleased(const MouseEvent& event) {
+ OnMouseCaptureLost();
+}
+
+void BaseScrollBarThumb::OnMouseCaptureLost() {
+ SetState(CustomButton::BS_HOT);
+}
+
+CustomButton::ButtonState BaseScrollBarThumb::GetState() const {
+ return state_;
+}
+
+void BaseScrollBarThumb::SetState(CustomButton::ButtonState state) {
+ state_ = state;
+ SchedulePaint();
+}
+
+} // namespace views

Powered by Google App Engine
This is Rietveld 408576698