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> |
(...skipping 10 matching lines...) Expand all Loading... |
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 virtual ~RenderTextMac(); | 26 virtual ~RenderTextMac(); |
27 | 27 |
28 // Overridden from RenderText: | 28 // Overridden from RenderText: |
29 virtual Size GetStringSize() OVERRIDE; | 29 virtual Size GetStringSize() OVERRIDE; |
30 virtual SizeF GetStringSizeF() OVERRIDE; | 30 virtual SizeF GetStringSizeF() OVERRIDE; |
31 virtual int GetBaseline() OVERRIDE; | |
32 virtual SelectionModel FindCursorPosition(const Point& point) OVERRIDE; | 31 virtual SelectionModel FindCursorPosition(const Point& point) OVERRIDE; |
33 virtual std::vector<FontSpan> GetFontSpansForTesting() OVERRIDE; | 32 virtual std::vector<FontSpan> GetFontSpansForTesting() OVERRIDE; |
34 | 33 |
35 protected: | 34 protected: |
36 // Overridden from RenderText: | 35 // Overridden from RenderText: |
| 36 virtual int GetLayoutTextBaseline() OVERRIDE; |
37 virtual SelectionModel AdjacentCharSelectionModel( | 37 virtual SelectionModel AdjacentCharSelectionModel( |
38 const SelectionModel& selection, | 38 const SelectionModel& selection, |
39 VisualCursorDirection direction) OVERRIDE; | 39 VisualCursorDirection direction) OVERRIDE; |
40 virtual SelectionModel AdjacentWordSelectionModel( | 40 virtual SelectionModel AdjacentWordSelectionModel( |
41 const SelectionModel& selection, | 41 const SelectionModel& selection, |
42 VisualCursorDirection direction) OVERRIDE; | 42 VisualCursorDirection direction) OVERRIDE; |
43 virtual Range GetGlyphBounds(size_t index) OVERRIDE; | 43 virtual Range GetGlyphBounds(size_t index) OVERRIDE; |
44 virtual std::vector<Rect> GetSubstringBounds(const Range& range) OVERRIDE; | 44 virtual std::vector<Rect> GetSubstringBounds(const Range& range) OVERRIDE; |
45 virtual size_t TextIndexToLayoutIndex(size_t index) const OVERRIDE; | 45 virtual size_t TextIndexToLayoutIndex(size_t index) const OVERRIDE; |
46 virtual size_t LayoutIndexToTextIndex(size_t index) const OVERRIDE; | 46 virtual size_t LayoutIndexToTextIndex(size_t index) const OVERRIDE; |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 | 93 |
94 // Indicates that |runs_| are valid, set by |ComputeRuns()|. | 94 // Indicates that |runs_| are valid, set by |ComputeRuns()|. |
95 bool runs_valid_; | 95 bool runs_valid_; |
96 | 96 |
97 DISALLOW_COPY_AND_ASSIGN(RenderTextMac); | 97 DISALLOW_COPY_AND_ASSIGN(RenderTextMac); |
98 }; | 98 }; |
99 | 99 |
100 } // namespace gfx | 100 } // namespace gfx |
101 | 101 |
102 #endif // UI_GFX_RENDER_TEXT_MAC_H_ | 102 #endif // UI_GFX_RENDER_TEXT_MAC_H_ |
OLD | NEW |