OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_WIN_H_ | 5 #ifndef UI_GFX_RENDER_TEXT_WIN_H_ |
6 #define UI_GFX_RENDER_TEXT_WIN_H_ | 6 #define UI_GFX_RENDER_TEXT_WIN_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <usp10.h> | 9 #include <usp10.h> |
10 | 10 |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 } // namespace internal | 53 } // namespace internal |
54 | 54 |
55 // RenderTextWin is the Windows implementation of RenderText using Uniscribe. | 55 // RenderTextWin is the Windows implementation of RenderText using Uniscribe. |
56 class RenderTextWin : public RenderText { | 56 class RenderTextWin : public RenderText { |
57 public: | 57 public: |
58 RenderTextWin(); | 58 RenderTextWin(); |
59 virtual ~RenderTextWin(); | 59 virtual ~RenderTextWin(); |
60 | 60 |
61 // Overridden from RenderText: | 61 // Overridden from RenderText: |
62 virtual int GetStringWidth() OVERRIDE; | 62 virtual int GetStringWidth() OVERRIDE; |
63 virtual void Draw(Canvas* canvas) OVERRIDE; | |
64 virtual SelectionModel FindCursorPosition(const Point& point) OVERRIDE; | 63 virtual SelectionModel FindCursorPosition(const Point& point) OVERRIDE; |
65 virtual Rect GetCursorBounds(const SelectionModel& selection, | 64 virtual Rect GetCursorBounds(const SelectionModel& selection, |
66 bool insert_mode) OVERRIDE; | 65 bool insert_mode) OVERRIDE; |
67 | 66 |
68 protected: | 67 protected: |
69 // Overridden from RenderText: | 68 // Overridden from RenderText: |
70 virtual SelectionModel GetLeftSelectionModel(const SelectionModel& current, | 69 virtual SelectionModel GetLeftSelectionModel(const SelectionModel& current, |
71 BreakType break_type) OVERRIDE; | 70 BreakType break_type) OVERRIDE; |
72 virtual SelectionModel GetRightSelectionModel(const SelectionModel& current, | 71 virtual SelectionModel GetRightSelectionModel(const SelectionModel& current, |
73 BreakType break_type) OVERRIDE; | 72 BreakType break_type) OVERRIDE; |
74 virtual SelectionModel LeftEndSelectionModel() OVERRIDE; | 73 virtual SelectionModel LeftEndSelectionModel() OVERRIDE; |
75 virtual SelectionModel RightEndSelectionModel() OVERRIDE; | 74 virtual SelectionModel RightEndSelectionModel() OVERRIDE; |
76 virtual std::vector<Rect> GetSubstringBounds(size_t from, size_t to) OVERRIDE; | 75 virtual void GetSubstringBounds(size_t from, |
| 76 size_t to, |
| 77 std::vector<Rect>* bounds) OVERRIDE; |
77 virtual bool IsCursorablePosition(size_t position) OVERRIDE; | 78 virtual bool IsCursorablePosition(size_t position) OVERRIDE; |
78 virtual void UpdateLayout() OVERRIDE; | 79 virtual void UpdateLayout() OVERRIDE; |
| 80 virtual void EnsureLayout() OVERRIDE; |
| 81 virtual void DrawVisualText(Canvas* canvas) OVERRIDE; |
79 | 82 |
80 private: | 83 private: |
81 virtual size_t IndexOfAdjacentGrapheme(size_t index, bool next) OVERRIDE; | 84 virtual size_t IndexOfAdjacentGrapheme(size_t index, bool next) OVERRIDE; |
82 | 85 |
83 void EnsureLayout(); | |
84 void ItemizeLogicalText(); | 86 void ItemizeLogicalText(); |
85 void LayoutVisualText(); | 87 void LayoutVisualText(); |
86 | 88 |
87 // Return the run index that contains the argument; or the length of the | 89 // Return the run index that contains the argument; or the length of the |
88 // |runs_| vector if argument exceeds the text length or width. | 90 // |runs_| vector if argument exceeds the text length or width. |
89 size_t GetRunContainingPosition(size_t position) const; | 91 size_t GetRunContainingPosition(size_t position) const; |
90 size_t GetRunContainingPoint(const Point& point) const; | 92 size_t GetRunContainingPoint(const Point& point) const; |
91 | 93 |
92 // Given a |run|, returns the SelectionModel that contains the logical first | 94 // Given a |run|, returns the SelectionModel that contains the logical first |
93 // or last caret position inside (not at a boundary of) the run. | 95 // or last caret position inside (not at a boundary of) the run. |
94 // The returned value represents a cursor/caret position without a selection. | 96 // The returned value represents a cursor/caret position without a selection. |
95 SelectionModel FirstSelectionModelInsideRun(internal::TextRun* run); | 97 SelectionModel FirstSelectionModelInsideRun(internal::TextRun* run); |
96 SelectionModel LastSelectionModelInsideRun(internal::TextRun* run); | 98 SelectionModel LastSelectionModelInsideRun(internal::TextRun* run); |
97 | 99 |
98 // Get the selection model visually left/right of |selection| by one grapheme. | 100 // Get the selection model visually left/right of |selection| by one grapheme. |
99 // The returned value represents a cursor/caret position without a selection. | 101 // The returned value represents a cursor/caret position without a selection. |
100 SelectionModel LeftSelectionModel(const SelectionModel& selection); | 102 SelectionModel LeftSelectionModel(const SelectionModel& selection); |
101 SelectionModel RightSelectionModel(const SelectionModel& selection); | 103 SelectionModel RightSelectionModel(const SelectionModel& selection); |
102 | 104 |
103 // Draw the text, cursor, and selection. | |
104 void DrawSelection(Canvas* canvas); | |
105 void DrawVisualText(Canvas* canvas); | |
106 void DrawCursor(Canvas* canvas); | |
107 | |
108 // National Language Support native digit and digit substitution settings. | 105 // National Language Support native digit and digit substitution settings. |
109 SCRIPT_DIGITSUBSTITUTE digit_substitute_; | 106 SCRIPT_DIGITSUBSTITUTE digit_substitute_; |
110 | 107 |
111 SCRIPT_CONTROL script_control_; | 108 SCRIPT_CONTROL script_control_; |
112 SCRIPT_STATE script_state_; | 109 SCRIPT_STATE script_state_; |
113 | 110 |
114 std::vector<internal::TextRun*> runs_; | 111 std::vector<internal::TextRun*> runs_; |
115 int string_width_; | 112 int string_width_; |
116 | 113 |
117 scoped_array<int> visual_to_logical_; | 114 scoped_array<int> visual_to_logical_; |
118 scoped_array<int> logical_to_visual_; | 115 scoped_array<int> logical_to_visual_; |
119 | 116 |
120 bool needs_layout_; | 117 bool needs_layout_; |
121 | 118 |
122 DISALLOW_COPY_AND_ASSIGN(RenderTextWin); | 119 DISALLOW_COPY_AND_ASSIGN(RenderTextWin); |
123 }; | 120 }; |
124 | 121 |
125 } // namespace gfx | 122 } // namespace gfx |
126 | 123 |
127 #endif // UI_GFX_RENDER_TEXT_WIN_H_ | 124 #endif // UI_GFX_RENDER_TEXT_WIN_H_ |
OLD | NEW |