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_MESSAGE_BOX_EXAMPLE_H_ | 5 #ifndef VIEWS_EXAMPLES_MESSAGE_BOX_EXAMPLE_H_ |
6 #define VIEWS_EXAMPLES_MESSAGE_BOX_EXAMPLE_H_ | 6 #define VIEWS_EXAMPLES_MESSAGE_BOX_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/text_button.h" | 10 #include "views/controls/button/text_button.h" |
10 #include "views/controls/message_box_view.h" | 11 #include "views/controls/message_box_view.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 // A MessageBoxView example. This tests some of checkbox features | 17 // A MessageBoxView example. This tests some of checkbox features |
17 // as well. | 18 // as well. |
18 class MessageBoxExample : protected ExampleBase, private views::ButtonListener { | 19 class MessageBoxExample : protected ExampleBase, private views::ButtonListener { |
19 public: | 20 public: |
20 MessageBoxExample(views::TabbedPane* tabbed_pane, views::Label* message) | 21 MessageBoxExample(views::TabbedPane* tabbed_pane, views::Label* message) |
21 : ExampleBase(message), | 22 : ExampleBase(message), |
22 message_box_view_( | 23 message_box_view_( |
23 new MessageBoxView(0, L"Message Box Message", L"Default Prompt")), | 24 new MessageBoxView(0, L"Message Box Message", L"Default Prompt")), |
24 status_(new views::TextButton(this, L"Show Status")), | 25 ALLOW_THIS_IN_INITIALIZER_LIST( |
25 toggle_(new views::TextButton(this, L"Toggle Checkbox")) { | 26 status_(new views::TextButton(this, L"Show Status"))), |
| 27 ALLOW_THIS_IN_INITIALIZER_LIST( |
| 28 toggle_(new views::TextButton(this, L"Toggle Checkbox"))) { |
26 views::View* container = new views::View(); | 29 views::View* container = new views::View(); |
27 tabbed_pane->AddTab(L"Message Box View", container); | 30 tabbed_pane->AddTab(L"Message Box View", container); |
28 | 31 |
29 views::GridLayout* layout = new views::GridLayout(container); | 32 views::GridLayout* layout = new views::GridLayout(container); |
30 container->SetLayoutManager(layout); | 33 container->SetLayoutManager(layout); |
31 | 34 |
32 message_box_view_->SetCheckBoxLabel(L"Check Box"); | 35 message_box_view_->SetCheckBoxLabel(L"Check Box"); |
33 | 36 |
34 const int message_box_column = 0; | 37 const int message_box_column = 0; |
35 views::ColumnSet* column_set = layout->AddColumnSet(message_box_column); | 38 views::ColumnSet* column_set = layout->AddColumnSet(message_box_column); |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 // message box. | 77 // message box. |
75 views::Button* status_, *toggle_; | 78 views::Button* status_, *toggle_; |
76 | 79 |
77 DISALLOW_COPY_AND_ASSIGN(MessageBoxExample); | 80 DISALLOW_COPY_AND_ASSIGN(MessageBoxExample); |
78 }; | 81 }; |
79 | 82 |
80 } // namespace examples | 83 } // namespace examples |
81 | 84 |
82 #endif // VIEWS_EXAMPLES_MESSAGE_BOX_EXAMPLE_H_ | 85 #endif // VIEWS_EXAMPLES_MESSAGE_BOX_EXAMPLE_H_ |
83 | 86 |
OLD | NEW |