blob: 97d5ef54fd2adae103c582241a45e1eb0b272363 (
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
|
// Copyright (c) 2009 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.
#ifndef VIEWS_EXAMPLES_COMBOBOX_EXAMPLE_H_
#define VIEWS_EXAMPLES_COMBOBOX_EXAMPLE_H_
#include "app/combobox_model.h"
#include "base/string_util.h"
#include "views/controls/combobox/combobox.h"
#include "views/examples/example_base.h"
#include "views/fill_layout.h"
namespace examples {
// ComboboxExample
class ComboboxExample : public ExampleBase, public views::Combobox::Listener {
public:
explicit ComboboxExample(ExamplesMain* main) : ExampleBase(main) {
combobox_ = new views::Combobox(new ComboboxModelExample());
combobox_->set_listener(this);
combobox_->SetSelectedItem(3);
}
virtual ~ComboboxExample() {}
virtual std::wstring GetExampleTitle() {
return L"Combo Box";
}
virtual void CreateExampleView(views::View* container) {
container->SetLayoutManager(new views::FillLayout);
container->AddChildView(combobox_);
}
private:
// An sample combobox model that generates list of "Item <index>".
class ComboboxModelExample : public ComboboxModel {
public:
ComboboxModelExample() {}
virtual ~ComboboxModelExample() {}
virtual int GetItemCount() {
return 10;
}
virtual std::wstring GetItemAt(int index) {
return StringPrintf(L"Item %d", index);
}
private:
DISALLOW_COPY_AND_ASSIGN(ComboboxModelExample);
};
// Lister implementation.
virtual void ItemChanged(views::Combobox* combo_box,
int prev_index,
int new_index) {
PrintStatus(L"Selected: index=%d, label=%ls",
new_index, combo_box->model()->GetItemAt(new_index).c_str());
}
// This test only control.
views::Combobox* combobox_;
DISALLOW_COPY_AND_ASSIGN(ComboboxExample);
};
} // namespace examples
#endif // VIEWS_EXAMPLES_COMBOBOX_EXAMPLE_H_
|