2007-03-22 10:30:00 -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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef GFX_PLATFORM_MAC_H
|
|
|
|
#define GFX_PLATFORM_MAC_H
|
|
|
|
|
2013-10-07 16:15:59 -07:00
|
|
|
#include "nsTArrayForwardDeclare.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "gfxPlatform.h"
|
|
|
|
|
2009-12-10 12:18:14 -08:00
|
|
|
#define MAC_OS_X_VERSION_10_6_HEX 0x00001060
|
2011-11-03 07:50:40 -07:00
|
|
|
#define MAC_OS_X_VERSION_10_7_HEX 0x00001070
|
2009-12-10 12:18:14 -08:00
|
|
|
|
|
|
|
#define MAC_OS_X_MAJOR_VERSION_MASK 0xFFFFFFF0U
|
2008-04-18 02:11:47 -07:00
|
|
|
|
2013-03-28 13:11:58 -07:00
|
|
|
namespace mozilla { namespace gfx { class DrawTarget; }}
|
2009-03-29 17:31:51 -07:00
|
|
|
|
2013-05-29 14:59:24 -07:00
|
|
|
class gfxPlatformMac : public gfxPlatform {
|
2007-03-22 10:30:00 -07:00
|
|
|
public:
|
|
|
|
gfxPlatformMac();
|
2009-03-29 17:31:51 -07:00
|
|
|
virtual ~gfxPlatformMac();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
static gfxPlatformMac *GetPlatform() {
|
|
|
|
return (gfxPlatformMac*) gfxPlatform::GetPlatform();
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<gfxASurface> CreateOffscreenSurface(const gfxIntSize& size,
|
2013-09-24 13:45:13 -07:00
|
|
|
gfxContentType contentType);
|
2012-06-25 19:43:31 -07:00
|
|
|
virtual already_AddRefed<gfxASurface>
|
|
|
|
CreateOffscreenImageSurface(const gfxIntSize& aSize,
|
2013-09-24 13:45:13 -07:00
|
|
|
gfxContentType aContentType);
|
2013-03-28 13:11:58 -07:00
|
|
|
|
2008-07-01 21:19:37 -07:00
|
|
|
already_AddRefed<gfxASurface> OptimizeImage(gfxImageSurface *aSurface,
|
2013-09-24 13:45:13 -07:00
|
|
|
gfxImageFormat format);
|
2013-03-28 13:11:58 -07:00
|
|
|
|
2012-09-24 08:02:49 -07:00
|
|
|
mozilla::TemporaryRef<mozilla::gfx::ScaledFont>
|
2012-07-24 03:18:37 -07:00
|
|
|
GetScaledFontForFont(mozilla::gfx::DrawTarget* aTarget, gfxFont *aFont);
|
2011-11-17 20:00:38 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult ResolveFontName(const nsAString& aFontName,
|
|
|
|
FontResolverCallback aCallback,
|
2011-09-28 23:19:26 -07:00
|
|
|
void *aClosure, bool& aAborted);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-03-13 03:32:50 -07:00
|
|
|
nsresult GetStandardFamilyName(const nsAString& aFontName, nsAString& aFamilyName);
|
|
|
|
|
2007-04-02 12:06:16 -07:00
|
|
|
gfxFontGroup *CreateFontGroup(const nsAString &aFamilies,
|
2008-09-30 20:01:53 -07:00
|
|
|
const gfxFontStyle *aStyle,
|
|
|
|
gfxUserFontSet *aUserFontSet);
|
|
|
|
|
2009-01-02 19:21:49 -08:00
|
|
|
virtual gfxFontEntry* LookupLocalFont(const gfxProxyFontEntry *aProxyEntry,
|
|
|
|
const nsAString& aFontName);
|
2008-09-30 20:01:53 -07:00
|
|
|
|
2009-08-16 06:52:12 -07:00
|
|
|
virtual gfxPlatformFontList* CreatePlatformFontList();
|
|
|
|
|
2008-12-05 15:19:27 -08:00
|
|
|
virtual gfxFontEntry* MakePlatformFont(const gfxProxyFontEntry *aProxyEntry,
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint8_t *aFontData,
|
|
|
|
uint32_t aLength);
|
2008-09-30 20:01:53 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
bool IsFontFormatSupported(nsIURI *aFontURI, uint32_t aFormatFlags);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-02-24 09:57:57 -08:00
|
|
|
nsresult GetFontList(nsIAtom *aLangGroup,
|
2007-03-22 10:30:00 -07:00
|
|
|
const nsACString& aGenericFamily,
|
2009-01-18 12:14:14 -08:00
|
|
|
nsTArray<nsString>& aListOfFonts);
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult UpdateFontList();
|
2007-07-23 15:02:17 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual void GetCommonFallbackFonts(const uint32_t aCh,
|
|
|
|
int32_t aRunScript,
|
2012-03-08 18:05:24 -08:00
|
|
|
nsTArray<const char*>& aFontList);
|
|
|
|
|
2008-04-18 02:11:47 -07:00
|
|
|
// Returns the OS X version as returned from Gestalt(gestaltSystemVersion, ...)
|
2012-07-31 08:17:43 -07:00
|
|
|
// Ex: Mac OS X 10.4.x ==> 0x104x
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t OSXVersion();
|
2008-04-18 02:11:47 -07:00
|
|
|
|
2012-07-31 08:17:43 -07:00
|
|
|
bool UseAcceleratedCanvas();
|
|
|
|
|
2008-05-01 02:07:17 -07:00
|
|
|
// lower threshold on font anti-aliasing
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t GetAntiAliasingThreshold() { return mFontAntiAliasingThreshold; }
|
2009-03-29 17:31:51 -07:00
|
|
|
|
2012-01-09 10:54:44 -08:00
|
|
|
virtual already_AddRefed<gfxASurface>
|
|
|
|
GetThebesSurfaceForDrawTarget(mozilla::gfx::DrawTarget *aTarget);
|
2012-11-02 13:24:37 -07:00
|
|
|
|
|
|
|
virtual already_AddRefed<gfxASurface>
|
|
|
|
CreateThebesSurfaceAliasForDrawTarget_hack(mozilla::gfx::DrawTarget *aTarget);
|
2007-07-23 15:02:17 -07:00
|
|
|
private:
|
2009-04-07 09:02:11 -07:00
|
|
|
virtual qcms_profile* GetPlatformCMSOutputProfile();
|
2013-03-28 13:11:58 -07:00
|
|
|
|
2013-06-20 14:32:04 -07:00
|
|
|
virtual bool SupportsOffMainThreadCompositing();
|
|
|
|
|
2008-05-01 02:07:17 -07:00
|
|
|
// read in the pref value for the lower threshold on font anti-aliasing
|
2013-03-28 13:11:58 -07:00
|
|
|
static uint32_t ReadAntiAliasingThreshold();
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t mOSXVersion;
|
|
|
|
uint32_t mFontAntiAliasingThreshold;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GFX_PLATFORM_MAC_H */
|