blob: c08c39f48cc197dbb106f7379dfefb3170559b46 [file] [log] [blame]
// 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 ASH_SYSTEM_MESSAGE_CENTER_ASH_POPUP_ALIGNMENT_DELEGATE_H_
#define ASH_SYSTEM_MESSAGE_CENTER_ASH_POPUP_ALIGNMENT_DELEGATE_H_
#include <stdint.h>
#include "ash/ash_export.h"
#include "ash/public/cpp/shelf_types.h"
#include "ash/shelf/shelf_observer.h"
#include "ash/shell_observer.h"
#include "base/macros.h"
#include "ui/display/display_observer.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/message_center/views/popup_alignment_delegate.h"
namespace display {
class Screen;
}
namespace ash {
class AshPopupAlignmentDelegateTest;
class Shelf;
class NotificationTrayTest;
// The PopupAlignmentDelegate subclass for Ash. It needs to handle alignment of
// the shelf and its autohide state.
class ASH_EXPORT AshPopupAlignmentDelegate
: public message_center::PopupAlignmentDelegate,
public ShelfObserver,
public ShellObserver,
public display::DisplayObserver {
public:
explicit AshPopupAlignmentDelegate(Shelf* shelf);
~AshPopupAlignmentDelegate() override;
// Start observing the system.
void StartObserving(display::Screen* screen, const display::Display& display);
// Sets the current height of the system tray bubble (or legacy notification
// bubble) so that notification toasts can avoid it.
void SetTrayBubbleHeight(int height);
// Returns the current tray bubble height or 0 if there is no bubble.
int tray_bubble_height_for_test() const { return tray_bubble_height_; }
// Overridden from message_center::PopupAlignmentDelegate:
int GetToastOriginX(const gfx::Rect& toast_bounds) const override;
int GetBaseline() const override;
gfx::Rect GetWorkArea() const override;
bool IsTopDown() const override;
bool IsFromLeft() const override;
bool RecomputeAlignment(const display::Display& display) override;
void ConfigureWidgetInitParamsForContainer(
views::Widget* widget,
views::Widget::InitParams* init_params) override;
bool IsPrimaryDisplayForNotification() const override;
private:
friend class AshPopupAlignmentDelegateTest;
friend class NotificationTrayTest;
// Get the current alignment of the shelf.
ShelfAlignment GetAlignment() const;
// Utility function to get the display which should be care about.
display::Display GetCurrentDisplay() const;
// Compute the new work area.
void UpdateWorkArea();
// ShelfObserver:
void WillChangeVisibilityState(ShelfVisibilityState new_state) override;
void OnAutoHideStateChanged(ShelfAutoHideState new_state) override;
// Overridden from display::DisplayObserver:
void OnDisplayMetricsChanged(const display::Display& display,
uint32_t metrics) override;
display::Screen* screen_;
gfx::Rect work_area_;
Shelf* shelf_;
int tray_bubble_height_;
DISALLOW_COPY_AND_ASSIGN(AshPopupAlignmentDelegate);
};
} // namespace ash
#endif // ASH_SYSTEM_MESSAGE_CENTER_ASH_POPUP_ALIGNMENT_DELEGATE_H_