| 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 #include <stddef.h> | 9 #include <stddef.h> |
| 10 #include <stdint.h> | 10 #include <stdint.h> |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 std::vector<uint16_t> glyphs; | 68 std::vector<uint16_t> glyphs; |
| 69 std::vector<SkPoint> glyph_positions; | 69 std::vector<SkPoint> glyph_positions; |
| 70 SkScalar width; | 70 SkScalar width; |
| 71 Font font; | 71 Font font; |
| 72 SkColor foreground; | 72 SkColor foreground; |
| 73 bool underline; | 73 bool underline; |
| 74 bool strike; | 74 bool strike; |
| 75 bool diagonal_strike; | 75 bool diagonal_strike; |
| 76 | 76 |
| 77 TextRun(); | 77 TextRun(); |
| 78 TextRun(const TextRun& other); |
| 78 ~TextRun(); | 79 ~TextRun(); |
| 79 }; | 80 }; |
| 80 | 81 |
| 81 // Returns the width used to draw |layout_text_|. | 82 // Returns the width used to draw |layout_text_|. |
| 82 float GetLayoutTextWidth(); | 83 float GetLayoutTextWidth(); |
| 83 | 84 |
| 84 // Computes the size used to draw |line|. Stores the baseline position into | 85 // Computes the size used to draw |line|. Stores the baseline position into |
| 85 // |baseline|. | 86 // |baseline|. |
| 86 gfx::SizeF GetCTLineSize(CTLineRef line, SkScalar* baseline); | 87 gfx::SizeF GetCTLineSize(CTLineRef line, SkScalar* baseline); |
| 87 | 88 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 | 126 |
| 126 // Indicates that |runs_| are valid, set by |ComputeRuns()|. | 127 // Indicates that |runs_| are valid, set by |ComputeRuns()|. |
| 127 bool runs_valid_; | 128 bool runs_valid_; |
| 128 | 129 |
| 129 DISALLOW_COPY_AND_ASSIGN(RenderTextMac); | 130 DISALLOW_COPY_AND_ASSIGN(RenderTextMac); |
| 130 }; | 131 }; |
| 131 | 132 |
| 132 } // namespace gfx | 133 } // namespace gfx |
| 133 | 134 |
| 134 #endif // UI_GFX_RENDER_TEXT_MAC_H_ | 135 #endif // UI_GFX_RENDER_TEXT_MAC_H_ |
| OLD | NEW |