Chromium Code Reviews| Index: chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc |
| diff --git a/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc b/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc |
| index f51e30a49c0ff20605da55c8b3c2967800534558..38d97fbcceaebe57e59d7366e1a1129cc4545340 100644 |
| --- a/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc |
| +++ b/chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc |
| @@ -105,6 +105,10 @@ double IconLabelBubbleView::WidthMultiplier() const { |
| return 1.0; |
| } |
| +bool IconLabelBubbleView::IsShrinking() const { |
| + return false; |
| +} |
| + |
| int IconLabelBubbleView::GetImageAndPaddingWidth() const { |
| const int image_width = image_->GetPreferredSize().width(); |
| return image_width |
| @@ -123,15 +127,37 @@ void IconLabelBubbleView::Layout() { |
| // this up when MD is on by default. |
| bool icon_has_enough_padding = |
| !is_extension_icon_ || ui::MaterialDesignController::IsModeMaterial(); |
| - const int image_width = image_->GetPreferredSize().width(); |
| - image_->SetBounds(std::min((width() - image_width) / 2, |
| - GetBubbleOuterPadding(icon_has_enough_padding)), |
| - 0, image_->GetPreferredSize().width(), height()); |
| + const int image_preferred_width = image_->GetPreferredSize().width(); |
| + // image is positioned at a constant offset when the bubble is growing or when |
| + // there is enough room to fit the whole image. This is done so that the image |
| + // slides in as a part of the sliding surface and doesn't shift relative to |
| + // the background. |
| + const bool shrinking = IsShrinking(); |
| + int image_trailing_padding = GetBubbleOuterPadding(false); |
| + int image_x = GetBubbleOuterPadding(icon_has_enough_padding); |
| + if (shrinking && |
| + (!label_->visible() || image_x + image_preferred_width > width())) { |
|
Peter Kasting
2016/03/11 07:15:08
Hmm. Doesn't this mean that once we get to the po
varkha
2016/03/11 10:16:20
No. This code was getting triggered only once imag
|
| + image_trailing_padding = 0; |
| + image_x = std::min(image_x, std::max(0, width() - image_preferred_width)); |
| + } |
| + const int image_width = std::min(image_preferred_width, |
| + width() - image_x - image_trailing_padding); |
| + image_->SetBounds(image_x, 0, image_width, height()); |
| + |
| + int label_x = GetBubbleOuterPadding(true) + GetImageAndPaddingWidth(); |
| + const int label_width = |
| + std::max(0, width() - label_x - GetBubbleOuterPadding(false)); |
| + |
| + // Hiding the label when the leading edge of the image plus padding crosses |
| + // the right edge of the bubble allows the final frames of the animation to |
| + // smoothly transition from showing a bubble to showing just the image. |
| + if (shrinking && label_->visible() && |
| + (image_x + image_preferred_width + image_trailing_padding >= |
| + bounds().width())) { |
| + label_->SetVisible(false); |
| + } |
| - int pre_label_width = GetBubbleOuterPadding(true) + GetImageAndPaddingWidth(); |
| - label_->SetBounds(pre_label_width, 0, |
| - width() - pre_label_width - GetBubbleOuterPadding(false), |
| - height()); |
| + label_->SetBounds(label_x, 0, label_width, height()); |
| } |
| void IconLabelBubbleView::OnNativeThemeChanged( |
| @@ -177,20 +203,40 @@ SkColor IconLabelBubbleView::GetParentBackgroundColor() const { |
| : parent_background_color_; |
| } |
| -gfx::Size IconLabelBubbleView::GetSizeForLabelWidth(int width) const { |
| +gfx::Size IconLabelBubbleView::GetSizeForLabelWidth(int label_width) const { |
| gfx::Size size(image_->GetPreferredSize()); |
| - if (ShouldShowBackground()) { |
| - const int non_label_width = GetBubbleOuterPadding(true) + |
| - GetImageAndPaddingWidth() + |
| - GetBubbleOuterPadding(false); |
| - size = gfx::Size(WidthMultiplier() * (width + non_label_width), 0); |
| - if (!ui::MaterialDesignController::IsModeMaterial()) |
| - size.SetToMax(background_painter_->GetMinimumSize()); |
| + bool shrinking = IsShrinking(); |
| + // Animation continues for the last few pixels even after the label is not |
| + // visible in order to slide the icon into its final position. Therefore it |
| + // is necessary to animate |total_width| even when the background is hidden |
| + // as long as the animation is still shrinking. |
| + if (ShouldShowBackground() || shrinking) { |
| + const int image_width = size.width(); |
| + const int padding = GetLayoutConstant(ICON_LABEL_VIEW_INTERNAL_PADDING) + |
| + GetBubbleOuterPadding(true) + GetBubbleOuterPadding(false); |
| + // |multiplier| grows from zero to one, stays equal to one and then shrinks |
| + // to zero again. The view width should correspondingly grow from zero to |
| + // fully showing both label and icon, stay there, then shrink to just large |
| + // enough to show the icon. We don't want to shrink all the way back to |
| + // zero, since this would mean the view would completely disappear and then |
| + // pop back to an icon after the animation finishes. |
| + int total_width = WidthMultiplier() * (label_width + image_width + padding); |
| + if (shrinking) |
| + total_width = std::max(total_width, image_width); |
| + size.set_width(total_width); |
| } |
| - |
| return size; |
| } |
| +int IconLabelBubbleView::GetBubbleOuterPadding(bool leading) const { |
| + if (ui::MaterialDesignController::IsModeMaterial()) |
| + return GetBubbleOuterPaddingMd(leading); |
| + |
| + return GetLayoutConstant(LOCATION_BAR_HORIZONTAL_PADDING) - |
| + GetLayoutConstant(LOCATION_BAR_BUBBLE_HORIZONTAL_PADDING) + |
| + (leading ? 0 : GetLayoutConstant(ICON_LABEL_VIEW_TRAILING_PADDING)); |
| +} |
| + |
| void IconLabelBubbleView::SetLabelBackgroundColor( |
| SkColor chip_background_color) { |
| // The background images are painted atop |parent_background_color_|. |
| @@ -205,15 +251,6 @@ void IconLabelBubbleView::SetLabelBackgroundColor( |
| SkColorGetA(chip_background_color))); |
| } |
| -int IconLabelBubbleView::GetBubbleOuterPadding(bool leading) const { |
| - if (ui::MaterialDesignController::IsModeMaterial()) |
| - return GetBubbleOuterPaddingMd(leading); |
| - |
| - return GetLayoutConstant(LOCATION_BAR_HORIZONTAL_PADDING) - |
| - GetLayoutConstant(LOCATION_BAR_BUBBLE_HORIZONTAL_PADDING) + |
| - (leading ? 0 : GetLayoutConstant(ICON_LABEL_VIEW_TRAILING_PADDING)); |
| -} |
| - |
| int IconLabelBubbleView::GetBubbleOuterPaddingMd(bool leading) const { |
| // When the image is empty, leading and trailing padding are equal. |
| if (image_->GetPreferredSize().IsEmpty() || !leading) |