| 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_H_ | 5 #ifndef UI_GFX_RENDER_TEXT_H_ |
| 6 #define UI_GFX_RENDER_TEXT_H_ | 6 #define UI_GFX_RENDER_TEXT_H_ |
| 7 | 7 |
| 8 #include <algorithm> | 8 #include <algorithm> |
| 9 #include <cstring> | 9 #include <cstring> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, Multiline_NormalWidth); | 573 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, Multiline_NormalWidth); |
| 574 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, Multiline_SufficientWidth); | 574 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, Multiline_SufficientWidth); |
| 575 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, Multiline_Newline); | 575 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, Multiline_Newline); |
| 576 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, GlyphBounds); | 576 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, GlyphBounds); |
| 577 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, HarfBuzz_GlyphBounds); | 577 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, HarfBuzz_GlyphBounds); |
| 578 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, | 578 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, |
| 579 MoveCursorLeftRight_MeiryoUILigatures); | 579 MoveCursorLeftRight_MeiryoUILigatures); |
| 580 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, Win_LogicalClusters); | 580 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, Win_LogicalClusters); |
| 581 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, SameFontForParentheses); | 581 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, SameFontForParentheses); |
| 582 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, BreakRunsByUnicodeBlocks); | 582 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, BreakRunsByUnicodeBlocks); |
| 583 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, PangoAttributes); |
| 583 | 584 |
| 584 // Creates a platform-specific RenderText instance. | 585 // Creates a platform-specific RenderText instance. |
| 585 static RenderText* CreateNativeInstance(); | 586 static RenderText* CreateNativeInstance(); |
| 586 | 587 |
| 587 // Set the cursor to |position|, with the caret trailing the previous | 588 // Set the cursor to |position|, with the caret trailing the previous |
| 588 // grapheme, or if there is no previous grapheme, leading the cursor position. | 589 // grapheme, or if there is no previous grapheme, leading the cursor position. |
| 589 // If |select| is false, the selection start is moved to the same position. | 590 // If |select| is false, the selection start is moved to the same position. |
| 590 // If the |position| is not a cursorable position (not on grapheme boundary), | 591 // If the |position| is not a cursorable position (not on grapheme boundary), |
| 591 // it is a NO-OP. | 592 // it is a NO-OP. |
| 592 void MoveCursorTo(size_t position, bool select); | 593 void MoveCursorTo(size_t position, bool select); |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 // Lines computed by EnsureLayout. These should be invalidated with | 722 // Lines computed by EnsureLayout. These should be invalidated with |
| 722 // ResetLayout and on |display_rect_| changes. | 723 // ResetLayout and on |display_rect_| changes. |
| 723 std::vector<internal::Line> lines_; | 724 std::vector<internal::Line> lines_; |
| 724 | 725 |
| 725 DISALLOW_COPY_AND_ASSIGN(RenderText); | 726 DISALLOW_COPY_AND_ASSIGN(RenderText); |
| 726 }; | 727 }; |
| 727 | 728 |
| 728 } // namespace gfx | 729 } // namespace gfx |
| 729 | 730 |
| 730 #endif // UI_GFX_RENDER_TEXT_H_ | 731 #endif // UI_GFX_RENDER_TEXT_H_ |
| OLD | NEW |