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_LINUX_H_ | 5 #ifndef UI_GFX_RENDER_TEXT_PANGO_H_ |
6 #define UI_GFX_RENDER_TEXT_LINUX_H_ | 6 #define UI_GFX_RENDER_TEXT_PANGO_H_ |
7 | 7 |
8 #include <pango/pango.h> | 8 #include <pango/pango.h> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "ui/gfx/render_text.h" | 11 #include "ui/gfx/render_text.h" |
12 | 12 |
13 namespace gfx { | 13 namespace gfx { |
14 | 14 |
15 // RenderTextLinux is the Linux implementation of RenderText using Pango. | 15 // RenderTextPango is the Linux implementation of RenderText using Pango. |
16 class RenderTextLinux : public RenderText { | 16 class RenderTextPango : public RenderText { |
17 public: | 17 public: |
18 RenderTextLinux(); | 18 RenderTextPango(); |
19 virtual ~RenderTextLinux(); | 19 virtual ~RenderTextPango(); |
20 | 20 |
21 // Overridden from RenderText: | 21 // Overridden from RenderText: |
22 virtual Size GetStringSize() OVERRIDE; | 22 virtual Size GetStringSize() OVERRIDE; |
23 virtual SelectionModel FindCursorPosition(const Point& point) OVERRIDE; | 23 virtual SelectionModel FindCursorPosition(const Point& point) OVERRIDE; |
24 virtual std::vector<FontSpan> GetFontSpansForTesting() OVERRIDE; | 24 virtual std::vector<FontSpan> GetFontSpansForTesting() OVERRIDE; |
25 | 25 |
26 protected: | 26 protected: |
27 // Overridden from RenderText: | 27 // Overridden from RenderText: |
28 virtual int GetLayoutTextBaseline() OVERRIDE; | 28 virtual int GetLayoutTextBaseline() OVERRIDE; |
29 virtual SelectionModel AdjacentCharSelectionModel( | 29 virtual SelectionModel AdjacentCharSelectionModel( |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 PangoLayoutLine* current_line_; | 73 PangoLayoutLine* current_line_; |
74 | 74 |
75 // Information about character attributes. | 75 // Information about character attributes. |
76 PangoLogAttr* log_attrs_; | 76 PangoLogAttr* log_attrs_; |
77 // Number of attributes in |log_attrs_|. | 77 // Number of attributes in |log_attrs_|. |
78 int num_log_attrs_; | 78 int num_log_attrs_; |
79 | 79 |
80 // The text in the |layout_|. | 80 // The text in the |layout_|. |
81 const char* layout_text_; | 81 const char* layout_text_; |
82 | 82 |
83 DISALLOW_COPY_AND_ASSIGN(RenderTextLinux); | 83 DISALLOW_COPY_AND_ASSIGN(RenderTextPango); |
84 }; | 84 }; |
85 | 85 |
86 } // namespace gfx | 86 } // namespace gfx |
87 | 87 |
88 #endif // UI_GFX_RENDER_TEXT_LINUX_H_ | 88 #endif // UI_GFX_RENDER_TEXT_PANGO_H_ |
OLD | NEW |