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

Side by Side Diff: ui/views/controls/styled_label.cc

Issue 734923003: Fixed StyledLabel size caching (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: codereview changes Created 6 years 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 unified diff | Download patch
OLDNEW
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/views/controls/styled_label.h" 5 #include "ui/views/controls/styled_label.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/strings/string_util.h" 9 #include "base/strings/string_util.h"
10 #include "ui/gfx/font_list.h" 10 #include "ui/gfx/font_list.h"
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 } 90 }
91 91
92 92
93 // StyledLabel ---------------------------------------------------------------- 93 // StyledLabel ----------------------------------------------------------------
94 94
95 StyledLabel::StyledLabel(const base::string16& text, 95 StyledLabel::StyledLabel(const base::string16& text,
96 StyledLabelListener* listener) 96 StyledLabelListener* listener)
97 : specified_line_height_(0), 97 : specified_line_height_(0),
98 listener_(listener), 98 listener_(listener),
99 displayed_on_background_color_set_(false), 99 displayed_on_background_color_set_(false),
100 auto_color_readability_enabled_(true) { 100 auto_color_readability_enabled_(true),
101 width_at_last_layout_(0) {
101 base::TrimWhitespace(text, base::TRIM_TRAILING, &text_); 102 base::TrimWhitespace(text, base::TRIM_TRAILING, &text_);
102 } 103 }
103 104
104 StyledLabel::~StyledLabel() {} 105 StyledLabel::~StyledLabel() {}
105 106
106 void StyledLabel::SetText(const base::string16& text) { 107 void StyledLabel::SetText(const base::string16& text) {
107 text_ = text; 108 text_ = text;
108 style_ranges_.clear(); 109 style_ranges_.clear();
109 RemoveAllChildViews(true); 110 RemoveAllChildViews(true);
110 PreferredSizeChanged(); 111 PreferredSizeChanged();
(...skipping 22 matching lines...) Expand all
133 default_style_info_ = style_info; 134 default_style_info_ = style_info;
134 PreferredSizeChanged(); 135 PreferredSizeChanged();
135 } 136 }
136 137
137 void StyledLabel::SetLineHeight(int line_height) { 138 void StyledLabel::SetLineHeight(int line_height) {
138 specified_line_height_ = line_height; 139 specified_line_height_ = line_height;
139 PreferredSizeChanged(); 140 PreferredSizeChanged();
140 } 141 }
141 142
142 void StyledLabel::SetDisplayedOnBackgroundColor(SkColor color) { 143 void StyledLabel::SetDisplayedOnBackgroundColor(SkColor color) {
144 if (displayed_on_background_color_ == color)
145 return;
146
143 displayed_on_background_color_ = color; 147 displayed_on_background_color_ = color;
144 displayed_on_background_color_set_ = true; 148 displayed_on_background_color_set_ = true;
149
150 for (int i = 0, count = child_count(); i < count; ++i) {
151 DCHECK((child_at(i)->GetClassName() == Label::kViewClassName) ||
152 (child_at(i)->GetClassName() == Link::kViewClassName));
153 static_cast<Label*>(child_at(i))->SetBackgroundColor(color);
154 }
145 } 155 }
146 156
147 gfx::Insets StyledLabel::GetInsets() const { 157 gfx::Insets StyledLabel::GetInsets() const {
148 gfx::Insets insets = View::GetInsets(); 158 gfx::Insets insets = View::GetInsets();
149 159
150 // We need a focus border iff we contain a link that will have a focus border. 160 // We need a focus border iff we contain a link that will have a focus border.
151 // That in turn will be true only if the link is non-empty. 161 // That in turn will be true only if the link is non-empty.
152 for (StyleRanges::const_iterator i(style_ranges_.begin()); 162 for (StyleRanges::const_iterator i(style_ranges_.begin());
153 i != style_ranges_.end(); ++i) { 163 i != style_ranges_.end(); ++i) {
154 if (i->style_info.is_link && !i->range.is_empty()) { 164 if (i->style_info.is_link && !i->range.is_empty()) {
155 const gfx::Insets focus_border_padding( 165 const gfx::Insets focus_border_padding(
156 Label::kFocusBorderPadding, Label::kFocusBorderPadding, 166 Label::kFocusBorderPadding, Label::kFocusBorderPadding,
157 Label::kFocusBorderPadding, Label::kFocusBorderPadding); 167 Label::kFocusBorderPadding, Label::kFocusBorderPadding);
158 insets += focus_border_padding; 168 insets += focus_border_padding;
159 break; 169 break;
160 } 170 }
161 } 171 }
162 172
163 return insets; 173 return insets;
164 } 174 }
165 175
166 int StyledLabel::GetHeightForWidth(int w) const { 176 int StyledLabel::GetHeightForWidth(int w) const {
167 if (w != calculated_size_.width()) { 177 // TODO(erg): Munge the const-ness of the style label. CalculateAndDoLayout
168 // TODO(erg): Munge the const-ness of the style label. CalculateAndDoLayout 178 // doesn't actually make any changes to member variables when |dry_run| is
169 // doesn't actually make any changes to member variables when |dry_run| is 179 // set to true. In general, the mutating and non-mutating parts shouldn't
170 // set to true. In general, the mutating and non-mutating parts shouldn't 180 // be in the same codepath.
171 // be in the same codepath. 181 calculated_size_ =
172 calculated_size_ = 182 const_cast<StyledLabel*>(this)->CalculateAndDoLayout(w, true);
173 const_cast<StyledLabel*>(this)->CalculateAndDoLayout(w, true);
174 }
175 return calculated_size_.height(); 183 return calculated_size_.height();
176 } 184 }
177 185
178 void StyledLabel::Layout() { 186 void StyledLabel::Layout() {
179 calculated_size_ = CalculateAndDoLayout(GetLocalBounds().width(), false); 187 calculated_size_ = CalculateAndDoLayout(GetLocalBounds().width(), false);
188 width_at_last_layout_ = calculated_size_.width();
180 } 189 }
181 190
182 void StyledLabel::PreferredSizeChanged() { 191 void StyledLabel::PreferredSizeChanged() {
183 calculated_size_ = gfx::Size(); 192 calculated_size_ = gfx::Size();
184 View::PreferredSizeChanged(); 193 View::PreferredSizeChanged();
185 } 194 }
186 195
187 void StyledLabel::LinkClicked(Link* source, int event_flags) { 196 void StyledLabel::LinkClicked(Link* source, int event_flags) {
188 if (listener_) 197 if (listener_)
189 listener_->StyledLabelLinkClicked(link_targets_[source], event_flags); 198 listener_->StyledLabelLinkClicked(link_targets_[source], event_flags);
190 } 199 }
191 200
192 gfx::Size StyledLabel::CalculateAndDoLayout(int width, bool dry_run) { 201 gfx::Size StyledLabel::CalculateAndDoLayout(int width, bool dry_run) {
202 width -= GetInsets().width();
203 if (width == calculated_size_.width() &&
204 (dry_run || width_at_last_layout_ == width))
205 return calculated_size_;
206
193 if (!dry_run) { 207 if (!dry_run) {
194 RemoveAllChildViews(true); 208 RemoveAllChildViews(true);
195 link_targets_.clear(); 209 link_targets_.clear();
196 } 210 }
197 211
198 width -= GetInsets().width();
199 if (width <= 0 || text_.empty()) 212 if (width <= 0 || text_.empty())
200 return gfx::Size(); 213 return gfx::Size();
201 214
202 const int line_height = specified_line_height_ > 0 ? specified_line_height_ 215 const int line_height = specified_line_height_ > 0 ? specified_line_height_
203 : CalculateLineHeight(font_list_); 216 : CalculateLineHeight(font_list_);
204 // The index of the line we're on. 217 // The index of the line we're on.
205 int line = 0; 218 int line = 0;
206 // The x position (in pixels) of the line we're on, relative to content 219 // The x position (in pixels) of the line we're on, relative to content
207 // bounds. 220 // bounds.
208 int x = 0; 221 int x = 0;
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 } 329 }
317 330
318 // The user-specified line height only applies to interline spacing, so the 331 // The user-specified line height only applies to interline spacing, so the
319 // final line's height is unaffected. 332 // final line's height is unaffected.
320 int total_height = line * line_height + 333 int total_height = line * line_height +
321 CalculateLineHeight(font_list_) + GetInsets().height(); 334 CalculateLineHeight(font_list_) + GetInsets().height();
322 return gfx::Size(width, total_height); 335 return gfx::Size(width, total_height);
323 } 336 }
324 337
325 } // namespace views 338 } // namespace views
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698