| // Copyright (c) 2012 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. |
| |
| #include "ash/system/tray/tray_background_view.h" |
| |
| #include <algorithm> |
| |
| #include "ash/ash_constants.h" |
| #include "ash/shelf/shelf.h" |
| #include "ash/shelf/shelf_constants.h" |
| #include "ash/shell.h" |
| #include "ash/system/status_area_widget_delegate.h" |
| #include "ash/system/tray/system_tray_notifier.h" |
| #include "ash/system/tray/tray_constants.h" |
| #include "ash/system/tray/tray_container.h" |
| #include "ash/system/tray/tray_event_filter.h" |
| #include "base/memory/ptr_util.h" |
| #include "ui/accessibility/ax_node_data.h" |
| #include "ui/compositor/layer.h" |
| #include "ui/compositor/layer_animation_element.h" |
| #include "ui/compositor/scoped_layer_animation_settings.h" |
| #include "ui/gfx/animation/tween.h" |
| #include "ui/gfx/canvas.h" |
| #include "ui/gfx/geometry/rect.h" |
| #include "ui/gfx/geometry/size.h" |
| #include "ui/gfx/transform.h" |
| #include "ui/views/animation/flood_fill_ink_drop_ripple.h" |
| #include "ui/views/animation/ink_drop_highlight.h" |
| #include "ui/views/animation/ink_drop_mask.h" |
| #include "ui/views/background.h" |
| #include "ui/views/layout/fill_layout.h" |
| #include "ui/wm/core/window_animations.h" |
| |
| namespace { |
| |
| const int kAnimationDurationForPopupMs = 200; |
| |
| // Duration of opacity animation for visibility changes. |
| const int kAnimationDurationForVisibilityMs = 250; |
| |
| // When becoming visible delay the animation so that StatusAreaWidgetDelegate |
| // can animate sibling views out of the position to be occuped by the |
| // TrayBackgroundView. |
| const int kShowAnimationDelayMs = 100; |
| |
| // Switches left and right insets if RTL mode is active. |
| void MirrorInsetsIfNecessary(gfx::Insets* insets) { |
| if (base::i18n::IsRTL()) { |
| insets->Set(insets->top(), insets->right(), insets->bottom(), |
| insets->left()); |
| } |
| } |
| |
| // Returns background insets relative to the contents bounds of the view and |
| // mirrored if RTL mode is active. |
| gfx::Insets GetMirroredBackgroundInsets(bool is_shelf_horizontal) { |
| gfx::Insets insets; |
| if (is_shelf_horizontal) { |
| insets.Set(0, ash::kHitRegionPadding, 0, |
| ash::kHitRegionPadding + ash::kSeparatorWidth); |
| } else { |
| insets.Set(ash::kHitRegionPadding, 0, |
| ash::kHitRegionPadding + ash::kSeparatorWidth, 0); |
| } |
| MirrorInsetsIfNecessary(&insets); |
| return insets; |
| } |
| |
| } // namespace |
| |
| using views::TrayBubbleView; |
| |
| namespace ash { |
| |
| // static |
| const char TrayBackgroundView::kViewClassName[] = "tray/TrayBackgroundView"; |
| |
| // Used to track when the anchor widget changes position on screen so that the |
| // bubble position can be updated. |
| class TrayBackgroundView::TrayWidgetObserver : public views::WidgetObserver { |
| public: |
| explicit TrayWidgetObserver(TrayBackgroundView* host) : host_(host) {} |
| |
| void OnWidgetBoundsChanged(views::Widget* widget, |
| const gfx::Rect& new_bounds) override { |
| host_->AnchorUpdated(); |
| } |
| |
| void OnWidgetVisibilityChanged(views::Widget* widget, bool visible) override { |
| host_->AnchorUpdated(); |
| } |
| |
| private: |
| TrayBackgroundView* host_; |
| |
| DISALLOW_COPY_AND_ASSIGN(TrayWidgetObserver); |
| }; |
| |
| class TrayBackground : public views::Background { |
| public: |
| explicit TrayBackground(TrayBackgroundView* tray_background_view) |
| : tray_background_view_(tray_background_view), |
| color_(SK_ColorTRANSPARENT) {} |
| |
| ~TrayBackground() override {} |
| |
| void set_color(SkColor color) { color_ = color; } |
| |
| private: |
| // Overridden from views::Background. |
| void Paint(gfx::Canvas* canvas, views::View* view) const override { |
| cc::PaintFlags background_flags; |
| background_flags.setAntiAlias(true); |
| background_flags.setColor(color_); |
| gfx::Insets insets = GetMirroredBackgroundInsets( |
| tray_background_view_->shelf()->IsHorizontalAlignment()); |
| gfx::Rect bounds = view->GetLocalBounds(); |
| bounds.Inset(insets); |
| canvas->DrawRoundRect(bounds, kTrayRoundedBorderRadius, background_flags); |
| } |
| |
| // Reference to the TrayBackgroundView for which this is a background. |
| TrayBackgroundView* tray_background_view_; |
| |
| SkColor color_; |
| |
| DISALLOW_COPY_AND_ASSIGN(TrayBackground); |
| }; |
| |
| //////////////////////////////////////////////////////////////////////////////// |
| // TrayBackgroundView |
| |
| TrayBackgroundView::TrayBackgroundView(Shelf* shelf) |
| // Note the ink drop style is ignored. |
| : ActionableView(nullptr, TrayPopupInkDropStyle::FILL_BOUNDS), |
| shelf_(shelf), |
| tray_container_(new TrayContainer(shelf)), |
| background_(new TrayBackground(this)), |
| is_active_(false), |
| separator_visible_(true), |
| widget_observer_(new TrayWidgetObserver(this)) { |
| DCHECK(shelf_); |
| set_notify_enter_exit_on_child(true); |
| set_ink_drop_base_color(kShelfInkDropBaseColor); |
| set_ink_drop_visible_opacity(kShelfInkDropVisibleOpacity); |
| |
| SetLayoutManager(new views::FillLayout); |
| |
| tray_container_->set_background(background_); |
| AddChildView(tray_container_); |
| |
| tray_event_filter_.reset(new TrayEventFilter); |
| |
| SetPaintToLayer(); |
| layer()->SetFillsBoundsOpaquely(false); |
| // Start the tray items not visible, because visibility changes are animated. |
| views::View::SetVisible(false); |
| } |
| |
| TrayBackgroundView::~TrayBackgroundView() { |
| if (GetWidget()) |
| GetWidget()->RemoveObserver(widget_observer_.get()); |
| StopObservingImplicitAnimations(); |
| } |
| |
| void TrayBackgroundView::Initialize() { |
| GetWidget()->AddObserver(widget_observer_.get()); |
| } |
| |
| // static |
| void TrayBackgroundView::InitializeBubbleAnimations( |
| views::Widget* bubble_widget) { |
| aura::Window* window = bubble_widget->GetNativeWindow(); |
| ::wm::SetWindowVisibilityAnimationType( |
| window, ::wm::WINDOW_VISIBILITY_ANIMATION_TYPE_FADE); |
| ::wm::SetWindowVisibilityAnimationTransition(window, ::wm::ANIMATE_HIDE); |
| ::wm::SetWindowVisibilityAnimationDuration( |
| window, base::TimeDelta::FromMilliseconds(kAnimationDurationForPopupMs)); |
| } |
| |
| void TrayBackgroundView::SetVisible(bool visible) { |
| if (visible == layer()->GetTargetVisibility()) |
| return; |
| |
| if (visible) { |
| // The alignment of the shelf can change while the TrayBackgroundView is |
| // hidden. Reset the offscreen transform so that the animation to becoming |
| // visible reflects the current layout. |
| HideTransformation(); |
| // SetVisible(false) is defered until the animation for hiding is done. |
| // Otherwise the view is immediately hidden and the animation does not |
| // render. |
| views::View::SetVisible(true); |
| // If SetVisible(true) is called while animating to not visible, then |
| // views::View::SetVisible(true) is a no-op. When the previous animation |
| // ends layer->SetVisible(false) is called. To prevent this |
| // layer->SetVisible(true) immediately interrupts the animation of this |
| // property, and keeps the layer visible. |
| layer()->SetVisible(true); |
| } |
| |
| ui::ScopedLayerAnimationSettings animation(layer()->GetAnimator()); |
| animation.SetTransitionDuration( |
| base::TimeDelta::FromMilliseconds(kAnimationDurationForVisibilityMs)); |
| animation.SetPreemptionStrategy( |
| ui::LayerAnimator::IMMEDIATELY_ANIMATE_TO_NEW_TARGET); |
| |
| if (visible) { |
| animation.SetTweenType(gfx::Tween::EASE_OUT); |
| // Show is delayed so as to allow time for other children of |
| // StatusAreaWidget to begin animating to their new positions. |
| layer()->GetAnimator()->SchedulePauseForProperties( |
| base::TimeDelta::FromMilliseconds(kShowAnimationDelayMs), |
| ui::LayerAnimationElement::OPACITY | |
| ui::LayerAnimationElement::TRANSFORM); |
| layer()->SetOpacity(1.0f); |
| gfx::Transform transform; |
| transform.Translate(0.0f, 0.0f); |
| layer()->SetTransform(transform); |
| } else { |
| // Listen only to the hide animation. As we cannot turn off visibility |
| // until the animation is over. |
| animation.AddObserver(this); |
| animation.SetTweenType(gfx::Tween::EASE_IN); |
| layer()->SetOpacity(0.0f); |
| layer()->SetVisible(false); |
| HideTransformation(); |
| } |
| } |
| |
| const char* TrayBackgroundView::GetClassName() const { |
| return kViewClassName; |
| } |
| |
| void TrayBackgroundView::ChildPreferredSizeChanged(views::View* child) { |
| PreferredSizeChanged(); |
| } |
| |
| void TrayBackgroundView::GetAccessibleNodeData(ui::AXNodeData* node_data) { |
| ActionableView::GetAccessibleNodeData(node_data); |
| node_data->SetName(GetAccessibleNameForTray()); |
| } |
| |
| void TrayBackgroundView::AboutToRequestFocusFromTabTraversal(bool reverse) { |
| StatusAreaWidgetDelegate* delegate = |
| StatusAreaWidgetDelegate::GetPrimaryInstance(); |
| if (delegate && delegate->ShouldFocusOut(reverse)) |
| Shell::Get()->system_tray_notifier()->NotifyFocusOut(reverse); |
| } |
| |
| std::unique_ptr<views::InkDropRipple> TrayBackgroundView::CreateInkDropRipple() |
| const { |
| return base::MakeUnique<views::FloodFillInkDropRipple>( |
| size(), GetBackgroundInsets(), GetInkDropCenterBasedOnLastEvent(), |
| GetInkDropBaseColor(), ink_drop_visible_opacity()); |
| } |
| |
| std::unique_ptr<views::InkDropHighlight> |
| TrayBackgroundView::CreateInkDropHighlight() const { |
| gfx::Rect bounds = GetBackgroundBounds(); |
| // Currently, we don't handle view resize. To compensate for that, enlarge the |
| // bounds by two tray icons so that the hightlight looks good even if two more |
| // icons are added when it is visible. Note that ink drop mask handles resize |
| // correctly, so the extra highlight would be clipped. |
| // TODO(mohsen): Remove this extra size when resize is handled properly (see |
| // https://crbug.com/669253). |
| const int icon_size = kTrayIconSize + 2 * kTrayImageItemPadding; |
| bounds.set_width(bounds.width() + 2 * icon_size); |
| bounds.set_height(bounds.height() + 2 * icon_size); |
| std::unique_ptr<views::InkDropHighlight> highlight( |
| new views::InkDropHighlight(bounds.size(), 0, |
| gfx::RectF(bounds).CenterPoint(), |
| GetInkDropBaseColor())); |
| highlight->set_visible_opacity(kTrayPopupInkDropHighlightOpacity); |
| return highlight; |
| } |
| |
| void TrayBackgroundView::UpdateAfterShelfAlignmentChange() { |
| tray_container_->UpdateAfterShelfAlignmentChange(); |
| } |
| |
| void TrayBackgroundView::OnImplicitAnimationsCompleted() { |
| // If there is another animation in the queue, the reverse animation was |
| // triggered before the completion of animating to invisible. Do not turn off |
| // the visibility so that the next animation may render. The value of |
| // layer()->GetTargetVisibility() can be incorrect if the hide animation was |
| // aborted to schedule an animation to become visible. As the new animation |
| // is not yet added to the queue. crbug.com/374236 |
| if (layer()->GetAnimator()->is_animating() || layer()->GetTargetVisibility()) |
| return; |
| views::View::SetVisible(false); |
| } |
| |
| bool TrayBackgroundView::RequiresNotificationWhenAnimatorDestroyed() const { |
| // This is needed so that OnImplicitAnimationsCompleted() is called even upon |
| // destruction of the animator. This can occure when parallel animations |
| // caused by ScreenRotationAnimator end before the animations of |
| // TrayBackgroundView. This allows for a proper update to the visual state of |
| // the view. (crbug.com/476667) |
| return true; |
| } |
| |
| void TrayBackgroundView::HideTransformation() { |
| gfx::Transform transform; |
| if (shelf_->IsHorizontalAlignment()) |
| transform.Translate(width(), 0.0f); |
| else |
| transform.Translate(0.0f, height()); |
| layer()->SetTransform(transform); |
| } |
| |
| TrayBubbleView::AnchorAlignment TrayBackgroundView::GetAnchorAlignment() const { |
| if (shelf_->alignment() == SHELF_ALIGNMENT_LEFT) |
| return TrayBubbleView::ANCHOR_ALIGNMENT_LEFT; |
| if (shelf_->alignment() == SHELF_ALIGNMENT_RIGHT) |
| return TrayBubbleView::ANCHOR_ALIGNMENT_RIGHT; |
| return TrayBubbleView::ANCHOR_ALIGNMENT_BOTTOM; |
| } |
| |
| void TrayBackgroundView::SetIsActive(bool is_active) { |
| if (is_active_ == is_active) |
| return; |
| is_active_ = is_active; |
| AnimateInkDrop(is_active_ ? views::InkDropState::ACTIVATED |
| : views::InkDropState::DEACTIVATED, |
| nullptr); |
| } |
| |
| void TrayBackgroundView::UpdateBubbleViewArrow( |
| views::TrayBubbleView* bubble_view) { |
| // Nothing to do here. |
| } |
| |
| void TrayBackgroundView::UpdateShelfItemBackground(SkColor color) { |
| background_->set_color(color); |
| SchedulePaint(); |
| } |
| |
| views::View* TrayBackgroundView::GetBubbleAnchor() const { |
| return tray_container_; |
| } |
| |
| gfx::Insets TrayBackgroundView::GetBubbleAnchorInsets() const { |
| gfx::Insets anchor_insets = GetBubbleAnchor()->GetInsets(); |
| gfx::Insets tray_bg_insets = GetInsets(); |
| if (GetAnchorAlignment() == TrayBubbleView::ANCHOR_ALIGNMENT_BOTTOM) { |
| return gfx::Insets(-tray_bg_insets.top(), anchor_insets.left(), |
| -tray_bg_insets.bottom(), anchor_insets.right()); |
| } else { |
| return gfx::Insets(anchor_insets.top(), -tray_bg_insets.left(), |
| anchor_insets.bottom(), -tray_bg_insets.right()); |
| } |
| } |
| |
| std::unique_ptr<views::InkDropMask> TrayBackgroundView::CreateInkDropMask() |
| const { |
| return base::MakeUnique<views::RoundRectInkDropMask>( |
| size(), GetBackgroundInsets(), kTrayRoundedBorderRadius); |
| } |
| |
| bool TrayBackgroundView::ShouldEnterPushedState(const ui::Event& event) { |
| if (is_active_) |
| return false; |
| |
| return ActionableView::ShouldEnterPushedState(event); |
| } |
| |
| bool TrayBackgroundView::PerformAction(const ui::Event& event) { |
| return false; |
| } |
| |
| void TrayBackgroundView::HandlePerformActionResult(bool action_performed, |
| const ui::Event& event) { |
| // When an action is performed, ink drop ripple is handled in SetIsActive(). |
| if (action_performed) |
| return; |
| ActionableView::HandlePerformActionResult(action_performed, event); |
| } |
| |
| void TrayBackgroundView::OnPaintFocus(gfx::Canvas* canvas) { |
| // The tray itself expands to the right and bottom edge of the screen to make |
| // sure clicking on the edges brings up the popup. However, the focus border |
| // should be only around the container. |
| gfx::RectF paint_bounds(GetBackgroundBounds()); |
| paint_bounds.Inset(gfx::Insets(-kFocusBorderThickness)); |
| canvas->DrawSolidFocusRect(paint_bounds, kFocusBorderColor, |
| kFocusBorderThickness); |
| } |
| |
| void TrayBackgroundView::OnPaint(gfx::Canvas* canvas) { |
| ActionableView::OnPaint(canvas); |
| if (shelf()->GetBackgroundType() == |
| ShelfBackgroundType::SHELF_BACKGROUND_DEFAULT || |
| !separator_visible_) { |
| return; |
| } |
| // In the given |canvas|, for a horizontal shelf draw a separator line to the |
| // right or left of the TrayBackgroundView when the system is LTR or RTL |
| // aligned, respectively. For a vertical shelf draw the separator line |
| // underneath the items instead. |
| const gfx::Rect local_bounds = GetLocalBounds(); |
| const SkColor color = SkColorSetA(SK_ColorWHITE, 0x4D); |
| |
| if (shelf_->IsHorizontalAlignment()) { |
| const gfx::PointF point( |
| base::i18n::IsRTL() ? 0 : (local_bounds.width() - kSeparatorWidth), |
| (kShelfSize - kTrayItemSize) / 2); |
| const gfx::Vector2dF vector(0, kTrayItemSize); |
| canvas->Draw1pxLine(point, point + vector, color); |
| } else { |
| const gfx::PointF point((kShelfSize - kTrayItemSize) / 2, |
| local_bounds.height() - kSeparatorWidth); |
| const gfx::Vector2dF vector(kTrayItemSize, 0); |
| canvas->Draw1pxLine(point, point + vector, color); |
| } |
| } |
| |
| gfx::Insets TrayBackgroundView::GetBackgroundInsets() const { |
| gfx::Insets insets = |
| GetMirroredBackgroundInsets(shelf_->IsHorizontalAlignment()); |
| |
| // |insets| are relative to contents bounds. Change them to be relative to |
| // local bounds. |
| gfx::Insets local_contents_insets = |
| GetLocalBounds().InsetsFrom(GetContentsBounds()); |
| MirrorInsetsIfNecessary(&local_contents_insets); |
| insets += local_contents_insets; |
| |
| return insets; |
| } |
| |
| gfx::Rect TrayBackgroundView::GetBackgroundBounds() const { |
| gfx::Insets insets = GetBackgroundInsets(); |
| gfx::Rect bounds = GetLocalBounds(); |
| bounds.Inset(insets); |
| return bounds; |
| } |
| |
| } // namespace ash |