OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ui/views/examples/scroll_view_example.h" | 5 #include "ui/views/examples/scroll_view_example.h" |
6 | 6 |
7 #include "base/strings/stringprintf.h" | 7 #include "base/strings/stringprintf.h" |
8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "ui/views/background.h" | 9 #include "ui/views/background.h" |
10 #include "ui/views/controls/button/label_button.h" | 10 #include "ui/views/controls/button/label_button.h" |
11 #include "ui/views/controls/button/radio_button.h" | 11 #include "ui/views/controls/button/radio_button.h" |
12 #include "ui/views/layout/grid_layout.h" | 12 #include "ui/views/layout/grid_layout.h" |
13 #include "ui/views/view.h" | 13 #include "ui/views/view.h" |
14 | 14 |
15 using base::ASCIIToUTF16; | 15 using base::ASCIIToUTF16; |
16 | 16 |
17 namespace views { | 17 namespace views { |
18 namespace examples { | 18 namespace examples { |
19 | 19 |
20 // ScrollView's content, which draws gradient color on background. | 20 // ScrollView's content, which draws gradient color on background. |
21 // TODO(oshima): add child views as well. | 21 // TODO(oshima): add child views as well. |
22 class ScrollViewExample::ScrollableView : public View { | 22 class ScrollViewExample::ScrollableView : public View { |
23 public: | 23 public: |
24 ScrollableView() { | 24 ScrollableView() { |
25 SetColor(SK_ColorRED, SK_ColorCYAN); | 25 SetColor(SK_ColorRED, SK_ColorCYAN); |
26 AddChildView(new LabelButton(NULL, ASCIIToUTF16("Button"))); | 26 AddChildView(new LabelButton(NULL, ASCIIToUTF16("Button"))); |
27 AddChildView(new RadioButton(ASCIIToUTF16("Radio Button"), 0)); | 27 AddChildView(new RadioButton(ASCIIToUTF16("Radio Button"), 0)); |
28 } | 28 } |
29 | 29 |
30 virtual gfx::Size GetPreferredSize() OVERRIDE { | 30 virtual gfx::Size GetPreferredSize() const OVERRIDE { |
31 return gfx::Size(width(), height()); | 31 return gfx::Size(width(), height()); |
32 } | 32 } |
33 | 33 |
34 void SetColor(SkColor from, SkColor to) { | 34 void SetColor(SkColor from, SkColor to) { |
35 set_background(Background::CreateVerticalGradientBackground(from, to)); | 35 set_background(Background::CreateVerticalGradientBackground(from, to)); |
36 } | 36 } |
37 | 37 |
38 void PlaceChildY(int index, int y) { | 38 void PlaceChildY(int index, int y) { |
39 View* view = child_at(index); | 39 View* view = child_at(index); |
40 gfx::Size size = view->GetPreferredSize(); | 40 gfx::Size size = view->GetPreferredSize(); |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 scrollable_->SetColor(SK_ColorYELLOW, SK_ColorGREEN); | 108 scrollable_->SetColor(SK_ColorYELLOW, SK_ColorGREEN); |
109 } else if (sender == scroll_to_) { | 109 } else if (sender == scroll_to_) { |
110 scroll_view_->contents()->ScrollRectToVisible( | 110 scroll_view_->contents()->ScrollRectToVisible( |
111 gfx::Rect(20, 500, 1000, 500)); | 111 gfx::Rect(20, 500, 1000, 500)); |
112 } | 112 } |
113 scroll_view_->Layout(); | 113 scroll_view_->Layout(); |
114 } | 114 } |
115 | 115 |
116 } // namespace examples | 116 } // namespace examples |
117 } // namespace views | 117 } // namespace views |
OLD | NEW |