Chromium Code Reviews| 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/gfx/render_text_harfbuzz.h" | 5 #include "ui/gfx/render_text_harfbuzz.h" |
| 6 | 6 |
| 7 #include <limits> | 7 #include <limits> |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/i18n/bidi_line_iterator.h" | 10 #include "base/i18n/bidi_line_iterator.h" |
| 11 #include "base/i18n/break_iterator.h" | 11 #include "base/i18n/break_iterator.h" |
| 12 #include "base/i18n/char_iterator.h" | 12 #include "base/i18n/char_iterator.h" |
| 13 #include "base/profiler/scoped_tracker.h" | 13 #include "base/profiler/scoped_tracker.h" |
| 14 #include "base/strings/string_util.h" | 14 #include "base/strings/string_util.h" |
| 15 #include "base/strings/utf_string_conversions.h" | 15 #include "base/strings/utf_string_conversions.h" |
| 16 #include "base/trace_event/trace_event.h" | 16 #include "base/trace_event/trace_event.h" |
| 17 #include "third_party/harfbuzz-ng/src/hb.h" | 17 #include "third_party/harfbuzz-ng/src/hb.h" |
| 18 #include "third_party/icu/source/common/unicode/ubidi.h" | 18 #include "third_party/icu/source/common/unicode/ubidi.h" |
| 19 #include "third_party/icu/source/common/unicode/utf16.h" | |
| 19 #include "third_party/skia/include/core/SkColor.h" | 20 #include "third_party/skia/include/core/SkColor.h" |
| 20 #include "third_party/skia/include/core/SkTypeface.h" | 21 #include "third_party/skia/include/core/SkTypeface.h" |
| 21 #include "ui/gfx/canvas.h" | 22 #include "ui/gfx/canvas.h" |
| 22 #include "ui/gfx/font_fallback.h" | 23 #include "ui/gfx/font_fallback.h" |
| 23 #include "ui/gfx/font_render_params.h" | 24 #include "ui/gfx/font_render_params.h" |
| 24 #include "ui/gfx/geometry/safe_integer_conversions.h" | 25 #include "ui/gfx/geometry/safe_integer_conversions.h" |
| 25 #include "ui/gfx/harfbuzz_font_skia.h" | 26 #include "ui/gfx/harfbuzz_font_skia.h" |
| 26 #include "ui/gfx/range/range_f.h" | 27 #include "ui/gfx/range/range_f.h" |
| 28 #include "ui/gfx/text_utils.h" | |
| 27 #include "ui/gfx/utf16_indexing.h" | 29 #include "ui/gfx/utf16_indexing.h" |
| 28 | 30 |
| 29 #if defined(OS_WIN) | 31 #if defined(OS_WIN) |
| 30 #include "ui/gfx/font_fallback_win.h" | 32 #include "ui/gfx/font_fallback_win.h" |
| 31 #endif | 33 #endif |
| 32 | 34 |
| 33 using gfx::internal::RoundRangeF; | 35 using gfx::internal::RoundRangeF; |
| 34 | 36 |
| 35 namespace gfx { | 37 namespace gfx { |
| 36 | 38 |
| 37 namespace { | 39 namespace { |
| 38 | 40 |
| 39 // Text length limit. Longer strings are slow and not fully tested. | 41 // Text length limit. Longer strings are slow and not fully tested. |
| 40 const size_t kMaxTextLength = 10000; | 42 const size_t kMaxTextLength = 10000; |
| 41 | 43 |
| 42 // The maximum number of scripts a Unicode character can belong to. This value | 44 // The maximum number of scripts a Unicode character can belong to. This value |
| 43 // is arbitrarily chosen to be a good limit because it is unlikely for a single | 45 // is arbitrarily chosen to be a good limit because it is unlikely for a single |
| 44 // character to belong to more scripts. | 46 // character to belong to more scripts. |
| 45 const size_t kMaxScripts = 5; | 47 const size_t kMaxScripts = 5; |
| 46 | 48 |
| 47 // Returns true if characters of |block_code| may trigger font fallback. | 49 // Returns true if characters of |block_code| may trigger font fallback. |
| 48 // Dingbats and emoticons can be rendered through the color emoji font file, | 50 // Dingbats and emoticons can be rendered through the color emoji font file, |
| 49 // therefore it needs to be trigerred as fallbacks. See crbug.com/448909 | 51 // therefore it needs to be trigerred as fallbacks. See crbug.com/448909 |
| 50 bool IsUnusualBlockCode(UBlockCode block_code) { | 52 bool IsUnusualBlockCode(UBlockCode block_code) { |
| 51 return block_code == UBLOCK_GEOMETRIC_SHAPES || | 53 return block_code == UBLOCK_GEOMETRIC_SHAPES || |
| 52 block_code == UBLOCK_MISCELLANEOUS_SYMBOLS || | 54 block_code == UBLOCK_MISCELLANEOUS_SYMBOLS; |
| 53 block_code == UBLOCK_DINGBATS || | |
| 54 block_code == UBLOCK_EMOTICONS; | |
| 55 } | 55 } |
| 56 | 56 |
| 57 bool IsBracket(UChar32 character) { | 57 bool IsBracket(UChar32 character) { |
| 58 static const char kBrackets[] = { '(', ')', '{', '}', '<', '>', }; | 58 static const char kBrackets[] = { '(', ')', '{', '}', '<', '>', }; |
| 59 static const char* kBracketsEnd = kBrackets + arraysize(kBrackets); | 59 static const char* kBracketsEnd = kBrackets + arraysize(kBrackets); |
| 60 return std::find(kBrackets, kBracketsEnd, character) != kBracketsEnd; | 60 return std::find(kBrackets, kBracketsEnd, character) != kBracketsEnd; |
| 61 } | 61 } |
| 62 | 62 |
| 63 // Returns the boundary between a special and a regular character. Special | 63 // Returns the boundary between a special and a regular character. Special |
| 64 // characters are brackets or characters that satisfy |IsUnusualBlockCode|. | 64 // characters are brackets or characters that satisfy |IsUnusualBlockCode|. |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 83 const bool block_break = current_block != first_block && | 83 const bool block_break = current_block != first_block && |
| 84 (first_block_unusual || IsUnusualBlockCode(current_block)); | 84 (first_block_unusual || IsUnusualBlockCode(current_block)); |
| 85 if (block_break || current_char == '\n' || | 85 if (block_break || current_char == '\n' || |
| 86 first_bracket != IsBracket(current_char)) { | 86 first_bracket != IsBracket(current_char)) { |
| 87 return run_start + iter.array_pos(); | 87 return run_start + iter.array_pos(); |
| 88 } | 88 } |
| 89 } | 89 } |
| 90 return run_break; | 90 return run_break; |
| 91 } | 91 } |
| 92 | 92 |
| 93 // If the given scripts match, returns the one that isn't USCRIPT_COMMON or | 93 // If the given scripts match, returns the one that isn't USCRIPT_INHERITED, |
| 94 // USCRIPT_INHERITED, i.e. the more specific one. Otherwise returns | 94 // i.e. the more specific one. Otherwise returns USCRIPT_INVALID_CODE. |
| 95 // USCRIPT_INVALID_CODE. | |
| 96 UScriptCode ScriptIntersect(UScriptCode first, UScriptCode second) { | 95 UScriptCode ScriptIntersect(UScriptCode first, UScriptCode second) { |
| 97 if (first == second || | 96 if (first == second || second == USCRIPT_INHERITED) |
| 98 (second > USCRIPT_INVALID_CODE && second <= USCRIPT_INHERITED)) { | |
| 99 return first; | 97 return first; |
| 100 } | 98 if (first == USCRIPT_INHERITED) |
| 101 if (first > USCRIPT_INVALID_CODE && first <= USCRIPT_INHERITED) | |
| 102 return second; | 99 return second; |
| 103 return USCRIPT_INVALID_CODE; | 100 return USCRIPT_INVALID_CODE; |
| 104 } | 101 } |
| 105 | 102 |
| 106 // Writes the script and the script extensions of the character with the | 103 // Writes the script and the script extensions of the character with the |
| 107 // Unicode |codepoint|. Returns the number of written scripts. | 104 // Unicode |codepoint|. Returns the number of written scripts. |
| 108 int GetScriptExtensions(UChar32 codepoint, UScriptCode* scripts) { | 105 int GetScriptExtensions(UChar32 codepoint, UScriptCode* scripts) { |
| 109 UErrorCode icu_error = U_ZERO_ERROR; | 106 UErrorCode icu_error = U_ZERO_ERROR; |
| 110 // ICU documentation incorrectly states that the result of | 107 // ICU documentation incorrectly states that the result of |
| 111 // |uscript_getScriptExtensions| will contain the regular script property. | 108 // |uscript_getScriptExtensions| will contain the regular script property. |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 159 UScriptCode* script) { | 156 UScriptCode* script) { |
| 160 DCHECK_GT(length, 0U); | 157 DCHECK_GT(length, 0U); |
| 161 | 158 |
| 162 UScriptCode scripts[kMaxScripts] = { USCRIPT_INVALID_CODE }; | 159 UScriptCode scripts[kMaxScripts] = { USCRIPT_INVALID_CODE }; |
| 163 | 160 |
| 164 base::i18n::UTF16CharIterator char_iterator(text.c_str() + start, length); | 161 base::i18n::UTF16CharIterator char_iterator(text.c_str() + start, length); |
| 165 size_t scripts_size = GetScriptExtensions(char_iterator.get(), scripts); | 162 size_t scripts_size = GetScriptExtensions(char_iterator.get(), scripts); |
| 166 *script = scripts[0]; | 163 *script = scripts[0]; |
| 167 | 164 |
| 168 while (char_iterator.Advance()) { | 165 while (char_iterator.Advance()) { |
| 166 // Special handling to merge white space into the previous run. | |
| 167 if (u_isUWhiteSpace(char_iterator.get())) | |
| 168 continue; | |
| 169 ScriptSetIntersect(char_iterator.get(), scripts, &scripts_size); | 169 ScriptSetIntersect(char_iterator.get(), scripts, &scripts_size); |
| 170 if (scripts_size == 0U) | 170 if (scripts_size == 0U) |
| 171 return char_iterator.array_pos(); | 171 return char_iterator.array_pos(); |
| 172 *script = scripts[0]; | 172 *script = scripts[0]; |
| 173 } | 173 } |
| 174 | 174 |
| 175 return length; | 175 return length; |
| 176 } | 176 } |
| 177 | 177 |
| 178 // A port of hb_icu_script_to_script because harfbuzz on CrOS is built without | 178 // A port of hb_icu_script_to_script because harfbuzz on CrOS is built without |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 216 // than |max_width|. If |multiline| is false, only outputs a single Line from | 216 // than |max_width|. If |multiline| is false, only outputs a single Line from |
| 217 // the given runs. |min_baseline| and |min_height| are the minimum baseline and | 217 // the given runs. |min_baseline| and |min_height| are the minimum baseline and |
| 218 // height for each line. | 218 // height for each line. |
| 219 // TODO(ckocagil): Expose the interface of this class in the header and test | 219 // TODO(ckocagil): Expose the interface of this class in the header and test |
| 220 // this class directly. | 220 // this class directly. |
| 221 class HarfBuzzLineBreaker { | 221 class HarfBuzzLineBreaker { |
| 222 public: | 222 public: |
| 223 HarfBuzzLineBreaker(size_t max_width, | 223 HarfBuzzLineBreaker(size_t max_width, |
| 224 int min_baseline, | 224 int min_baseline, |
| 225 float min_height, | 225 float min_height, |
| 226 bool multiline, | |
| 227 WordWrapBehavior word_wrap_behavior, | 226 WordWrapBehavior word_wrap_behavior, |
| 228 const base::string16& text, | 227 const base::string16& text, |
| 229 const BreakList<size_t>* words, | 228 const BreakList<size_t>* words, |
| 230 const internal::TextRunList& run_list) | 229 const internal::TextRunList& run_list) |
| 231 : max_width_((max_width == 0) ? SK_ScalarMax : SkIntToScalar(max_width)), | 230 : max_width_((max_width == 0) ? SK_ScalarMax : SkIntToScalar(max_width)), |
| 232 min_baseline_(min_baseline), | 231 min_baseline_(min_baseline), |
| 233 min_height_(min_height), | 232 min_height_(min_height), |
| 234 multiline_(multiline), | |
| 235 word_wrap_behavior_(word_wrap_behavior), | 233 word_wrap_behavior_(word_wrap_behavior), |
| 236 text_(text), | 234 text_(text), |
| 237 words_(words), | 235 words_(words), |
| 238 run_list_(run_list), | 236 run_list_(run_list), |
| 237 max_descent_(0), | |
| 238 max_ascent_(0), | |
| 239 text_x_(0), | 239 text_x_(0), |
| 240 line_x_(0), | 240 available_width_(max_width_) { |
| 241 max_descent_(0), | |
| 242 max_ascent_(0) { | |
| 243 DCHECK_EQ(multiline_, (words_ != nullptr)); | |
| 244 AdvanceLine(); | 241 AdvanceLine(); |
| 245 } | 242 } |
| 246 | 243 |
| 247 // Breaks the run at given |run_index| into Line structs. | 244 // Constructs a single line for |text_| using |run_list_|. |
| 248 void AddRun(int run_index) { | 245 void ConstructSingleLine() { |
| 249 const internal::TextRunHarfBuzz* run = run_list_.runs()[run_index]; | 246 for (size_t i = 0; i < run_list_.size(); i++) { |
| 250 base::char16 first_char = text_[run->range.start()]; | 247 const internal::TextRunHarfBuzz& run = *(run_list_.runs()[i]); |
| 251 if (multiline_ && first_char == '\n') { | 248 internal::LineSegment segment; |
| 252 AdvanceLine(); | 249 segment.run = i; |
| 253 } else if (multiline_ && (line_x_ + SkFloatToScalar(run->width)) > | 250 segment.char_range = run.range; |
| 254 max_width_) { | 251 segment.x_range = Range(SkScalarCeilToInt(text_x_), |
| 255 BreakRun(run_index); | 252 SkScalarCeilToInt(text_x_ + run.width)); |
| 256 } else { | 253 segment.width = run.width; |
| 257 AddSegment(run_index, run->range, run->width); | 254 AddLineSegment(segment); |
| 255 } | |
| 256 } | |
| 257 | |
| 258 // Constructs multiple lines for |text_| based on words iteration approach. | |
| 259 void ConstructMultiLines() { | |
| 260 DCHECK(words_); | |
| 261 for (auto iter = words_->breaks().begin(); iter != words_->breaks().end(); | |
| 262 iter++) { | |
| 263 const Range word_range = words_->GetRange(iter); | |
| 264 std::vector<internal::LineSegment> word_segments; | |
| 265 SkScalar word_width = GetWordWidth(word_range, &word_segments); | |
| 266 | |
| 267 // If the last word is '\n', we should advance a new line after adding | |
| 268 // the word to the current line. | |
| 269 bool new_line = false; | |
| 270 if (!word_segments.empty() && | |
| 271 text_[word_segments.back().char_range.start()] == '\n') { | |
| 272 new_line = true; | |
| 273 word_width -= word_segments.back().width; | |
| 274 word_segments.pop_back(); | |
| 275 } | |
| 276 | |
| 277 // If the word is not the first word in the line and it can't fit into | |
| 278 // the current line, advance a new line. | |
| 279 if (word_width > available_width_ && available_width_ != max_width_) | |
| 280 AdvanceLine(); | |
| 281 if (!word_segments.empty()) | |
| 282 AddWordToLine(word_segments); | |
| 283 if (new_line) | |
| 284 AdvanceLine(); | |
| 258 } | 285 } |
| 259 } | 286 } |
| 260 | 287 |
| 261 // Finishes line breaking and outputs the results. Can be called at most once. | 288 // Finishes line breaking and outputs the results. Can be called at most once. |
| 262 void Finalize(std::vector<internal::Line>* lines, SizeF* size) { | 289 void FinalizeLines(std::vector<internal::Line>* lines, SizeF* size) { |
| 263 DCHECK(!lines_.empty()); | 290 DCHECK(!lines_.empty()); |
| 264 // Add an empty line to finish the line size calculation and remove it. | 291 // Add an empty line to finish the line size calculation and remove it. |
| 265 AdvanceLine(); | 292 AdvanceLine(); |
| 266 lines_.pop_back(); | 293 lines_.pop_back(); |
| 267 *size = total_size_; | 294 *size = total_size_; |
| 268 lines->swap(lines_); | 295 lines->swap(lines_); |
| 269 } | 296 } |
| 270 | 297 |
| 271 private: | 298 private: |
| 272 // A (line index, segment index) pair that specifies a segment in |lines_|. | 299 // A (line index, segment index) pair that specifies a segment in |lines_|. |
| 273 typedef std::pair<size_t, size_t> SegmentHandle; | 300 typedef std::pair<size_t, size_t> SegmentHandle; |
| 274 | 301 |
| 275 internal::LineSegment* SegmentFromHandle(const SegmentHandle& handle) { | 302 internal::LineSegment* SegmentFromHandle(const SegmentHandle& handle) { |
| 276 return &lines_[handle.first].segments[handle.second]; | 303 return &lines_[handle.first].segments[handle.second]; |
| 277 } | 304 } |
| 278 | 305 |
| 279 // Breaks a run into segments that fit in the last line in |lines_| and adds | |
| 280 // them. Adds a new Line to the back of |lines_| whenever a new segment can't | |
| 281 // be added without the Line's width exceeding |max_width_|. | |
| 282 void BreakRun(int run_index) { | |
| 283 const internal::TextRunHarfBuzz& run = *(run_list_.runs()[run_index]); | |
| 284 SkScalar width = 0; | |
| 285 size_t next_char = run.range.start(); | |
| 286 | |
| 287 // Break the run until it fits the current line. | |
| 288 while (next_char < run.range.end()) { | |
| 289 const size_t current_char = next_char; | |
| 290 size_t end_char = next_char; | |
| 291 const bool skip_line = | |
| 292 BreakRunAtWidth(run, current_char, &width, &end_char, &next_char); | |
| 293 AddSegment(run_index, Range(current_char, end_char), | |
| 294 SkScalarToFloat(width)); | |
| 295 if (skip_line) | |
| 296 AdvanceLine(); | |
| 297 } | |
| 298 } | |
| 299 | |
| 300 // Starting from |start_char|, finds a suitable line break position at or | |
| 301 // before available width using word break. If the current position is at the | |
| 302 // beginning of a line, this function will not roll back to |start_char| and | |
| 303 // |*next_char| will be greater than |start_char| (to avoid constructing empty | |
| 304 // lines). It stores the end of the segment range to |end_char|, which can be | |
| 305 // smaller than |*next_char| for certain word wrapping behavior. | |
| 306 // Returns whether to skip the line before |*next_char|. | |
| 307 // TODO(ckocagil): We might have to reshape after breaking at ligatures. | |
| 308 // See whether resolving the TODO above resolves this too. | |
| 309 // TODO(ckocagil): Do not reserve width for whitespace at the end of lines. | |
| 310 bool BreakRunAtWidth(const internal::TextRunHarfBuzz& run, | |
| 311 size_t start_char, | |
| 312 SkScalar* width, | |
| 313 size_t* end_char, | |
| 314 size_t* next_char) { | |
| 315 DCHECK(words_); | |
| 316 DCHECK(run.range.Contains(Range(start_char, start_char + 1))); | |
| 317 SkScalar available_width = max_width_ - line_x_; | |
| 318 BreakList<size_t>::const_iterator word = words_->GetBreak(start_char); | |
| 319 BreakList<size_t>::const_iterator next_word = word + 1; | |
| 320 // Width from |std::max(word->first, start_char)| to the current character. | |
| 321 SkScalar word_width = 0; | |
| 322 *width = 0; | |
| 323 | |
| 324 Range char_range; | |
| 325 SkScalar truncated_width = 0; | |
| 326 for (size_t i = start_char; i < run.range.end(); i += char_range.length()) { | |
| 327 // |word| holds the word boundary at or before |i|, and |next_word| holds | |
| 328 // the word boundary right after |i|. Advance both |word| and |next_word| | |
| 329 // when |i| reaches |next_word|. | |
| 330 if (next_word != words_->breaks().end() && i >= next_word->first) { | |
| 331 if (*width > available_width) { | |
| 332 DCHECK_NE(WRAP_LONG_WORDS, word_wrap_behavior_); | |
| 333 *next_char = i; | |
| 334 if (word_wrap_behavior_ != TRUNCATE_LONG_WORDS) | |
| 335 *end_char = *next_char; | |
| 336 else | |
| 337 *width = truncated_width; | |
| 338 return true; | |
| 339 } | |
| 340 word = next_word++; | |
| 341 word_width = 0; | |
| 342 } | |
| 343 | |
| 344 Range glyph_range; | |
| 345 run.GetClusterAt(i, &char_range, &glyph_range); | |
| 346 DCHECK_LT(0U, char_range.length()); | |
| 347 | |
| 348 SkScalar char_width = ((glyph_range.end() >= run.glyph_count) | |
| 349 ? SkFloatToScalar(run.width) | |
| 350 : run.positions[glyph_range.end()].x()) - | |
| 351 run.positions[glyph_range.start()].x(); | |
| 352 | |
| 353 *width += char_width; | |
| 354 word_width += char_width; | |
| 355 | |
| 356 // TODO(mukai): implement ELIDE_LONG_WORDS. | |
| 357 if (*width > available_width) { | |
| 358 if (line_x_ != 0 || word_width < *width) { | |
| 359 // Roll back one word. | |
| 360 *width -= word_width; | |
| 361 *next_char = std::max(word->first, start_char); | |
| 362 *end_char = *next_char; | |
| 363 return true; | |
| 364 } else if (word_wrap_behavior_ == WRAP_LONG_WORDS) { | |
| 365 if (char_width < *width) { | |
| 366 // Roll back one character. | |
| 367 *width -= char_width; | |
| 368 *next_char = i; | |
| 369 } else { | |
| 370 // Continue from the next character. | |
| 371 *next_char = i + char_range.length(); | |
| 372 } | |
| 373 *end_char = *next_char; | |
| 374 return true; | |
| 375 } | |
| 376 } else { | |
| 377 *end_char = char_range.end(); | |
| 378 truncated_width = *width; | |
| 379 } | |
| 380 } | |
| 381 | |
| 382 if (word_wrap_behavior_ == TRUNCATE_LONG_WORDS) | |
| 383 *width = truncated_width; | |
| 384 *end_char = *next_char = run.range.end(); | |
| 385 return false; | |
| 386 } | |
| 387 | |
| 388 // RTL runs are broken in logical order but displayed in visual order. To find | |
| 389 // the text-space coordinate (where it would fall in a single-line text) | |
| 390 // |x_range| of RTL segments, segment widths are applied in reverse order. | |
| 391 // e.g. {[5, 10], [10, 40]} will become {[35, 40], [5, 35]}. | |
| 392 void UpdateRTLSegmentRanges() { | |
| 393 if (rtl_segments_.empty()) | |
| 394 return; | |
| 395 float x = SegmentFromHandle(rtl_segments_[0])->x_range.start(); | |
| 396 for (size_t i = rtl_segments_.size(); i > 0; --i) { | |
| 397 internal::LineSegment* segment = SegmentFromHandle(rtl_segments_[i - 1]); | |
| 398 const float segment_width = segment->width; | |
| 399 segment->x_range = Range(x, x + segment_width); | |
| 400 x += segment_width; | |
| 401 } | |
| 402 rtl_segments_.clear(); | |
| 403 } | |
| 404 | |
| 405 // Finishes the size calculations of the last Line in |lines_|. Adds a new | 306 // Finishes the size calculations of the last Line in |lines_|. Adds a new |
| 406 // Line to the back of |lines_|. | 307 // Line to the back of |lines_|. |
| 407 void AdvanceLine() { | 308 void AdvanceLine() { |
| 408 if (!lines_.empty()) { | 309 if (!lines_.empty()) { |
| 409 internal::Line* line = &lines_.back(); | 310 internal::Line* line = &lines_.back(); |
| 410 std::sort(line->segments.begin(), line->segments.end(), | 311 std::sort(line->segments.begin(), line->segments.end(), |
| 411 [this](const internal::LineSegment& s1, | 312 [this](const internal::LineSegment& s1, |
| 412 const internal::LineSegment& s2) -> bool { | 313 const internal::LineSegment& s2) -> bool { |
| 413 return run_list_.logical_to_visual(s1.run) < | 314 return run_list_.logical_to_visual(s1.run) < |
| 414 run_list_.logical_to_visual(s2.run); | 315 run_list_.logical_to_visual(s2.run); |
| 415 }); | 316 }); |
| 416 line->size.set_height(std::max(min_height_, max_descent_ + max_ascent_)); | 317 line->size.set_height(std::max(min_height_, max_descent_ + max_ascent_)); |
| 417 line->baseline = | 318 line->baseline = std::max(min_baseline_, SkScalarRoundToInt(max_ascent_)); |
| 418 std::max(min_baseline_, SkScalarRoundToInt(max_ascent_)); | |
| 419 line->preceding_heights = std::ceil(total_size_.height()); | 319 line->preceding_heights = std::ceil(total_size_.height()); |
| 420 total_size_.set_height(total_size_.height() + line->size.height()); | 320 total_size_.set_height(total_size_.height() + line->size.height()); |
| 421 total_size_.set_width(std::max(total_size_.width(), line->size.width())); | 321 total_size_.set_width(std::max(total_size_.width(), line->size.width())); |
| 422 } | 322 } |
| 423 max_descent_ = 0; | 323 max_descent_ = 0; |
| 424 max_ascent_ = 0; | 324 max_ascent_ = 0; |
| 425 line_x_ = 0; | 325 available_width_ = max_width_; |
| 426 lines_.push_back(internal::Line()); | 326 lines_.push_back(internal::Line()); |
| 427 } | 327 } |
| 428 | 328 |
| 429 // Adds a new segment with the given properties to |lines_.back()|. | 329 // Adds word to the current line. A word may contain multiple segments. If the |
| 430 void AddSegment(int run_index, Range char_range, float width) { | 330 // word is the first word in line and its width exceeds |available_width_|, |
| 431 if (char_range.is_empty()) { | 331 // ignore/truncate/wrap it according to |word_wrap_behavior_|. |
| 432 DCHECK_EQ(0, width); | 332 void AddWordToLine(const std::vector<internal::LineSegment>& word_segments) { |
| 433 return; | 333 DCHECK(!lines_.empty()); |
| 334 DCHECK(!word_segments.empty()); | |
| 335 | |
| 336 bool has_truncated = false; | |
| 337 for (const internal::LineSegment& segment : word_segments) { | |
| 338 if (has_truncated) | |
| 339 break; | |
| 340 if (segment.width <= available_width_ || | |
| 341 word_wrap_behavior_ == IGNORE_LONG_WORDS) { | |
| 342 AddLineSegment(segment); | |
| 343 } else { | |
| 344 DCHECK(word_wrap_behavior_ == TRUNCATE_LONG_WORDS || | |
| 345 word_wrap_behavior_ == WRAP_LONG_WORDS); | |
| 346 has_truncated = (word_wrap_behavior_ == TRUNCATE_LONG_WORDS); | |
| 347 | |
| 348 const internal::TextRunHarfBuzz& run = *(run_list_.runs()[segment.run]); | |
| 349 internal::LineSegment remaining_segment = segment; | |
| 350 while (!remaining_segment.char_range.is_empty()) { | |
| 351 size_t cutoff_pos = GetCutoffPos(remaining_segment); | |
| 352 SkScalar width = run.GetGlyphWidthForCharRange( | |
| 353 Range(remaining_segment.char_range.start(), cutoff_pos)); | |
| 354 if (width > 0) { | |
| 355 internal::LineSegment cut_segment; | |
| 356 cut_segment.run = remaining_segment.run; | |
| 357 cut_segment.char_range = | |
| 358 Range(remaining_segment.char_range.start(), cutoff_pos); | |
| 359 cut_segment.width = width; | |
| 360 cut_segment.x_range = Range(remaining_segment.x_range.start(), | |
| 361 SkScalarCeilToInt(text_x_ + width)); | |
| 362 AddLineSegment(cut_segment); | |
| 363 // Updates old segment range. | |
| 364 remaining_segment.char_range.set_start(cutoff_pos); | |
| 365 remaining_segment.x_range.set_start(SkScalarCeilToInt(text_x_)); | |
| 366 remaining_segment.width -= width; | |
| 367 } | |
| 368 if (has_truncated) | |
| 369 break; | |
| 370 if (!remaining_segment.char_range.is_empty()) | |
| 371 AdvanceLine(); | |
| 372 } | |
| 373 } | |
| 434 } | 374 } |
| 435 const internal::TextRunHarfBuzz& run = *(run_list_.runs()[run_index]); | 375 } |
| 436 | 376 |
| 437 internal::LineSegment segment; | 377 // Add a line segment to the current line. Note that, in order to keep the |
| 438 segment.run = run_index; | 378 // visual order correct for ltr and rtl language, we need to merge segments |
| 439 segment.char_range = char_range; | 379 // that belong to the same run. |
| 440 segment.x_range = Range( | 380 void AddLineSegment(const internal::LineSegment& segment) { |
| 441 SkScalarCeilToInt(text_x_), | 381 DCHECK(!lines_.empty()); |
| 442 SkScalarCeilToInt(text_x_ + SkFloatToScalar(width))); | |
| 443 segment.width = width; | |
| 444 | |
| 445 internal::Line* line = &lines_.back(); | 382 internal::Line* line = &lines_.back(); |
| 383 const internal::TextRunHarfBuzz& run = *(run_list_.runs()[segment.run]); | |
| 384 if (!line->segments.empty()) { | |
| 385 internal::LineSegment& last_segment = line->segments.back(); | |
| 386 // Merge segments that belong to the same run. | |
| 387 if (last_segment.run == segment.run) { | |
| 388 DCHECK_EQ(last_segment.char_range.end(), segment.char_range.start()); | |
| 389 DCHECK_EQ(last_segment.x_range.end(), segment.x_range.start()); | |
| 390 last_segment.char_range.set_end(segment.char_range.end()); | |
| 391 last_segment.width += segment.width; | |
| 392 last_segment.x_range.set_end( | |
| 393 SkScalarCeilToInt(text_x_ + segment.width)); | |
| 394 if (run.is_rtl && last_segment.char_range.end() == run.range.end()) | |
| 395 UpdateRTLSegmentRanges(); | |
| 396 line->size.set_width(line->size.width() + segment.width); | |
| 397 text_x_ += segment.width; | |
| 398 available_width_ -= segment.width; | |
| 399 return; | |
| 400 } | |
| 401 } | |
| 446 line->segments.push_back(segment); | 402 line->segments.push_back(segment); |
| 447 | 403 |
| 448 SkPaint paint; | 404 SkPaint paint; |
| 449 paint.setTypeface(run.skia_face.get()); | 405 paint.setTypeface(run.skia_face.get()); |
| 450 paint.setTextSize(SkIntToScalar(run.font_size)); | 406 paint.setTextSize(SkIntToScalar(run.font_size)); |
| 451 paint.setAntiAlias(run.render_params.antialiasing); | 407 paint.setAntiAlias(run.render_params.antialiasing); |
| 452 SkPaint::FontMetrics metrics; | 408 SkPaint::FontMetrics metrics; |
| 453 paint.getFontMetrics(&metrics); | 409 paint.getFontMetrics(&metrics); |
| 454 | 410 |
| 455 line->size.set_width(line->size.width() + width); | 411 line->size.set_width(line->size.width() + segment.width); |
| 456 // TODO(dschuyler): Account for stylized baselines in string sizing. | 412 // TODO(dschuyler): Account for stylized baselines in string sizing. |
| 457 max_descent_ = std::max(max_descent_, metrics.fDescent); | 413 max_descent_ = std::max(max_descent_, metrics.fDescent); |
| 458 // fAscent is always negative. | 414 // fAscent is always negative. |
| 459 max_ascent_ = std::max(max_ascent_, -metrics.fAscent); | 415 max_ascent_ = std::max(max_ascent_, -metrics.fAscent); |
| 460 | 416 |
| 461 if (run.is_rtl) { | 417 if (run.is_rtl) { |
| 462 rtl_segments_.push_back( | 418 rtl_segments_.push_back( |
| 463 SegmentHandle(lines_.size() - 1, line->segments.size() - 1)); | 419 SegmentHandle(lines_.size() - 1, line->segments.size() - 1)); |
| 464 // If this is the last segment of an RTL run, reprocess the text-space x | 420 // If this is the last segment of an RTL run, reprocess the text-space x |
| 465 // ranges of all segments from the run. | 421 // ranges of all segments from the run. |
| 466 if (char_range.end() == run.range.end()) | 422 if (segment.char_range.end() == run.range.end()) |
| 467 UpdateRTLSegmentRanges(); | 423 UpdateRTLSegmentRanges(); |
| 468 } | 424 } |
| 469 text_x_ += SkFloatToScalar(width); | 425 text_x_ += segment.width; |
| 470 line_x_ += SkFloatToScalar(width); | 426 available_width_ -= segment.width; |
| 427 } | |
| 428 | |
| 429 // Finds the end position |end_pos| in |segment| where the preceding width is | |
| 430 // no larger than |available_width_|. | |
| 431 size_t GetCutoffPos(const internal::LineSegment& segment) const { | |
| 432 DCHECK(!segment.char_range.is_empty()); | |
| 433 const internal::TextRunHarfBuzz& run = *(run_list_.runs()[segment.run]); | |
| 434 size_t end_pos = segment.char_range.start(); | |
| 435 SkScalar width = 0; | |
| 436 while (end_pos < segment.char_range.end()) { | |
| 437 const SkScalar char_width = | |
| 438 run.GetGlyphWidthForCharRange(Range(end_pos, end_pos + 1)); | |
| 439 if (width + char_width > available_width_) | |
| 440 break; | |
| 441 width += char_width; | |
| 442 end_pos++; | |
| 443 } | |
| 444 | |
| 445 // |max_width_| might be smaller than a single character. In this case we | |
| 446 // need to put at least one character in the line. Note that, we should | |
| 447 // not separate surrogate pair or combining characters. | |
|
msw
2015/06/09 01:15:50
You removed the preceding call to FindValidBoundar
xdai1
2015/06/09 17:59:21
We don't need to worry about this case, because Ge
msw
2015/06/09 22:51:53
Sorry, I don't understand; this function returns |
xdai1
2015/06/10 02:24:03
Yes, I think you're right! I should not remove the
| |
| 448 // See RenderTextTest.Multiline_MinWidth for an example. | |
| 449 if (width == 0 && available_width_ == max_width_) | |
| 450 end_pos = FindValidBoundaryAfter(text_, end_pos + 1); | |
| 451 | |
| 452 return end_pos; | |
| 453 } | |
| 454 | |
| 455 // Gets the glyph width for |word_range|, and splits the |word| into different | |
| 456 // segments based on its runs. | |
| 457 SkScalar GetWordWidth(const Range& word_range, | |
| 458 std::vector<internal::LineSegment>* segments) const { | |
| 459 DCHECK(words_); | |
| 460 if (word_range.is_empty() || segments == nullptr) | |
| 461 return 0; | |
| 462 size_t run_start_index = run_list_.GetRunIndexAt(word_range.start()); | |
| 463 size_t run_end_index = run_list_.GetRunIndexAt(word_range.end() - 1); | |
| 464 SkScalar width = 0; | |
| 465 for (size_t i = run_start_index; i <= run_end_index; i++) { | |
| 466 const internal::TextRunHarfBuzz& run = *(run_list_.runs()[i]); | |
| 467 const Range char_range = run.range.Intersect(word_range); | |
| 468 DCHECK(!char_range.is_empty()); | |
| 469 const SkScalar char_width = run.GetGlyphWidthForCharRange(char_range); | |
| 470 width += char_width; | |
| 471 | |
| 472 internal::LineSegment segment; | |
| 473 segment.run = i; | |
| 474 segment.char_range = char_range; | |
| 475 segment.width = char_width; | |
| 476 segment.x_range = Range(SkScalarCeilToInt(text_x_ + width - char_width), | |
| 477 SkScalarCeilToInt(text_x_ + width)); | |
| 478 segments->push_back(segment); | |
| 479 } | |
| 480 return width; | |
| 481 } | |
| 482 | |
| 483 // RTL runs are broken in logical order but displayed in visual order. To find | |
| 484 // the text-space coordinate (where it would fall in a single-line text) | |
| 485 // |x_range| of RTL segments, segment widths are applied in reverse order. | |
| 486 // e.g. {[5, 10], [10, 40]} will become {[35, 40], [5, 35]}. | |
| 487 void UpdateRTLSegmentRanges() { | |
| 488 if (rtl_segments_.empty()) | |
| 489 return; | |
| 490 float x = SegmentFromHandle(rtl_segments_[0])->x_range.start(); | |
| 491 for (size_t i = rtl_segments_.size(); i > 0; --i) { | |
| 492 internal::LineSegment* segment = SegmentFromHandle(rtl_segments_[i - 1]); | |
| 493 const float segment_width = segment->width; | |
| 494 segment->x_range = Range(x, x + segment_width); | |
| 495 x += segment_width; | |
| 496 } | |
| 497 rtl_segments_.clear(); | |
| 471 } | 498 } |
| 472 | 499 |
| 473 const SkScalar max_width_; | 500 const SkScalar max_width_; |
| 474 const int min_baseline_; | 501 const int min_baseline_; |
| 475 const float min_height_; | 502 const float min_height_; |
| 476 const bool multiline_; | |
| 477 const WordWrapBehavior word_wrap_behavior_; | 503 const WordWrapBehavior word_wrap_behavior_; |
| 478 const base::string16& text_; | 504 const base::string16& text_; |
| 479 const BreakList<size_t>* const words_; | 505 const BreakList<size_t>* const words_; |
| 480 const internal::TextRunList& run_list_; | 506 const internal::TextRunList& run_list_; |
| 481 | 507 |
| 482 // Stores the resulting lines. | 508 // Stores the resulting lines. |
| 483 std::vector<internal::Line> lines_; | 509 std::vector<internal::Line> lines_; |
| 484 | 510 |
| 485 // Text space and line space x coordinates of the next segment to be added. | |
| 486 SkScalar text_x_; | |
| 487 SkScalar line_x_; | |
| 488 | |
| 489 float max_descent_; | 511 float max_descent_; |
| 490 float max_ascent_; | 512 float max_ascent_; |
| 491 | 513 |
| 514 // Text space x coordinates of the next segment to be added. | |
| 515 SkScalar text_x_; | |
| 516 // Stores available width in the current line. | |
| 517 SkScalar available_width_; | |
| 518 | |
| 492 // Size of the multiline text, not including the currently processed line. | 519 // Size of the multiline text, not including the currently processed line. |
| 493 SizeF total_size_; | 520 SizeF total_size_; |
| 494 | 521 |
| 495 // The current RTL run segments, to be applied by |UpdateRTLSegmentRanges()|. | 522 // The current RTL run segments, to be applied by |UpdateRTLSegmentRanges()|. |
| 496 std::vector<SegmentHandle> rtl_segments_; | 523 std::vector<SegmentHandle> rtl_segments_; |
| 497 | 524 |
| 498 DISALLOW_COPY_AND_ASSIGN(HarfBuzzLineBreaker); | 525 DISALLOW_COPY_AND_ASSIGN(HarfBuzzLineBreaker); |
| 499 }; | 526 }; |
| 500 | 527 |
| 501 // Function object for case insensitive string comparison. | 528 // Function object for case insensitive string comparison. |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 525 baseline_offset(0), | 552 baseline_offset(0), |
| 526 baseline_type(0), | 553 baseline_type(0), |
| 527 font_style(0), | 554 font_style(0), |
| 528 strike(false), | 555 strike(false), |
| 529 diagonal_strike(false), | 556 diagonal_strike(false), |
| 530 underline(false) { | 557 underline(false) { |
| 531 } | 558 } |
| 532 | 559 |
| 533 TextRunHarfBuzz::~TextRunHarfBuzz() {} | 560 TextRunHarfBuzz::~TextRunHarfBuzz() {} |
| 534 | 561 |
| 535 void TextRunHarfBuzz::GetClusterAt(size_t pos, | |
| 536 Range* chars, | |
| 537 Range* glyphs) const { | |
| 538 DCHECK(range.Contains(Range(pos, pos + 1))); | |
| 539 DCHECK(chars); | |
| 540 DCHECK(glyphs); | |
| 541 | |
| 542 if (glyph_count == 0) { | |
| 543 *chars = range; | |
| 544 *glyphs = Range(); | |
| 545 return; | |
| 546 } | |
| 547 | |
| 548 if (is_rtl) { | |
| 549 GetClusterAtImpl(pos, range, glyph_to_char.rbegin(), glyph_to_char.rend(), | |
| 550 true, chars, glyphs); | |
| 551 return; | |
| 552 } | |
| 553 | |
| 554 GetClusterAtImpl(pos, range, glyph_to_char.begin(), glyph_to_char.end(), | |
| 555 false, chars, glyphs); | |
| 556 } | |
| 557 | |
| 558 Range TextRunHarfBuzz::CharRangeToGlyphRange(const Range& char_range) const { | 562 Range TextRunHarfBuzz::CharRangeToGlyphRange(const Range& char_range) const { |
| 559 DCHECK(range.Contains(char_range)); | 563 DCHECK(range.Contains(char_range)); |
| 560 DCHECK(!char_range.is_reversed()); | 564 DCHECK(!char_range.is_reversed()); |
| 561 DCHECK(!char_range.is_empty()); | 565 DCHECK(!char_range.is_empty()); |
| 562 | 566 |
| 563 Range start_glyphs; | 567 Range start_glyphs; |
| 564 Range end_glyphs; | 568 Range end_glyphs; |
| 565 Range temp_range; | 569 Range temp_range; |
| 566 GetClusterAt(char_range.start(), &temp_range, &start_glyphs); | 570 GetClusterAt(char_range.start(), &temp_range, &start_glyphs); |
| 567 GetClusterAt(char_range.end() - 1, &temp_range, &end_glyphs); | 571 GetClusterAt(char_range.end() - 1, &temp_range, &end_glyphs); |
| 568 | 572 |
| 569 return is_rtl ? Range(end_glyphs.start(), start_glyphs.end()) : | 573 return is_rtl ? Range(end_glyphs.start(), start_glyphs.end()) : |
| 570 Range(start_glyphs.start(), end_glyphs.end()); | 574 Range(start_glyphs.start(), end_glyphs.end()); |
| 571 } | 575 } |
| 572 | 576 |
| 573 size_t TextRunHarfBuzz::CountMissingGlyphs() const { | 577 size_t TextRunHarfBuzz::CountMissingGlyphs() const { |
| 574 static const int kMissingGlyphId = 0; | 578 static const int kMissingGlyphId = 0; |
| 575 size_t missing = 0; | 579 size_t missing = 0; |
| 576 for (size_t i = 0; i < glyph_count; ++i) | 580 for (size_t i = 0; i < glyph_count; ++i) |
| 577 missing += (glyphs[i] == kMissingGlyphId) ? 1 : 0; | 581 missing += (glyphs[i] == kMissingGlyphId) ? 1 : 0; |
| 578 return missing; | 582 return missing; |
| 579 } | 583 } |
| 580 | 584 |
| 585 void TextRunHarfBuzz::GetClusterAt(size_t pos, | |
| 586 Range* chars, | |
| 587 Range* glyphs) const { | |
| 588 DCHECK(range.Contains(Range(pos, pos + 1))); | |
| 589 DCHECK(chars); | |
| 590 DCHECK(glyphs); | |
| 591 | |
| 592 if (glyph_count == 0) { | |
| 593 *chars = range; | |
| 594 *glyphs = Range(); | |
| 595 return; | |
| 596 } | |
| 597 | |
| 598 if (is_rtl) { | |
| 599 GetClusterAtImpl(pos, range, glyph_to_char.rbegin(), glyph_to_char.rend(), | |
| 600 true, chars, glyphs); | |
| 601 return; | |
| 602 } | |
| 603 | |
| 604 GetClusterAtImpl(pos, range, glyph_to_char.begin(), glyph_to_char.end(), | |
| 605 false, chars, glyphs); | |
| 606 } | |
| 607 | |
| 581 RangeF TextRunHarfBuzz::GetGraphemeBounds( | 608 RangeF TextRunHarfBuzz::GetGraphemeBounds( |
| 582 base::i18n::BreakIterator* grapheme_iterator, | 609 base::i18n::BreakIterator* grapheme_iterator, |
| 583 size_t text_index) { | 610 size_t text_index) { |
| 584 DCHECK_LT(text_index, range.end()); | 611 DCHECK_LT(text_index, range.end()); |
| 585 if (glyph_count == 0) | 612 if (glyph_count == 0) |
| 586 return RangeF(preceding_run_widths, preceding_run_widths + width); | 613 return RangeF(preceding_run_widths, preceding_run_widths + width); |
| 587 | 614 |
| 588 Range chars; | 615 Range chars; |
| 589 Range glyphs; | 616 Range glyphs; |
| 590 GetClusterAt(text_index, &chars, &glyphs); | 617 GetClusterAt(text_index, &chars, &glyphs); |
| (...skipping 28 matching lines...) Expand all Loading... | |
| 619 cluster_width * (before + 1) / static_cast<float>(total)); | 646 cluster_width * (before + 1) / static_cast<float>(total)); |
| 620 return RangeF(preceding_run_widths + grapheme_begin_x, | 647 return RangeF(preceding_run_widths + grapheme_begin_x, |
| 621 preceding_run_widths + grapheme_end_x); | 648 preceding_run_widths + grapheme_end_x); |
| 622 } | 649 } |
| 623 } | 650 } |
| 624 | 651 |
| 625 return RangeF(preceding_run_widths + cluster_begin_x, | 652 return RangeF(preceding_run_widths + cluster_begin_x, |
| 626 preceding_run_widths + cluster_end_x); | 653 preceding_run_widths + cluster_end_x); |
| 627 } | 654 } |
| 628 | 655 |
| 656 SkScalar TextRunHarfBuzz::GetGlyphWidthForCharRange( | |
| 657 const Range& char_range) const { | |
| 658 if (char_range.is_empty()) | |
| 659 return 0; | |
| 660 | |
| 661 DCHECK(range.Contains(char_range)); | |
| 662 Range glyph_range = CharRangeToGlyphRange(char_range); | |
| 663 return ((glyph_range.end() == glyph_count) | |
| 664 ? SkFloatToScalar(width) | |
| 665 : positions[glyph_range.end()].x()) - | |
| 666 positions[glyph_range.start()].x(); | |
| 667 } | |
| 668 | |
| 629 TextRunList::TextRunList() : width_(0.0f) {} | 669 TextRunList::TextRunList() : width_(0.0f) {} |
| 630 | 670 |
| 631 TextRunList::~TextRunList() {} | 671 TextRunList::~TextRunList() {} |
| 632 | 672 |
| 633 void TextRunList::Reset() { | 673 void TextRunList::Reset() { |
| 634 runs_.clear(); | 674 runs_.clear(); |
| 635 width_ = 0.0f; | 675 width_ = 0.0f; |
| 636 } | 676 } |
| 637 | 677 |
| 638 void TextRunList::InitIndexMap() { | 678 void TextRunList::InitIndexMap() { |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 653 void TextRunList::ComputePrecedingRunWidths() { | 693 void TextRunList::ComputePrecedingRunWidths() { |
| 654 // Precalculate run width information. | 694 // Precalculate run width information. |
| 655 width_ = 0.0f; | 695 width_ = 0.0f; |
| 656 for (size_t i = 0; i < runs_.size(); ++i) { | 696 for (size_t i = 0; i < runs_.size(); ++i) { |
| 657 TextRunHarfBuzz* run = runs_[visual_to_logical_[i]]; | 697 TextRunHarfBuzz* run = runs_[visual_to_logical_[i]]; |
| 658 run->preceding_run_widths = width_; | 698 run->preceding_run_widths = width_; |
| 659 width_ += run->width; | 699 width_ += run->width; |
| 660 } | 700 } |
| 661 } | 701 } |
| 662 | 702 |
| 703 size_t TextRunList::GetRunIndexAt(size_t position) const { | |
| 704 for (size_t i = 0; i < runs_.size(); ++i) { | |
| 705 if (runs_[i]->range.start() <= position && runs_[i]->range.end() > position) | |
| 706 return i; | |
| 707 } | |
| 708 return runs_.size(); | |
| 709 } | |
| 710 | |
| 663 } // namespace internal | 711 } // namespace internal |
| 664 | 712 |
| 665 RenderTextHarfBuzz::RenderTextHarfBuzz() | 713 RenderTextHarfBuzz::RenderTextHarfBuzz() |
| 666 : RenderText(), | 714 : RenderText(), |
| 667 update_layout_run_list_(false), | 715 update_layout_run_list_(false), |
| 668 update_display_run_list_(false), | 716 update_display_run_list_(false), |
| 669 update_grapheme_iterator_(false), | 717 update_grapheme_iterator_(false), |
| 670 update_display_text_(false), | 718 update_display_text_(false), |
| 671 glyph_width_for_test_(0u) { | 719 glyph_width_for_test_(0u) { |
| 672 set_truncate_length(kMaxTextLength); | 720 set_truncate_length(kMaxTextLength); |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1001 if (lines().empty()) { | 1049 if (lines().empty()) { |
| 1002 // TODO(ckocagil): Remove ScopedTracker below once crbug.com/441028 is | 1050 // TODO(ckocagil): Remove ScopedTracker below once crbug.com/441028 is |
| 1003 // fixed. | 1051 // fixed. |
| 1004 scoped_ptr<tracked_objects::ScopedTracker> tracking_profile( | 1052 scoped_ptr<tracked_objects::ScopedTracker> tracking_profile( |
| 1005 new tracked_objects::ScopedTracker( | 1053 new tracked_objects::ScopedTracker( |
| 1006 FROM_HERE_WITH_EXPLICIT_FUNCTION("441028 HarfBuzzLineBreaker"))); | 1054 FROM_HERE_WITH_EXPLICIT_FUNCTION("441028 HarfBuzzLineBreaker"))); |
| 1007 | 1055 |
| 1008 internal::TextRunList* run_list = GetRunList(); | 1056 internal::TextRunList* run_list = GetRunList(); |
| 1009 HarfBuzzLineBreaker line_breaker( | 1057 HarfBuzzLineBreaker line_breaker( |
| 1010 display_rect().width(), font_list().GetBaseline(), | 1058 display_rect().width(), font_list().GetBaseline(), |
| 1011 std::max(font_list().GetHeight(), min_line_height()), multiline(), | 1059 std::max(font_list().GetHeight(), min_line_height()), |
| 1012 word_wrap_behavior(), GetDisplayText(), | 1060 word_wrap_behavior(), GetDisplayText(), |
| 1013 multiline() ? &GetLineBreaks() : nullptr, *run_list); | 1061 multiline() ? &GetLineBreaks() : nullptr, *run_list); |
| 1014 | 1062 |
| 1015 tracking_profile.reset(); | 1063 tracking_profile.reset(); |
| 1016 | 1064 |
| 1017 for (size_t i = 0; i < run_list->size(); ++i) | 1065 if (multiline()) |
| 1018 line_breaker.AddRun(i); | 1066 line_breaker.ConstructMultiLines(); |
| 1067 else | |
| 1068 line_breaker.ConstructSingleLine(); | |
| 1019 std::vector<internal::Line> lines; | 1069 std::vector<internal::Line> lines; |
| 1020 line_breaker.Finalize(&lines, &total_size_); | 1070 line_breaker.FinalizeLines(&lines, &total_size_); |
| 1021 set_lines(&lines); | 1071 set_lines(&lines); |
| 1022 } | 1072 } |
| 1023 } | 1073 } |
| 1024 | 1074 |
| 1025 void RenderTextHarfBuzz::DrawVisualText(Canvas* canvas) { | 1075 void RenderTextHarfBuzz::DrawVisualText(Canvas* canvas) { |
| 1026 internal::SkiaTextRenderer renderer(canvas); | 1076 internal::SkiaTextRenderer renderer(canvas); |
| 1027 DrawVisualTextInternal(&renderer); | 1077 DrawVisualTextInternal(&renderer); |
| 1028 } | 1078 } |
| 1029 | 1079 |
| 1030 void RenderTextHarfBuzz::DrawVisualTextInternal( | 1080 void RenderTextHarfBuzz::DrawVisualTextInternal( |
| (...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1479 DCHECK(!update_layout_run_list_); | 1529 DCHECK(!update_layout_run_list_); |
| 1480 DCHECK(!update_display_run_list_); | 1530 DCHECK(!update_display_run_list_); |
| 1481 return text_elided() ? display_run_list_.get() : &layout_run_list_; | 1531 return text_elided() ? display_run_list_.get() : &layout_run_list_; |
| 1482 } | 1532 } |
| 1483 | 1533 |
| 1484 const internal::TextRunList* RenderTextHarfBuzz::GetRunList() const { | 1534 const internal::TextRunList* RenderTextHarfBuzz::GetRunList() const { |
| 1485 return const_cast<RenderTextHarfBuzz*>(this)->GetRunList(); | 1535 return const_cast<RenderTextHarfBuzz*>(this)->GetRunList(); |
| 1486 } | 1536 } |
| 1487 | 1537 |
| 1488 } // namespace gfx | 1538 } // namespace gfx |
| OLD | NEW |