OLD | NEW |
(Empty) | |
| 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. |
| 4 |
| 5 #ifndef UI_GFX_RENDER_TEXT_MAC_H_ |
| 6 #define UI_GFX_RENDER_TEXT_MAC_H_ |
| 7 |
| 8 #include <ApplicationServices/ApplicationServices.h> |
| 9 |
| 10 #include <string> |
| 11 #include <vector> |
| 12 |
| 13 #include "base/mac/scoped_cftyperef.h" |
| 14 #include "ui/gfx/render_text.h" |
| 15 |
| 16 namespace gfx { |
| 17 |
| 18 // RenderTextMac is the Mac implementation of RenderText that uses CoreText for |
| 19 // layout and Skia for drawing. |
| 20 // |
| 21 // Note: The current implementation only supports drawing and sizing the text, |
| 22 // but not text selection or cursor movement. |
| 23 class RenderTextMac : public RenderText { |
| 24 public: |
| 25 RenderTextMac(); |
| 26 virtual ~RenderTextMac(); |
| 27 |
| 28 // Overridden from RenderText: |
| 29 virtual base::i18n::TextDirection GetTextDirection() OVERRIDE; |
| 30 virtual Size GetStringSize() OVERRIDE; |
| 31 virtual int GetBaseline() OVERRIDE; |
| 32 virtual SelectionModel FindCursorPosition(const Point& point) OVERRIDE; |
| 33 virtual std::vector<FontSpan> GetFontSpansForTesting() OVERRIDE; |
| 34 |
| 35 protected: |
| 36 // Overridden from RenderText: |
| 37 virtual SelectionModel AdjacentCharSelectionModel( |
| 38 const SelectionModel& selection, |
| 39 VisualCursorDirection direction) OVERRIDE; |
| 40 virtual SelectionModel AdjacentWordSelectionModel( |
| 41 const SelectionModel& selection, |
| 42 VisualCursorDirection direction) OVERRIDE; |
| 43 virtual void GetGlyphBounds(size_t index, |
| 44 ui::Range* xspan, |
| 45 int* height) OVERRIDE; |
| 46 virtual std::vector<Rect> GetSubstringBounds(ui::Range range) OVERRIDE; |
| 47 virtual bool IsCursorablePosition(size_t position) OVERRIDE; |
| 48 virtual void ResetLayout() OVERRIDE; |
| 49 virtual void EnsureLayout() OVERRIDE; |
| 50 virtual void DrawVisualText(Canvas* canvas) OVERRIDE; |
| 51 |
| 52 private: |
| 53 struct TextRun { |
| 54 CTRunRef ct_run; |
| 55 SkPoint origin; |
| 56 std::vector<uint16> glyphs; |
| 57 std::vector<SkPoint> glyph_positions; |
| 58 SkScalar width; |
| 59 std::string font_name; |
| 60 int font_style; |
| 61 SkScalar text_size; |
| 62 SkColor foreground; |
| 63 StyleRange style; |
| 64 |
| 65 TextRun(); |
| 66 ~TextRun(); |
| 67 }; |
| 68 |
| 69 // Applies RenderText styles to |attr_string| with the given |ct_font|. |
| 70 void ApplyStyles(CFMutableAttributedStringRef attr_string, CTFontRef ct_font); |
| 71 |
| 72 // Updates |runs_| based on |line_| and sets |runs_valid_| to true. |
| 73 void ComputeRuns(); |
| 74 |
| 75 // The Core Text line of text. Created by |EnsureLayout()|. |
| 76 base::mac::ScopedCFTypeRef<CTLineRef> line_; |
| 77 |
| 78 // Visual dimensions of the text. Computed by |EnsureLayout()|. |
| 79 Size string_size_; |
| 80 |
| 81 // Common baseline for this line of text. Computed by |EnsureLayout()|. |
| 82 SkScalar common_baseline_; |
| 83 |
| 84 // Visual text runs. Only valid if |runs_valid_| is true. Computed by |
| 85 // |ComputeRuns()|. |
| 86 std::vector<TextRun> runs_; |
| 87 |
| 88 // Indicates that |runs_| are valid, set by |ComputeRuns()|. |
| 89 bool runs_valid_; |
| 90 |
| 91 DISALLOW_COPY_AND_ASSIGN(RenderTextMac); |
| 92 }; |
| 93 |
| 94 } // namespace gfx |
| 95 |
| 96 #endif // UI_GFX_RENDER_TEXT_MAC_H_ |
OLD | NEW |