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 #ifndef UI_GFX_RENDER_TEXT_MAC_H_ | 5 #ifndef UI_GFX_RENDER_TEXT_MAC_H_ |
6 #define UI_GFX_RENDER_TEXT_MAC_H_ | 6 #define UI_GFX_RENDER_TEXT_MAC_H_ |
7 | 7 |
8 #include <ApplicationServices/ApplicationServices.h> | 8 #include <ApplicationServices/ApplicationServices.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
46 std::vector<Rect> GetSubstringBounds(const Range& range) override; | 46 std::vector<Rect> GetSubstringBounds(const Range& range) override; |
47 size_t TextIndexToDisplayIndex(size_t index) override; | 47 size_t TextIndexToDisplayIndex(size_t index) override; |
48 size_t DisplayIndexToTextIndex(size_t index) override; | 48 size_t DisplayIndexToTextIndex(size_t index) override; |
49 bool IsValidCursorIndex(size_t index) override; | 49 bool IsValidCursorIndex(size_t index) override; |
50 void OnLayoutTextAttributeChanged(bool text_changed) override; | 50 void OnLayoutTextAttributeChanged(bool text_changed) override; |
51 void OnDisplayTextAttributeChanged() override; | 51 void OnDisplayTextAttributeChanged() override; |
52 void EnsureLayout() override; | 52 void EnsureLayout() override; |
53 void DrawVisualText(Canvas* canvas) override; | 53 void DrawVisualText(Canvas* canvas) override; |
54 | 54 |
55 private: | 55 private: |
56 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, Mac_ElidedText); | |
57 | |
56 struct TextRun { | 58 struct TextRun { |
57 CTRunRef ct_run; | 59 CTRunRef ct_run; |
58 SkPoint origin; | 60 SkPoint origin; |
59 std::vector<uint16> glyphs; | 61 std::vector<uint16> glyphs; |
60 std::vector<SkPoint> glyph_positions; | 62 std::vector<SkPoint> glyph_positions; |
61 SkScalar width; | 63 SkScalar width; |
62 std::string font_name; | 64 std::string font_name; |
63 int font_style; | 65 int font_style; |
64 SkScalar text_size; | 66 SkScalar text_size; |
65 SkColor foreground; | 67 SkColor foreground; |
66 bool underline; | 68 bool underline; |
67 bool strike; | 69 bool strike; |
68 bool diagonal_strike; | 70 bool diagonal_strike; |
69 | 71 |
70 TextRun(); | 72 TextRun(); |
71 ~TextRun(); | 73 ~TextRun(); |
72 }; | 74 }; |
73 | 75 |
76 // Update |string_size_| based on the |layout_text()|. | |
77 void EnsureStringSize(); | |
oshima
2015/03/05 18:14:20
EnsureLayoutTextSize() ?
Jun Mukai
2015/03/05 18:41:38
Renamed to GetLayoutTextSize(). This is (currently
| |
78 | |
79 // Creates Core Text line object and its attributes for the given text and | |
80 // returns the text. |attributes| keeps the ownership of the text attributes. | |
81 // See the comments of ArrayStyles() implementation for the ownership details. | |
82 base::ScopedCFTypeRef<CTLineRef> EnsureLayoutInternal( | |
83 const base::string16& text, | |
84 base::ScopedCFTypeRef<CFMutableArrayRef>* attributes) const; | |
85 | |
74 // Applies RenderText styles to |attr_string| with the given |ct_font|. | 86 // Applies RenderText styles to |attr_string| with the given |ct_font|. |
75 void ApplyStyles(CFMutableAttributedStringRef attr_string, CTFontRef ct_font); | 87 // Returns the array of attributes to keep the ownership of the attributes. |
88 // See the comments in .cc file for the details. | |
89 base::ScopedCFTypeRef<CFMutableArrayRef> ApplyStyles( | |
90 CFMutableAttributedStringRef attr_string, | |
91 CTFontRef ct_font) const; | |
76 | 92 |
77 // Updates |runs_| based on |line_| and sets |runs_valid_| to true. | 93 // Updates |runs_| based on |line_| and sets |runs_valid_| to true. |
78 void ComputeRuns(); | 94 void ComputeRuns(); |
79 | 95 |
80 // The Core Text line of text. Created by |EnsureLayout()|. | 96 // The Core Text line of text. Created by |EnsureLayout()|. |
81 base::ScopedCFTypeRef<CTLineRef> line_; | 97 base::ScopedCFTypeRef<CTLineRef> line_; |
82 | 98 |
83 // Array to hold CFAttributedString attributes that allows Core Text to hold | 99 // Array to hold CFAttributedString attributes that allows Core Text to hold |
84 // weak references to them without leaking. | 100 // weak references to them without leaking. |
85 base::ScopedCFTypeRef<CFMutableArrayRef> attributes_; | 101 base::ScopedCFTypeRef<CFMutableArrayRef> attributes_; |
86 | 102 |
87 // Visual dimensions of the text. Computed by |EnsureLayout()|. | 103 // Visual dimensions of the text. Computed by |EnsureLayout()|. |
88 SizeF string_size_; | 104 scoped_ptr<SizeF> string_size_; |
89 | 105 |
90 // Common baseline for this line of text. Computed by |EnsureLayout()|. | 106 // Common baseline for this line of text. Computed by |EnsureLayout()|. |
91 SkScalar common_baseline_; | 107 SkScalar common_baseline_; |
92 | 108 |
93 // Visual text runs. Only valid if |runs_valid_| is true. Computed by | 109 // Visual text runs. Only valid if |runs_valid_| is true. Computed by |
94 // |ComputeRuns()|. | 110 // |ComputeRuns()|. |
95 std::vector<TextRun> runs_; | 111 std::vector<TextRun> runs_; |
96 | 112 |
97 // Indicates that |runs_| are valid, set by |ComputeRuns()|. | 113 // Indicates that |runs_| are valid, set by |ComputeRuns()|. |
98 bool runs_valid_; | 114 bool runs_valid_; |
99 | 115 |
100 DISALLOW_COPY_AND_ASSIGN(RenderTextMac); | 116 DISALLOW_COPY_AND_ASSIGN(RenderTextMac); |
101 }; | 117 }; |
102 | 118 |
103 } // namespace gfx | 119 } // namespace gfx |
104 | 120 |
105 #endif // UI_GFX_RENDER_TEXT_MAC_H_ | 121 #endif // UI_GFX_RENDER_TEXT_MAC_H_ |
OLD | NEW |