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

Unified Diff: chrome/browser/ui/views/location_bar/icon_label_bubble_view.cc

Issue 1763713004: Adjusts content bubble animation with respect to icon size (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adjusts content bubble animation with respect to icon size (constant speed) Created 4 years, 9 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
« no previous file with comments | « chrome/browser/ui/views/location_bar/icon_label_bubble_view.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..3297b165f83f270036b066e1332751ca66d5f1eb 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,35 @@ 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 a label is visible 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.
+ int image_padding = GetBubbleOuterPadding(false);
Peter Kasting 2016/03/11 01:14:42 Nit: image_trailing_padding?
varkha 2016/03/11 03:08:40 Done.
+ int image_x = GetBubbleOuterPadding(icon_has_enough_padding);
+ if (!label_->visible() || image_x + image_preferred_width > width()) {
+ image_padding = 0;
+ image_x = std::min(image_x, width() - image_preferred_width);
Peter Kasting 2016/03/11 01:14:42 Doesn't this line result in pinning the trailing e
varkha 2016/03/11 03:08:40 Yes, it was a bad regression.
+ }
+ const int image_width =
+ std::min(image_preferred_width, width() - image_x - image_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 it no longer fits and 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 (IsShrinking() && label_->visible() && label_width == 0 &&
+ (image_x + image_preferred_width + image_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 +201,41 @@ 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 leading_padding = GetBubbleOuterPadding(true);
+ const int remaining_padding =
+ GetBubbleOuterPadding(false) +
+ GetLayoutConstant(ICON_LABEL_VIEW_INTERNAL_PADDING);
Peter Kasting 2016/03/11 01:14:42 Nit: Given the code below, you could now collapse
varkha 2016/03/11 03:08:40 Done.
+ // |multiplier| grows from zero to one, stays equal to one and then shrinks
+ // to zero again. This view width should grow from zero to its maximum
+ // width, then stay at its maximum width and then shrink to preferred
+ // image width.
Peter Kasting 2016/03/11 01:14:42 Nit: How about: The view width should correspondi
varkha 2016/03/11 03:08:40 Done.
+ int total_width = WidthMultiplier() *
+ (label_width + leading_padding + image_width + remaining_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 +250,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)
« no previous file with comments | « chrome/browser/ui/views/location_bar/icon_label_bubble_view.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698