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_GTK_H
|
|
|
|
#define GFX_PLATFORM_GTK_H
|
|
|
|
|
2008-08-06 16:32:33 -07:00
|
|
|
#include "gfxPlatform.h"
|
2008-11-06 18:21:34 -08:00
|
|
|
#include "nsAutoRef.h"
|
2009-01-18 12:14:14 -08:00
|
|
|
#include "nsTArray.h"
|
2008-08-06 13:48:55 -07:00
|
|
|
|
2012-06-27 17:15:32 -07:00
|
|
|
#if (MOZ_WIDGET_GTK == 2)
|
2008-08-06 13:48:55 -07:00
|
|
|
extern "C" {
|
|
|
|
typedef struct _GdkDrawable GdkDrawable;
|
|
|
|
}
|
2012-06-27 17:15:32 -07:00
|
|
|
#endif
|
2008-08-06 13:48:55 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
class gfxFontconfigUtils;
|
2008-08-06 13:48:55 -07:00
|
|
|
#ifndef MOZ_PANGO
|
|
|
|
class FontFamily;
|
|
|
|
class FontEntry;
|
|
|
|
typedef struct FT_LibraryRec_ *FT_Library;
|
|
|
|
#endif
|
|
|
|
|
2013-05-29 14:59:24 -07:00
|
|
|
class gfxPlatformGtk : public gfxPlatform {
|
2007-03-22 10:30:00 -07:00
|
|
|
public:
|
|
|
|
gfxPlatformGtk();
|
|
|
|
virtual ~gfxPlatformGtk();
|
|
|
|
|
|
|
|
static gfxPlatformGtk *GetPlatform() {
|
|
|
|
return (gfxPlatformGtk*) gfxPlatform::GetPlatform();
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<gfxASurface> CreateOffscreenSurface(const gfxIntSize& size,
|
2013-09-24 13:45:13 -07:00
|
|
|
gfxContentType contentType);
|
2007-03-22 10:30:00 -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);
|
2012-07-25 23:48:24 -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();
|
|
|
|
|
|
|
|
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);
|
2007-04-02 12:06:16 -07:00
|
|
|
|
2008-12-05 15:19:27 -08:00
|
|
|
#ifdef MOZ_PANGO
|
2009-01-02 19:21:49 -08:00
|
|
|
/**
|
|
|
|
* Look up a local platform font using the full font face name (needed to
|
|
|
|
* support @font-face src local() )
|
|
|
|
*/
|
|
|
|
virtual gfxFontEntry* LookupLocalFont(const gfxProxyFontEntry *aProxyEntry,
|
|
|
|
const nsAString& aFontName);
|
|
|
|
|
2008-12-05 15:19:27 -08:00
|
|
|
/**
|
|
|
|
* Activate a platform font (needed to support @font-face src url() )
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
virtual gfxFontEntry* MakePlatformFont(const gfxProxyFontEntry *aProxyEntry,
|
2012-08-22 08:56:38 -07:00
|
|
|
const uint8_t *aFontData,
|
|
|
|
uint32_t aLength);
|
2008-12-05 15:19:27 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check whether format is supported on a platform or not (if unclear,
|
|
|
|
* returns true).
|
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool IsFontFormatSupported(nsIURI *aFontURI,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t aFormatFlags);
|
2008-12-05 15:19:27 -08:00
|
|
|
#endif
|
|
|
|
|
2008-08-06 13:48:55 -07:00
|
|
|
#ifndef MOZ_PANGO
|
|
|
|
FontFamily *FindFontFamily(const nsAString& aName);
|
|
|
|
FontEntry *FindFontEntry(const nsAString& aFamilyName, const gfxFontStyle& aFontStyle);
|
2012-08-22 08:56:38 -07:00
|
|
|
already_AddRefed<gfxFont> FindFontForChar(uint32_t aCh, gfxFont *aFont);
|
2011-09-28 23:19:26 -07:00
|
|
|
bool GetPrefFontEntries(const nsCString& aLangGroup, nsTArray<nsRefPtr<gfxFontEntry> > *aFontEntryList);
|
2010-10-13 15:03:19 -07:00
|
|
|
void SetPrefFontEntries(const nsCString& aLangGroup, nsTArray<nsRefPtr<gfxFontEntry> >& aFontEntryList);
|
2008-08-06 13:48:55 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MOZ_PANGO
|
|
|
|
FT_Library GetFTLibrary();
|
|
|
|
#endif
|
|
|
|
|
2012-06-27 17:15:32 -07:00
|
|
|
#if (MOZ_WIDGET_GTK == 2)
|
2013-10-25 14:25:40 -07:00
|
|
|
static void SetGdkDrawable(cairo_surface_t *target,
|
2010-07-01 21:04:09 -07:00
|
|
|
GdkDrawable *drawable);
|
2013-10-25 14:25:40 -07:00
|
|
|
static GdkDrawable *GetGdkDrawable(cairo_surface_t *target);
|
2012-06-27 17:15:32 -07:00
|
|
|
#endif
|
2008-08-06 13:48:55 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
static int32_t GetDPI();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-09-16 20:23:00 -07:00
|
|
|
bool UseXRender() {
|
2013-08-25 16:56:53 -07:00
|
|
|
#if defined(MOZ_X11)
|
2012-09-16 20:23:00 -07:00
|
|
|
if (GetContentBackend() != mozilla::gfx::BACKEND_NONE &&
|
|
|
|
GetContentBackend() != mozilla::gfx::BACKEND_CAIRO)
|
|
|
|
return false;
|
|
|
|
|
2012-04-18 07:27:32 -07:00
|
|
|
return sUseXRender;
|
2010-09-23 18:00:06 -07:00
|
|
|
#else
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-09-23 18:00:06 -07:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-12-15 10:17:26 -08:00
|
|
|
virtual gfxImageFormat GetOffscreenFormat();
|
|
|
|
|
2013-04-29 20:16:04 -07:00
|
|
|
virtual int GetScreenDepth() const;
|
|
|
|
|
2010-08-13 02:58:01 -07:00
|
|
|
protected:
|
2007-03-22 10:30:00 -07:00
|
|
|
static gfxFontconfigUtils *sFontconfigUtils;
|
2007-07-23 15:02:17 -07:00
|
|
|
|
|
|
|
private:
|
2009-04-07 09:02:11 -07:00
|
|
|
virtual qcms_profile *GetPlatformCMSOutputProfile();
|
2013-06-20 14:32:04 -07:00
|
|
|
|
|
|
|
virtual bool SupportsOffMainThreadCompositing();
|
2012-04-18 07:27:32 -07:00
|
|
|
#ifdef MOZ_X11
|
|
|
|
static bool sUseXRender;
|
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GFX_PLATFORM_GTK_H */
|