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"
|
2016-08-04 21:33:44 +03:00
|
|
|
#include "mozilla/gfx/gfxVars.h"
|
2008-08-07 00:48:55 +04:00
|
|
|
|
2016-07-12 00:36:53 +03:00
|
|
|
#ifdef MOZ_X11
|
|
|
|
struct _XDisplay;
|
|
|
|
typedef struct _XDisplay Display;
|
2018-11-30 13:46:48 +03:00
|
|
|
#endif // MOZ_X11
|
2016-07-12 00:36:53 +03:00
|
|
|
|
2017-11-02 23:29:33 +03:00
|
|
|
namespace mozilla {
|
2018-11-30 13:46:48 +03:00
|
|
|
namespace dom {
|
|
|
|
class SystemFontListEntry;
|
2017-11-02 23:29:33 +03:00
|
|
|
};
|
2018-11-30 13:46:48 +03:00
|
|
|
}; // namespace mozilla
|
2017-11-02 23:29:33 +03:00
|
|
|
|
2013-05-30 01:59:24 +04:00
|
|
|
class gfxPlatformGtk : public gfxPlatform {
|
2018-11-30 13:46:48 +03:00
|
|
|
public:
|
|
|
|
gfxPlatformGtk();
|
|
|
|
virtual ~gfxPlatformGtk();
|
2005-11-29 23:29:45 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
static gfxPlatformGtk* GetPlatform() {
|
|
|
|
return (gfxPlatformGtk*)gfxPlatform::GetPlatform();
|
|
|
|
}
|
2005-11-29 23:29:45 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
void ReadSystemFontList(
|
|
|
|
InfallibleTArray<mozilla::dom::SystemFontListEntry>* retValue) override;
|
2017-11-02 23:29:33 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
virtual already_AddRefed<gfxASurface> CreateOffscreenSurface(
|
|
|
|
const IntSize& aSize, gfxImageFormat aFormat) override;
|
2005-11-29 23:29:45 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
virtual nsresult GetFontList(nsAtom* aLangGroup,
|
|
|
|
const nsACString& aGenericFamily,
|
|
|
|
nsTArray<nsString>& aListOfFonts) override;
|
2006-01-10 23:26:40 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
virtual nsresult UpdateFontList() override;
|
2006-11-21 09:31:04 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
virtual void GetCommonFallbackFonts(
|
|
|
|
uint32_t aCh, uint32_t aNextCh, Script aRunScript,
|
|
|
|
nsTArray<const char*>& aFontList) override;
|
2015-05-13 08:11:25 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
virtual gfxPlatformFontList* CreatePlatformFontList() override;
|
2015-05-13 08:11:25 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
gfxFontGroup* CreateFontGroup(const mozilla::FontFamilyList& aFontFamilyList,
|
|
|
|
const gfxFontStyle* aStyle,
|
|
|
|
gfxTextPerfMetrics* aTextPerf,
|
|
|
|
gfxUserFontSet* aUserFontSet,
|
|
|
|
gfxFloat aDevToCssSize) override;
|
2007-04-02 23:06:16 +04:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
/**
|
|
|
|
* Calls XFlush if xrender is enabled.
|
|
|
|
*/
|
|
|
|
virtual void FlushContentDrawing() override;
|
2015-05-04 13:35:18 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
FT_Library GetFTLibrary() override;
|
2017-01-04 22:00:17 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
static int32_t GetFontScaleDPI();
|
|
|
|
static double GetFontScaleFactor();
|
2006-04-18 19:21:42 +04:00
|
|
|
|
2015-07-14 20:56:00 +03:00
|
|
|
#ifdef MOZ_X11
|
2018-11-30 13:46:48 +03:00
|
|
|
virtual void GetAzureBackendInfo(mozilla::widget::InfoObject& aObj) override {
|
|
|
|
gfxPlatform::GetAzureBackendInfo(aObj);
|
|
|
|
aObj.DefineProperty("CairoUseXRender", mozilla::gfx::gfxVars::UseXRender());
|
|
|
|
}
|
2015-07-14 20:56:00 +03:00
|
|
|
#endif
|
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
bool UseImageOffscreenSurfaces();
|
2014-07-23 03:04:47 +04:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
virtual gfxImageFormat GetOffscreenFormat() override;
|
2010-12-15 21:17:26 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
bool SupportsApzWheelInput() const override { return true; }
|
2015-03-25 01:04:44 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
void FontsPrefsChanged(const char* aPref) override;
|
2015-11-20 07:35:15 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
// maximum number of fonts to substitute for a generic
|
|
|
|
uint32_t MaxGenericSubstitions();
|
2015-11-20 07:35:15 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
bool SupportsPluginDirectBitmapDrawing() override { return true; }
|
2015-12-02 22:31:17 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
bool AccelerateLayersByDefault() override;
|
2016-06-25 00:56:26 +03:00
|
|
|
|
2018-05-24 15:06:31 +03:00
|
|
|
#ifdef MOZ_X11
|
2018-11-30 13:46:48 +03:00
|
|
|
already_AddRefed<mozilla::gfx::VsyncSource> CreateHardwareVsyncSource()
|
|
|
|
override;
|
2016-05-09 18:35:58 +03:00
|
|
|
#endif
|
|
|
|
|
2016-07-12 00:36:53 +03:00
|
|
|
#ifdef MOZ_X11
|
2018-11-30 13:46:48 +03:00
|
|
|
Display* GetCompositorDisplay() { return mCompositorDisplay; }
|
|
|
|
#endif // MOZ_X11
|
2016-07-12 00:36:53 +03:00
|
|
|
|
2018-06-29 14:15:41 +03:00
|
|
|
#ifdef MOZ_WAYLAND
|
2018-11-30 13:46:48 +03:00
|
|
|
void SetWaylandLastVsync(uint32_t aVsyncTimestamp) {
|
|
|
|
mWaylandLastVsyncTimestamp = aVsyncTimestamp;
|
|
|
|
}
|
|
|
|
int64_t GetWaylandLastVsync() { return mWaylandLastVsyncTimestamp; }
|
|
|
|
void SetWaylandFrameDelay(int64_t aFrameDelay) {
|
|
|
|
mWaylandFrameDelay = aFrameDelay;
|
|
|
|
}
|
|
|
|
int64_t GetWaylandFrameDelay() { return mWaylandFrameDelay; }
|
2018-06-29 14:15:41 +03:00
|
|
|
#endif
|
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
protected:
|
|
|
|
bool CheckVariationFontSupport() override;
|
2018-04-05 20:53:56 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
int8_t mMaxGenericSubstitutions;
|
2015-11-20 07:35:15 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
private:
|
|
|
|
virtual void GetPlatformCMSOutputProfile(void*& mem, size_t& size) override;
|
2013-06-21 01:32:04 +04:00
|
|
|
|
2012-04-18 18:27:32 +04:00
|
|
|
#ifdef MOZ_X11
|
2018-11-30 13:46:48 +03:00
|
|
|
Display* mCompositorDisplay;
|
2012-04-18 18:27:32 +04:00
|
|
|
#endif
|
2018-06-29 14:15:41 +03:00
|
|
|
#ifdef MOZ_WAYLAND
|
2018-11-30 13:46:48 +03:00
|
|
|
int64_t mWaylandLastVsyncTimestamp;
|
|
|
|
int64_t mWaylandFrameDelay;
|
2018-06-29 14:15:41 +03:00
|
|
|
#endif
|
2005-11-29 23:29:45 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GFX_PLATFORM_GTK_H */
|