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
3 // found in the LICENSE file.
5 #ifndef UI_GFX_RENDER_TEXT_WIN_H_
6 #define UI_GFX_RENDER_TEXT_WIN_H_
14 #include "base/memory/scoped_ptr.h"
15 #include "base/memory/scoped_vector.h"
16 #include "ui/gfx/render_text.h"
28 // A gfx::Font::FontStyle flag to specify bold and italic styles.
29 // Supersedes |font.GetFontStyle()|. Stored separately to avoid calling
30 // |font.DeriveFont()|, which is expensive on Windows.
38 // The cumulative widths of preceding runs.
39 int preceding_run_widths
;
41 SCRIPT_ANALYSIS script_analysis
;
43 scoped_ptr
<WORD
[]> glyphs
;
44 scoped_ptr
<WORD
[]> logical_clusters
;
45 scoped_ptr
<SCRIPT_VISATTR
[]> visible_attributes
;
48 scoped_ptr
<int[]> advance_widths
;
49 scoped_ptr
<GOFFSET
[]> offsets
;
51 SCRIPT_CACHE script_cache
;
54 DISALLOW_COPY_AND_ASSIGN(TextRun
);
57 } // namespace internal
59 // RenderTextWin is the Windows implementation of RenderText using Uniscribe.
60 class RenderTextWin
: public RenderText
{
63 virtual ~RenderTextWin();
65 // Overridden from RenderText:
66 virtual scoped_ptr
<RenderText
> CreateInstanceOfSameType() const override
;
67 virtual Size
GetStringSize() override
;
68 virtual SelectionModel
FindCursorPosition(const Point
& point
) override
;
69 virtual std::vector
<FontSpan
> GetFontSpansForTesting() override
;
72 // Overridden from RenderText:
73 virtual int GetLayoutTextBaseline() override
;
74 virtual SelectionModel
AdjacentCharSelectionModel(
75 const SelectionModel
& selection
,
76 VisualCursorDirection direction
) override
;
77 virtual SelectionModel
AdjacentWordSelectionModel(
78 const SelectionModel
& selection
,
79 VisualCursorDirection direction
) override
;
80 virtual Range
GetGlyphBounds(size_t index
) override
;
81 virtual std::vector
<Rect
> GetSubstringBounds(const Range
& range
) override
;
82 virtual size_t TextIndexToLayoutIndex(size_t index
) const override
;
83 virtual size_t LayoutIndexToTextIndex(size_t index
) const override
;
84 virtual bool IsValidCursorIndex(size_t index
) override
;
85 virtual void ResetLayout() override
;
86 virtual void EnsureLayout() override
;
87 virtual void DrawVisualText(Canvas
* canvas
) override
;
90 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, Win_BreakRunsByUnicodeBlocks
);
91 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, Win_LogicalClusters
);
92 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, Multiline_MinWidth
);
93 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, Multiline_NormalWidth
);
94 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, BreakRunsByUnicodeBlocks
);
96 void ItemizeLogicalText();
97 void LayoutVisualText();
98 void LayoutTextRun(internal::TextRun
* run
);
100 // Helper function that calls |ScriptShape()| on the run, which has logic to
101 // handle E_OUTOFMEMORY return codes.
102 HRESULT
ShapeTextRunWithFont(internal::TextRun
* run
, const Font
& font
);
104 // Returns the number of characters in |run| that have missing glyphs.
105 int CountCharsWithMissingGlyphs(internal::TextRun
* run
,
106 HRESULT shaping_result
) const;
108 // Return the run index that contains the argument; or the length of the
109 // |runs_| vector if argument exceeds the text length or width.
110 size_t GetRunContainingCaret(const SelectionModel
& caret
) const;
111 size_t GetRunContainingXCoord(int x
) const;
113 // Given a |run|, returns the SelectionModel that contains the logical first
114 // or last caret position inside (not at a boundary of) the run.
115 // The returned value represents a cursor/caret position without a selection.
116 SelectionModel
FirstSelectionModelInsideRun(const internal::TextRun
* run
);
117 SelectionModel
LastSelectionModelInsideRun(const internal::TextRun
* run
);
119 // Cached HDC for performing Uniscribe API calls.
120 static HDC cached_hdc_
;
122 // Cached map from font name to the last successful substitute font used.
123 // TODO(asvitkine): Move the caching logic to font_fallback_win.cc.
124 static std::map
<std::string
, Font
> successful_substitute_fonts_
;
126 SCRIPT_CONTROL script_control_
;
127 SCRIPT_STATE script_state_
;
129 ScopedVector
<internal::TextRun
> runs_
;
131 // Single line width of the layout text.
134 // Wrapped multiline size of the layout text.
135 Size multiline_string_size_
;
137 scoped_ptr
<int[]> visual_to_logical_
;
138 scoped_ptr
<int[]> logical_to_visual_
;
142 DISALLOW_COPY_AND_ASSIGN(RenderTextWin
);
147 #endif // UI_GFX_RENDER_TEXT_WIN_H_