| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/message_box_example.h" | 5 #include "ui/views/examples/message_box_example.h" |
| 6 | 6 |
| 7 #include "base/utf_string_conversions.h" | 7 #include "base/utf_string_conversions.h" |
| 8 #include "ui/views/controls/message_box_view.h" | 8 #include "ui/views/controls/message_box_view.h" |
| 9 #include "ui/views/layout/grid_layout.h" | 9 #include "ui/views/layout/grid_layout.h" |
| 10 #include "ui/views/view.h" | 10 #include "ui/views/view.h" |
| 11 | 11 |
| 12 namespace views { | 12 namespace views { |
| 13 namespace examples { | 13 namespace examples { |
| 14 | 14 |
| 15 MessageBoxExample::MessageBoxExample() : ExampleBase("Message Box View") { | 15 MessageBoxExample::MessageBoxExample() : ExampleBase("Message Box View") { |
| 16 } | 16 } |
| 17 | 17 |
| 18 MessageBoxExample::~MessageBoxExample() { | 18 MessageBoxExample::~MessageBoxExample() { |
| 19 } | 19 } |
| 20 | 20 |
| 21 void MessageBoxExample::CreateExampleView(View* container) { | 21 void MessageBoxExample::CreateExampleView(View* container) { |
| 22 message_box_view_ = new MessageBoxView( | 22 message_box_view_ = new MessageBoxView( |
| 23 views::MessageBoxView::NO_OPTIONS, | 23 MessageBoxView::InitParams(ASCIIToUTF16("Hello, world!"))); |
| 24 ASCIIToUTF16("Message Box Message"), | |
| 25 ASCIIToUTF16("Default Prompt")); | |
| 26 status_ = new TextButton(this, ASCIIToUTF16("Show Status")); | 24 status_ = new TextButton(this, ASCIIToUTF16("Show Status")); |
| 27 toggle_ = new TextButton(this, ASCIIToUTF16("Toggle Checkbox")); | 25 toggle_ = new TextButton(this, ASCIIToUTF16("Toggle Checkbox")); |
| 28 | 26 |
| 29 GridLayout* layout = new GridLayout(container); | 27 GridLayout* layout = new GridLayout(container); |
| 30 container->SetLayoutManager(layout); | 28 container->SetLayoutManager(layout); |
| 31 | 29 |
| 32 message_box_view_->SetCheckBoxLabel(ASCIIToUTF16("Check Box")); | 30 message_box_view_->SetCheckBoxLabel(ASCIIToUTF16("Check Box")); |
| 33 | 31 |
| 34 const int message_box_column = 0; | 32 const int message_box_column = 0; |
| 35 ColumnSet* column_set = layout->AddColumnSet(message_box_column); | 33 ColumnSet* column_set = layout->AddColumnSet(message_box_column); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 58 PrintStatus(message_box_view_->IsCheckBoxSelected() ? | 56 PrintStatus(message_box_view_->IsCheckBoxSelected() ? |
| 59 "Check Box Selected" : "Check Box Not Selected"); | 57 "Check Box Selected" : "Check Box Not Selected"); |
| 60 } else if (sender == toggle_) { | 58 } else if (sender == toggle_) { |
| 61 message_box_view_->SetCheckBoxSelected( | 59 message_box_view_->SetCheckBoxSelected( |
| 62 !message_box_view_->IsCheckBoxSelected()); | 60 !message_box_view_->IsCheckBoxSelected()); |
| 63 } | 61 } |
| 64 } | 62 } |
| 65 | 63 |
| 66 } // namespace examples | 64 } // namespace examples |
| 67 } // namespace views | 65 } // namespace views |
| OLD | NEW |