Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(224)

Side by Side Diff: views/examples/combobox_example.h

Issue 347010: Fixed view example. It was failing because some of view classes requires WidgetGTK in (Closed)
Patch Set: revert unintentional change Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « views/examples/button_example.h ('k') | views/examples/example_base.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_COMBOBOX_EXAMPLE_H_ 5 #ifndef VIEWS_EXAMPLES_COMBOBOX_EXAMPLE_H_
6 #define VIEWS_EXAMPLES_COMBOBOX_EXAMPLE_H_ 6 #define VIEWS_EXAMPLES_COMBOBOX_EXAMPLE_H_
7 7
8 #include "app/combobox_model.h" 8 #include "app/combobox_model.h"
9 #include "base/string_util.h" 9 #include "base/string_util.h"
10 #include "views/controls/combobox/combobox.h" 10 #include "views/controls/combobox/combobox.h"
11 #include "views/examples/example_base.h" 11 #include "views/examples/example_base.h"
12 #include "views/fill_layout.h"
12 13
13 namespace examples { 14 namespace examples {
14 15
15 // ComboboxExample 16 // ComboboxExample
16 class ComboboxExample : public ExampleBase, public views::Combobox::Listener { 17 class ComboboxExample : public ExampleBase, public views::Combobox::Listener {
17 public: 18 public:
18 explicit ComboboxExample(ExamplesMain* main) : ExampleBase(main) { 19 explicit ComboboxExample(ExamplesMain* main) : ExampleBase(main) {
19 combobox_ = new views::Combobox(new ComboboxModelExample()); 20 combobox_ = new views::Combobox(new ComboboxModelExample());
20 combobox_->set_listener(this); 21 combobox_->set_listener(this);
21 } 22 }
22 virtual ~ComboboxExample() {} 23 virtual ~ComboboxExample() {}
23 24
24 virtual std::wstring GetExampleTitle() { 25 virtual std::wstring GetExampleTitle() {
25 return L"Combo Box"; 26 return L"Combo Box";
26 } 27 }
27 28
28 virtual views::View* GetExampleView() { 29 virtual void CreateExampleView(views::View* container) {
29 return combobox_; 30 container->SetLayoutManager(new views::FillLayout);
31 container->AddChildView(combobox_);
30 } 32 }
31 33
32 private: 34 private:
33 // An sample combobox model that generates list of "Item <index>". 35 // An sample combobox model that generates list of "Item <index>".
34 class ComboboxModelExample : public ComboboxModel { 36 class ComboboxModelExample : public ComboboxModel {
35 public: 37 public:
36 ComboboxModelExample() {} 38 ComboboxModelExample() {}
37 virtual ~ComboboxModelExample() {} 39 virtual ~ComboboxModelExample() {}
38 40
39 virtual int GetItemCount() { 41 virtual int GetItemCount() {
(...skipping 19 matching lines...) Expand all
59 // This test only control. 61 // This test only control.
60 views::Combobox* combobox_; 62 views::Combobox* combobox_;
61 63
62 DISALLOW_COPY_AND_ASSIGN(ComboboxExample); 64 DISALLOW_COPY_AND_ASSIGN(ComboboxExample);
63 }; 65 };
64 66
65 } // namespace examples 67 } // namespace examples
66 68
67 #endif // VIEWS_EXAMPLES_COMBOBOX_EXAMPLE_H_ 69 #endif // VIEWS_EXAMPLES_COMBOBOX_EXAMPLE_H_
68 70
69
OLDNEW
« no previous file with comments | « views/examples/button_example.h ('k') | views/examples/example_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698