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

Unified Diff: ui/message_center/views/popup_alignment_delegate.h

Issue 369573004: Separate the logic of popup alignment and workarea handling as delegate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 6 years, 5 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
Index: ui/message_center/views/popup_alignment_delegate.h
diff --git a/ui/message_center/views/popup_alignment_delegate.h b/ui/message_center/views/popup_alignment_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..5a106047d344bef7ada3a0d98d56ca1da43326d5
--- /dev/null
+++ b/ui/message_center/views/popup_alignment_delegate.h
@@ -0,0 +1,61 @@
+// Copyright 2014 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 UI_MESSAGE_CENTER_VIEWS_POPUP_ALIGNMENT_DELEGATE_H_
+#define UI_MESSAGE_CENTER_VIEWS_POPUP_ALIGNMENT_DELEGATE_H_
+
+#include "ui/message_center/message_center_export.h"
+
+namespace gfx {
+class Display;
+class Point;
+class Rect;
+}
+
+namespace message_center {
+
+class MessagePopupCollection;
+
+class MESSAGE_CENTER_EXPORT PopupAlignmentDelegate {
+ public:
+ PopupAlignmentDelegate();
+
+ void set_collection(MessagePopupCollection* collection) {
+ collection_ = collection;
+ }
+
+ // Returns the x-origin for the given toast bounds in the current work area.
+ virtual int GetToastOriginX(const gfx::Rect& toast_bounds) const = 0;
+
+ // Returns the baseline height of the current work area. That is the starting
+ // point if there are no other toasts.
+ virtual int GetBaseLine() const = 0;
+
+ // Returns the height of the bottom of the current work area.
+ virtual int GetWorkAreaBottom() const = 0;
+
+ // Returns true if the toast should be aligned top down.
+ virtual bool IsTopDown() const = 0;
+
+ // Returns true if the toasts are positioned at the left side of the desktop
+ // so that their reveal animation should happen from left side.
+ virtual bool IsFromLeft() const = 0;
+
+ // Called when a new toast appears or toasts are rearranged in the |display|.
+ // The subclass may override this method to check the current desktop status
+ // so that the toasts are arranged at the correct place.
+ virtual void RecomputeAlignment(const gfx::Display& display) = 0;
+
+ protected:
+ virtual ~PopupAlignmentDelegate();
+
+ void DoUpdateIfPossible();
+
+ private:
+ MessagePopupCollection* collection_;
+};
+
+} // namespace message_center
+
+#endif // UI_MESSAGE_CENTER_VIEWS_POPUP_ALIGNMENT_DELEGATE_H_
« no previous file with comments | « ui/message_center/views/message_popup_collection_unittest.cc ('k') | ui/message_center/views/popup_alignment_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698