Separate Simple Backend creation from initialization.
[chromium-blink-merge.git] / ash / system / tray / fixed_sized_scroll_view.h
blobb8cf6ab74a19712718ecab8b02af5e1ff1f99995
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 #ifndef ASH_SYSTEM_TRAY_FIXED_SIZED_SCROLL_VIEW_H_
6 #define ASH_SYSTEM_TRAY_FIXED_SIZED_SCROLL_VIEW_H_
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "ui/views/controls/scroll_view.h"
12 namespace ash {
13 namespace internal {
15 // A custom scroll-view that has a specified dimension.
16 class FixedSizedScrollView : public views::ScrollView {
17 public:
18 FixedSizedScrollView();
19 virtual ~FixedSizedScrollView();
21 void SetContentsView(views::View* view);
23 // Change the fixed size of the view. Invalidates the layout (by calling
24 // PreferredSizeChanged()).
25 void SetFixedSize(const gfx::Size& size);
27 void set_fixed_size(const gfx::Size& size) { fixed_size_ = size; }
29 // Overridden from views::View:
30 virtual gfx::Size GetPreferredSize() OVERRIDE;
31 virtual void Layout() OVERRIDE;
32 virtual void OnMouseEntered(const ui::MouseEvent& event) OVERRIDE;
34 protected:
35 // Overridden from views::View:
36 virtual void OnBoundsChanged(const gfx::Rect& previous_bounds) OVERRIDE;
37 virtual void OnPaintFocusBorder(gfx::Canvas* canvas) OVERRIDE;
39 private:
40 gfx::Size fixed_size_;
42 DISALLOW_COPY_AND_ASSIGN(FixedSizedScrollView);
45 } // namespace internal
46 } // namespace ash
48 #endif // ASH_SYSTEM_TRAY_FIXED_SIZED_SCROLL_VIEW_H_