Home
last modified time | relevance | path

Searched refs:FontWeight (Results 1 – 13 of 13) sorted by relevance

/external/webkit/WebCore/platform/graphics/
DFontDescription.h34 enum FontWeight { enum
78 FontWeight weight() const { return static_cast<FontWeight>(m_weight); } in weight()
79 FontWeight lighterWeight() const;
80 FontWeight bolderWeight() const;
94 void setWeight(FontWeight w) { m_weight = w; } in setWeight()
DFontDescription.cpp35 FontWeight FontDescription::lighterWeight(void) const in lighterWeight()
65 FontWeight FontDescription::bolderWeight(void) const in bolderWeight()
DFont.h103 FontWeight weight() const { return m_fontDescription.weight(); } in weight()
/external/webkit/WebCore/platform/graphics/qt/
DFontPlatformData.h44 static inline QFont::Weight toQFontWeight(FontWeight fontWeight) in toQFontWeight()
/external/webkit/WebCore/platform/graphics/wx/
DFontPlatformDataWx.cpp57 static wxFontWeight fontWeightToWxFontWeight(FontWeight weight) in fontWeightToWxFontWeight()
/external/webkit/WebCore/platform/graphics/chromium/
DFontCacheChromiumWin.cpp434 static LONG toGDIFontWeight(FontWeight fontWeight) in toGDIFontWeight()
/external/webkit/WebCore/platform/graphics/wince/
DFontPlatformData.cpp293 static LONG toGDIFontWeight(FontWeight fontWeight) in create()
/external/webkit/WebCore/platform/graphics/mac/
DFontCacheMac.mm73 static int toAppKitFontWeight(FontWeight fontWeight)
/external/webkit/WebCore/platform/graphics/win/
DFontCacheWin.cpp311 static LONG toGDIFontWeight(FontWeight fontWeight) in toGDIFontWeight()
/external/webkit/WebCore/rendering/
DRenderThemeMac.mm174 static FontWeight toFontWeight(NSInteger appKitFontWeight)
182 static FontWeight fontWeights[] = {
DRenderThemeChromiumMac.mm184 static FontWeight toFontWeight(NSInteger appKitFontWeight)
192 static FontWeight fontWeights[] = {
/external/webkit/WebCore/
DChangeLog-2008-08-1034636 (WebCore::FontWeight): Added this enumeration.
34639 (WebCore::FontDescription::weight): Changed to return a FontWeight.
34641 (WebCore::FontDescription::setWeight): Changed to take a FontWeight.
34644 (WebCore::toAppKitFontWeight): Added. Maps a FontWeight to the AppKit
34657 (WebCore::toGDIFontWeight): Added. Maps a FontWeight to a GDI font
34714 0-15 to the FontWeight range.
DChangeLog6555 Add mapping FontWeight to QFont::Weight values as requested via FIXME.