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

Unified Diff: views/examples/textfield_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, 2 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « views/examples/tabbed_pane_example.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/examples/textfield_example.h
diff --git a/views/examples/textfield_example.h b/views/examples/textfield_example.h
index e30f3f9d7b4a5e7b6633945e7ab95ecf598cf019..82b7b791118701beaad8c3e576fcf32d37884fd9 100644
--- a/views/examples/textfield_example.h
+++ b/views/examples/textfield_example.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyight (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.
@@ -17,11 +17,19 @@ namespace examples {
using views::Textfield;
// TextfieldExample mimics login screen.
-class TextfieldExample : protected ExampleBase,
- private Textfield::Controller,
- private views::ButtonListener {
+class TextfieldExample : public ExampleBase,
+ public Textfield::Controller,
+ public views::ButtonListener {
public:
- explicit TextfieldExample(ExamplesMain* main) : ExampleBase(main) {
+ explicit TextfieldExample(ExamplesMain* main) : ExampleBase(main) {}
+
+ virtual ~TextfieldExample() {}
+
+ virtual std::wstring GetExampleTitle() {
+ return L"Textfield";
+ }
+
+ virtual void CreateExampleView(views::View* container) {
name_ = new Textfield();
password_ = new Textfield(Textfield::STYLE_PASSWORD);
show_password_ = new views::TextButton(this, L"Show password");
@@ -30,9 +38,8 @@ class TextfieldExample : protected ExampleBase,
name_->SetController(this);
password_->SetController(this);
- container_ = new views::View();
- views::GridLayout* layout = new views::GridLayout(container_);
- container_->SetLayoutManager(layout);
+ views::GridLayout* layout = new views::GridLayout(container);
+ container->SetLayoutManager(layout);
views::ColumnSet* column_set = layout->AddColumnSet(0);
column_set->AddColumn(views::GridLayout::LEADING, views::GridLayout::FILL,
@@ -53,16 +60,6 @@ class TextfieldExample : protected ExampleBase,
layout->AddView(append_);
}
- virtual ~TextfieldExample() {}
-
- virtual std::wstring GetExampleTitle() {
- return L"Textfield";
- }
-
- virtual views::View* GetExampleView() {
- return container_;
- }
-
private:
// Textfield::Controller implementations:
// This method is called whenever the text in the field changes.
@@ -95,9 +92,6 @@ class TextfieldExample : protected ExampleBase,
}
}
- // The view containing this test's controls.
- views::View* container_;
-
// Textfields for name and password.
views::Textfield* name_;
views::Textfield* password_;
@@ -113,3 +107,4 @@ class TextfieldExample : protected ExampleBase,
} // namespace examples
#endif // VIEWS_EXAMPLES_TEXTFIELD_EXAMPLE_H_
+
« no previous file with comments | « views/examples/tabbed_pane_example.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698