Lines Matching full:font
5 #include "ui/gfx/font.h"
13 // Font, public:
15 Font::Font() : platform_font_(PlatformFont::CreateDefault()) {
18 Font::Font(const Font& other) : platform_font_(other.platform_font_) {
21 gfx::Font& Font::operator=(const Font& other) {
26 Font::Font(NativeFont native_font)
30 Font::Font(PlatformFont* platform_font) : platform_font_(platform_font) {
33 Font::Font(const std::string& font_name, int font_size)
38 Font::~Font() {
41 Font Font::DeriveFont(int size_delta) const {
45 Font Font::DeriveFont(int size_delta, int style) const {
49 int Font::GetHeight() const {
53 int Font::GetBaseline() const {
57 int Font::GetAverageCharacterWidth() const {
61 int Font::GetStringWidth(const base::string16& text) const {
65 int Font::GetExpectedTextWidth(int length) const {
69 int Font::GetStyle() const {
73 std::string Font::GetFontName() const {
77 int Font::GetFontSize() const {
81 NativeFont Font::GetNativeFont() const {