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

Side by Side Diff: ui/gfx/render_text_win.h

Issue 371413002: Don't split text runs on underline style change (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 months 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
« no previous file with comments | « no previous file | ui/gfx/render_text_win.cc » ('j') | ui/gfx/render_text_win.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef UI_GFX_RENDER_TEXT_WIN_H_ 5 #ifndef UI_GFX_RENDER_TEXT_WIN_H_
6 #define UI_GFX_RENDER_TEXT_WIN_H_ 6 #define UI_GFX_RENDER_TEXT_WIN_H_
7 7
8 #include <usp10.h> 8 #include <usp10.h>
9 9
10 #include <map> 10 #include <map>
(...skipping 14 matching lines...) Expand all
25 25
26 Range range; 26 Range range;
27 Font font; 27 Font font;
28 // A gfx::Font::FontStyle flag to specify bold and italic styles. 28 // A gfx::Font::FontStyle flag to specify bold and italic styles.
29 // Supersedes |font.GetFontStyle()|. Stored separately to avoid calling 29 // Supersedes |font.GetFontStyle()|. Stored separately to avoid calling
30 // |font.DeriveFont()|, which is expensive on Windows. 30 // |font.DeriveFont()|, which is expensive on Windows.
31 int font_style; 31 int font_style;
32 32
33 bool strike; 33 bool strike;
34 bool diagonal_strike; 34 bool diagonal_strike;
35 bool underline;
36 35
37 int width; 36 int width;
38 // The cumulative widths of preceding runs. 37 // The cumulative widths of preceding runs.
39 int preceding_run_widths; 38 int preceding_run_widths;
40 39
41 SCRIPT_ANALYSIS script_analysis; 40 SCRIPT_ANALYSIS script_analysis;
42 41
43 scoped_ptr<WORD[]> glyphs; 42 scoped_ptr<WORD[]> glyphs;
44 scoped_ptr<WORD[]> logical_clusters; 43 scoped_ptr<WORD[]> logical_clusters;
45 scoped_ptr<SCRIPT_VISATTR[]> visible_attributes; 44 scoped_ptr<SCRIPT_VISATTR[]> visible_attributes;
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 scoped_ptr<int[]> logical_to_visual_; 134 scoped_ptr<int[]> logical_to_visual_;
136 135
137 bool needs_layout_; 136 bool needs_layout_;
138 137
139 DISALLOW_COPY_AND_ASSIGN(RenderTextWin); 138 DISALLOW_COPY_AND_ASSIGN(RenderTextWin);
140 }; 139 };
141 140
142 } // namespace gfx 141 } // namespace gfx
143 142
144 #endif // UI_GFX_RENDER_TEXT_WIN_H_ 143 #endif // UI_GFX_RENDER_TEXT_WIN_H_
OLDNEW
« no previous file with comments | « no previous file | ui/gfx/render_text_win.cc » ('j') | ui/gfx/render_text_win.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698