| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv
ed. | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv
ed. |
| 6 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> | 6 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 void setFamily(const FontFamily& family) { m_familyList = family; } | 140 void setFamily(const FontFamily& family) { m_familyList = family; } |
| 141 void setComputedSize(float s) { m_computedSize = clampToFloat(s); } | 141 void setComputedSize(float s) { m_computedSize = clampToFloat(s); } |
| 142 void setSpecifiedSize(float s) { m_specifiedSize = clampToFloat(s); } | 142 void setSpecifiedSize(float s) { m_specifiedSize = clampToFloat(s); } |
| 143 void setItalic(FontItalic i) { m_italic = i; } | 143 void setItalic(FontItalic i) { m_italic = i; } |
| 144 void setItalic(bool i) { setItalic(i ? FontItalicOn : FontItalicOff); } | 144 void setItalic(bool i) { setItalic(i ? FontItalicOn : FontItalicOff); } |
| 145 void setSmallCaps(FontSmallCaps c) { m_smallCaps = c; } | 145 void setSmallCaps(FontSmallCaps c) { m_smallCaps = c; } |
| 146 void setSmallCaps(bool c) { setSmallCaps(c ? FontSmallCapsOn : FontSmallCaps
Off); } | 146 void setSmallCaps(bool c) { setSmallCaps(c ? FontSmallCapsOn : FontSmallCaps
Off); } |
| 147 void setIsAbsoluteSize(bool s) { m_isAbsoluteSize = s; } | 147 void setIsAbsoluteSize(bool s) { m_isAbsoluteSize = s; } |
| 148 void setWeight(FontWeight w) { m_weight = w; } | 148 void setWeight(FontWeight w) { m_weight = w; } |
| 149 void setGenericFamily(GenericFamilyType genericFamily) { m_genericFamily = g
enericFamily; } | 149 void setGenericFamily(GenericFamilyType genericFamily) { m_genericFamily = g
enericFamily; } |
| 150 #if PLATFORM(CHROMIUM) && OS(DARWIN) | 150 #if OS(DARWIN) |
| 151 void setUsePrinterFont(bool) { } | 151 void setUsePrinterFont(bool) { } |
| 152 #else | 152 #else |
| 153 void setUsePrinterFont(bool p) { m_usePrinterFont = p; } | 153 void setUsePrinterFont(bool p) { m_usePrinterFont = p; } |
| 154 #endif | 154 #endif |
| 155 void setRenderingMode(FontRenderingMode mode) { m_renderingMode = mode; } | 155 void setRenderingMode(FontRenderingMode mode) { m_renderingMode = mode; } |
| 156 void setKerning(Kerning kerning) { m_kerning = kerning; } | 156 void setKerning(Kerning kerning) { m_kerning = kerning; } |
| 157 void setCommonLigaturesState(LigaturesState commonLigaturesState) { m_common
LigaturesState = commonLigaturesState; } | 157 void setCommonLigaturesState(LigaturesState commonLigaturesState) { m_common
LigaturesState = commonLigaturesState; } |
| 158 void setDiscretionaryLigaturesState(LigaturesState discretionaryLigaturesSta
te) { m_discretionaryLigaturesState = discretionaryLigaturesState; } | 158 void setDiscretionaryLigaturesState(LigaturesState discretionaryLigaturesSta
te) { m_discretionaryLigaturesState = discretionaryLigaturesState; } |
| 159 void setHistoricalLigaturesState(LigaturesState historicalLigaturesState) {
m_historicalLigaturesState = historicalLigaturesState; } | 159 void setHistoricalLigaturesState(LigaturesState historicalLigaturesState) {
m_historicalLigaturesState = historicalLigaturesState; } |
| 160 void setKeywordSize(unsigned s) { m_keywordSize = s; } | 160 void setKeywordSize(unsigned s) { m_keywordSize = s; } |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 && m_orientation == other.m_orientation | 228 && m_orientation == other.m_orientation |
| 229 && m_nonCJKGlyphOrientation == other.m_nonCJKGlyphOrientation | 229 && m_nonCJKGlyphOrientation == other.m_nonCJKGlyphOrientation |
| 230 && m_widthVariant == other.m_widthVariant | 230 && m_widthVariant == other.m_widthVariant |
| 231 && m_script == other.m_script | 231 && m_script == other.m_script |
| 232 && m_featureSettings == other.m_featureSettings; | 232 && m_featureSettings == other.m_featureSettings; |
| 233 } | 233 } |
| 234 | 234 |
| 235 } | 235 } |
| 236 | 236 |
| 237 #endif | 237 #endif |
| OLD | NEW |