| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/app_list/views/tile_item_view.h" | 5 #include "ui/app_list/views/tile_item_view.h" |
| 6 | 6 |
| 7 #include "ui/app_list/app_list_constants.h" | 7 #include "ui/app_list/app_list_constants.h" |
| 8 #include "ui/app_list/views/app_list_main_view.h" | 8 #include "ui/app_list/views/app_list_main_view.h" |
| 9 #include "ui/views/background.h" | 9 #include "ui/views/background.h" |
| 10 #include "ui/views/controls/image_view.h" | 10 #include "ui/views/controls/image_view.h" |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 gfx::Rect rect(GetContentsBounds()); | 97 gfx::Rect rect(GetContentsBounds()); |
| 98 | 98 |
| 99 rect.Inset(0, kTopPadding, 0, 0); | 99 rect.Inset(0, kTopPadding, 0, 0); |
| 100 icon_->SetBoundsRect(rect); | 100 icon_->SetBoundsRect(rect); |
| 101 | 101 |
| 102 rect.Inset(0, kGridIconDimension + kIconTitleSpacing, 0, 0); | 102 rect.Inset(0, kGridIconDimension + kIconTitleSpacing, 0, 0); |
| 103 rect.set_height(title_->GetPreferredSize().height()); | 103 rect.set_height(title_->GetPreferredSize().height()); |
| 104 title_->SetBoundsRect(rect); | 104 title_->SetBoundsRect(rect); |
| 105 } | 105 } |
| 106 | 106 |
| 107 const char* TileItemView::GetClassName() const { |
| 108 return "TileItemView"; |
| 109 } |
| 110 |
| 107 void TileItemView::ImageShadowAnimationProgressed( | 111 void TileItemView::ImageShadowAnimationProgressed( |
| 108 ImageShadowAnimator* animator) { | 112 ImageShadowAnimator* animator) { |
| 109 icon_->SetImage(animator->shadow_image()); | 113 icon_->SetImage(animator->shadow_image()); |
| 110 } | 114 } |
| 111 | 115 |
| 112 void TileItemView::UpdateBackgroundColor() { | 116 void TileItemView::UpdateBackgroundColor() { |
| 113 views::Background* background = nullptr; | 117 views::Background* background = nullptr; |
| 114 SkColor background_color = parent_background_color_; | 118 SkColor background_color = parent_background_color_; |
| 115 | 119 |
| 116 if (selected_) { | 120 if (selected_) { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 145 // truncation in making the tooltip. We do not want the label itself to have a | 149 // truncation in making the tooltip. We do not want the label itself to have a |
| 146 // tooltip, so we only temporarily enable it to get the tooltip text from the | 150 // tooltip, so we only temporarily enable it to get the tooltip text from the |
| 147 // label, then disable it again. | 151 // label, then disable it again. |
| 148 title_->SetHandlesTooltips(true); | 152 title_->SetHandlesTooltips(true); |
| 149 bool handled = title_->GetTooltipText(p, tooltip); | 153 bool handled = title_->GetTooltipText(p, tooltip); |
| 150 title_->SetHandlesTooltips(false); | 154 title_->SetHandlesTooltips(false); |
| 151 return handled; | 155 return handled; |
| 152 } | 156 } |
| 153 | 157 |
| 154 } // namespace app_list | 158 } // namespace app_list |
| OLD | NEW |