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

Unified Diff: chrome/browser/ui/views/payments/view_stack.h

Issue 2528503002: [WebPayments] Implement state transitions in desktop WebPayments dialog. (Closed)
Patch Set: Handle Layout while animating Created 4 years 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
Index: chrome/browser/ui/views/payments/view_stack.h
diff --git a/chrome/browser/ui/views/payments/view_stack.h b/chrome/browser/ui/views/payments/view_stack.h
new file mode 100644
index 0000000000000000000000000000000000000000..f29feac0cc005219d1eb95a62843e360a13b440e
--- /dev/null
+++ b/chrome/browser/ui/views/payments/view_stack.h
@@ -0,0 +1,65 @@
+// Copyright 2016 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 CHROME_BROWSER_UI_VIEWS_PAYMENTS_VIEW_STACK_H_
+#define CHROME_BROWSER_UI_VIEWS_PAYMENTS_VIEW_STACK_H_
+
+#include "ui/views/view.h"
+#include "ui/views/animation/bounds_animator.h"
+#include "ui/views/animation/bounds_animator_observer.h"
+
+// This view represents a stack of views that slide in over one another from
+// left to right. It manages the animation and lifetime of views that are
+// pushed and popped on it. To use this class, add it to a view hierarchy, and
+// call Push/Pop to animate views in and out.
+class ViewStack : public views::BoundsAnimatorObserver,
+ public views::View {
+ public:
+ ViewStack();
+ ~ViewStack() override;
+
+ // Adds a view to the stack and starts animating it in from the right. This
+ // takes ownership of the view and calls set_owned_by_client() on it.
+ // If |animate| is false, the view will simply be added to the hierarchy
+ // without the sliding animation.
+ void Push(std::unique_ptr<views::View> state, bool animate);
+
+ // Removes a view from the stack, animates it out of view, and makes sure
+ // it's properly deleted after the animation.
+ void Pop();
+
+ // views::View:
+ // The children of this view must not be able to process events when the views
+ // are being animated so this returns false when an animation is in progress.
+ bool CanProcessEventsWithinSubtree() const override;
+ void Layout() override;
+
+ private:
+ FRIEND_TEST_ALL_PREFIXES(
+ ViewStackTest, TestPopStateRemovesChildViewAndCleansUpState);
+ FRIEND_TEST_ALL_PREFIXES(ViewStackTest, TestDeletingViewCleansUpState);
+ FRIEND_TEST_ALL_PREFIXES(ViewStackTest, TestInitialStateAddedAsChildView);
+ FRIEND_TEST_ALL_PREFIXES(ViewStackTest, TestPushStateAddsViewToChildren);
+ FRIEND_TEST_ALL_PREFIXES(ViewStackTest, TestLayoutUpdatesAnimations);
+ friend class ViewStackTest;
+
+ // Returns the top state of the stack, used in tests.
+ views::View* top() { return stack_.back().get(); }
+
+ void UpdateAnimatorBounds(
+ views::BoundsAnimator* animator, const gfx::Rect& target);
+
+ // views::BoundsAnimatorObserver:
+ void OnBoundsAnimatorProgressed(views::BoundsAnimator* animator) override {}
+ void OnBoundsAnimatorDone(views::BoundsAnimator* animator) override;
+
+ std::vector<std::unique_ptr<views::View>> stack_;
+
+ std::unique_ptr<views::BoundsAnimator> slide_in_animator_;
+ std::unique_ptr<views::BoundsAnimator> slide_out_animator_;
+
+ DISALLOW_COPY_AND_ASSIGN(ViewStack);
+};
+
+#endif // CHROME_BROWSER_UI_VIEWS_PAYMENTS_VIEW_STACK_H_
« no previous file with comments | « chrome/browser/ui/views/payments/payment_request_dialog.cc ('k') | chrome/browser/ui/views/payments/view_stack.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698