Update metrics verification for dev-proxy.
[chromium-blink-merge.git] / ui / message_center / views / desktop_popup_alignment_delegate.h
blobd00dbba9cdd58db87d26c5b5ce45cde393cf0b17
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_MESSAGE_CENTER_VIEWS_DESKTOP_POPUP_ALIGNMENT_DELEGATE_H_
6 #define UI_MESSAGE_CENTER_VIEWS_DESKTOP_POPUP_ALIGNMENT_DELEGATE_H_
8 #include "base/macros.h"
9 #include "ui/gfx/display_observer.h"
10 #include "ui/gfx/geometry/rect.h"
11 #include "ui/message_center/views/popup_alignment_delegate.h"
13 namespace gfx {
14 class Screen;
17 namespace message_center {
18 namespace test {
19 class MessagePopupCollectionTest;
22 // The PopupAlignmentDelegate for non-ash Windows/Linux desktop.
23 class MESSAGE_CENTER_EXPORT DesktopPopupAlignmentDelegate
24 : public PopupAlignmentDelegate,
25 public gfx::DisplayObserver {
26 public:
27 DesktopPopupAlignmentDelegate();
28 virtual ~DesktopPopupAlignmentDelegate();
30 void StartObserving(gfx::Screen* screen);
32 // Overridden from PopupAlignmentDelegate:
33 virtual int GetToastOriginX(const gfx::Rect& toast_bounds) const OVERRIDE;
34 virtual int GetBaseLine() const OVERRIDE;
35 virtual int GetWorkAreaBottom() const OVERRIDE;
36 virtual bool IsTopDown() const OVERRIDE;
37 virtual bool IsFromLeft() const OVERRIDE;
38 virtual void RecomputeAlignment(const gfx::Display& display) OVERRIDE;
40 private:
41 friend class test::MessagePopupCollectionTest;
43 enum PopupAlignment {
44 POPUP_ALIGNMENT_TOP = 1 << 0,
45 POPUP_ALIGNMENT_LEFT = 1 << 1,
46 POPUP_ALIGNMENT_BOTTOM = 1 << 2,
47 POPUP_ALIGNMENT_RIGHT = 1 << 3,
50 // Overridden from gfx::DisplayObserver:
51 virtual void OnDisplayAdded(const gfx::Display& new_display) OVERRIDE;
52 virtual void OnDisplayRemoved(const gfx::Display& old_display) OVERRIDE;
53 virtual void OnDisplayMetricsChanged(const gfx::Display& display,
54 uint32_t metrics) OVERRIDE;
56 int32_t alignment_;
57 int64_t display_id_;
58 gfx::Screen* screen_;
59 gfx::Rect work_area_;
61 DISALLOW_COPY_AND_ASSIGN(DesktopPopupAlignmentDelegate);
64 } // namespace message_center
66 #endif // UI_MESSAGE_CENTER_VIEWS_DESKTOP_POPUP_ALIGNMENT_DELEGATE_H_