2009-08-16 17:52:12 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 15:12:37 +04: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 17:52:12 +04:00
|
|
|
|
|
|
|
#ifndef gfxMacPlatformFontList_H_
|
|
|
|
#define gfxMacPlatformFontList_H_
|
|
|
|
|
2013-10-16 08:53:52 +04:00
|
|
|
#include <CoreFoundation/CoreFoundation.h>
|
|
|
|
|
2013-06-23 16:03:39 +04:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2009-08-16 17:52:12 +04:00
|
|
|
#include "nsDataHashtable.h"
|
|
|
|
#include "nsRefPtrHashtable.h"
|
|
|
|
|
|
|
|
#include "gfxPlatformFontList.h"
|
|
|
|
#include "gfxPlatform.h"
|
2011-06-24 21:55:27 +04:00
|
|
|
#include "gfxPlatformMac.h"
|
2009-08-16 17:52:12 +04: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 14:22:10 +04:00
|
|
|
MacOSFontEntry(const nsAString& aPostscriptName, int32_t aWeight,
|
2013-01-04 18:01:44 +04:00
|
|
|
bool aIsStandardFace = false);
|
2012-11-19 14:22:10 +04:00
|
|
|
|
|
|
|
// for use with data fonts
|
|
|
|
MacOSFontEntry(const nsAString& aPostscriptName, CGFontRef aFontRef,
|
|
|
|
uint16_t aWeight, uint16_t aStretch, uint32_t aItalicStyle,
|
2014-09-08 11:23:20 +04:00
|
|
|
bool aIsDataUserFont, bool aIsLocal);
|
2012-11-19 14:22:10 +04:00
|
|
|
|
2011-06-24 21:55:27 +04:00
|
|
|
virtual ~MacOSFontEntry() {
|
|
|
|
::CGFontRelease(mFontRef);
|
|
|
|
}
|
|
|
|
|
2012-11-19 14:22:10 +04:00
|
|
|
virtual CGFontRef GetFontRef();
|
2011-06-24 21:55:27 +04:00
|
|
|
|
2013-05-16 20:29:20 +04: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 14:22:10 +04:00
|
|
|
|
2013-10-15 06:19:47 +04:00
|
|
|
virtual void AddSizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf,
|
|
|
|
FontListSizes* aSizes) const;
|
2009-08-16 17:52:12 +04:00
|
|
|
|
2014-01-29 11:39:01 +04:00
|
|
|
nsresult ReadCMAP(FontInfoData *aFontInfoData = nullptr);
|
2009-08-16 17:52:12 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool RequiresAATLayout() const { return mRequiresAAT; }
|
2010-07-22 13:25:21 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsCFF();
|
2010-10-07 11:59:16 +04:00
|
|
|
|
2009-08-16 17:52:12 +04:00
|
|
|
protected:
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual gfxFont* CreateFontInstance(const gfxFontStyle *aFontStyle, bool aNeedsBold);
|
2009-10-07 19:26:58 +04:00
|
|
|
|
2012-11-19 14:22:10 +04:00
|
|
|
virtual bool HasFontTable(uint32_t aTableTag);
|
2011-06-24 21:55:27 +04:00
|
|
|
|
2013-05-16 20:29:20 +04:00
|
|
|
static void DestroyBlobFunc(void* aUserData);
|
|
|
|
|
2011-06-24 21:55:27 +04:00
|
|
|
CGFontRef mFontRef; // owning reference to the CGFont, released on destruction
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mFontRefInitialized;
|
|
|
|
bool mRequiresAAT;
|
|
|
|
bool mIsCFF;
|
|
|
|
bool mIsCFFInitialized;
|
2009-08-16 17:52:12 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
class gfxMacPlatformFontList : public gfxPlatformFontList {
|
|
|
|
public:
|
|
|
|
static gfxMacPlatformFontList* PlatformFontList() {
|
2009-10-07 18:13:40 +04:00
|
|
|
return static_cast<gfxMacPlatformFontList*>(sPlatformFontList);
|
2009-08-16 17:52:12 +04:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
static int32_t AppleWeightToCSSWeight(int32_t aAppleWeight);
|
2009-08-16 17:52:12 +04:00
|
|
|
|
2012-12-19 13:42:25 +04:00
|
|
|
virtual gfxFontFamily* GetDefaultFont(const gfxFontStyle* aStyle);
|
2009-08-16 17:52:12 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool GetStandardFamilyName(const nsAString& aFontName, nsAString& aFamilyName);
|
2009-08-16 17:52:12 +04:00
|
|
|
|
2014-09-08 11:23:19 +04:00
|
|
|
virtual gfxFontEntry* LookupLocalFont(const nsAString& aFontName,
|
|
|
|
uint16_t aWeight,
|
|
|
|
int16_t aStretch,
|
|
|
|
bool aItalic);
|
2009-08-16 17:52:12 +04:00
|
|
|
|
2014-09-08 11:23:19 +04: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 17:52:12 +04:00
|
|
|
|
|
|
|
void ClearPrefFonts() { mPrefFonts.Clear(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
friend class gfxPlatformMac;
|
|
|
|
|
|
|
|
gfxMacPlatformFontList();
|
2012-03-09 06:05:47 +04:00
|
|
|
virtual ~gfxMacPlatformFontList();
|
2009-08-16 17:52:12 +04:00
|
|
|
|
|
|
|
// initialize font lists
|
2010-11-08 14:02:27 +03:00
|
|
|
virtual nsresult InitFontList();
|
2009-08-16 17:52:12 +04:00
|
|
|
|
|
|
|
// special case font faces treated as font families (set via prefs)
|
|
|
|
void InitSingleFaceList();
|
|
|
|
|
2013-10-16 08:53:52 +04:00
|
|
|
static void RegisteredFontsChangedNotificationCallback(CFNotificationCenterRef center,
|
|
|
|
void *observer,
|
|
|
|
CFStringRef name,
|
|
|
|
const void *object,
|
|
|
|
CFDictionaryRef userInfo);
|
2009-08-16 17:52:12 +04:00
|
|
|
|
2012-03-09 06:05:47 +04:00
|
|
|
// search fonts system-wide for a given character, null otherwise
|
2012-08-22 19:56:38 +04:00
|
|
|
virtual gfxFontEntry* GlobalFontFallback(const uint32_t aCh,
|
|
|
|
int32_t aRunScript,
|
2012-03-09 06:05:47 +04:00
|
|
|
const gfxFontStyle* aMatchStyle,
|
2012-12-19 13:42:25 +04:00
|
|
|
uint32_t& aCmapCount,
|
|
|
|
gfxFontFamily** aMatchedFamily);
|
2012-03-09 06:05:47 +04:00
|
|
|
|
|
|
|
virtual bool UsesSystemFallback() { return true; }
|
|
|
|
|
2014-01-29 11:39:01 +04:00
|
|
|
virtual already_AddRefed<FontInfoData> CreateFontInfoData();
|
|
|
|
|
2014-05-29 16:00:55 +04:00
|
|
|
#ifdef MOZ_BUNDLED_FONTS
|
|
|
|
void ActivateBundledFonts();
|
|
|
|
#endif
|
|
|
|
|
2009-08-16 17:52:12 +04:00
|
|
|
enum {
|
|
|
|
kATSGenerationInitial = -1
|
|
|
|
};
|
2012-03-09 06:05:47 +04:00
|
|
|
|
|
|
|
// default font for use with system-wide font fallback
|
|
|
|
CTFontRef mDefaultFont;
|
2009-08-16 17:52:12 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* gfxMacPlatformFontList_H_ */
|