| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/message_center/views/bounded_label.h" | 5 #include "ui/message_center/views/bounded_label.h" |
| 6 | 6 |
| 7 #include <limits> | 7 #include <limits> |
| 8 | 8 |
| 9 #include "base/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
| 10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 int BoundedLabel::GetHeightForWidth(int width) { | 326 int BoundedLabel::GetHeightForWidth(int width) { |
| 327 return visible() ? | 327 return visible() ? |
| 328 label_->GetSizeForWidthAndLines(width, line_limit_).height() : 0; | 328 label_->GetSizeForWidthAndLines(width, line_limit_).height() : 0; |
| 329 } | 329 } |
| 330 | 330 |
| 331 void BoundedLabel::Paint(gfx::Canvas* canvas, const views::CullSet& cull_set) { | 331 void BoundedLabel::Paint(gfx::Canvas* canvas, const views::CullSet& cull_set) { |
| 332 if (visible()) | 332 if (visible()) |
| 333 label_->Paint(canvas, cull_set); | 333 label_->Paint(canvas, cull_set); |
| 334 } | 334 } |
| 335 | 335 |
| 336 bool BoundedLabel::HitTestRect(const gfx::Rect& rect) const { | |
| 337 return label_->HitTestRect(rect); | |
| 338 } | |
| 339 | |
| 340 void BoundedLabel::GetAccessibleState(ui::AXViewState* state) { | 336 void BoundedLabel::GetAccessibleState(ui::AXViewState* state) { |
| 341 label_->GetAccessibleState(state); | 337 label_->GetAccessibleState(state); |
| 342 } | 338 } |
| 343 | 339 |
| 344 void BoundedLabel::OnBoundsChanged(const gfx::Rect& previous_bounds) { | 340 void BoundedLabel::OnBoundsChanged(const gfx::Rect& previous_bounds) { |
| 345 label_->SetBoundsRect(bounds()); | 341 label_->SetBoundsRect(bounds()); |
| 346 views::View::OnBoundsChanged(previous_bounds); | 342 views::View::OnBoundsChanged(previous_bounds); |
| 347 } | 343 } |
| 348 | 344 |
| 349 void BoundedLabel::OnNativeThemeChanged(const ui::NativeTheme* theme) { | 345 void BoundedLabel::OnNativeThemeChanged(const ui::NativeTheme* theme) { |
| 350 label_->SetNativeTheme(theme); | 346 label_->SetNativeTheme(theme); |
| 351 } | 347 } |
| 352 | 348 |
| 353 base::string16 BoundedLabel::GetWrappedTextForTest(int width, int lines) { | 349 base::string16 BoundedLabel::GetWrappedTextForTest(int width, int lines) { |
| 354 return JoinString(label_->GetWrappedText(width, lines), '\n'); | 350 return JoinString(label_->GetWrappedText(width, lines), '\n'); |
| 355 } | 351 } |
| 356 | 352 |
| 357 } // namespace message_center | 353 } // namespace message_center |
| OLD | NEW |