Changeset 26484 in webkit
- Timestamp:
- Oct 12, 2007, 7:55:24 AM (17 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 15 added
- 48 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r26483 r26484 1 2007-10-03 David Hyatt <hyatt@apple.com> 2 3 Land support for the CSS @font-face rule. This patch allows custom fonts 4 to be downloaded from the Web and rendered in Web pages. Right now only 5 TrueType fonts are supported. Proprietary formats like .eot are not 6 supported. 7 8 Reviewed by Eric Seidel 9 10 Many tests will be coming in a future landing. 11 12 * WebCore.base.exp: 13 Expose some more stuff for WebKit, caused by font restructuring. 14 15 * WebCore.xcodeproj/project.pbxproj: 16 Add all the new font face files. 17 18 * css/CSSComputedStyleDeclaration.cpp: 19 (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue): 20 Make sure to ignore the 'src' property of @font-face rules. 21 22 * css/CSSFontFace.cpp: Added. 23 (WebCore::CSSFontFace::CSSFontFace): 24 (WebCore::CSSFontFace::~CSSFontFace): 25 (WebCore::CSSFontFace::isLoaded): 26 (WebCore::CSSFontFace::isValid): 27 (WebCore::CSSFontFace::addSource): 28 (WebCore::CSSFontFace::fontLoaded): 29 (WebCore::CSSFontFace::getFontData): 30 * css/CSSFontFace.h: Added. 31 A CSSFontFace is a composite object. It consists of multiple font-face sources, where each source represents either a remote or local 32 file in a @font-face rule's src list. 33 34 * css/CSSFontFaceRule.cpp: 35 (WebCore::CSSFontFaceRule::setDeclaration): 36 (WebCore::CSSFontFaceRule::cssText): 37 * css/CSSFontFaceRule.h: 38 The implementation of the @font-face rule itself in the CSS sheet back end. 39 40 * css/CSSFontFaceSource.cpp: Added. 41 (WebCore::CSSFontFaceSource::CSSFontFaceSource): 42 (WebCore::CSSFontFaceSource::~CSSFontFaceSource): 43 (WebCore::CSSFontFaceSource::pruneTable): 44 (WebCore::CSSFontFaceSource::isLoaded): 45 (WebCore::CSSFontFaceSource::isValid): 46 (WebCore::CSSFontFaceSource::fontLoaded): 47 (WebCore::CSSFontFaceSource::getFontData): 48 * css/CSSFontFaceSource.h: Added. 49 (WebCore::CSSFontFaceSource::string): 50 (WebCore::CSSFontFaceSource::setFontFace): 51 A font face source represents a single remote or local font. If it represents a remote font than it wraps a CachedFont. 52 53 * css/CSSFontFaceSrcValue.cpp: Added. 54 (WebCore::CSSFontFaceSrcValue::isSupportedFormat): 55 (WebCore::CSSFontFaceSrcValue::cssText): 56 * css/CSSFontFaceSrcValue.h: Added. 57 (WebCore::CSSFontFaceSrcValue::m_isLocal): 58 (WebCore::CSSFontFaceSrcValue::~CSSFontFaceSrcValue): 59 (WebCore::CSSFontFaceSrcValue::resource): 60 (WebCore::CSSFontFaceSrcValue::format): 61 (WebCore::CSSFontFaceSrcValue::isLocal): 62 (WebCore::CSSFontFaceSrcValue::setFormat): 63 Used in parsing. Represents the parsed form of the src value that can then be used to build up a CSSFontFace. 64 65 * css/CSSFontSelector.cpp: Added. 66 (WebCore::CSSFontSelector::CSSFontSelector): 67 (WebCore::CSSFontSelector::~CSSFontSelector): 68 (WebCore::CSSFontSelector::isEmpty): 69 (WebCore::CSSFontSelector::docLoader): 70 (WebCore::hashForFont): 71 (WebCore::CSSFontSelector::addFontFaceRule): 72 (WebCore::CSSFontSelector::fontLoaded): 73 (WebCore::CSSFontSelector::getFontData): 74 * css/CSSFontSelector.h: Added. 75 The CSS font selector is the object that selects the correct font given a specified font family. It builds up a database of CSSFontFaces that can then be handed 76 back. 77 78 * css/CSSGrammar.y: 79 * css/CSSParser.cpp: 80 (WebCore::CSSParser::parseValue): 81 (WebCore::CSSParser::parseFontFaceSrc): 82 (WebCore::CSSParser::createFontFaceRule): 83 * css/CSSParser.h: 84 Modify the CSS grammar to now understand @font-face rules. 85 86 * css/CSSPropertyNames.in: 87 Add the src property. 88 89 * css/CSSStyleSelector.cpp: 90 (WebCore::CSSStyleSelector::CSSStyleSelector): 91 (WebCore::CSSStyleSelector::styleForElement): 92 (WebCore::CSSStyleSelector::updateFont): 93 (WebCore::CSSRuleSet::addRulesFromSheet): 94 (WebCore::CSSStyleSelector::applyProperty): 95 (WebCore::CSSStyleSelector::ensureFontSelector): 96 * css/CSSStyleSelector.h: 97 (WebCore::CSSStyleSelector::fontSelector): 98 The style selector now creates a font selector object and feeds it the appropriate information when @font-face rules are encountered. 99 100 * dom/Document.cpp: 101 (WebCore::Document::recalcStyle): 102 Patch the update method now that it takes a font selector argument. 103 104 * loader/Cache.cpp: 105 (WebCore::createResource): 106 (WebCore::Cache::getStatistics): 107 * loader/Cache.h: 108 Teach the Cache about CachedFonts. 109 110 * loader/CachedFont.cpp: Added. 111 (WebCore::CachedFont::CachedFont): 112 (WebCore::CachedFont::~CachedFont): 113 (WebCore::CachedFont::ref): 114 (WebCore::CachedFont::data): 115 (WebCore::CachedFont::beginLoadIfNeeded): 116 (WebCore::CachedFont::ensureCustomFontData): 117 (WebCore::CachedFont::platformDataFromCustomData): 118 (WebCore::CachedFont::allReferencesRemoved): 119 (WebCore::CachedFont::checkNotify): 120 (WebCore::CachedFont::error): 121 * loader/CachedFont.h: Added. 122 (WebCore::CachedFont::schedule): 123 The implementation of CachedFont. This represents the downloaded resource and has all the raw font data. 124 125 * loader/CachedResource.h: 126 (WebCore::CachedResource::): 127 * loader/CachedResourceClient.h: 128 (WebCore::CachedResourceClient::fontLoaded): 129 Add a new fontLoaded method for clients of cached resources to track when fonts finish downloading. 130 131 * loader/DocLoader.cpp: 132 (WebCore::DocLoader::requestFont): 133 * loader/DocLoader.h: 134 Add the ability to request a font. 135 136 * platform/Font.cpp: 137 (WebCore::Font::operator==): 138 (WebCore::Font::update): 139 (WebCore::Font::drawText): 140 * platform/Font.h: 141 * platform/FontCache.cpp: 142 (WebCore::FontCache::getFontData): 143 * platform/FontCache.h: 144 * platform/FontData.cpp: 145 (WebCore::FontData::FontData): 146 * platform/FontData.h: 147 (WebCore::FontData::isCustomFont): 148 (WebCore::FontData::isLoading): 149 * platform/FontFallbackList.cpp: 150 (WebCore::FontFallbackList::FontFallbackList): 151 (WebCore::FontFallbackList::invalidate): 152 (WebCore::FontFallbackList::fontDataAt): 153 * platform/FontFallbackList.h: 154 (WebCore::FontFallbackList::loadingCustomFonts): 155 (WebCore::FontFallbackList::fontSelector): 156 * platform/FontSelector.h: Added. 157 (WebCore::FontSelector::~FontSelector): 158 * platform/GlyphPageTreeNode.cpp: 159 (WebCore::GlyphPageTreeNode::getRoot): 160 (WebCore::GlyphPageTreeNode::pruneTreeCustomFontData): 161 (WebCore::GlyphPageTreeNode::~GlyphPageTreeNode): 162 (WebCore::GlyphPageTreeNode::initializePage): 163 (WebCore::GlyphPageTreeNode::getChild): 164 (WebCore::GlyphPageTreeNode::pruneCustomFontData): 165 * platform/GlyphPageTreeNode.h: 166 (WebCore::GlyphPageTreeNode::GlyphPageTreeNode): 167 (WebCore::GlyphPageTreeNode::page): 168 * platform/PopupMenuClient.h: 169 * platform/mac/FontCacheMac.mm: 170 (WebCore::FontCache::getFontDataForCharacters): 171 (WebCore::FontCache::getLastResortFallbackFont): 172 (WebCore::FontCache::fontExists): 173 (WebCore::FontCache::createFontPlatformData): 174 * platform/mac/FontCustomPlatformData.cpp: Added. 175 (WebCore::FontCustomPlatformData::~FontCustomPlatformData): 176 (WebCore::FontCustomPlatformData::fontPlatformData): 177 (WebCore::createFontCustomPlatformData): 178 * platform/mac/FontCustomPlatformData.h: Added. 179 (WebCore::FontCustomPlatformData::FontCustomPlatformData): 180 * platform/mac/FontDataMac.mm: 181 (WebCore::initFontData): 182 (WebCore::FontData::platformInit): 183 (WebCore::FontData::smallCapsFontData): 184 (WebCore::FontData::platformWidthForGlyph): 185 (WebCore::FontData::checkShapesArabic): 186 * platform/mac/FontMac.mm: 187 (WebCore::initializeATSUStyle): 188 (WebCore::Font::drawGlyphs): 189 * platform/mac/FontPlatformData.h: 190 (WebCore::FontPlatformData::FontPlatformData): 191 (WebCore::FontPlatformData::hash): 192 (WebCore::FontPlatformData::operator==): 193 * platform/mac/FontPlatformDataMac.mm: Added. 194 (WebCore::FontPlatformData::FontPlatformData): 195 (WebCore::~FontPlatformData): 196 (WebCore::FontPlatformData::setFont): 197 * platform/mac/WebCoreSystemInterface.h: 198 * platform/mac/WebCoreSystemInterface.mm: 199 * platform/win/FontCacheWin.cpp: 200 (WebCore::FontCache::getLastResortFallbackFont): 201 (WebCore::FontCache::fontExists): 202 * platform/win/FontCustomPlatformData.cpp: Added. 203 (WebCore::FontCustomPlatformData::~FontCustomPlatformData): 204 (WebCore::FontCustomPlatformData::fontPlatformData): 205 (WebCore::getData): 206 (WebCore::releaseData): 207 (WebCore::getBytesWithOffset): 208 (WebCore::createFontCustomPlatformData): 209 * platform/win/FontCustomPlatformData.h: Added. 210 (WebCore::FontCustomPlatformData::FontCustomPlatformData): 211 * platform/win/FontDataWin.cpp: 212 (WebCore::FontData::platformInit): 213 (WebCore::FontData::platformDestroy): 214 (WebCore::FontData::smallCapsFontData): 215 (WebCore::FontData::containsCharacters): 216 (WebCore::FontData::determinePitch): 217 * platform/win/FontPlatformData.h: 218 (WebCore::FontPlatformData::FontPlatformData): 219 (WebCore::FontPlatformData::hash): 220 (WebCore::FontPlatformData::operator==): 221 * platform/win/FontPlatformDataWin.cpp: 222 (WebCore::FontPlatformData::FontPlatformData): 223 * platform/win/PopupMenuWin.cpp: 224 (WebCore::PopupMenu::paint): 225 Changes to platform to support rendering of custom fonts. Too large to go into, but for ports, the relevant object to implement is 226 FontCustomPlatformData (to get the data loaded into your native font format), and then you have to patch your other font objects to know 227 how to use the font. 228 229 * rendering/RenderListBox.cpp: 230 (WebCore::RenderListBox::updateFromElement): 231 (WebCore::RenderListBox::paintItemForeground): 232 * rendering/RenderMenuList.cpp: 233 (WebCore::RenderMenuList::fontSelector): 234 * rendering/RenderMenuList.h: 235 * rendering/RenderTextControl.cpp: 236 (WebCore::RenderTextControl::fontSelector): 237 * rendering/RenderTextControl.h: 238 * rendering/RenderThemeMac.mm: 239 (WebCore::RenderThemeMac::setFontFromControlSize): 240 * rendering/RenderThemeSafari.cpp: 241 (WebCore::RenderThemeSafari::setFontFromControlSize): 242 Patches for update now taking a font selector argument. 243 1 244 2007-10-03 Rob Buis <buis@kde.org> 2 245 -
trunk/WebCore/WebCore.base.exp
r26459 r26484 347 347 __ZN7WebCore4FontD1Ev 348 348 __ZN7WebCore4FontaSERKS0_ 349 __ZN7WebCore16FontPlatformDataC1EP6NSFontbb 350 __ZN7WebCore16FontPlatformDataD1Ev 349 351 __ZN7WebCore4KURL13decode_stringERKNS_16DeprecatedStringE 350 352 __ZN7WebCore4KURLC1EP5NSURL … … 705 707 _wkGetATSStyleGroup 706 708 _wkGetCGFontFromNSFont 707 _wkGetDefaultGlyphForChar708 709 _wkGetExtensionsForMIMEType 709 710 _wkGetFontInLanguageForCharacter -
trunk/WebCore/WebCore.xcodeproj/project.pbxproj
r26477 r26484 3292 3292 BC5A86B50C3367E800EEA649 /* JSDOMSelection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC5A86B30C3367E800EEA649 /* JSDOMSelection.cpp */; }; 3293 3293 BC5A86B60C3367E800EEA649 /* JSDOMSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = BC5A86B40C3367E800EEA649 /* JSDOMSelection.h */; }; 3294 BC64B4B90CB428C7005F2B62 /* FontSelector.h in Headers */ = {isa = PBXBuildFile; fileRef = BC64B4B80CB428C7005F2B62 /* FontSelector.h */; }; 3295 BC64B4BD0CB42929005F2B62 /* FontCustomPlatformData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC64B4BA0CB42929005F2B62 /* FontCustomPlatformData.cpp */; }; 3296 BC64B4BE0CB42929005F2B62 /* FontCustomPlatformData.h in Headers */ = {isa = PBXBuildFile; fileRef = BC64B4BB0CB42929005F2B62 /* FontCustomPlatformData.h */; }; 3297 BC64B4BF0CB42929005F2B62 /* FontPlatformDataMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC64B4BC0CB42929005F2B62 /* FontPlatformDataMac.mm */; }; 3298 BC64B4CB0CB4295D005F2B62 /* CachedFont.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC64B4C90CB4295D005F2B62 /* CachedFont.cpp */; }; 3299 BC64B4CC0CB4295D005F2B62 /* CachedFont.h in Headers */ = {isa = PBXBuildFile; fileRef = BC64B4CA0CB4295D005F2B62 /* CachedFont.h */; }; 3300 BC64B4D50CB4298A005F2B62 /* CSSFontFace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC64B4CD0CB4298A005F2B62 /* CSSFontFace.cpp */; }; 3301 BC64B4D60CB4298A005F2B62 /* CSSFontFace.h in Headers */ = {isa = PBXBuildFile; fileRef = BC64B4CE0CB4298A005F2B62 /* CSSFontFace.h */; }; 3302 BC64B4D70CB4298A005F2B62 /* CSSFontFaceSource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC64B4CF0CB4298A005F2B62 /* CSSFontFaceSource.cpp */; }; 3303 BC64B4D80CB4298A005F2B62 /* CSSFontFaceSource.h in Headers */ = {isa = PBXBuildFile; fileRef = BC64B4D00CB4298A005F2B62 /* CSSFontFaceSource.h */; }; 3304 BC64B4D90CB4298A005F2B62 /* CSSFontFaceSrcValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC64B4D10CB4298A005F2B62 /* CSSFontFaceSrcValue.cpp */; }; 3305 BC64B4DA0CB4298A005F2B62 /* CSSFontFaceSrcValue.h in Headers */ = {isa = PBXBuildFile; fileRef = BC64B4D20CB4298A005F2B62 /* CSSFontFaceSrcValue.h */; }; 3306 BC64B4DB0CB4298A005F2B62 /* CSSFontSelector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC64B4D30CB4298A005F2B62 /* CSSFontSelector.cpp */; }; 3307 BC64B4DC0CB4298A005F2B62 /* CSSFontSelector.h in Headers */ = {isa = PBXBuildFile; fileRef = BC64B4D40CB4298A005F2B62 /* CSSFontSelector.h */; }; 3294 3308 BC6D44BE0C07EFB60072D2C9 /* JSHTMLEmbedElementCustom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC6D44BD0C07EFB60072D2C9 /* JSHTMLEmbedElementCustom.cpp */; }; 3295 3309 BC6D44EC0C07F2ED0072D2C9 /* JSHTMLEmbedElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC6D44EA0C07F2ED0072D2C9 /* JSHTMLEmbedElement.cpp */; }; … … 7111 7125 BC5A86B40C3367E800EEA649 /* JSDOMSelection.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = JSDOMSelection.h; sourceTree = "<group>"; }; 7112 7126 BC5EC1760A507E3E006007F5 /* view-source.css */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = "view-source.css"; sourceTree = "<group>"; }; 7127 BC64B4B80CB428C7005F2B62 /* FontSelector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FontSelector.h; sourceTree = "<group>"; }; 7128 BC64B4BA0CB42929005F2B62 /* FontCustomPlatformData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FontCustomPlatformData.cpp; sourceTree = "<group>"; }; 7129 BC64B4BB0CB42929005F2B62 /* FontCustomPlatformData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FontCustomPlatformData.h; sourceTree = "<group>"; }; 7130 BC64B4BC0CB42929005F2B62 /* FontPlatformDataMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = FontPlatformDataMac.mm; sourceTree = "<group>"; }; 7131 BC64B4C90CB4295D005F2B62 /* CachedFont.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CachedFont.cpp; sourceTree = "<group>"; }; 7132 BC64B4CA0CB4295D005F2B62 /* CachedFont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CachedFont.h; sourceTree = "<group>"; }; 7133 BC64B4CD0CB4298A005F2B62 /* CSSFontFace.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CSSFontFace.cpp; sourceTree = "<group>"; }; 7134 BC64B4CE0CB4298A005F2B62 /* CSSFontFace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CSSFontFace.h; sourceTree = "<group>"; }; 7135 BC64B4CF0CB4298A005F2B62 /* CSSFontFaceSource.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CSSFontFaceSource.cpp; sourceTree = "<group>"; }; 7136 BC64B4D00CB4298A005F2B62 /* CSSFontFaceSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CSSFontFaceSource.h; sourceTree = "<group>"; }; 7137 BC64B4D10CB4298A005F2B62 /* CSSFontFaceSrcValue.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CSSFontFaceSrcValue.cpp; sourceTree = "<group>"; }; 7138 BC64B4D20CB4298A005F2B62 /* CSSFontFaceSrcValue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CSSFontFaceSrcValue.h; sourceTree = "<group>"; }; 7139 BC64B4D30CB4298A005F2B62 /* CSSFontSelector.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CSSFontSelector.cpp; sourceTree = "<group>"; }; 7140 BC64B4D40CB4298A005F2B62 /* CSSFontSelector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CSSFontSelector.h; sourceTree = "<group>"; }; 7113 7141 BC6D44BD0C07EFB60072D2C9 /* JSHTMLEmbedElementCustom.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSHTMLEmbedElementCustom.cpp; sourceTree = "<group>"; }; 7114 7142 BC6D44EA0C07F2ED0072D2C9 /* JSHTMLEmbedElement.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = JSHTMLEmbedElement.cpp; sourceTree = "<group>"; }; … … 8177 8205 isa = PBXGroup; 8178 8206 children = ( 8207 BC64B4BA0CB42929005F2B62 /* FontCustomPlatformData.cpp */, 8208 BC64B4BB0CB42929005F2B62 /* FontCustomPlatformData.h */, 8209 BC64B4BC0CB42929005F2B62 /* FontPlatformDataMac.mm */, 8179 8210 51E1ECAD0C91C54600DC255B /* AutodrainedPool.mm */, 8180 8211 65A640F00533BB1F0085E777 /* BlockExceptions.h */, … … 10688 10719 BCB16C000979C3BD00467741 /* CachedCSSStyleSheet.cpp */, 10689 10720 BCB16C010979C3BD00467741 /* CachedCSSStyleSheet.h */, 10721 BC64B4C90CB4295D005F2B62 /* CachedFont.cpp */, 10722 BC64B4CA0CB4295D005F2B62 /* CachedFont.h */, 10690 10723 BCB16C020979C3BD00467741 /* CachedImage.cpp */, 10691 10724 BCB16C030979C3BD00467741 /* CachedImage.h */, … … 10810 10843 BCC47E2409A3D6F100ADB771 /* FontFamily.cpp */, 10811 10844 BCC47E2509A3D6F100ADB771 /* FontFamily.h */, 10845 BC64B4B80CB428C7005F2B62 /* FontSelector.h */, 10812 10846 BCC71A120A0FF94D0014EE6E /* GlyphBuffer.h */, 10813 10847 BC6DB4730A1A90FB00E5CD14 /* GlyphPageTreeNode.cpp */, … … 10966 11000 isa = PBXGroup; 10967 11001 children = ( 11002 BC64B4CD0CB4298A005F2B62 /* CSSFontFace.cpp */, 11003 BC64B4CE0CB4298A005F2B62 /* CSSFontFace.h */, 11004 BC64B4CF0CB4298A005F2B62 /* CSSFontFaceSource.cpp */, 11005 BC64B4D00CB4298A005F2B62 /* CSSFontFaceSource.h */, 11006 BC64B4D10CB4298A005F2B62 /* CSSFontFaceSrcValue.cpp */, 11007 BC64B4D20CB4298A005F2B62 /* CSSFontFaceSrcValue.h */, 11008 BC64B4D30CB4298A005F2B62 /* CSSFontSelector.cpp */, 11009 BC64B4D40CB4298A005F2B62 /* CSSFontSelector.h */, 10968 11010 A80E6CDA0A1989CA007FB8C5 /* Counter.h */, 10969 11011 930705C709E0C95F00B17FE4 /* Counter.idl */, … … 13165 13207 A8E545C00CA9D1C20097D09B /* DOMSVGDocument.h in Headers */, 13166 13208 A8E545C10CA9D1C20097D09B /* DOMSVGDescElementInternal.h in Headers */, 13209 BC64B4B90CB428C7005F2B62 /* FontSelector.h in Headers */, 13210 BC64B4BE0CB42929005F2B62 /* FontCustomPlatformData.h in Headers */, 13211 BC64B4CC0CB4295D005F2B62 /* CachedFont.h in Headers */, 13212 BC64B4D60CB4298A005F2B62 /* CSSFontFace.h in Headers */, 13213 BC64B4D80CB4298A005F2B62 /* CSSFontFaceSource.h in Headers */, 13214 BC64B4DA0CB4298A005F2B62 /* CSSFontFaceSrcValue.h in Headers */, 13215 BC64B4DC0CB4298A005F2B62 /* CSSFontSelector.h in Headers */, 13167 13216 ); 13168 13217 runOnlyForDeploymentPostprocessing = 0; … … 14639 14688 AA4038900C4C0D8B00DB56DC /* SVGViewSpec.cpp in Sources */, 14640 14689 B2CCEC470C6CA9F1006A5424 /* RenderSVGViewportContainer.cpp in Sources */, 14690 BC64B4BD0CB42929005F2B62 /* FontCustomPlatformData.cpp in Sources */, 14691 BC64B4BF0CB42929005F2B62 /* FontPlatformDataMac.mm in Sources */, 14692 BC64B4CB0CB4295D005F2B62 /* CachedFont.cpp in Sources */, 14693 BC64B4D50CB4298A005F2B62 /* CSSFontFace.cpp in Sources */, 14694 BC64B4D70CB4298A005F2B62 /* CSSFontFaceSource.cpp in Sources */, 14695 BC64B4D90CB4298A005F2B62 /* CSSFontFaceSrcValue.cpp in Sources */, 14696 BC64B4DB0CB4298A005F2B62 /* CSSFontSelector.cpp in Sources */, 14641 14697 ); 14642 14698 runOnlyForDeploymentPostprocessing = 0; -
trunk/WebCore/css/CSSComputedStyleDeclaration.cpp
r25754 r26484 1625 1625 case CSS_PROP_SCROLLBAR_SHADOW_COLOR: 1626 1626 case CSS_PROP_SCROLLBAR_TRACK_COLOR: 1627 case CSS_PROP_SRC: // Only used in @font-face rules. 1627 1628 case CSS_PROP_SIZE: 1628 1629 case CSS_PROP_TEXT_LINE_THROUGH: -
trunk/WebCore/css/CSSFontFaceRule.cpp
r25754 r26484 38 38 } 39 39 40 void CSSFontFaceRule::setDeclaration(PassRefPtr<CSSMutableStyleDeclaration> style) 41 { 42 m_style = style; 43 } 44 40 45 String CSSFontFaceRule::cssText() const 41 46 { 42 // FIXME: Implement! 43 return String(); 47 String result("@font-face"); 48 result += " { "; 49 result += m_style->cssText(); 50 result += "}"; 51 return result; 44 52 } 45 53 -
trunk/WebCore/css/CSSFontFaceRule.h
r25754 r26484 26 26 27 27 #include "CSSRule.h" 28 #include <wtf/PassRefPtr.h> 28 29 #include <wtf/RefPtr.h> 29 30 … … 46 47 virtual String cssText() const; 47 48 49 void setDeclaration(PassRefPtr<CSSMutableStyleDeclaration>); 50 48 51 protected: 49 52 RefPtr<CSSMutableStyleDeclaration> m_style; -
trunk/WebCore/css/CSSGrammar.y
r26482 r26484 552 552 : ':' IDENT 553 553 ; 554 555 font_face556 : FONT_FACE_SYM maybe_space557 '{' maybe_space declaration [ ';' maybe_space declaration ]* '}' maybe_space558 ;559 554 */ 560 555 … … 569 564 570 565 font_face: 571 FONT_FACE_SYM error invalid_block { 566 FONT_FACE_SYM maybe_space 567 '{' maybe_space declaration_list '}' maybe_space { 568 $$ = static_cast<CSSParser*>(parser)->createFontFaceRule(); 569 } 570 | FONT_FACE_SYM error invalid_block { 572 571 $$ = 0; 573 572 } 574 | FONT_FACE_SYM error ';' {573 | FONT_FACE_SYM error ';' { 575 574 $$ = 0; 576 575 } -
trunk/WebCore/css/CSSParser.cpp
r26469 r26484 30 30 #include "CSSHelper.h" 31 31 #include "CSSImageValue.h" 32 #include "CSSFontFaceRule.h" 33 #include "CSSFontFaceSrcValue.h" 32 34 #include "CSSImportRule.h" 33 35 #include "CSSInheritedValue.h" … … 1063 1065 valid_primitive = true; 1064 1066 break; 1067 1068 case CSS_PROP_SRC: // Only used within @font-face, so cannot use inherit | initial or be !important. This is a list of urls or local references. 1069 return parseFontFaceSrc(); 1065 1070 1066 1071 /* CSS3 properties */ … … 2462 2467 } 2463 2468 2469 bool CSSParser::parseFontFaceSrc() 2470 { 2471 CSSValueList* values = new CSSValueList(); 2472 Value* val; 2473 bool expectComma = false; 2474 bool allowFormat = false; 2475 bool failed = false; 2476 CSSFontFaceSrcValue* parsedValue = 0; 2477 CSSFontFaceSrcValue* uriValue = 0; 2478 while ((val = valueList->current())) { 2479 parsedValue = 0; 2480 if (val->unit == CSSPrimitiveValue::CSS_URI && !expectComma) { 2481 String value = parseURL(domString(val->string)); 2482 parsedValue = new CSSFontFaceSrcValue(String(KURL(styleElement->baseURL().deprecatedString(), value.deprecatedString()).url()), false); 2483 uriValue = parsedValue; 2484 allowFormat = true; 2485 } else if (val->unit == Value::Function) { 2486 // There are two allowed functions: local() and format(). 2487 String fname = domString(val->function->name).lower(); 2488 ValueList* args = val->function->args; 2489 if (args && args->size() == 1) { 2490 if (fname == "local(" && !expectComma) { 2491 // Parse it. 2492 expectComma = true; 2493 allowFormat = false; 2494 Value* a = args->current(); 2495 uriValue = 0; 2496 parsedValue = new CSSFontFaceSrcValue(domString(a->string), true); 2497 } else if (fname == "format(" && allowFormat && uriValue) { 2498 allowFormat = false; 2499 uriValue->setFormat(domString(args->current()->string)); 2500 uriValue = 0; 2501 valueList->next(); 2502 continue; 2503 } 2504 } 2505 } else if (val->unit == Value::Operator && val->iValue == ',' && expectComma) { 2506 expectComma = false; 2507 allowFormat = false; 2508 uriValue = 0; 2509 valueList->next(); 2510 continue; 2511 } 2512 2513 if (parsedValue) 2514 values->append(parsedValue); 2515 else { 2516 failed = true; 2517 break; 2518 } 2519 valueList->next(); 2520 } 2521 2522 if (values->length() && !failed) { 2523 addProperty(CSS_PROP_SRC, values, important); 2524 valueList->next(); 2525 return true; 2526 } 2527 2528 delete values; 2529 return false; 2530 } 2531 2464 2532 bool CSSParser::parseColor(const String &name, RGBA32& rgb, bool strict) 2465 2533 { … … 3325 3393 } 3326 3394 3395 CSSRule* CSSParser::createFontFaceRule() 3396 { 3397 CSSFontFaceRule* rule = new CSSFontFaceRule(styleElement); 3398 m_parsedStyleObjects.append(rule); 3399 rule->setDeclaration(new CSSMutableStyleDeclaration(rule, parsedProperties, numParsedProperties)); 3400 clearProperties(); 3401 return rule; 3402 } 3403 3327 3404 DeprecatedString deprecatedString(const ParseString& ps) 3328 3405 { -
trunk/WebCore/css/CSSParser.h
r26443 r26484 164 164 static bool parseColor(const String&, RGBA32& rgb, bool strict); 165 165 166 bool parseFontFaceSrc(); 167 166 168 #if ENABLE(SVG) 167 169 bool parseSVGValue(int propId, bool important); … … 194 196 CSSRuleList* createRuleList(); 195 197 CSSRule* createStyleRule(CSSSelector*); 198 CSSRule* createFontFaceRule(); 196 199 197 200 MediaQueryExp* createFloatingMediaQueryExp(const AtomicString&, ValueList*); -
trunk/WebCore/css/CSSPropertyNames.in
r21026 r26484 107 107 scrollbar-track-color 108 108 size 109 src 109 110 table-layout 110 111 text-align -
trunk/WebCore/css/CSSStyleSelector.cpp
r26469 r26484 28 28 #include "CSSBorderImageValue.h" 29 29 #include "CSSCursorImageValue.h" 30 #include "CSSFontFace.h" 31 #include "CSSFontFaceSource.h" 32 #include "CSSFontFaceRule.h" 30 33 #include "CSSImageValue.h" 31 34 #include "CSSImportRule.h" … … 183 186 typedef HashMap<AtomicStringImpl*, CSSRuleDataList*> AtomRuleMap; 184 187 185 void addRulesFromSheet(CSSStyleSheet* sheet, MediaQueryEvaluator* medium);188 void addRulesFromSheet(CSSStyleSheet*, MediaQueryEvaluator*, CSSStyleSelector* = 0); 186 189 187 190 void addRule(CSSStyleRule* rule, CSSSelector* sel); … … 199 202 AtomRuleMap m_tagRules; 200 203 CSSRuleDataList* m_universalRules; 201 202 204 unsigned m_ruleCount; 203 205 }; … … 260 262 261 263 m_userStyle = new CSSRuleSet(); 262 m_userStyle->addRulesFromSheet(m_userSheet.get(), m_medium );264 m_userStyle->addRulesFromSheet(m_userSheet.get(), m_medium, this); 263 265 } 264 266 … … 269 271 for (; it.current(); ++it) 270 272 if (it.current()->isCSSStyleSheet() && !it.current()->disabled()) 271 m_authorStyle->addRulesFromSheet(static_cast<CSSStyleSheet*>(it.current()), m_medium); 272 273 } 274 275 CSSStyleSelector::CSSStyleSelector(CSSStyleSheet *sheet) 276 { 277 init(); 278 279 if (!defaultStyle) 280 loadDefaultStyle(); 281 FrameView *view = sheet->doc()->view(); 282 283 if (view) 284 m_medium = new MediaQueryEvaluator(view->mediaType()); 285 else 286 m_medium = new MediaQueryEvaluator("all"); 287 288 Element* root = sheet->doc()->documentElement(); 289 if (root) 290 m_rootDefaultStyle = styleForElement(root, 0, false, true); 291 292 if (m_rootDefaultStyle && view) { 293 delete m_medium; 294 m_medium = new MediaQueryEvaluator(view->mediaType(), view->frame()->page(), m_rootDefaultStyle); 295 } 296 297 m_authorStyle = new CSSRuleSet(); 298 m_authorStyle->addRulesFromSheet(sheet, m_medium); 273 m_authorStyle->addRulesFromSheet(static_cast<CSSStyleSheet*>(it.current()), m_medium, this); 274 275 // Just delete our font selector if we end up with nothing but invalid @font-face rules. 276 if (m_fontSelector && m_fontSelector->isEmpty()) 277 m_fontSelector = 0; 299 278 } 300 279 … … 791 770 styleNotYetAvailable->ref(); 792 771 styleNotYetAvailable->setDisplay(NONE); 793 styleNotYetAvailable->font().update( );772 styleNotYetAvailable->font().update(m_fontSelector); 794 773 } 795 774 styleNotYetAvailable->ref(); … … 1172 1151 checkForTextSizeAdjust(); 1173 1152 checkForGenericFamilyChange(style, parentStyle); 1174 style->font().update( );1153 style->font().update(m_fontSelector); 1175 1154 fontDirty = false; 1176 1155 } … … 1686 1665 } 1687 1666 1688 void CSSRuleSet::addRulesFromSheet(CSSStyleSheet* sheet, MediaQueryEvaluator* medium )1667 void CSSRuleSet::addRulesFromSheet(CSSStyleSheet* sheet, MediaQueryEvaluator* medium, CSSStyleSelector* styleSelector) 1689 1668 { 1690 1669 if (!sheet || !sheet->isCSSStyleSheet()) … … 1708 1687 CSSImportRule* import = static_cast<CSSImportRule*>(item); 1709 1688 if (!import->media() || medium->eval(import->media())) 1710 addRulesFromSheet(import->styleSheet(), medium );1689 addRulesFromSheet(import->styleSheet(), medium, styleSelector); 1711 1690 } 1712 1691 else if(item->isMediaRule()) { … … 1723 1702 for (CSSSelector* s = rule->selector(); s; s = s->next()) 1724 1703 addRule(rule, s); 1725 1704 } else if (item->isFontFaceRule() && styleSelector) { 1705 // Add this font face to our set. 1706 const CSSFontFaceRule* fontFaceRule = static_cast<CSSFontFaceRule*>(item); 1707 styleSelector->ensureFontSelector()->addFontFaceRule(fontFaceRule); 1726 1708 } 1727 1709 } // for rules 1728 1710 } // if rules 1711 } else if (item->isFontFaceRule() && styleSelector) { 1712 // Add this font face to our set. 1713 const CSSFontFaceRule* fontFaceRule = static_cast<CSSFontFaceRule*>(item); 1714 styleSelector->ensureFontSelector()->addFontFaceRule(fontFaceRule); 1729 1715 } 1730 1716 } … … 3343 3329 break; 3344 3330 case CSS_VAL_SERIF: 3345 face = settings->serifFontFamily();3331 face = m_fontSelector ? "-webkit-serif" : settings->serifFontFamily(); 3346 3332 fontDescription.setGenericFamily(FontDescription::SerifFamily); 3347 3333 break; 3348 3334 case CSS_VAL_SANS_SERIF: 3349 face = settings->sansSerifFontFamily();3335 face = m_fontSelector ? "-webkit-sans-serif" : settings->sansSerifFontFamily(); 3350 3336 fontDescription.setGenericFamily(FontDescription::SansSerifFamily); 3351 3337 break; 3352 3338 case CSS_VAL_CURSIVE: 3353 face = settings->cursiveFontFamily();3339 face = m_fontSelector ? "-webkit-cursive" : settings->cursiveFontFamily(); 3354 3340 fontDescription.setGenericFamily(FontDescription::CursiveFamily); 3355 3341 break; 3356 3342 case CSS_VAL_FANTASY: 3357 face = settings->fantasyFontFamily();3343 face = m_fontSelector ? "-webkit-fantasy" : settings->fantasyFontFamily(); 3358 3344 fontDescription.setGenericFamily(FontDescription::FantasyFamily); 3359 3345 break; 3360 3346 case CSS_VAL_MONOSPACE: 3361 face = settings->fixedFontFamily();3347 face = m_fontSelector ? "-webkit-monospace" : settings->fixedFontFamily(); 3362 3348 fontDescription.setGenericFamily(FontDescription::MonospaceFamily); 3363 3349 break; … … 3579 3565 3580 3566 m_lineHeightValue = font->lineHeight.get(); 3567 3581 3568 applyProperty(CSS_PROP_FONT_FAMILY, font->family.get()); 3582 3569 } … … 3849 3836 return; 3850 3837 } 3851 return; 3838 return; 3839 case CSS_PROP_SRC: // Only used in @font-face rules. 3840 return; 3852 3841 case CSS_PROP__WEBKIT_BOX_DIRECTION: 3853 3842 HANDLE_INHERIT_AND_INITIAL(boxDirection, BoxDirection) … … 4920 4909 } 4921 4910 4911 CSSFontSelector* CSSStyleSelector::ensureFontSelector() 4912 { 4913 if (!m_fontSelector.get()) 4914 m_fontSelector = new CSSFontSelector(m_document); 4915 return m_fontSelector.get(); 4916 } 4917 4922 4918 } // namespace WebCore -
trunk/WebCore/css/CSSStyleSelector.h
r25754 r26484 25 25 #define CSSStyleSelector_h 26 26 27 #include "CSSFontSelector.h" 27 28 #include "DeprecatedString.h" 28 29 #include "RenderStyle.h" 29 30 #include <wtf/HashSet.h> 30 31 #include <wtf/Vector.h> 32 #include <wtf/RefPtr.h> 31 33 32 34 namespace WebCore { … … 35 37 class CSSPrimitiveValue; 36 38 class CSSProperty; 39 class CSSFontFace; 40 class CSSFontFaceRule; 37 41 class CSSRuleData; 38 42 class CSSRuleDataList; … … 79 83 { 80 84 public: 81 /**82 * creates a new StyleSelector for a Document.83 * goes through all StyleSheets defined in the document and84 * creates a list of rules it needs to apply to objects85 */86 85 CSSStyleSelector(Document*, const String& userStyleSheet, StyleSheetList *styleSheets, bool strictParsing); 87 /**88 * same as above but for a single stylesheet.89 */90 CSSStyleSelector(CSSStyleSheet *sheet);91 86 ~CSSStyleSelector(); 92 87 … … 133 128 bool hasSelectorForAttribute(const AtomicString &attrname); 134 129 130 CSSFontSelector* fontSelector() { return m_fontSelector.get(); } 131 CSSFontSelector* ensureFontSelector(); 132 135 133 protected: 136 134 … … 227 225 bool fontDirty; 228 226 bool isXMLDoc; 229 230 HashSet<AtomicStringImpl *> m_selectorAttrs; 227 228 RefPtr<CSSFontSelector> m_fontSelector; 229 230 HashSet<AtomicStringImpl*> m_selectorAttrs; 231 231 232 232 void applyProperty(int id, CSSValue *value); … … 234 234 void applySVGProperty(int id, CSSValue *value); 235 235 #endif 236 237 friend class CSSRuleSet; 236 238 }; 237 239 -
trunk/WebCore/dom/Document.cpp
r25813 r26484 1024 1024 1025 1025 _style->setFontDescription(fontDescription); 1026 _style->font().update( );1026 _style->font().update(0); 1027 1027 if (inCompatMode()) 1028 1028 _style->setHtmlHacks(true); // enable html specific rendering tricks -
trunk/WebCore/loader/Cache.cpp
r25769 r26484 25 25 26 26 #include "CachedCSSStyleSheet.h" 27 #include "CachedFont.h" 27 28 #include "CachedImage.h" 28 29 #include "CachedScript.h" … … 71 72 case CachedResource::Script: 72 73 return new CachedScript(docLoader, url.url(), *charset); 74 case CachedResource::FontResource: 75 return new CachedFont(docLoader, url.url()); 73 76 #if ENABLE(XSLT) 74 77 case CachedResource::XSLStyleSheet: … … 557 560 break; 558 561 #endif 562 case CachedResource::FontResource: 563 stats.fonts.count++; 564 stats.fonts.size += o->size(); 565 stats.fonts.liveSize += o->referenced() ? o->size() : 0; 566 stats.fonts.decodedSize += o->decodedSize(); 567 break; 559 568 #if ENABLE(XBL) 560 569 case CachedResource::XBL: -
trunk/WebCore/loader/Cache.h
r25754 r26484 87 87 TypeStatistic xblDocs; 88 88 #endif 89 TypeStatistic fonts; 89 90 }; 90 91 -
trunk/WebCore/loader/CachedResource.h
r25754 r26484 48 48 ImageResource, 49 49 CSSStyleSheet, 50 Script 50 Script, 51 FontResource 51 52 #if ENABLE(XSLT) 52 53 , XSLStyleSheet -
trunk/WebCore/loader/CachedResourceClient.h
r25754 r26484 36 36 namespace WebCore { 37 37 38 class CachedFont; 38 39 class CachedResource; 39 40 class CachedImage; … … 67 68 virtual void setXSLStyleSheet(const String& /*URL*/, const String& /*sheet*/) { } 68 69 70 virtual void fontLoaded(CachedFont*) {}; 71 69 72 #if ENABLE(XBL) 70 73 virtual void setXBLDocument(const String& /*URL*/, XBL::XBLDocument*) { } -
trunk/WebCore/loader/DocLoader.cpp
r25754 r26484 31 31 #include "Cache.h" 32 32 #include "CachedCSSStyleSheet.h" 33 #include "CachedFont.h" 33 34 #include "CachedImage.h" 34 35 #include "CachedScript.h" … … 94 95 } 95 96 97 CachedFont* DocLoader::requestFont(const String& url) 98 { 99 return static_cast<CachedFont*>(requestResource(CachedResource::FontResource, url)); 100 } 101 96 102 CachedCSSStyleSheet* DocLoader::requestCSSStyleSheet(const String& url, const String& charset, bool isUserStyleSheet) 97 103 { -
trunk/WebCore/loader/DocLoader.h
r25754 r26484 35 35 36 36 class CachedCSSStyleSheet; 37 class CachedFont; 37 38 class CachedImage; 38 39 class CachedScript; … … 57 58 CachedCSSStyleSheet* requestUserCSSStyleSheet(const String& url, const String& charset); 58 59 CachedScript* requestScript(const String& url, const String& charset); 60 CachedFont* requestFont(const String& url); 59 61 60 62 #if ENABLE(XSLT) -
trunk/WebCore/platform/Font.cpp
r26445 r26484 334 334 } 335 335 336 bool Font::operator==(const Font& other) const 337 { 338 // Our FontData don't have to be checked, since checking the font description will be fine. 339 // FIXME: This does not work if the font was made with the FontPlatformData constructor. 340 if ((m_fontList && m_fontList->loadingCustomFonts()) || 341 (other.m_fontList && other.m_fontList->loadingCustomFonts())) 342 return false; 343 344 FontSelector* first = m_fontList ? m_fontList->fontSelector() : 0; 345 FontSelector* second = other.m_fontList ? other.m_fontList->fontSelector() : 0; 346 347 return first == second 348 && m_fontDescription == other.m_fontDescription 349 && m_letterSpacing == other.m_letterSpacing 350 && m_wordSpacing == other.m_wordSpacing; 351 } 352 336 353 // FIXME: It is unfortunate that this function needs to be passed the original cluster. 337 354 // It is only required for the platform's FontCache::getFontDataForCharacters(), and it means … … 464 481 } 465 482 466 void Font::update( ) const483 void Font::update(PassRefPtr<FontSelector> fontSelector) const 467 484 { 468 485 // FIXME: It is pretty crazy that we are willing to just poke into a RefPtr, but it ends up … … 472 489 // and could eventually be rectified by using RefPtrs for Fonts themselves. 473 490 if (!m_fontList) 474 m_fontList = new FontFallbackList ;475 m_fontList->invalidate( );491 m_fontList = new FontFallbackList(); 492 m_fontList->invalidate(fontSelector); 476 493 m_pageZero = 0; 477 494 m_pages.clear(); … … 651 668 void Font::drawText(GraphicsContext* context, const TextRun& run, const TextStyle& style, const FloatPoint& point, int from, int to) const 652 669 { 670 // Don't draw anything while we are using custom fonts that are in the process of loading. 671 if (m_fontList && m_fontList->loadingCustomFonts()) 672 return; 673 653 674 to = (to == -1 ? run.length() : to); 654 675 if (canUseGlyphCache(run)) -
trunk/WebCore/platform/Font.h
r26445 r26484 5 5 * (C) 2000 Antti Koivisto (koivisto@kde.org) 6 6 * (C) 2000 Dirk Mueller (mueller@kde.org) 7 * Copyright (C) 2003, 2006 Apple Computer, Inc.7 * Copyright (C) 2003, 2006, 2007 Apple Computer, Inc. 8 8 * 9 9 * This library is free software; you can redistribute it and/or … … 42 42 class FontFallbackList; 43 43 class FontPlatformData; 44 class FontSelector; 44 45 class GlyphBuffer; 45 46 class GlyphPageTreeNode; … … 83 84 Font& operator=(const Font&); 84 85 85 bool operator==(const Font& other) const 86 { 87 // Our FontData doesn't have to be checked, since checking the font description will be fine. 88 // FIXME: This does not work if the font was made with the FontPlatformData constructor. 89 return m_fontDescription == other.m_fontDescription 90 && m_letterSpacing == other.m_letterSpacing 91 && m_wordSpacing == other.m_wordSpacing; 92 } 93 86 bool operator==(const Font& other) const; 94 87 bool operator!=(const Font& other) const { 95 88 return !(*this == other); … … 101 94 float size() const { return fontDescription().computedSize(); } 102 95 103 void update( ) const;96 void update(PassRefPtr<FontSelector>) const; 104 97 105 98 void drawText(GraphicsContext*, const TextRun&, const TextStyle&, const FloatPoint&, int from = 0, int to = -1) const; -
trunk/WebCore/platform/FontCache.cpp
r20126 r26484 33 33 #include "FontFallbackList.h" 34 34 #include "FontPlatformData.h" 35 #include "FontSelector.h" 35 36 #include "StringHash.h" 36 37 #include <wtf/HashMap.h> … … 213 214 } 214 215 215 const FontData* FontCache::getFontData(const Font& font, int& familyIndex )216 const FontData* FontCache::getFontData(const Font& font, int& familyIndex, FontSelector* fontSelector) 216 217 { 217 218 FontPlatformData* result = 0; … … 224 225 while (currFamily && !result) { 225 226 familyIndex++; 226 if (currFamily->family().length()) 227 if (currFamily->family().length()) { 228 if (fontSelector) { 229 FontData* data = fontSelector->getFontData(font.fontDescription(), currFamily->family()); 230 if (data) 231 return data; 232 } 227 233 result = getCachedFontPlatformData(font.fontDescription(), currFamily->family()); 234 } 228 235 currFamily = currFamily->next(); 229 236 } … … 241 248 // We still don't have a result. Hand back our last resort fallback font. We only do the last resort fallback 242 249 // when trying to find the primary font. Otherwise our fallback will rely on the actual characters used. 243 result = getLastResortFallbackFont(font );250 result = getLastResortFallbackFont(font.fontDescription()); 244 251 245 252 // Now that we have a result, we need to go from FontPlatformData -> FontData. -
trunk/WebCore/platform/FontCache.h
r18874 r26484 44 44 class Font; 45 45 class FontDescription; 46 class FontSelector; 46 47 47 48 class FontCache { 48 49 public: 49 static const FontData* getFontData(const Font&, int& familyIndex );50 static const FontData* getFontData(const Font&, int& familyIndex, FontSelector*); 50 51 51 52 // This method is implemented by the platform. … … 59 60 #endif 60 61 61 private: 62 static bool fontExists(const FontDescription&, const AtomicString& family); 63 62 64 static FontPlatformData* getCachedFontPlatformData(const FontDescription&, const AtomicString& family, bool checkingAlternateName = false); 63 65 static FontData* getCachedFontData(const FontPlatformData*); 66 static FontPlatformData* getLastResortFallbackFont(const FontDescription&); 64 67 65 // These three methods are implemented by each platform. 68 private: 69 // These methods are implemented by each platform. 66 70 static FontPlatformData* getSimilarFontPlatformData(const Font&); 67 static FontPlatformData* getLastResortFallbackFont(const Font&);68 71 static FontPlatformData* createFontPlatformData(const FontDescription&, const AtomicString& family); 69 72 -
trunk/WebCore/platform/FontData.cpp
r25215 r26484 35 35 namespace WebCore { 36 36 37 FontData::FontData(const FontPlatformData& f )37 FontData::FontData(const FontPlatformData& f, bool customFont, bool loading) 38 38 : m_font(f) 39 39 , m_treatAsFixedPitch(false) 40 , m_isCustomFont(customFont) 41 , m_isLoading(loading) 40 42 , m_smallCapsFontData(0) 41 43 { … … 53 55 return; 54 56 } 57 55 58 // Nasty hack to determine if we should round or ceil space widths. 56 59 // If the font is monospace or fake monospace we ceil to ensure that -
trunk/WebCore/platform/FontData.h
r26445 r26484 43 43 class FontDescription; 44 44 class FontPlatformData; 45 class SharedBuffer; 45 46 class WidthMap; 46 47 … … 49 50 class FontData : Noncopyable { 50 51 public: 51 FontData(const FontPlatformData& );52 FontData(const FontPlatformData&, bool customFont = false, bool loading = false); 52 53 ~FontData(); 53 54 … … 71 72 void determinePitch(); 72 73 Pitch pitch() const { return m_treatAsFixedPitch ? FixedPitch : VariablePitch; } 74 75 bool isCustomFont() const { return m_isCustomFont; } 76 bool isLoading() const { return m_isLoading; } 73 77 74 78 const GlyphData& missingGlyphData() const { return m_missingGlyphData; } … … 98 102 void platformInit(); 99 103 void platformDestroy(); 104 105 void commonInit(); 100 106 101 107 public: … … 108 114 109 115 FontPlatformData m_font; 116 110 117 mutable GlyphWidthMap m_glyphToWidthMap; 111 118 112 119 bool m_treatAsFixedPitch; 120 121 bool m_isCustomFont; // Whether or not we are custom font loaded via @font-face 122 bool m_isLoading; // Whether or not this custom font is still in the act of loading. 123 113 124 Glyph m_spaceGlyph; 114 125 float m_spaceWidth; -
trunk/WebCore/platform/FontFallbackList.cpp
r20495 r26484 36 36 37 37 FontFallbackList::FontFallbackList() 38 : m_familyIndex(0), m_pitch(UnknownPitch) 38 : m_familyIndex(0) 39 , m_pitch(UnknownPitch) 40 , m_loadingCustomFonts(false) 41 , m_fontSelector(0) 39 42 { 40 43 } 41 44 42 void FontFallbackList::invalidate( )45 void FontFallbackList::invalidate(PassRefPtr<FontSelector> fontSelector) 43 46 { 44 47 m_fontList.clear(); 45 48 m_familyIndex = 0; 46 49 m_pitch = UnknownPitch; 50 m_loadingCustomFonts = false; 51 m_fontSelector = fontSelector; 47 52 } 48 53 … … 67 72 // in |m_familyIndex|, so that we never scan the same spot in the list twice. getFontData will adjust our 68 73 // |m_familyIndex| as it scans for the right font to make. 69 const FontData* result = FontCache::getFontData(*font, m_familyIndex );70 if (result) 74 const FontData* result = FontCache::getFontData(*font, m_familyIndex, m_fontSelector.get()); 75 if (result) { 71 76 m_fontList.append(result); 77 if (result->isLoading()) 78 m_loadingCustomFonts = true; 79 } 72 80 return result; 73 81 } -
trunk/WebCore/platform/FontFallbackList.h
r25754 r26484 27 27 #include "FontData.h" 28 28 #include "Shared.h" 29 #include "FontSelector.h" 29 30 #include <wtf/Vector.h> 30 31 … … 36 37 class FontDescription; 37 38 class FontPlatformData; 39 class FontSelector; 38 40 39 41 const int cAllFamiliesScanned = -1; … … 43 45 FontFallbackList(); 44 46 45 void invalidate( );47 void invalidate(PassRefPtr<FontSelector>); 46 48 47 49 bool isFixedPitch(const Font* f) const { if (m_pitch == UnknownPitch) determinePitch(f); return m_pitch == FixedPitch; }; 48 50 void determinePitch(const Font*) const; 51 52 bool loadingCustomFonts() const { return m_loadingCustomFonts; } 53 54 FontSelector* fontSelector() const { return m_fontSelector.get(); } 49 55 50 56 private: … … 58 64 mutable int m_familyIndex; 59 65 mutable Pitch m_pitch; 60 66 mutable bool m_loadingCustomFonts; 67 RefPtr<FontSelector> m_fontSelector; 68 61 69 friend class Font; 62 70 }; -
trunk/WebCore/platform/GlyphPageTreeNode.cpp
r24740 r26484 36 36 namespace WebCore { 37 37 38 HashMap<int, GlyphPageTreeNode*>* GlyphPageTreeNode::roots = 0; 39 GlyphPageTreeNode* GlyphPageTreeNode::pageZeroRoot = 0; 40 38 41 GlyphPageTreeNode* GlyphPageTreeNode::getRoot(unsigned pageNumber) 39 42 { 40 static HashMap<int, GlyphPageTreeNode*> roots; 41 static GlyphPageTreeNode* pageZeroRoot; 42 GlyphPageTreeNode* node = pageNumber ? roots.get(pageNumber) : pageZeroRoot; 43 static bool initialized; 44 if (!initialized) { 45 initialized = true; 46 roots = new HashMap<int, GlyphPageTreeNode*>; 47 pageZeroRoot = new GlyphPageTreeNode; 48 } 49 50 GlyphPageTreeNode* node = pageNumber ? roots->get(pageNumber) : pageZeroRoot; 43 51 if (!node) { 44 52 node = new GlyphPageTreeNode; … … 47 55 #endif 48 56 if (pageNumber) 49 roots .set(pageNumber, node);57 roots->set(pageNumber, node); 50 58 else 51 59 pageZeroRoot = node; 52 60 } 53 61 return node; 62 } 63 64 void GlyphPageTreeNode::pruneTreeCustomFontData(const FontData* fontData) 65 { 66 // Enumerate all the roots and prune any tree that contains our custom font data. 67 if (roots) { 68 HashMap<int, GlyphPageTreeNode*>::iterator end = roots->end(); 69 for (HashMap<int, GlyphPageTreeNode*>::iterator it = roots->begin(); it != end; ++it) 70 it->second->pruneCustomFontData(fontData); 71 } 72 73 if (pageZeroRoot) 74 pageZeroRoot->pruneCustomFontData(fontData); 75 } 76 77 GlyphPageTreeNode::~GlyphPageTreeNode() 78 { 79 deleteAllValues(m_children); 80 delete m_systemFallbackChild; 54 81 } 55 82 … … 64 91 // The parent's page will be 0 if we are level one or the parent's font data 65 92 // did not contain any glyphs for that page. 66 GlyphPage* parentPage = m_parent-> m_page;93 GlyphPage* parentPage = m_parent->page(); 67 94 68 95 // NULL FontData means we're being asked for the system fallback font. … … 120 147 bool haveGlyphs = m_page->fill(buffer, bufferLength, fontData); 121 148 122 if (!haveGlyphs) { 123 delete m_page; 149 if (!haveGlyphs) 124 150 m_page = 0; 125 }126 151 } else if (parentPage && parentPage->owner() != m_parent) { 127 152 // The page we're overriding may not be owned by our parent node. … … 169 194 } 170 195 171 if (!newGlyphs) {196 if (!newGlyphs) 172 197 // We didn't override anything, so our override is just the parent page. 173 delete m_page;174 198 m_page = parentPage; 175 }176 199 } 177 200 } … … 202 225 child->m_parent = this; 203 226 child->m_level = m_level + 1; 227 if (fontData && fontData->isCustomFont()) { 228 for (GlyphPageTreeNode* curr = this; curr; curr = curr->m_parent) 229 curr->m_customFontCount++; 230 } 231 204 232 #ifndef NDEBUG 205 233 child->m_pageNumber = m_pageNumber; … … 216 244 } 217 245 218 } 246 void GlyphPageTreeNode::pruneCustomFontData(const FontData* fontData) 247 { 248 if (!fontData || !m_customFontCount) 249 return; 250 251 // Prune any branch that contains this FontData. 252 GlyphPageTreeNode* node = m_children.get(fontData); 253 if (node) { 254 m_children.remove(fontData); 255 unsigned fontCount = node->m_customFontCount + 1; 256 delete node; 257 for (GlyphPageTreeNode* curr = this; curr; curr = curr->m_parent) 258 curr->m_customFontCount -= fontCount; 259 } 260 261 // Check any branches that remain that still have custom fonts underneath them. 262 if (!m_customFontCount) 263 return; 264 HashMap<const FontData*, GlyphPageTreeNode*>::iterator end = m_children.end(); 265 for (HashMap<const FontData*, GlyphPageTreeNode*>::iterator it = m_children.begin(); it != end; ++it) 266 it->second->pruneCustomFontData(fontData); 267 } 268 269 } -
trunk/WebCore/platform/GlyphPageTreeNode.h
r21293 r26484 1 1 /* 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved.2 * Copyright (C) 2006, 2007 Apple Computer, Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 30 30 #define GlyphPageTreeNode_h 31 31 32 #include "Shared.h" 32 33 #include <wtf/unicode/Unicode.h> 33 34 #include <wtf/Noncopyable.h> … … 56 57 // although multiple nodes may reference it as their "page" if they are supposed 57 58 // to be overriding the parent's node, but provide no additional information. 58 struct GlyphPage {59 struct GlyphPage : public Shared<GlyphPage> { 59 60 GlyphPage() 60 61 : m_owner(0) … … 110 111 GlyphPageTreeNode() 111 112 : m_parent(0) 112 , m_page(0)113 113 , m_level(0) 114 114 , m_isSystemFallback(false) 115 115 , m_systemFallbackChild(0) 116 , m_customFontCount(0) 116 117 #ifndef NDEBUG 117 118 , m_pageNumber(0) … … 120 121 } 121 122 123 ~GlyphPageTreeNode(); 124 125 static HashMap<int, GlyphPageTreeNode*>* roots; 126 static GlyphPageTreeNode* pageZeroRoot; 127 122 128 static GlyphPageTreeNode* getRootChild(const FontData* fontData, unsigned pageNumber) 123 129 { … … 125 131 } 126 132 133 static void pruneTreeCustomFontData(const FontData*); 134 135 void pruneCustomFontData(const FontData*); 136 127 137 GlyphPageTreeNode* parent() const { return m_parent; } 128 138 GlyphPageTreeNode* getChild(const FontData*, unsigned pageNumber); 129 139 130 140 // Returns a page of glyphs (or NULL if there are no glyphs in this page's character range). 131 GlyphPage* page() const { return m_page ; }141 GlyphPage* page() const { return m_page.get(); } 132 142 133 143 // Returns the level of this node. See class-level comment. … … 142 152 143 153 GlyphPageTreeNode* m_parent; 144 GlyphPage*m_page;154 RefPtr<GlyphPage> m_page; 145 155 unsigned m_level; 146 156 bool m_isSystemFallback; 147 157 HashMap<const FontData*, GlyphPageTreeNode*> m_children; 148 158 GlyphPageTreeNode* m_systemFallbackChild; 159 unsigned m_customFontCount; 160 149 161 #ifndef NDEBUG 150 162 unsigned m_pageNumber; -
trunk/WebCore/platform/PopupMenuClient.h
r25754 r26484 26 26 class Color; 27 27 class Document; 28 class FontSelector; 28 29 class String; 29 30 class RenderStyle; … … 51 52 virtual bool valueShouldChangeOnHotTrack() const = 0; 52 53 virtual void setTextFromItem(unsigned listIndex) = 0; 54 virtual FontSelector* fontSelector() const = 0; 53 55 }; 54 56 -
trunk/WebCore/platform/mac/FontCacheMac.mm
r24835 r26484 142 142 143 143 NSFontTraitMask traits = [manager traitsOfFont:nsFont]; 144 if (platformData. syntheticBold)144 if (platformData.m_syntheticBold) 145 145 traits |= NSBoldFontMask; 146 if (platformData. syntheticOblique)146 if (platformData.m_syntheticOblique) 147 147 traits |= NSItalicFontMask; 148 148 … … 186 186 } 187 187 188 FontPlatformData* FontCache::getLastResortFallbackFont(const Font & font)188 FontPlatformData* FontCache::getLastResortFallbackFont(const FontDescription& fontDescription) 189 189 { 190 190 static AtomicString timesStr("Times"); … … 193 193 // FIXME: Would be even better to somehow get the user's default font here. For now we'll pick 194 194 // the default that the user would get without changing any prefs. 195 FontPlatformData* platformFont = getCachedFontPlatformData(font .fontDescription(), timesStr);195 FontPlatformData* platformFont = getCachedFontPlatformData(fontDescription, timesStr); 196 196 if (!platformFont) 197 197 // The Times fallback will almost always work, but in the highly unusual case where … … 199 199 // guaranteed to be there, according to Nathan Taylor. This is good enough 200 200 // to avoid a crash at least. 201 platformFont = getCachedFontPlatformData(font .fontDescription(), lucidaGrandeStr);201 platformFont = getCachedFontPlatformData(fontDescription, lucidaGrandeStr); 202 202 203 203 return platformFont; 204 204 } 205 205 206 FontPlatformData* FontCache::createFontPlatformData(const FontDescription& fontDescription, const AtomicString& family)206 bool FontCache::fontExists(const FontDescription& fontDescription, const AtomicString& family) 207 207 { 208 208 NSFontTraitMask traits = 0; … … 214 214 215 215 NSFont* nsFont = [WebFontCache fontWithFamily:family traits:traits size:size]; 216 return nsFont != 0; 217 } 218 219 FontPlatformData* FontCache::createFontPlatformData(const FontDescription& fontDescription, const AtomicString& family) 220 { 221 NSFontTraitMask traits = 0; 222 if (fontDescription.italic()) 223 traits |= NSItalicFontMask; 224 if (fontDescription.bold()) 225 traits |= NSBoldFontMask; 226 float size = fontDescription.computedPixelSize(); 227 228 NSFont* nsFont = [WebFontCache fontWithFamily:family traits:traits size:size]; 216 229 if (!nsFont) 217 230 return 0; … … 225 238 // Use the correct font for print vs. screen. 226 239 result->setFont(fontDescription.usePrinterFont() ? [nsFont printerFont] : [nsFont screenFont]); 227 result-> syntheticBold = (traits & NSBoldFontMask) && !(actualTraits & NSBoldFontMask);228 result-> syntheticOblique = (traits & NSItalicFontMask) && !(actualTraits & NSItalicFontMask);240 result->m_syntheticBold = (traits & NSBoldFontMask) && !(actualTraits & NSBoldFontMask); 241 result->m_syntheticOblique = (traits & NSItalicFontMask) && !(actualTraits & NSItalicFontMask); 229 242 return result; 230 243 } -
trunk/WebCore/platform/mac/FontDataMac.mm
r26445 r26484 36 36 #import "FontCache.h" 37 37 #import "FontDescription.h" 38 #import "SharedBuffer.h" 38 39 #import "WebCoreSystemInterface.h" 39 40 #import <ApplicationServices/ApplicationServices.h> … … 55 56 bool initFontData(FontData* fontData) 56 57 { 58 if (!fontData->m_font.m_cgFont) 59 return false; 60 57 61 ATSUStyle fontStyle; 58 62 if (ATSUCreateStyle(&fontStyle) != noErr) 59 63 return false; 60 64 61 ATSUFontID fontId = wkGetNSFontATSUFontId(fontData->m_font.font());65 ATSUFontID fontId = fontData->m_font.m_atsuFontID; 62 66 if (!fontId) { 63 67 ATSUDisposeStyle(fontStyle); … … 99 103 m_checkedShapesArabic = false; 100 104 m_shapesArabic = false; 101 102 m_syntheticBoldOffset = m_font. syntheticBold ? 1.0f : 0.f;105 106 m_syntheticBoldOffset = m_font.m_syntheticBold ? 1.0f : 0.f; 103 107 104 108 bool failedSetup = false; … … 161 165 int iDescent; 162 166 int iLineGap; 163 wkGetFontMetrics( wkGetCGFontFromNSFont(m_font.font()), &iAscent, &iDescent, &iLineGap, &m_unitsPerEm);164 float pointSize = [m_font.font() pointSize];167 wkGetFontMetrics(m_font.m_cgFont, &iAscent, &iDescent, &iLineGap, &m_unitsPerEm); 168 float pointSize = m_font.m_size; 165 169 float fAscent = scaleEmToUnits(iAscent, m_unitsPerEm) * pointSize; 166 170 float fDescent = -scaleEmToUnits(iDescent, m_unitsPerEm) * pointSize; … … 215 219 { 216 220 if (!m_smallCapsFontData) { 217 NS_DURING 221 if (isCustomFont()) { 222 FontPlatformData smallCapsFontData(m_font); 223 smallCapsFontData.m_size = smallCapsFontData.m_size * smallCapsFontSizeMultiplier; 224 m_smallCapsFontData = new FontData(smallCapsFontData, true, false); 225 } else { 226 NS_DURING 218 227 float size = [m_font.font() pointSize] * smallCapsFontSizeMultiplier; 219 228 FontPlatformData smallCapsFont([[NSFontManager sharedFontManager] convertFont:m_font.font() toSize:size]); … … 227 236 NSFontTraitMask fontTraits = [fontManager traitsOfFont:m_font.font()]; 228 237 229 if (m_font. syntheticBold)238 if (m_font.m_syntheticBold) 230 239 fontTraits |= NSBoldFontMask; 231 if (m_font. syntheticOblique)240 if (m_font.m_syntheticOblique) 232 241 fontTraits |= NSItalicFontMask; 233 242 234 243 NSFontTraitMask smallCapsFontTraits = [fontManager traitsOfFont:smallCapsFont.font()]; 235 smallCapsFont. syntheticBold = (fontTraits & NSBoldFontMask) && !(smallCapsFontTraits & NSBoldFontMask);236 smallCapsFont. syntheticOblique = (fontTraits & NSItalicFontMask) && !(smallCapsFontTraits & NSItalicFontMask);244 smallCapsFont.m_syntheticBold = (fontTraits & NSBoldFontMask) && !(smallCapsFontTraits & NSBoldFontMask); 245 smallCapsFont.m_syntheticOblique = (fontTraits & NSItalicFontMask) && !(smallCapsFontTraits & NSItalicFontMask); 237 246 238 247 m_smallCapsFontData = FontCache::getCachedFontData(&smallCapsFont); 239 248 } 240 NS_HANDLER 249 250 NS_HANDLER 241 251 NSLog(@"uncaught exception selecting font for small caps: %@", localException); 242 NS_ENDHANDLER 252 NS_ENDHANDLER 253 } 243 254 } 244 255 return m_smallCapsFontData; … … 278 289 float FontData::platformWidthForGlyph(Glyph glyph) const 279 290 { 280 NSFont *font = m_font.font();281 float pointSize = [font pointSize];291 NSFont* font = m_font.font(); 292 float pointSize = m_font.m_size; 282 293 CGAffineTransform m = CGAffineTransformMakeScale(pointSize, pointSize); 283 294 CGSize advance; 284 if (!wkGetGlyphTransformedAdvances( wkGetCGFontFromNSFont(font), font, &m, &glyph, &advance)) {295 if (!wkGetGlyphTransformedAdvances(m_font.m_cgFont, font, &m, &glyph, &advance)) { 285 296 LOG_ERROR("Unable to cache glyph widths for %@ %f", [font displayName], pointSize); 286 297 advance.width = 0; … … 295 306 m_checkedShapesArabic = true; 296 307 297 ATSUFontID fontID = wkGetNSFontATSUFontId(m_font.font());308 ATSUFontID fontID = m_font.m_atsuFontID; 298 309 if (!fontID) { 299 310 LOG_ERROR("unable to get ATSUFontID for %@", m_font.font()); -
trunk/WebCore/platform/mac/FontMac.mm
r25754 r26484 116 116 117 117 CGAffineTransform transform = CGAffineTransformMakeScale(1, -1); 118 if (fontData->m_font. syntheticOblique)118 if (fontData->m_font.m_syntheticOblique) 119 119 transform = CGAffineTransformConcat(transform, CGAffineTransformMake(1, 0, -tanf(SYNTHETIC_OBLIQUE_ANGLE * acosf(0) / 90), 1, 0, 0)); 120 120 Fixed fontSize = FloatToFixed([fontData->m_font.font() pointSize]); … … 625 625 } 626 626 627 CGContextSetFont(cgContext, wkGetCGFontFromNSFont(drawFont)); 628 629 CGAffineTransform matrix; 630 memcpy(&matrix, [drawFont matrix], sizeof(matrix)); 627 CGContextSetFont(cgContext, platformData.m_cgFont); 628 629 CGAffineTransform matrix = CGAffineTransformIdentity; 630 if (drawFont) 631 memcpy(&matrix, [drawFont matrix], sizeof(matrix)); 631 632 matrix.b = -matrix.b; 632 633 matrix.d = -matrix.d; 633 if (platformData. syntheticOblique)634 if (platformData.m_syntheticOblique) 634 635 matrix = CGAffineTransformConcat(matrix, CGAffineTransformMake(1, 0, -tanf(SYNTHETIC_OBLIQUE_ANGLE * acosf(0) / 90), 1, 0, 0)); 635 636 CGContextSetTextMatrix(cgContext, matrix); 636 637 637 wkSetCGFontRenderingMode(cgContext, drawFont); 638 CGContextSetFontSize(cgContext, 1.0f); 639 638 if (drawFont) { 639 wkSetCGFontRenderingMode(cgContext, drawFont); 640 CGContextSetFontSize(cgContext, 1.0f); 641 } else 642 CGContextSetFontSize(cgContext, platformData.m_size); 643 640 644 CGContextSetTextPosition(cgContext, point.x(), point.y()); 641 645 CGContextShowGlyphsWithAdvances(cgContext, glyphBuffer.glyphs(from), glyphBuffer.advances(from), numGlyphs); -
trunk/WebCore/platform/mac/FontPlatformData.h
r25754 r26484 33 33 #endif 34 34 35 typedef struct CGFont* CGFontRef; 36 typedef UInt32 ATSUFontID; 37 35 38 #include <CoreFoundation/CFBase.h> 36 39 #include <objc/objc-auto.h> … … 42 45 43 46 FontPlatformData(Deleted) 44 : syntheticBold(false), syntheticOblique(false), m_font((NSFont*)-1)47 : m_syntheticBold(false), m_syntheticOblique(false), m_cgFont(0), m_atsuFontID(0), m_size(0), m_font((NSFont*)-1) 45 48 {} 46 49 47 FontPlatformData(NSFont* f = 0, bool b = false, bool o = false) 48 : syntheticBold(b), syntheticOblique(o), m_font(f) 50 FontPlatformData(NSFont* f = 0, bool b = false, bool o = false); 51 52 FontPlatformData(CGFontRef f, ATSUFontID fontID, float s, bool b , bool o) 53 : m_syntheticBold(b), m_syntheticOblique(o), m_cgFont(f), m_atsuFontID(fontID), m_size(s), m_font(0) 49 54 { 50 if (f)51 CFRetain(f);52 55 } 53 56 54 FontPlatformData(const FontPlatformData& f) 55 { 56 m_font = (f.m_font && f.m_font != (NSFont*)-1) ? (NSFont*)CFRetain(f.m_font) : f.m_font; 57 syntheticBold = f.syntheticBold; 58 syntheticOblique = f.syntheticOblique; 59 } 57 FontPlatformData(const FontPlatformData& f); 58 59 ~FontPlatformData(); 60 60 61 ~FontPlatformData() 62 { 63 if (m_font && m_font != (NSFont*)-1) 64 CFRelease(m_font); 65 } 66 67 bool syntheticBold; 68 bool syntheticOblique; 61 bool m_syntheticBold; 62 bool m_syntheticOblique; 63 64 CGFontRef m_cgFont; // It is not necessary to refcount this, since either an NSFont owns it or some CachedFont has it referenced. 65 ATSUFontID m_atsuFontID; 66 float m_size; 69 67 70 68 unsigned hash() const 71 { 72 uintptr_t hashCodes[2] = { (uintptr_t)m_font, syntheticBold << 1 | syntheticOblique }; 69 { 70 ASSERT(m_font != 0 || m_cgFont == 0); 71 uintptr_t hashCodes[2] = { (uintptr_t)m_font, m_syntheticBold << 1 | m_syntheticOblique }; 73 72 return StringImpl::computeHash(reinterpret_cast<UChar*>(hashCodes), sizeof(hashCodes) / sizeof(UChar)); 74 73 } … … 76 75 bool operator==(const FontPlatformData& other) const 77 76 { 78 return m_font == other.m_font && syntheticBold == other.syntheticBold && syntheticOblique == other.syntheticOblique; 77 return m_font == other.m_font && m_syntheticBold == other.m_syntheticBold && m_syntheticOblique == other.m_syntheticOblique && 78 m_cgFont == other.m_cgFont && m_size == other.m_size && m_atsuFontID == other.m_atsuFontID; 79 79 } 80 80 81 NSFont *font() const { return m_font; } 81 void setFont(NSFont* font) { 82 if (m_font == font) 83 return; 84 if (font && font != (NSFont*)-1) 85 CFRetain(font); 86 if (m_font && m_font != (NSFont*)-1) 87 CFRelease(m_font); 88 m_font = font; 89 } 82 void setFont(NSFont* font); 83 90 84 private: 91 85 NSFont *m_font; -
trunk/WebCore/platform/mac/WebCoreSystemInterface.h
r25774 r26484 90 90 extern OSStatus (*wkGetATSStyleGroup)(ATSUStyle, void** styleGroup); 91 91 extern CGFontRef (*wkGetCGFontFromNSFont)(NSFont*); 92 extern ATSGlyphRef (*wkGetDefaultGlyphForChar)(NSFont*, UniChar);93 92 extern NSFont* (*wkGetFontInLanguageForRange)(NSFont*, NSString*, NSRange); 94 93 extern NSFont* (*wkGetFontInLanguageForCharacter)(NSFont*, UniChar); -
trunk/WebCore/platform/mac/WebCoreSystemInterface.mm
r25774 r26484 39 39 OSStatus (*wkGetATSStyleGroup)(ATSUStyle, void** styleGroup); 40 40 CGFontRef (*wkGetCGFontFromNSFont)(NSFont*); 41 ATSGlyphRef (*wkGetDefaultGlyphForChar)(NSFont*, UniChar);42 41 NSFont* (*wkGetFontInLanguageForRange)(NSFont*, NSString*, NSRange); 43 42 NSFont* (*wkGetFontInLanguageForCharacter)(NSFont*, UniChar); -
trunk/WebCore/platform/win/FontCacheWin.cpp
r25931 r26484 118 118 } 119 119 120 FontPlatformData* FontCache::getLastResortFallbackFont(const Font & font)120 FontPlatformData* FontCache::getLastResortFallbackFont(const FontDescription& fontDescription) 121 121 { 122 122 // FIXME: Would be even better to somehow get the user's default font here. For now we'll pick 123 123 // the default that the user would get without changing any prefs. 124 124 static AtomicString timesStr("Times New Roman"); 125 return getCachedFontPlatformData(font .fontDescription(), timesStr);126 } 127 128 FontPlatformData* FontCache::createFontPlatformData(const FontDescription& fontDescription, const AtomicString& family)125 return getCachedFontPlatformData(fontDescription, timesStr); 126 } 127 128 bool FontCache::fontExists(const FontDescription& fontDescription, const AtomicString& family) 129 129 { 130 130 LOGFONT winfont; … … 172 172 ReleaseDC(0, dc); 173 173 174 DeleteObject(hfont); 175 176 return !wcsicmp(winfont.lfFaceName, name); 177 } 178 179 FontPlatformData* FontCache::createFontPlatformData(const FontDescription& fontDescription, const AtomicString& family) 180 { 181 LOGFONT winfont; 182 183 // The size here looks unusual. The negative number is intentional. The logical size constant is 32. 184 winfont.lfHeight = -fontDescription.computedPixelSize() * 32; 185 winfont.lfWidth = 0; 186 winfont.lfEscapement = 0; 187 winfont.lfOrientation = 0; 188 winfont.lfUnderline = false; 189 winfont.lfStrikeOut = false; 190 winfont.lfCharSet = DEFAULT_CHARSET; 191 #if PLATFORM(CG) 192 winfont.lfOutPrecision = OUT_TT_ONLY_PRECIS; 193 #else 194 winfont.lfOutPrecision = OUT_TT_PRECIS; 195 #endif 196 winfont.lfQuality = 5; // Force cleartype. 197 winfont.lfPitchAndFamily = DEFAULT_PITCH | FF_DONTCARE; 198 winfont.lfItalic = fontDescription.italic(); 199 200 // FIXME: Support weights for real. Do our own enumeration of the available weights. 201 // We can't rely on Windows here, since we need to follow the CSS2 algorithm for how to fill in 202 // gaps in the weight list. 203 // FIXME: Hardcoding Lucida Grande for now. It uses different weights than typical Win32 fonts 204 // (500/600 instead of 400/700). 205 static AtomicString lucidaStr("Lucida Grande"); 206 if (equalIgnoringCase(family, lucidaStr)) 207 winfont.lfWeight = fontDescription.bold() ? 600 : 500; 208 else 209 winfont.lfWeight = fontDescription.bold() ? 700 : 400; 210 int len = min(family.length(), (unsigned int)LF_FACESIZE - 1); 211 memcpy(winfont.lfFaceName, family.characters(), len * sizeof(WORD)); 212 winfont.lfFaceName[len] = '\0'; 213 214 HFONT hfont = CreateFontIndirect(&winfont); 215 // Windows will always give us a valid pointer here, even if the face name is non-existent. We have to double-check 216 // and see if the family name was really used. 217 HDC dc = GetDC((HWND)0); 218 SaveDC(dc); 219 SelectObject(dc, hfont); 220 WCHAR name[LF_FACESIZE]; 221 GetTextFace(dc, LF_FACESIZE, name); 222 RestoreDC(dc, -1); 223 ReleaseDC(0, dc); 224 174 225 if (_wcsicmp(winfont.lfFaceName, name)) { 175 226 DeleteObject(hfont); -
trunk/WebCore/platform/win/FontCustomPlatformData.h
r26483 r26484 1 /** 2 * This file is part of the DOM implementation for KDE. 3 * 4 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 5 * (C) 2002-2003 Dirk Mueller (mueller@kde.org) 6 * Copyright (C) 2002, 2005, 2006 Apple Computer, Inc. 1 /* 2 * Copyright (C) 2007 Apple Computer, Inc. 7 3 * 8 4 * This library is free software; you can redistribute it and/or … … 18 14 * You should have received a copy of the GNU Library General Public License 19 15 * along with this library; see the file COPYING.LIB. If not, write to 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 21 * Boston, MA 02110-1301, USA. 16 * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 * Boston, MA 02111-1307, USA. 18 * 22 19 */ 23 20 24 #i nclude "config.h"25 # include "CSSFontFaceRule.h"21 #ifndef FontCustomPlatformData_h 22 #define FontCustomPlatformData_h 26 23 27 #include "CSSMutableStyleDeclaration.h" 24 #include <wtf/Noncopyable.h> 25 26 typedef struct CGFont* CGFontRef; 28 27 29 28 namespace WebCore { 30 29 31 CSSFontFaceRule::CSSFontFaceRule(StyleBase* parent) 32 : CSSRule(parent) 33 { 30 class FontPlatformData; 31 class SharedBuffer; 32 33 struct FontCustomPlatformData : Noncopyable { 34 FontCustomPlatformData(CGFontRef cgFont) 35 : m_cgFont(cgFont) 36 {} 37 ~FontCustomPlatformData(); 38 39 FontPlatformData fontPlatformData(int size, bool bold, bool italic); 40 41 CGFontRef m_cgFont; 42 }; 43 44 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer* buffer); 45 34 46 } 35 47 36 CSSFontFaceRule::~CSSFontFaceRule() 37 { 38 } 39 40 String CSSFontFaceRule::cssText() const 41 { 42 // FIXME: Implement! 43 return String(); 44 } 45 46 } // namespace WebCore 48 #endif -
trunk/WebCore/platform/win/FontDataWin.cpp
r26445 r26484 46 46 using std::max; 47 47 48 const float cSmallCapsFontSizeMultiplier = 0.7f; 49 48 50 static inline float scaleEmToUnits(float x, unsigned unitsPerEm) { return unitsPerEm ? x / (float)unitsPerEm : x; } 49 51 50 52 void FontData::platformInit() 51 53 { 52 HDC dc = GetDC(0);53 SaveDC(dc);54 55 SelectObject(dc, m_font.hfont());56 57 int faceLength = GetTextFace(dc, 0, 0);58 Vector<TCHAR> faceName(faceLength);59 GetTextFace(dc, faceLength, faceName.data());60 61 54 m_syntheticBoldOffset = m_font.syntheticBold() ? 1.0f : 0.f; 62 55 … … 65 58 int iDescent = CGFontGetDescent(font); 66 59 int iLineGap = CGFontGetLeading(font); 67 unsignedunitsPerEm = CGFontGetUnitsPerEm(font);60 m_unitsPerEm = CGFontGetUnitsPerEm(font); 68 61 float pointSize = m_font.size(); 69 float fAscent = scaleEmToUnits(iAscent, unitsPerEm) * pointSize; 70 float fDescent = -scaleEmToUnits(iDescent, unitsPerEm) * pointSize; 71 float fLineGap = scaleEmToUnits(iLineGap, unitsPerEm) * pointSize; 72 73 m_isSystemFont = !_tcscmp(faceName.data(), _T("Lucida Grande")); 74 75 // We need to adjust Times, Helvetica, and Courier to closely match the 76 // vertical metrics of their Microsoft counterparts that are the de facto 77 // web standard. The AppKit adjustment of 20% is too big and is 78 // incorrectly added to line spacing, so we use a 15% adjustment instead 79 // and add it to the ascent. 80 if (!_tcscmp(faceName.data(), _T("Times")) || !_tcscmp(faceName.data(), _T("Helvetica")) || !_tcscmp(faceName.data(), _T("Courier"))) 81 fAscent += floorf(((fAscent + fDescent) * 0.15f) + 0.5f); 82 83 m_unitsPerEm = 1; // FIXME! 62 float fAscent = scaleEmToUnits(iAscent, m_unitsPerEm) * pointSize; 63 float fDescent = -scaleEmToUnits(iDescent, m_unitsPerEm) * pointSize; 64 float fLineGap = scaleEmToUnits(iLineGap, m_unitsPerEm) * pointSize; 65 66 m_isSystemFont = false; 67 if (!isCustomFont()) { 68 HDC dc = GetDC(0); 69 HGDIOBJ oldFont = SelectObject(dc, m_font.hfont()); 70 int faceLength = GetTextFace(dc, 0, 0); 71 Vector<TCHAR> faceName(faceLength); 72 GetTextFace(dc, faceLength, faceName.data()); 73 m_isSystemFont = !_tcscmp(faceName.data(), _T("Lucida Grande")); 74 SelectObject(dc, oldFont); 75 ReleaseDC(0, dc); 76 77 // We need to adjust Times, Helvetica, and Courier to closely match the 78 // vertical metrics of their Microsoft counterparts that are the de facto 79 // web standard. The AppKit adjustment of 20% is too big and is 80 // incorrectly added to line spacing, so we use a 15% adjustment instead 81 // and add it to the ascent. 82 if (!_tcscmp(faceName.data(), _T("Times")) || !_tcscmp(faceName.data(), _T("Helvetica")) || !_tcscmp(faceName.data(), _T("Courier"))) 83 fAscent += floorf(((fAscent + fDescent) * 0.15f) + 0.5f); 84 } 84 85 85 86 m_ascent = lroundf(fAscent); … … 98 99 // poorly if we return an accurate height. Classic case is Times 13 point, 99 100 // which has an "x" that is 7x6 pixels. 100 m_xHeight = scaleEmToUnits(max(CGRectGetMaxX(xBox), CGRectGetMaxY(xBox)), unitsPerEm) * pointSize;101 m_xHeight = scaleEmToUnits(max(CGRectGetMaxX(xBox), CGRectGetMaxY(xBox)), m_unitsPerEm) * pointSize; 101 102 } else { 102 103 int iXHeight = CGFontGetXHeight(font); 103 m_xHeight = scaleEmToUnits(iXHeight, unitsPerEm) * pointSize; 104 } 105 106 RestoreDC(dc, -1); 107 ReleaseDC(0, dc); 104 m_xHeight = scaleEmToUnits(iXHeight, m_unitsPerEm) * pointSize; 105 } 108 106 109 107 m_scriptCache = 0; … … 113 111 void FontData::platformDestroy() 114 112 { 115 CGFontRelease(m_font.cgFont()); 116 DeleteObject(m_font.hfont()); 113 if (!isCustomFont()) { 114 DeleteObject(m_font.hfont()); 115 CGFontRelease(m_font.cgFont()); 116 } 117 117 118 118 // We don't hash this on Win32, so it's effectively owned by us. … … 126 126 { 127 127 if (!m_smallCapsFontData) { 128 LOGFONT winfont; 129 GetObject(m_font.hfont(), sizeof(LOGFONT), &winfont); 130 int smallCapsHeight = lroundf(0.70f * fontDescription.computedSize()); 131 winfont.lfHeight = -smallCapsHeight * 32; 132 HFONT hfont = CreateFontIndirect(&winfont); 133 m_smallCapsFontData = new FontData(FontPlatformData(hfont, smallCapsHeight, fontDescription.bold(), fontDescription.italic())); 128 int smallCapsHeight = lroundf(cSmallCapsFontSizeMultiplier * m_font.m_size); 129 if (isCustomFont()) { 130 FontPlatformData smallCapsFontData(m_font); 131 smallCapsFontData.m_size = smallCapsHeight; 132 m_smallCapsFontData = new FontData(smallCapsFontData, true, false); 133 } else { 134 LOGFONT winfont; 135 GetObject(m_font.hfont(), sizeof(LOGFONT), &winfont); 136 winfont.lfHeight = -smallCapsHeight * 32; 137 HFONT hfont = CreateFontIndirect(&winfont); 138 m_smallCapsFontData = new FontData(FontPlatformData(hfont, smallCapsHeight, fontDescription.bold(), fontDescription.italic())); 139 } 134 140 } 135 141 return m_smallCapsFontData; … … 138 144 bool FontData::containsCharacters(const UChar* characters, int length) const 139 145 { 146 // FIXME: Support custom fonts. 147 if (isCustomFont()) 148 return false; 149 140 150 // FIXME: Microsoft documentation seems to imply that characters can be output using a given font and DC 141 151 // merely by testing code page intersection. This seems suspect though. Can't a font only partially … … 170 180 void FontData::determinePitch() 171 181 { 182 if (isCustomFont()) { 183 m_treatAsFixedPitch = false; 184 return; 185 } 186 172 187 // TEXTMETRICS have this. Set m_treatAsFixedPitch based off that. 173 188 HDC dc = GetDC((HWND)0); -
trunk/WebCore/platform/win/FontPlatformData.h
r25754 r26484 44 44 , m_cgFont(NULL) 45 45 , m_size(0) 46 , m_syntheticBold(false) 47 , m_syntheticOblique(false) 46 48 {} 47 49 … … 50 52 , m_cgFont(NULL) 51 53 , m_size(0) 54 , m_syntheticBold(false) 55 , m_syntheticOblique(false) 52 56 {} 53 57 54 58 FontPlatformData(HFONT, int size, bool bold, bool oblique); 59 FontPlatformData(CGFontRef, int size, bool bold, bool oblique); 55 60 ~FontPlatformData(); 56 61 … … 63 68 64 69 unsigned hash() const 65 { 70 { 66 71 return StringImpl::computeHash((UChar*)(&m_font), sizeof(HFONT) / sizeof(UChar)); 67 72 } … … 69 74 bool operator==(const FontPlatformData& other) const 70 75 { 71 return m_font == other.m_font 72 && m_cgFont ==other.m_cgFont 73 && m_size == other.m_size; 76 return m_font == other.m_font && m_cgFont ==other.m_cgFont && m_size == other.m_size && 77 m_syntheticBold == other.m_syntheticBold && m_syntheticOblique == other.m_syntheticOblique; 74 78 } 75 79 -
trunk/WebCore/platform/win/FontPlatformDataWin.cpp
r25754 r26484 197 197 } 198 198 199 FontPlatformData::FontPlatformData(CGFontRef font, int size, bool bold, bool oblique) 200 : m_font(0) 201 , m_size(size) 202 , m_cgFont(font) 203 , m_syntheticBold(bold) 204 , m_syntheticOblique(oblique) 205 { 206 } 207 199 208 FontPlatformData::~FontPlatformData() 200 209 { -
trunk/WebCore/platform/win/PopupMenuWin.cpp
r25754 r26484 25 25 #include "FloatRect.h" 26 26 #include "FontData.h" 27 #include "FontSelector.h" 27 28 #include "Frame.h" 28 29 #include "FrameView.h" … … 512 513 d.setBold(true); 513 514 itemFont = Font(d, itemFont.letterSpacing(), itemFont.wordSpacing()); 514 itemFont.update( );515 itemFont.update(m_popupClient->fontSelector()); 515 516 } 516 517 context.setFont(itemFont); -
trunk/WebCore/rendering/RenderListBox.cpp
r24582 r26484 32 32 #include "RenderListBox.h" 33 33 34 #include "CSSStyleSelector.h" 34 35 #include "Document.h" 35 36 #include "EventHandler.h" … … 109 110 d.setBold(true); 110 111 itemFont = Font(d, itemFont.letterSpacing(), itemFont.wordSpacing()); 111 itemFont.update( );112 itemFont.update(document()->styleSelector()->fontSelector()); 112 113 } 113 114 … … 325 326 d.setBold(true); 326 327 itemFont = Font(d, itemFont.letterSpacing(), itemFont.wordSpacing()); 327 itemFont.update( );328 itemFont.update(document()->styleSelector()->fontSelector()); 328 329 } 329 330 paintInfo.context->setFont(itemFont); -
trunk/WebCore/rendering/RenderMenuList.cpp
r25754 r26484 24 24 #include "RenderMenuList.h" 25 25 26 #include "CSSStyleSelector.h" 26 27 #include "Document.h" 28 #include "FontSelector.h" 27 29 #include "FrameView.h" 28 30 #include "GraphicsContext.h" … … 394 396 } 395 397 396 } 398 FontSelector* RenderMenuList::fontSelector() const 399 { 400 return document()->styleSelector()->fontSelector(); 401 } 402 403 } -
trunk/WebCore/rendering/RenderMenuList.h
r25754 r26484 87 87 virtual bool shouldPopOver() const { return !POPUP_MENU_PULLS_DOWN; } 88 88 virtual void valueChanged(unsigned listIndex, bool fireOnChange = true); 89 virtual FontSelector* fontSelector() const; 89 90 90 91 virtual bool hasLineIfEmpty() const { return true; } -
trunk/WebCore/rendering/RenderTextControl.cpp
r25754 r26484 23 23 24 24 #include "CharacterNames.h" 25 #include "CSSStyleSelector.h" 25 26 #include "Document.h" 26 27 #include "Editor.h" … … 28 29 #include "Event.h" 29 30 #include "EventNames.h" 31 #include "FontSelector.h" 30 32 #include "Frame.h" 31 33 #include "HTMLBRElement.h" … … 1187 1189 } 1188 1190 1191 FontSelector* RenderTextControl::fontSelector() const 1192 { 1193 return document()->styleSelector()->fontSelector(); 1194 } 1195 1189 1196 } // namespace WebCore -
trunk/WebCore/rendering/RenderTextControl.h
r25754 r26484 28 28 namespace WebCore { 29 29 30 class FontSelector; 30 31 class HTMLTextFieldInnerElement; 31 32 class HTMLTextFieldInnerTextElement; … … 122 123 virtual bool shouldPopOver() const { return false; } 123 124 virtual bool valueShouldChangeOnHotTrack() const { return false; } 124 125 virtual FontSelector* fontSelector() const; 126 125 127 RenderStyle* createInnerBlockStyle(RenderStyle* startStyle); 126 128 RenderStyle* createInnerTextStyle(RenderStyle* startStyle); -
trunk/WebCore/rendering/RenderThemeMac.mm
r25754 r26484 393 393 394 394 if (style->setFontDescription(fontDescription)) 395 style->font().update( );395 style->font().update(0); 396 396 } 397 397 -
trunk/WebCore/rendering/RenderThemeSafari.cpp
r25754 r26484 335 335 336 336 if (style->setFontDescription(fontDescription)) 337 style->font().update( );337 style->font().update(selector->fontSelector()); 338 338 } 339 339
Note:
See TracChangeset
for help on using the changeset viewer.