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
|
|
|
|
2013-05-30 01:59:24 +04:00
|
|
|
class 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();
|
|
|
|
}
|
|
|
|
|
2014-02-09 12:04:38 +04:00
|
|
|
virtual already_AddRefed<gfxASurface>
|
2015-07-07 04:21:47 +03:00
|
|
|
CreateOffscreenSurface(const IntSize& aSize,
|
|
|
|
gfxImageFormat aFormat) override;
|
2005-11-29 23:29:45 +03:00
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
virtual already_AddRefed<mozilla::gfx::ScaledFont>
|
2015-03-21 19:28:04 +03:00
|
|
|
GetScaledFontForFont(mozilla::gfx::DrawTarget* aTarget, gfxFont *aFont) override;
|
2012-07-26 10:48:24 +04:00
|
|
|
|
2015-01-21 00:39:44 +03:00
|
|
|
virtual nsresult GetFontList(nsIAtom *aLangGroup,
|
|
|
|
const nsACString& aGenericFamily,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsTArray<nsString>& aListOfFonts) override;
|
2006-01-10 23:26:40 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult UpdateFontList() override;
|
2006-11-21 09:31:04 +03:00
|
|
|
|
2015-05-13 08:11:25 +03:00
|
|
|
virtual void
|
|
|
|
GetCommonFallbackFonts(uint32_t aCh, uint32_t aNextCh,
|
|
|
|
int32_t aRunScript,
|
|
|
|
nsTArray<const char*>& aFontList) override;
|
|
|
|
|
2015-05-13 09:36:47 +03:00
|
|
|
virtual gfxPlatformFontList* CreatePlatformFontList() override;
|
2015-05-13 08:11:25 +03:00
|
|
|
|
2015-01-21 00:39:44 +03:00
|
|
|
virtual nsresult GetStandardFamilyName(const nsAString& aFontName,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsAString& aFamilyName) override;
|
2008-03-13 13:32:50 +03:00
|
|
|
|
2015-09-11 07:24:33 +03:00
|
|
|
gfxFontGroup*
|
|
|
|
CreateFontGroup(const mozilla::FontFamilyList& aFontFamilyList,
|
|
|
|
const gfxFontStyle *aStyle,
|
|
|
|
gfxTextPerfMetrics* aTextPerf,
|
2015-11-20 16:01:12 +03:00
|
|
|
gfxUserFontSet *aUserFontSet,
|
|
|
|
gfxFloat aDevToCssSize) override;
|
2007-04-02 23:06:16 +04:00
|
|
|
|
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() )
|
|
|
|
*/
|
2014-09-08 11:23:19 +04:00
|
|
|
virtual gfxFontEntry* LookupLocalFont(const nsAString& aFontName,
|
|
|
|
uint16_t aWeight,
|
|
|
|
int16_t aStretch,
|
2015-10-19 05:16:43 +03:00
|
|
|
uint8_t aStyle) override;
|
2009-01-03 06:21:49 +03:00
|
|
|
|
2008-12-06 02:19:27 +03:00
|
|
|
/**
|
|
|
|
* Activate a platform font (needed to support @font-face src url() )
|
|
|
|
*
|
|
|
|
*/
|
2014-09-08 11:23:19 +04:00
|
|
|
virtual gfxFontEntry* MakePlatformFont(const nsAString& aFontName,
|
|
|
|
uint16_t aWeight,
|
|
|
|
int16_t aStretch,
|
2015-10-19 05:16:43 +03:00
|
|
|
uint8_t aStyle,
|
2014-09-08 11:23:19 +04:00
|
|
|
const uint8_t* aFontData,
|
2015-03-21 19:28:04 +03:00
|
|
|
uint32_t aLength) override;
|
2008-12-06 02:19:27 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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,
|
2015-03-21 19:28:04 +03:00
|
|
|
uint32_t aFormatFlags) override;
|
2008-08-07 00:48:55 +04:00
|
|
|
|
2015-05-04 13:35:18 +03:00
|
|
|
/**
|
|
|
|
* Calls XFlush if xrender is enabled.
|
|
|
|
*/
|
|
|
|
virtual void FlushContentDrawing() override;
|
|
|
|
|
2012-06-28 04:15:32 +04:00
|
|
|
#if (MOZ_WIDGET_GTK == 2)
|
2013-10-26 01:25:40 +04:00
|
|
|
static void SetGdkDrawable(cairo_surface_t *target,
|
2010-07-02 08:04:09 +04:00
|
|
|
GdkDrawable *drawable);
|
2013-10-26 01:25:40 +04:00
|
|
|
static GdkDrawable *GetGdkDrawable(cairo_surface_t *target);
|
2012-06-28 04:15:32 +04:00
|
|
|
#endif
|
2008-08-07 00:48:55 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
static int32_t GetDPI();
|
2015-02-10 10:14:00 +03:00
|
|
|
static double GetDPIScale();
|
2006-04-18 19:21:42 +04:00
|
|
|
|
2012-09-17 07:23:00 +04:00
|
|
|
bool UseXRender() {
|
2013-08-26 03:56:53 +04:00
|
|
|
#if defined(MOZ_X11)
|
2012-04-18 18:27:32 +04:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2015-07-14 20:56:00 +03:00
|
|
|
#ifdef MOZ_X11
|
|
|
|
virtual void GetAzureBackendInfo(mozilla::widget::InfoObject &aObj) override {
|
|
|
|
gfxPlatform::GetAzureBackendInfo(aObj);
|
|
|
|
aObj.DefineProperty("CairoUseXRender", UseXRender());
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-05-13 08:11:25 +03:00
|
|
|
static bool UseFcFontList() { return sUseFcFontList; }
|
|
|
|
|
2015-07-15 18:38:00 +03:00
|
|
|
bool UseImageOffscreenSurfaces();
|
2014-07-23 03:04:47 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual gfxImageFormat GetOffscreenFormat() override;
|
2010-12-15 21:17:26 +03:00
|
|
|
|
2015-04-19 23:12:14 +03:00
|
|
|
bool SupportsApzWheelInput() const override {
|
2015-03-25 01:04:44 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-11-20 07:35:15 +03:00
|
|
|
void FontsPrefsChanged(const char *aPref) override;
|
|
|
|
|
|
|
|
// maximum number of fonts to substitute for a generic
|
|
|
|
uint32_t MaxGenericSubstitions();
|
|
|
|
|
2015-12-02 22:31:17 +03:00
|
|
|
bool SupportsPluginDirectBitmapDrawing() override {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2015-11-20 07:35:15 +03:00
|
|
|
int8_t mMaxGenericSubstitutions;
|
|
|
|
|
2007-07-24 02:02:17 +04:00
|
|
|
private:
|
2015-01-21 00:39:44 +03:00
|
|
|
virtual void GetPlatformCMSOutputProfile(void *&mem,
|
2015-03-21 19:28:04 +03:00
|
|
|
size_t &size) override;
|
2013-06-21 01:32:04 +04:00
|
|
|
|
2012-04-18 18:27:32 +04:00
|
|
|
#ifdef MOZ_X11
|
|
|
|
static bool sUseXRender;
|
|
|
|
#endif
|
2015-05-13 08:11:25 +03:00
|
|
|
|
|
|
|
// xxx - this will be removed once the new fontconfig platform font list
|
|
|
|
// replaces gfxPangoFontGroup
|
|
|
|
static bool sUseFcFontList;
|
2005-11-29 23:29:45 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GFX_PLATFORM_GTK_H */
|