Changeset 28867 for trunk/WebCore/platform/graphics/win/FontPlatformData.h
- Timestamp:
- 12/19/07 11:24:10 (12 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/platform/graphics/win/FontPlatformData.h
r28641 r28867 46 46 , m_syntheticBold(false) 47 47 , m_syntheticOblique(false) 48 , m_useGDI(false) 48 49 {} 49 50 … … 54 55 , m_syntheticBold(false) 55 56 , m_syntheticOblique(false) 57 , m_useGDI(false) 56 58 {} 57 59 58 FontPlatformData(HFONT, float size, bool bold, bool oblique );60 FontPlatformData(HFONT, float size, bool bold, bool oblique, bool useGDI); 59 61 FontPlatformData(CGFontRef, float size, bool bold, bool oblique); 60 62 ~FontPlatformData(); … … 67 69 bool syntheticBold() const { return m_syntheticBold; } 68 70 bool syntheticOblique() const { return m_syntheticOblique; } 71 bool useGDI() const { return m_useGDI; } 69 72 70 73 unsigned hash() const … … 76 79 { 77 80 return m_font == other.m_font && m_cgFont ==other.m_cgFont && m_size == other.m_size && 78 m_syntheticBold == other.m_syntheticBold && m_syntheticOblique == other.m_syntheticOblique; 81 m_syntheticBold == other.m_syntheticBold && m_syntheticOblique == other.m_syntheticOblique && 82 m_useGDI == other.m_useGDI; 79 83 } 80 84 … … 86 90 bool m_syntheticBold; 87 91 bool m_syntheticOblique; 92 bool m_useGDI; 88 93 }; 89 94