| OLD | NEW |
| (Empty) |
| 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. | |
| 4 | |
| 5 #ifndef ASH_COMMON_SYSTEM_TRAY_FIXED_SIZED_SCROLL_VIEW_H_ | |
| 6 #define ASH_COMMON_SYSTEM_TRAY_FIXED_SIZED_SCROLL_VIEW_H_ | |
| 7 | |
| 8 #include "base/macros.h" | |
| 9 #include "ui/views/controls/scroll_view.h" | |
| 10 | |
| 11 namespace ash { | |
| 12 | |
| 13 // A custom scroll-view that has a specified dimension. | |
| 14 // TODO(estade): can we get rid of this class? In MD, it hardly differs in | |
| 15 // behavior from ScrollView. | |
| 16 class FixedSizedScrollView : public views::ScrollView { | |
| 17 public: | |
| 18 FixedSizedScrollView(); | |
| 19 ~FixedSizedScrollView() override; | |
| 20 | |
| 21 void SetContentsView(views::View* view); | |
| 22 | |
| 23 // Change the fixed size of the view. Invalidates the layout (by calling | |
| 24 // PreferredSizeChanged()). | |
| 25 void SetFixedSize(const gfx::Size& size); | |
| 26 | |
| 27 void set_fixed_size(const gfx::Size& size); | |
| 28 | |
| 29 // Overridden from views::View: | |
| 30 gfx::Size GetPreferredSize() const override; | |
| 31 void Layout() override; | |
| 32 | |
| 33 protected: | |
| 34 // Overridden from views::View: | |
| 35 void OnBoundsChanged(const gfx::Rect& previous_bounds) override; | |
| 36 | |
| 37 private: | |
| 38 gfx::Size fixed_size_; | |
| 39 | |
| 40 DISALLOW_COPY_AND_ASSIGN(FixedSizedScrollView); | |
| 41 }; | |
| 42 | |
| 43 } // namespace ash | |
| 44 | |
| 45 #endif // ASH_COMMON_SYSTEM_TRAY_FIXED_SIZED_SCROLL_VIEW_H_ | |
| OLD | NEW |