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) const { | 326 int BoundedLabel::GetHeightForWidth(int width) const { |
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 { | 336 bool BoundedLabel::CanProcessEventsWithinSubtree() const { |
337 return label_->HitTestRect(rect); | 337 return label_->CanProcessEventsWithinSubtree(); |
338 } | 338 } |
339 | 339 |
340 void BoundedLabel::GetAccessibleState(ui::AXViewState* state) { | 340 void BoundedLabel::GetAccessibleState(ui::AXViewState* state) { |
341 label_->GetAccessibleState(state); | 341 label_->GetAccessibleState(state); |
342 } | 342 } |
343 | 343 |
344 void BoundedLabel::OnBoundsChanged(const gfx::Rect& previous_bounds) { | 344 void BoundedLabel::OnBoundsChanged(const gfx::Rect& previous_bounds) { |
345 label_->SetBoundsRect(bounds()); | 345 label_->SetBoundsRect(bounds()); |
346 views::View::OnBoundsChanged(previous_bounds); | 346 views::View::OnBoundsChanged(previous_bounds); |
347 } | 347 } |
348 | 348 |
349 void BoundedLabel::OnNativeThemeChanged(const ui::NativeTheme* theme) { | 349 void BoundedLabel::OnNativeThemeChanged(const ui::NativeTheme* theme) { |
350 label_->SetNativeTheme(theme); | 350 label_->SetNativeTheme(theme); |
351 } | 351 } |
352 | 352 |
353 base::string16 BoundedLabel::GetWrappedTextForTest(int width, int lines) { | 353 base::string16 BoundedLabel::GetWrappedTextForTest(int width, int lines) { |
354 return JoinString(label_->GetWrappedText(width, lines), '\n'); | 354 return JoinString(label_->GetWrappedText(width, lines), '\n'); |
355 } | 355 } |
356 | 356 |
357 } // namespace message_center | 357 } // namespace message_center |
OLD | NEW |