/* * Copyright (C) 2006, 2007, 2008, 2010, 2013 Apple Inc. * Copyright (C) 2006 Michael Emmel mike.emmel@gmail.com * Copyright (C) 2007 Holger Hans Peter Freyther * Copyright (C) 2007 Pioneer Research Center USA, Inc. * Copyright (C) 2010, 2011 Brent Fulgham * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. * */ // FIXME: This is temporary until all ports switch to using this file. #if PLATFORM(EFL) || PLATFORM(GTK) #include "freetype/FontPlatformData.h" #elif PLATFORM(QT) #include "qt/FontPlatformData.h" #else #ifndef FontPlatformData_h #define FontPlatformData_h #include "TextFlags.h" #if PLATFORM(WIN) #include "SharedGDIObject.h" #endif #if USE(CAIRO) #include #include #endif #if PLATFORM(COCOA) #if PLATFORM(IOS) #import #endif #if USE(APPKIT) OBJC_CLASS NSFont; #endif typedef const struct __CTFont* CTFontRef; #endif #if USE(CG) typedef struct CGFont* CGFontRef; #endif #include #include #include #include #include #if PLATFORM(WIN) #include typedef struct HFONT__* HFONT; #endif namespace WebCore { class FontDescription; class SharedBuffer; class FontPlatformData { WTF_MAKE_FAST_ALLOCATED; public: FontPlatformData(WTF::HashTableDeletedValueType); FontPlatformData(); FontPlatformData(const FontPlatformData&); FontPlatformData(const FontDescription&, const AtomicString& family); FontPlatformData(float size, bool syntheticBold, bool syntheticOblique, FontOrientation = Horizontal, FontWidthVariant = RegularWidth, TextRenderingMode = AutoTextRendering); #if PLATFORM(COCOA) WEBCORE_EXPORT FontPlatformData(CTFontRef, float size, bool syntheticBold = false, bool syntheticOblique = false, FontOrientation = Horizontal, FontWidthVariant = RegularWidth, TextRenderingMode = AutoTextRendering); #endif #if USE(CG) FontPlatformData(CGFontRef, float size, bool syntheticBold, bool syntheticOblique, FontOrientation, FontWidthVariant, TextRenderingMode); #endif #if PLATFORM(WIN) FontPlatformData(GDIObject, float size, bool syntheticBold, bool syntheticOblique, bool useGDI); #if USE(CG) FontPlatformData(GDIObject, CGFontRef, float size, bool syntheticBold, bool syntheticOblique, bool useGDI); #elif USE(CAIRO) FontPlatformData(GDIObject, cairo_font_face_t*, float size, bool bold, bool italic); #endif #endif WEBCORE_EXPORT ~FontPlatformData(); #if PLATFORM(WIN) HFONT hfont() const { return m_font ? m_font->get() : 0; } bool useGDI() const { return m_useGDI; } #elif PLATFORM(COCOA) CTFontRef font() const { return m_font.get(); } WEBCORE_EXPORT CTFontRef registeredFont() const; // Returns nullptr iff the font is not registered, such as web fonts (otherwise returns font()). void setFont(CTFontRef); CTFontRef ctFont() const; static RetainPtr objectForEqualityCheck(CTFontRef); RetainPtr objectForEqualityCheck() const; bool hasCustomTracking() const { return isSystemFont(); } #if USE(APPKIT) // FIXME: Remove this when all NSFont usage is removed. NSFont *nsFont() const { return (NSFont *)m_font.get(); } void setNSFont(NSFont *font) { setFont(reinterpret_cast(font)); } #endif #endif #if PLATFORM(WIN) || PLATFORM(COCOA) bool isSystemFont() const { return m_isSystemFont; } void setIsSystemFont(bool isSystemFont) { m_isSystemFont = isSystemFont; } #endif #if USE(CG) CGFontRef cgFont() const { return m_cgFont.get(); } #endif bool isFixedPitch() const; float size() const { return m_size; } void setSize(float size) { m_size = size; } bool syntheticBold() const { return m_syntheticBold; } bool syntheticOblique() const { return m_syntheticOblique; } bool isColorBitmapFont() const { return m_isColorBitmapFont; } FontOrientation orientation() const { return m_orientation; } FontWidthVariant widthVariant() const { return m_widthVariant; } TextRenderingMode textRenderingMode() const { return m_textRenderingMode; } bool isForTextCombine() const { return widthVariant() != RegularWidth; } // Keep in sync with callers of FontDescription::setWidthVariant(). void setOrientation(FontOrientation orientation) { m_orientation = orientation; } void setSyntheticOblique(bool syntheticOblique) { m_syntheticOblique = syntheticOblique; } #if USE(CAIRO) cairo_scaled_font_t* scaledFont() const { return m_scaledFont; } #endif unsigned hash() const { #if PLATFORM(WIN) && !USE(CAIRO) return m_font ? m_font->hash() : 0; #elif OS(DARWIN) uintptr_t flags = static_cast(m_isHashTableDeletedValue << 5 | m_textRenderingMode << 3 | m_orientation << 2 | m_syntheticBold << 1 | m_syntheticOblique); #if USE(APPKIT) uintptr_t fontHash = (uintptr_t)m_font.get(); #else uintptr_t fontHash = reinterpret_cast(CFHash(m_font.get())); #endif uintptr_t hashCodes[3] = { fontHash, m_widthVariant, flags }; return StringHasher::hashMemory(hashCodes); #elif USE(CAIRO) return PtrHash::hash(m_scaledFont); #endif } const FontPlatformData& operator=(const FontPlatformData&); bool operator==(const FontPlatformData& other) const { return platformIsEqual(other) && m_isHashTableDeletedValue == other.m_isHashTableDeletedValue && m_size == other.m_size && m_syntheticBold == other.m_syntheticBold && m_syntheticOblique == other.m_syntheticOblique && m_isColorBitmapFont == other.m_isColorBitmapFont && m_orientation == other.m_orientation && m_widthVariant == other.m_widthVariant && m_textRenderingMode == other.m_textRenderingMode; } bool isHashTableDeletedValue() const { return m_isHashTableDeletedValue; } bool isEmoji() const { #if PLATFORM(IOS) return m_isEmoji; #else return false; #endif } #if PLATFORM(COCOA) || PLATFORM(WIN) PassRefPtr openTypeTable(uint32_t table) const; #endif #ifndef NDEBUG String description() const; #endif private: bool platformIsEqual(const FontPlatformData&) const; void platformDataInit(const FontPlatformData&); const FontPlatformData& platformDataAssign(const FontPlatformData&); #if PLATFORM(COCOA) CGFloat ctFontSize() const; #endif #if PLATFORM(WIN) void platformDataInit(HFONT, float size, HDC, WCHAR* faceName); #endif public: bool m_syntheticBold { false }; bool m_syntheticOblique { false }; FontOrientation m_orientation { Horizontal }; float m_size { 0 }; FontWidthVariant m_widthVariant { RegularWidth }; TextRenderingMode m_textRenderingMode { AutoTextRendering }; private: #if PLATFORM(COCOA) // FIXME: Get rid of one of these. These two fonts are subtly different, and it is not obvious which one to use where. RetainPtr m_font; mutable RetainPtr m_ctFont; #elif PLATFORM(WIN) RefPtr> m_font; #endif #if USE(CG) RetainPtr m_cgFont; #endif #if USE(CAIRO) cairo_scaled_font_t* m_scaledFont { nullptr }; #endif bool m_isColorBitmapFont { false }; bool m_isHashTableDeletedValue { false }; bool m_isSystemFont { false }; #if PLATFORM(IOS) bool m_isEmoji { false }; #endif #if PLATFORM(WIN) bool m_useGDI { false }; #endif }; #if USE(APPKIT) // NSFonts and CTFontRefs are toll-free-bridged. inline CTFontRef toCTFont(NSFont *font) { return (CTFontRef)font; } inline NSFont *toNSFont(CTFontRef font) { return (NSFont *)font; } #endif } // namespace WebCore #endif // FontPlatformData_h #endif