OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #ifndef VIEWS_EXAMPLES_RADIO_BUTTON_EXAMPLE_H_ | 5 #ifndef VIEWS_EXAMPLES_RADIO_BUTTON_EXAMPLE_H_ |
6 #define VIEWS_EXAMPLES_RADIO_BUTTON_EXAMPLE_H_ | 6 #define VIEWS_EXAMPLES_RADIO_BUTTON_EXAMPLE_H_ |
7 | 7 |
| 8 #include "base/compiler_specific.h" |
8 #include "base/string_util.h" | 9 #include "base/string_util.h" |
9 #include "views/controls/button/radio_button.h" | 10 #include "views/controls/button/radio_button.h" |
10 #include "views/controls/button/text_button.h" | 11 #include "views/controls/button/text_button.h" |
11 #include "views/controls/tabbed_pane/tabbed_pane.h" | 12 #include "views/controls/tabbed_pane/tabbed_pane.h" |
12 #include "views/examples/example_base.h" | 13 #include "views/examples/example_base.h" |
13 | 14 |
14 namespace examples { | 15 namespace examples { |
15 | 16 |
16 class RadioButtonExample : protected ExampleBase, | 17 class RadioButtonExample : protected ExampleBase, |
17 private views::ButtonListener { | 18 private views::ButtonListener { |
18 public: | 19 public: |
19 RadioButtonExample(views::TabbedPane* tabbed_pane, views::Label* message) | 20 RadioButtonExample(views::TabbedPane* tabbed_pane, views::Label* message) |
20 : ExampleBase(message), | 21 : ExampleBase(message), |
21 select_(new views::TextButton(this, L"Select")), | 22 ALLOW_THIS_IN_INITIALIZER_LIST( |
22 status_(new views::TextButton(this, L"Show Status")) { | 23 select_(new views::TextButton(this, L"Select"))), |
| 24 ALLOW_THIS_IN_INITIALIZER_LIST( |
| 25 status_(new views::TextButton(this, L"Show Status"))) { |
23 int all = arraysize(radio_buttons_); | 26 int all = arraysize(radio_buttons_); |
24 | 27 |
25 // divide buttons into 2 groups | 28 // divide buttons into 2 groups |
26 int group_count = all / 2; | 29 int group_count = all / 2; |
27 for (int i = 0; i < all; i++) { | 30 for (int i = 0; i < all; i++) { |
28 int group = i / group_count; | 31 int group = i / group_count; |
29 radio_buttons_[i] = new views::RadioButton( | 32 radio_buttons_[i] = new views::RadioButton( |
30 StringPrintf(L"Radio %d in group %d", (i % group_count + 1), group), | 33 StringPrintf(L"Radio %d in group %d", (i % group_count + 1), group), |
31 group); | 34 group); |
32 } | 35 } |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 // Control button to select radio buttons, and show the status of buttons. | 80 // Control button to select radio buttons, and show the status of buttons. |
78 views::TextButton* select_, *status_; | 81 views::TextButton* select_, *status_; |
79 | 82 |
80 DISALLOW_COPY_AND_ASSIGN(RadioButtonExample); | 83 DISALLOW_COPY_AND_ASSIGN(RadioButtonExample); |
81 }; | 84 }; |
82 | 85 |
83 } // namespace examples | 86 } // namespace examples |
84 | 87 |
85 #endif // VIEWS_EXAMPLES_RADIO_BUTTON_EXAMPLE_H_ | 88 #endif // VIEWS_EXAMPLES_RADIO_BUTTON_EXAMPLE_H_ |
86 | 89 |
OLD | NEW |