Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / ash / system / tray / fixed_sized_scroll_view.cc
blobc9415d40810f8c74f4abc95d02d356d008e68ed4
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ash/system/tray/fixed_sized_scroll_view.h"
7 namespace ash {
9 FixedSizedScrollView::FixedSizedScrollView() {
10 set_notify_enter_exit_on_child(true);
13 FixedSizedScrollView::~FixedSizedScrollView() {
16 void FixedSizedScrollView::SetContentsView(views::View* view) {
17 SetContents(view);
18 view->SetBoundsRect(gfx::Rect(view->GetPreferredSize()));
21 void FixedSizedScrollView::SetFixedSize(const gfx::Size& size) {
22 if (fixed_size_ == size)
23 return;
24 fixed_size_ = size;
25 PreferredSizeChanged();
28 gfx::Size FixedSizedScrollView::GetPreferredSize() const {
29 gfx::Size size = fixed_size_.IsEmpty() ?
30 contents()->GetPreferredSize() : fixed_size_;
31 gfx::Insets insets = GetInsets();
32 size.Enlarge(insets.width(), insets.height());
33 return size;
36 void FixedSizedScrollView::Layout() {
37 gfx::Rect bounds = gfx::Rect(contents()->GetPreferredSize());
38 bounds.set_width(std::max(0, width() - GetScrollBarWidth()));
39 contents()->SetBoundsRect(bounds);
41 views::ScrollView::Layout();
42 if (!vertical_scroll_bar()->visible()) {
43 gfx::Rect bounds = contents()->bounds();
44 bounds.set_width(bounds.width() + GetScrollBarWidth());
45 contents()->SetBoundsRect(bounds);
49 void FixedSizedScrollView::OnBoundsChanged(const gfx::Rect& previous_bounds) {
50 gfx::Rect bounds = gfx::Rect(contents()->GetPreferredSize());
51 bounds.set_width(std::max(0, width() - GetScrollBarWidth()));
52 contents()->SetBoundsRect(bounds);
55 } // namespace ash