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

Unified Diff: views/examples/progress_bar_example.h

Issue 8413004: views/examples: Add ProgressBar example. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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/examples_main.cc ('k') | views/examples/progress_bar_example.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/examples/progress_bar_example.h
diff --git a/views/examples/progress_bar_example.h b/views/examples/progress_bar_example.h
new file mode 100644
index 0000000000000000000000000000000000000000..1c30ea1ba22607901b7440ef0b19a48ca66efda9
--- /dev/null
+++ b/views/examples/progress_bar_example.h
@@ -0,0 +1,44 @@
+// 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.
+
+#ifndef VIEWS_EXAMPLES_PROGRESS_BAR_EXAMPLE_H_
+#define VIEWS_EXAMPLES_PROGRESS_BAR_EXAMPLE_H_
+#pragma once
+
+#include "base/basictypes.h"
+#include "base/compiler_specific.h"
+#include "views/controls/button/button.h"
+#include "views/examples/example_base.h"
+
+namespace views {
+class ProgressBar;
+}
+
+namespace examples {
+
+class ProgressBarExample : public ExampleBase,
+ public views::ButtonListener {
+ public:
+ explicit ProgressBarExample(ExamplesMain* main);
+ virtual ~ProgressBarExample();
+
+ // Overridden from ExampleBase:
+ virtual void CreateExampleView(views::View* container) OVERRIDE;
+
+ private:
+ // Overridden from views::ButtonListener:
+ virtual void ButtonPressed(views::Button* button,
+ const views::Event& event) OVERRIDE;
+
+ views::Button* minus_button_;
+ views::Button* plus_button_;
+ views::ProgressBar* progress_bar_;
+ double current_percent_;
+
+ DISALLOW_COPY_AND_ASSIGN(ProgressBarExample);
+};
+
+} // namespace examples
+
+#endif // VIEWS_EXAMPLES_PROGRESS_BAR_EXAMPLE_H_
« no previous file with comments | « views/examples/examples_main.cc ('k') | views/examples/progress_bar_example.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698