2005-11-29 23:29:45 +03: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/. */
|
2005-11-29 23:29:45 +03:00
|
|
|
|
|
|
|
#ifndef GFX_PLATFORM_GTK_H
|
|
|
|
#define GFX_PLATFORM_GTK_H
|
|
|
|
|
2008-08-07 03:32:33 +04:00
|
|
|
#include "gfxPlatform.h"
|
2008-11-07 05:21:34 +03:00
|
|
|
#include "nsAutoRef.h"
|
2009-01-18 23:14:14 +03:00
|
|
|
#include "nsTArray.h"
|
2008-08-07 00:48:55 +04:00
|
|
|
|
2012-06-28 04:15:32 +04:00
|
|
|
#if (MOZ_WIDGET_GTK == 2)
|
2008-08-07 00:48:55 +04:00
|
|
|
extern "C" {
|
|
|
|
typedef struct _GdkDrawable GdkDrawable;
|
|
|
|
}
|
2012-06-28 04:15:32 +04:00
|
|
|
#endif
|
2008-08-07 00:48:55 +04:00
|
|
|
|
2007-01-30 11:20:29 +03:00
|
|
|
class gfxFontconfigUtils;
|
2008-08-07 00:48:55 +04:00
|
|
|
#ifndef MOZ_PANGO
|
|
|
|
class FontFamily;
|
|
|
|
class FontEntry;
|
|
|
|
typedef struct FT_LibraryRec_ *FT_Library;
|
|
|
|
#endif
|
|
|
|
|
2006-04-27 18:41:11 +04:00
|
|
|
class THEBES_API gfxPlatformGtk : public gfxPlatform {
|
2005-11-29 23:29:45 +03:00
|
|
|
public:
|
|
|
|
gfxPlatformGtk();
|
2007-03-20 02:16:15 +03:00
|
|
|
virtual ~gfxPlatformGtk();
|
2005-11-29 23:29:45 +03:00
|
|
|
|
2005-11-30 01:56:40 +03:00
|
|
|
static gfxPlatformGtk *GetPlatform() {
|
2005-11-29 23:29:45 +03:00
|
|
|
return (gfxPlatformGtk*) gfxPlatform::GetPlatform();
|
|
|
|
}
|
|
|
|
|
2007-02-08 23:47:48 +03:00
|
|
|
already_AddRefed<gfxASurface> CreateOffscreenSurface(const gfxIntSize& size,
|
2010-09-17 01:34:53 +04:00
|
|
|
gfxASurface::gfxContentType contentType);
|
2005-11-29 23:29:45 +03:00
|
|
|
|
2012-01-26 04:54:31 +04:00
|
|
|
mozilla::RefPtr<mozilla::gfx::ScaledFont>
|
2012-07-26 10:48:24 +04:00
|
|
|
GetScaledFontForFont(gfxFont *aFont);
|
|
|
|
|
|
|
|
virtual bool SupportsAzure(mozilla::gfx::BackendType& aBackend);
|
2012-01-26 04:54:31 +04:00
|
|
|
|
2010-02-24 20:57:57 +03:00
|
|
|
nsresult GetFontList(nsIAtom *aLangGroup,
|
2006-01-10 23:26:40 +03:00
|
|
|
const nsACString& aGenericFamily,
|
2009-01-18 23:14:14 +03:00
|
|
|
nsTArray<nsString>& aListOfFonts);
|
2006-01-10 23:26:40 +03:00
|
|
|
|
2006-11-21 09:31:04 +03:00
|
|
|
nsresult UpdateFontList();
|
|
|
|
|
|
|
|
nsresult ResolveFontName(const nsAString& aFontName,
|
|
|
|
FontResolverCallback aCallback,
|
2011-09-29 10:19:26 +04:00
|
|
|
void *aClosure, bool& aAborted);
|
2006-11-21 09:31:04 +03:00
|
|
|
|
2008-03-13 13:32:50 +03:00
|
|
|
nsresult GetStandardFamilyName(const nsAString& aFontName, nsAString& aFamilyName);
|
|
|
|
|
2007-04-02 23:06:16 +04:00
|
|
|
gfxFontGroup *CreateFontGroup(const nsAString &aFamilies,
|
2008-10-01 07:01:53 +04:00
|
|
|
const gfxFontStyle *aStyle,
|
|
|
|
gfxUserFontSet *aUserFontSet);
|
2007-04-02 23:06:16 +04:00
|
|
|
|
2008-12-06 02:19:27 +03:00
|
|
|
#ifdef MOZ_PANGO
|
2009-01-03 06:21:49 +03: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-06 02:19:27 +03:00
|
|
|
/**
|
|
|
|
* Activate a platform font (needed to support @font-face src url() )
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
virtual gfxFontEntry* MakePlatformFont(const gfxProxyFontEntry *aProxyEntry,
|
|
|
|
const PRUint8 *aFontData,
|
|
|
|
PRUint32 aLength);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check whether format is supported on a platform or not (if unclear,
|
|
|
|
* returns true).
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool IsFontFormatSupported(nsIURI *aFontURI,
|
2008-12-06 02:19:27 +03:00
|
|
|
PRUint32 aFormatFlags);
|
|
|
|
#endif
|
|
|
|
|
2008-08-07 00:48:55 +04:00
|
|
|
#ifndef MOZ_PANGO
|
|
|
|
FontFamily *FindFontFamily(const nsAString& aName);
|
|
|
|
FontEntry *FindFontEntry(const nsAString& aFamilyName, const gfxFontStyle& aFontStyle);
|
2009-09-09 19:35:08 +04:00
|
|
|
already_AddRefed<gfxFont> FindFontForChar(PRUint32 aCh, gfxFont *aFont);
|
2011-09-29 10:19:26 +04:00
|
|
|
bool GetPrefFontEntries(const nsCString& aLangGroup, nsTArray<nsRefPtr<gfxFontEntry> > *aFontEntryList);
|
2010-10-14 02:03:19 +04:00
|
|
|
void SetPrefFontEntries(const nsCString& aLangGroup, nsTArray<nsRefPtr<gfxFontEntry> >& aFontEntryList);
|
2008-08-07 00:48:55 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MOZ_PANGO
|
|
|
|
FT_Library GetFTLibrary();
|
|
|
|
#endif
|
|
|
|
|
2012-06-28 04:15:32 +04:00
|
|
|
#if (MOZ_WIDGET_GTK == 2)
|
2010-07-02 08:04:09 +04:00
|
|
|
static void SetGdkDrawable(gfxASurface *target,
|
|
|
|
GdkDrawable *drawable);
|
|
|
|
static GdkDrawable *GetGdkDrawable(gfxASurface *target);
|
2012-06-28 04:15:32 +04:00
|
|
|
#endif
|
2008-08-07 00:48:55 +04:00
|
|
|
|
2010-08-13 13:58:01 +04:00
|
|
|
static PRInt32 GetDPI();
|
2006-04-18 19:21:42 +04:00
|
|
|
|
2012-04-18 18:27:32 +04:00
|
|
|
static bool UseXRender() {
|
2011-09-23 21:24:12 +04:00
|
|
|
#if defined(MOZ_X11) && defined(MOZ_PLATFORM_MAEMO)
|
|
|
|
// XRender is not accelerated on the Maemo at the moment, and
|
|
|
|
// X server pixman is out of our control; it's likely to be
|
|
|
|
// older than (our) cairo's. So fall back on software
|
|
|
|
// rendering for more predictable performance.
|
2010-09-24 05:00:06 +04:00
|
|
|
// This setting will likely not be relevant when we have
|
2011-09-23 21:24:12 +04:00
|
|
|
// GL-accelerated compositing. We know of other platforms
|
|
|
|
// with bad drivers where we'd like to also use client side
|
|
|
|
// rendering, but until we have the ability to featuer test
|
|
|
|
// this, we'll only disable this for maemo.
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
2012-04-18 18:27:32 +04:00
|
|
|
#elif defined(MOZ_X11)
|
|
|
|
return sUseXRender;
|
2010-09-24 05:00:06 +04:00
|
|
|
#else
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2010-09-24 05:00:06 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-12-15 21:17:26 +03:00
|
|
|
virtual gfxImageFormat GetOffscreenFormat();
|
|
|
|
|
2010-08-13 13:58:01 +04:00
|
|
|
protected:
|
2007-01-30 11:20:29 +03:00
|
|
|
static gfxFontconfigUtils *sFontconfigUtils;
|
2007-07-24 02:02:17 +04:00
|
|
|
|
|
|
|
private:
|
2009-04-07 20:02:11 +04:00
|
|
|
virtual qcms_profile *GetPlatformCMSOutputProfile();
|
2012-04-18 18:27:32 +04:00
|
|
|
#ifdef MOZ_X11
|
|
|
|
static bool sUseXRender;
|
|
|
|
#endif
|
2005-11-29 23:29:45 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GFX_PLATFORM_GTK_H */
|