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_FONT_H_ | 5 #ifndef UI_GFX_FONT_H_ |
6 #define UI_GFX_FONT_H_ | 6 #define UI_GFX_FONT_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 // implementations include leading and the Linux one does not. This may | 65 // implementations include leading and the Linux one does not. This may |
66 // need to be revisited in the future. | 66 // need to be revisited in the future. |
67 int GetHeight() const; | 67 int GetHeight() const; |
68 | 68 |
69 // Returns the baseline, or ascent, of the font. | 69 // Returns the baseline, or ascent, of the font. |
70 int GetBaseline() const; | 70 int GetBaseline() const; |
71 | 71 |
72 // Returns the cap height of the font. | 72 // Returns the cap height of the font. |
73 int GetCapHeight() const; | 73 int GetCapHeight() const; |
74 | 74 |
75 // Returns the average character width for the font. | 75 // Returns the pixel width of an average character for the font. |
76 int GetAverageCharacterWidth() const; | 76 float GetAverageCharacterWidth() const; |
77 | 77 |
78 // Returns the number of horizontal pixels needed to display the specified | 78 // Returns the pixel width needed to display the specified string. |
79 // string. | 79 float GetStringWidth(const base::string16& text) const; |
80 int GetStringWidth(const base::string16& text) const; | |
81 | 80 |
82 // Returns the expected number of horizontal pixels needed to display the | 81 // Returns the expected pixel width needed to display the specified length of |
83 // specified length of characters. Call GetStringWidth() to retrieve the | 82 // characters. Call GetStringWidth() to retrieve the actual number. |
84 // actual number. | 83 float GetExpectedTextWidth(int length) const; |
85 int GetExpectedTextWidth(int length) const; | |
86 | 84 |
87 // Returns the style of the font. | 85 // Returns the style of the font. |
88 int GetStyle() const; | 86 int GetStyle() const; |
89 | 87 |
90 // Returns the font name in UTF-8. | 88 // Returns the font name in UTF-8. |
91 std::string GetFontName() const; | 89 std::string GetFontName() const; |
92 | 90 |
93 // Returns the font size in pixels. | 91 // Returns the font size in pixels. |
94 int GetFontSize() const; | 92 int GetFontSize() const; |
95 | 93 |
(...skipping 12 matching lines...) Expand all Loading... |
108 PlatformFont* platform_font() const { return platform_font_.get(); } | 106 PlatformFont* platform_font() const { return platform_font_.get(); } |
109 | 107 |
110 private: | 108 private: |
111 // Wrapped platform font implementation. | 109 // Wrapped platform font implementation. |
112 scoped_refptr<PlatformFont> platform_font_; | 110 scoped_refptr<PlatformFont> platform_font_; |
113 }; | 111 }; |
114 | 112 |
115 } // namespace gfx | 113 } // namespace gfx |
116 | 114 |
117 #endif // UI_GFX_FONT_H_ | 115 #endif // UI_GFX_FONT_H_ |
OLD | NEW |