| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/views/controls/label.h" | 5 #include "ui/views/controls/label.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 #include <cmath> | 10 #include <cmath> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "ui/base/default_style.h" | 21 #include "ui/base/default_style.h" |
| 22 #include "ui/base/material_design/material_design_controller.h" | 22 #include "ui/base/material_design/material_design_controller.h" |
| 23 #include "ui/base/resource/resource_bundle.h" | 23 #include "ui/base/resource/resource_bundle.h" |
| 24 #include "ui/gfx/canvas.h" | 24 #include "ui/gfx/canvas.h" |
| 25 #include "ui/gfx/color_utils.h" | 25 #include "ui/gfx/color_utils.h" |
| 26 #include "ui/gfx/geometry/insets.h" | 26 #include "ui/gfx/geometry/insets.h" |
| 27 #include "ui/gfx/text_elider.h" | 27 #include "ui/gfx/text_elider.h" |
| 28 #include "ui/native_theme/native_theme.h" | 28 #include "ui/native_theme/native_theme.h" |
| 29 | 29 |
| 30 namespace views { | 30 namespace views { |
| 31 namespace { | 31 // static |
| 32 const char Label::kViewClassName[] = "Label"; |
| 33 const int Label::kFocusBorderPadding = 1; |
| 32 | 34 |
| 33 const gfx::FontList& GetDefaultFontList() { | 35 const gfx::FontList& Label::GetDefaultFontList() { |
| 34 ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance(); | 36 ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance(); |
| 35 return rb.GetFontListWithDelta(ui::kLabelFontSizeDelta); | 37 return rb.GetFontListWithDelta(ui::kLabelFontSizeDelta); |
| 36 } | 38 } |
| 37 | 39 |
| 38 } // namespace | |
| 39 | |
| 40 // static | |
| 41 const char Label::kViewClassName[] = "Label"; | |
| 42 const int Label::kFocusBorderPadding = 1; | |
| 43 | |
| 44 Label::Label() : Label(base::string16()) { | 40 Label::Label() : Label(base::string16()) { |
| 45 } | 41 } |
| 46 | 42 |
| 47 Label::Label(const base::string16& text) : Label(text, GetDefaultFontList()) { | 43 Label::Label(const base::string16& text) : Label(text, GetDefaultFontList()) { |
| 48 } | 44 } |
| 49 | 45 |
| 50 Label::Label(const base::string16& text, const gfx::FontList& font_list) { | 46 Label::Label(const base::string16& text, const gfx::FontList& font_list) { |
| 51 Init(text, font_list); | 47 Init(text, font_list); |
| 52 } | 48 } |
| 53 | 49 |
| (...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 } | 602 } |
| 607 | 603 |
| 608 bool Label::ShouldShowDefaultTooltip() const { | 604 bool Label::ShouldShowDefaultTooltip() const { |
| 609 const gfx::Size text_size = GetTextSize(); | 605 const gfx::Size text_size = GetTextSize(); |
| 610 const gfx::Size size = GetContentsBounds().size(); | 606 const gfx::Size size = GetContentsBounds().size(); |
| 611 return !obscured() && (text_size.width() > size.width() || | 607 return !obscured() && (text_size.width() > size.width() || |
| 612 (multi_line() && text_size.height() > size.height())); | 608 (multi_line() && text_size.height() > size.height())); |
| 613 } | 609 } |
| 614 | 610 |
| 615 } // namespace views | 611 } // namespace views |
| OLD | NEW |