2009-08-16 06:52:12 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 04:12:37 -07:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2009-08-16 06:52:12 -07:00
|
|
|
|
|
|
|
#ifndef gfxMacPlatformFontList_H_
|
|
|
|
#define gfxMacPlatformFontList_H_
|
|
|
|
|
2013-10-15 21:53:52 -07:00
|
|
|
#include <CoreFoundation/CoreFoundation.h>
|
|
|
|
|
2013-06-23 05:03:39 -07:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2009-08-16 06:52:12 -07:00
|
|
|
#include "nsDataHashtable.h"
|
|
|
|
#include "nsRefPtrHashtable.h"
|
|
|
|
|
|
|
|
#include "gfxPlatformFontList.h"
|
|
|
|
#include "gfxPlatform.h"
|
2011-06-24 10:55:27 -07:00
|
|
|
#include "gfxPlatformMac.h"
|
2009-08-16 06:52:12 -07:00
|
|
|
|
|
|
|
#include "nsUnicharUtils.h"
|
|
|
|
#include "nsTArray.h"
|
|
|
|
|
|
|
|
class gfxMacPlatformFontList;
|
|
|
|
|
|
|
|
// a single member of a font family (i.e. a single face, such as Times Italic)
|
|
|
|
class MacOSFontEntry : public gfxFontEntry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
friend class gfxMacPlatformFontList;
|
|
|
|
|
2012-11-19 02:22:10 -08:00
|
|
|
MacOSFontEntry(const nsAString& aPostscriptName, int32_t aWeight,
|
2013-01-04 06:01:44 -08:00
|
|
|
bool aIsStandardFace = false);
|
2012-11-19 02:22:10 -08:00
|
|
|
|
|
|
|
// for use with data fonts
|
|
|
|
MacOSFontEntry(const nsAString& aPostscriptName, CGFontRef aFontRef,
|
|
|
|
uint16_t aWeight, uint16_t aStretch, uint32_t aItalicStyle,
|
2014-09-08 00:23:20 -07:00
|
|
|
bool aIsDataUserFont, bool aIsLocal);
|
2012-11-19 02:22:10 -08:00
|
|
|
|
2011-06-24 10:55:27 -07:00
|
|
|
virtual ~MacOSFontEntry() {
|
|
|
|
::CGFontRelease(mFontRef);
|
|
|
|
}
|
|
|
|
|
2012-11-19 02:22:10 -08:00
|
|
|
virtual CGFontRef GetFontRef();
|
2011-06-24 10:55:27 -07:00
|
|
|
|
2013-05-16 09:29:20 -07:00
|
|
|
// override gfxFontEntry table access function to bypass table cache,
|
|
|
|
// use CGFontRef API to get direct access to system font data
|
|
|
|
virtual hb_blob_t *GetFontTable(uint32_t aTag) MOZ_OVERRIDE;
|
2012-11-19 02:22:10 -08:00
|
|
|
|
2013-10-14 19:19:47 -07:00
|
|
|
virtual void AddSizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf,
|
|
|
|
FontListSizes* aSizes) const;
|
2009-08-16 06:52:12 -07:00
|
|
|
|
2014-01-28 23:39:01 -08:00
|
|
|
nsresult ReadCMAP(FontInfoData *aFontInfoData = nullptr);
|
2009-08-16 06:52:12 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool RequiresAATLayout() const { return mRequiresAAT; }
|
2010-07-22 02:25:21 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsCFF();
|
2010-10-07 00:59:16 -07:00
|
|
|
|
2009-08-16 06:52:12 -07:00
|
|
|
protected:
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual gfxFont* CreateFontInstance(const gfxFontStyle *aFontStyle, bool aNeedsBold);
|
2009-10-07 08:26:58 -07:00
|
|
|
|
2012-11-19 02:22:10 -08:00
|
|
|
virtual bool HasFontTable(uint32_t aTableTag);
|
2011-06-24 10:55:27 -07:00
|
|
|
|
2013-05-16 09:29:20 -07:00
|
|
|
static void DestroyBlobFunc(void* aUserData);
|
|
|
|
|
2011-06-24 10:55:27 -07:00
|
|
|
CGFontRef mFontRef; // owning reference to the CGFont, released on destruction
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mFontRefInitialized;
|
|
|
|
bool mRequiresAAT;
|
|
|
|
bool mIsCFF;
|
|
|
|
bool mIsCFFInitialized;
|
2009-08-16 06:52:12 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
class gfxMacPlatformFontList : public gfxPlatformFontList {
|
|
|
|
public:
|
|
|
|
static gfxMacPlatformFontList* PlatformFontList() {
|
2009-10-07 07:13:40 -07:00
|
|
|
return static_cast<gfxMacPlatformFontList*>(sPlatformFontList);
|
2009-08-16 06:52:12 -07:00
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
static int32_t AppleWeightToCSSWeight(int32_t aAppleWeight);
|
2009-08-16 06:52:12 -07:00
|
|
|
|
2012-12-19 01:42:25 -08:00
|
|
|
virtual gfxFontFamily* GetDefaultFont(const gfxFontStyle* aStyle);
|
2009-08-16 06:52:12 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool GetStandardFamilyName(const nsAString& aFontName, nsAString& aFamilyName);
|
2009-08-16 06:52:12 -07:00
|
|
|
|
2014-09-08 00:23:19 -07:00
|
|
|
virtual gfxFontEntry* LookupLocalFont(const nsAString& aFontName,
|
|
|
|
uint16_t aWeight,
|
|
|
|
int16_t aStretch,
|
|
|
|
bool aItalic);
|
2009-08-16 06:52:12 -07:00
|
|
|
|
2014-09-08 00:23:19 -07:00
|
|
|
virtual gfxFontEntry* MakePlatformFont(const nsAString& aFontName,
|
|
|
|
uint16_t aWeight,
|
|
|
|
int16_t aStretch,
|
|
|
|
bool aItalic,
|
|
|
|
const uint8_t* aFontData,
|
|
|
|
uint32_t aLength);
|
2009-08-16 06:52:12 -07:00
|
|
|
|
|
|
|
void ClearPrefFonts() { mPrefFonts.Clear(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
friend class gfxPlatformMac;
|
|
|
|
|
|
|
|
gfxMacPlatformFontList();
|
2012-03-08 18:05:47 -08:00
|
|
|
virtual ~gfxMacPlatformFontList();
|
2009-08-16 06:52:12 -07:00
|
|
|
|
|
|
|
// initialize font lists
|
2010-11-08 03:02:27 -08:00
|
|
|
virtual nsresult InitFontList();
|
2009-08-16 06:52:12 -07:00
|
|
|
|
|
|
|
// special case font faces treated as font families (set via prefs)
|
|
|
|
void InitSingleFaceList();
|
|
|
|
|
2013-10-15 21:53:52 -07:00
|
|
|
static void RegisteredFontsChangedNotificationCallback(CFNotificationCenterRef center,
|
|
|
|
void *observer,
|
|
|
|
CFStringRef name,
|
|
|
|
const void *object,
|
|
|
|
CFDictionaryRef userInfo);
|
2009-08-16 06:52:12 -07:00
|
|
|
|
2012-03-08 18:05:47 -08:00
|
|
|
// search fonts system-wide for a given character, null otherwise
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual gfxFontEntry* GlobalFontFallback(const uint32_t aCh,
|
|
|
|
int32_t aRunScript,
|
2012-03-08 18:05:47 -08:00
|
|
|
const gfxFontStyle* aMatchStyle,
|
2012-12-19 01:42:25 -08:00
|
|
|
uint32_t& aCmapCount,
|
|
|
|
gfxFontFamily** aMatchedFamily);
|
2012-03-08 18:05:47 -08:00
|
|
|
|
|
|
|
virtual bool UsesSystemFallback() { return true; }
|
|
|
|
|
2014-01-28 23:39:01 -08:00
|
|
|
virtual already_AddRefed<FontInfoData> CreateFontInfoData();
|
|
|
|
|
2014-05-29 05:00:55 -07:00
|
|
|
#ifdef MOZ_BUNDLED_FONTS
|
|
|
|
void ActivateBundledFonts();
|
|
|
|
#endif
|
|
|
|
|
2009-08-16 06:52:12 -07:00
|
|
|
enum {
|
|
|
|
kATSGenerationInitial = -1
|
|
|
|
};
|
2012-03-08 18:05:47 -08:00
|
|
|
|
|
|
|
// default font for use with system-wide font fallback
|
|
|
|
CTFontRef mDefaultFont;
|
2009-08-16 06:52:12 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* gfxMacPlatformFontList_H_ */
|