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> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/mac/scoped_cftyperef.h" | 13 #include "base/mac/scoped_cftyperef.h" |
14 #include "ui/gfx/render_text.h" | 14 #include "ui/gfx/render_text.h" |
15 | 15 |
16 namespace gfx { | 16 namespace gfx { |
17 | 17 |
18 // RenderTextMac is the Mac implementation of RenderText that uses CoreText for | 18 // RenderTextMac is the Mac implementation of RenderText that uses CoreText for |
19 // layout and Skia for drawing. | 19 // layout and Skia for drawing. |
20 // | 20 // |
21 // Note: The current implementation only supports drawing and sizing the text, | 21 // Note: The current implementation only supports drawing and sizing the text, |
22 // but not text selection or cursor movement. | 22 // but not text selection or cursor movement. |
23 class RenderTextMac : public RenderText { | 23 class RenderTextMac : public RenderText { |
24 public: | 24 public: |
25 RenderTextMac(); | 25 RenderTextMac(); |
26 ~RenderTextMac() override; | 26 ~RenderTextMac() override; |
27 | 27 |
28 // Overridden from RenderText: | 28 // RenderText: |
29 scoped_ptr<RenderText> CreateInstanceOfSameType() const override; | 29 scoped_ptr<RenderText> CreateInstanceOfSameType() const override; |
| 30 const base::string16& GetDisplayText() override; |
30 Size GetStringSize() override; | 31 Size GetStringSize() override; |
31 SizeF GetStringSizeF() override; | 32 SizeF GetStringSizeF() override; |
32 SelectionModel FindCursorPosition(const Point& point) override; | 33 SelectionModel FindCursorPosition(const Point& point) override; |
33 std::vector<FontSpan> GetFontSpansForTesting() override; | 34 std::vector<FontSpan> GetFontSpansForTesting() override; |
34 | 35 |
35 protected: | 36 protected: |
36 // Overridden from RenderText: | 37 // RenderText: |
37 int GetLayoutTextBaseline() override; | 38 int GetDisplayTextBaseline() override; |
38 SelectionModel AdjacentCharSelectionModel( | 39 SelectionModel AdjacentCharSelectionModel( |
39 const SelectionModel& selection, | 40 const SelectionModel& selection, |
40 VisualCursorDirection direction) override; | 41 VisualCursorDirection direction) override; |
41 SelectionModel AdjacentWordSelectionModel( | 42 SelectionModel AdjacentWordSelectionModel( |
42 const SelectionModel& selection, | 43 const SelectionModel& selection, |
43 VisualCursorDirection direction) override; | 44 VisualCursorDirection direction) override; |
44 Range GetGlyphBounds(size_t index) override; | 45 Range GetGlyphBounds(size_t index) override; |
45 std::vector<Rect> GetSubstringBounds(const Range& range) override; | 46 std::vector<Rect> GetSubstringBounds(const Range& range) override; |
46 size_t TextIndexToLayoutIndex(size_t index) const override; | 47 size_t TextIndexToDisplayIndex(size_t index) override; |
47 size_t LayoutIndexToTextIndex(size_t index) const override; | 48 size_t DisplayIndexToTextIndex(size_t index) override; |
48 bool IsValidCursorIndex(size_t index) override; | 49 bool IsValidCursorIndex(size_t index) override; |
49 void ResetLayout() override; | 50 void OnLayoutTextAttributeChanged(bool text_changed) override; |
| 51 void OnDisplayTextAttributeChanged() override; |
50 void EnsureLayout() override; | 52 void EnsureLayout() override; |
51 void DrawVisualText(Canvas* canvas) override; | 53 void DrawVisualText(Canvas* canvas) override; |
52 | 54 |
53 private: | 55 private: |
54 struct TextRun { | 56 struct TextRun { |
55 CTRunRef ct_run; | 57 CTRunRef ct_run; |
56 SkPoint origin; | 58 SkPoint origin; |
57 std::vector<uint16> glyphs; | 59 std::vector<uint16> glyphs; |
58 std::vector<SkPoint> glyph_positions; | 60 std::vector<SkPoint> glyph_positions; |
59 SkScalar width; | 61 SkScalar width; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 | 96 |
95 // Indicates that |runs_| are valid, set by |ComputeRuns()|. | 97 // Indicates that |runs_| are valid, set by |ComputeRuns()|. |
96 bool runs_valid_; | 98 bool runs_valid_; |
97 | 99 |
98 DISALLOW_COPY_AND_ASSIGN(RenderTextMac); | 100 DISALLOW_COPY_AND_ASSIGN(RenderTextMac); |
99 }; | 101 }; |
100 | 102 |
101 } // namespace gfx | 103 } // namespace gfx |
102 | 104 |
103 #endif // UI_GFX_RENDER_TEXT_MAC_H_ | 105 #endif // UI_GFX_RENDER_TEXT_MAC_H_ |
OLD | NEW |