b=360244, Implement gfxPlatformMac::GetFontList, r=stuart

This commit is contained in:
vladimir%pobox.com 2006-11-22 00:52:09 +00:00
parent c97da6eb0f
commit 83e86dae16
4 changed files with 39 additions and 0 deletions

@ -57,6 +57,10 @@ public:
FontResolverCallback aCallback,
void *aClosure, PRBool& aAborted);
nsresult GetFontList(const nsACString& aLangGroup,
const nsACString& aGenericFamily,
nsStringArray& aListOfFonts);
};
#endif /* GFX_PLATFORM_MAC_H */

@ -41,6 +41,8 @@
#include "gfxImageSurface.h"
#include "gfxQuartzSurface.h"
#include "gfxQuartzFontCache.h"
#ifdef MOZ_ENABLE_GLITZ
#include "gfxGlitzSurface.h"
#include "glitz-agl.h"
@ -144,3 +146,11 @@ gfxPlatformMac::ResolveFontName(const nsAString& aFontName,
return NS_OK;
}
nsresult
gfxPlatformMac::GetFontList(const nsACString& aLangGroup,
const nsACString& aGenericFamily,
nsStringArray& aListOfFonts)
{
gfxQuartzFontCache::SharedFontCache()->GetFontList(aLangGroup, aGenericFamily, aListOfFonts);
return NS_OK;
}

@ -43,6 +43,7 @@
#include "gfxAtsuiFonts.h"
#include "nsUnicharUtils.h"
#include "nsVoidArray.h"
class gfxQuartzFontCache {
public:
@ -57,6 +58,9 @@ public:
ATSUFontID GetDefaultATSUFontID (const gfxFontStyle* aStyle);
void GetFontList (const nsACString& aLangGroup,
const nsACString& aGenericFamily,
nsStringArray& aListOfFonts);
private:
static gfxQuartzFontCache *sSharedFontCache;

@ -389,3 +389,24 @@ gfxQuartzFontCache::GetDefaultATSUFontID (const gfxFontStyle* aStyle)
{
return [[NSFont userFontOfSize:aStyle->size] _atsFontID];
}
void
gfxQuartzFontCache::GetFontList (const nsACString& aLangGroup,
const nsACString& aGenericFamily,
nsStringArray& aListOfFonts)
{
NSFontManager *fontManager = [NSFontManager sharedFontManager];
NSArray *familyArray = [fontManager availableFontFamilies];
unsigned int nFamilies = [familyArray count];
for (unsigned int i = 0; i < nFamilies; i++) {
NSString *family = [familyArray objectAtIndex:i];
nsString str;
str.SetLength([family length]);
[family getCharacters:(str.BeginWriting())];
aListOfFonts.AppendString(str);
}
aListOfFonts.Sort();
}