summaryrefslogtreecommitdiffstats
path: root/views/examples/radio_button_example.cc
blob: 546a0eee7004ab40a98187c4e4e9e1d964d0c664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "views/examples/radio_button_example.h"

#include "base/stringprintf.h"
#include "views/layout/grid_layout.h"
#include "views/view.h"

namespace examples {

RadioButtonExample::RadioButtonExample(ExamplesMain* main)
    : ExampleBase(main) {
}

RadioButtonExample::~RadioButtonExample() {
}

std::wstring RadioButtonExample::GetExampleTitle() {
  return L"Radio Button";
}

void RadioButtonExample::CreateExampleView(views::View* container) {
  select_ = new views::TextButton(this, L"Select");
  status_ = new views::TextButton(this, L"Show Status");

  int group = 1;
  for (int i = 0; i < arraysize(radio_buttons_); ++i) {
    radio_buttons_[i] = new views::RadioButton(
        base::StringPrintf( L"Radio %d in group %d", i + 1, group), group);
  }

  ++group;
  for (int i = 0; i < arraysize(radio_buttons_nt_); ++i) {
    radio_buttons_nt_[i] = new views::RadioButtonNt(
        base::StringPrintf( L"Radio %d in group %d", i + 1, group), group);
    radio_buttons_nt_[i]->SetFocusable(true);
  }

  views::GridLayout* layout = new views::GridLayout(container);
  container->SetLayoutManager(layout);

  views::ColumnSet* column_set = layout->AddColumnSet(0);
  column_set->AddColumn(views::GridLayout::FILL, views::GridLayout::FILL,
                        1.0f, views::GridLayout::USE_PREF, 0, 0);
  for (int i = 0; i < arraysize(radio_buttons_); i++) {
    layout->StartRow(0, 0);
    layout->AddView(radio_buttons_[i]);
  }
  for (int i = 0; i < arraysize(radio_buttons_nt_); i++) {
    layout->StartRow(0, 0);
    layout->AddView(radio_buttons_nt_[i]);
  }
  layout->StartRow(0, 0);
  layout->AddView(select_);
  layout->StartRow(0, 0);
  layout->AddView(status_);
}

void RadioButtonExample::ButtonPressed(views::Button* sender,
                                       const views::Event& event) {
  if (sender == select_) {
    radio_buttons_[0]->SetChecked(true);
    radio_buttons_nt_[2]->SetChecked(true);
  } else if (sender == status_) {
    // Show the state of radio buttons.
    PrintStatus(L"Group1: 1:%ls, 2:%ls, 3:%ls   Group2: 1:%ls, 2:%ls, 3:%ls",
        IntToOnOff(radio_buttons_[0]->checked()),
        IntToOnOff(radio_buttons_[1]->checked()),
        IntToOnOff(radio_buttons_[2]->checked()),
        IntToOnOff(radio_buttons_nt_[0]->checked()),
        IntToOnOff(radio_buttons_nt_[1]->checked()),
        IntToOnOff(radio_buttons_nt_[2]->checked()));
  }
}

}  // namespace examples