2018-11-30 22:52:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
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/. */
|
2010-02-26 09:36:07 +03:00
|
|
|
|
|
|
|
#ifndef GFX_DWRITECOMMON_H
|
|
|
|
#define GFX_DWRITECOMMON_H
|
|
|
|
|
|
|
|
// Mozilla includes
|
2018-04-05 23:27:07 +03:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2018-04-23 17:52:20 +03:00
|
|
|
#include "mozilla/FontPropertyTypes.h"
|
2010-02-26 09:36:07 +03:00
|
|
|
#include "nscore.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "cairo-features.h"
|
|
|
|
#include "gfxFontConstants.h"
|
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "gfxWindowsPlatform.h"
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <dwrite.h>
|
|
|
|
|
2014-11-24 13:19:36 +03:00
|
|
|
static inline DWRITE_FONT_STRETCH DWriteFontStretchFromStretch(
|
2018-04-23 17:52:20 +03:00
|
|
|
mozilla::FontStretch aStretch) {
|
|
|
|
if (aStretch == mozilla::FontStretch::UltraCondensed()) {
|
|
|
|
return DWRITE_FONT_STRETCH_ULTRA_CONDENSED;
|
|
|
|
}
|
|
|
|
if (aStretch == mozilla::FontStretch::ExtraCondensed()) {
|
|
|
|
return DWRITE_FONT_STRETCH_EXTRA_CONDENSED;
|
|
|
|
}
|
|
|
|
if (aStretch == mozilla::FontStretch::Condensed()) {
|
|
|
|
return DWRITE_FONT_STRETCH_CONDENSED;
|
|
|
|
}
|
|
|
|
if (aStretch == mozilla::FontStretch::SemiCondensed()) {
|
|
|
|
return DWRITE_FONT_STRETCH_SEMI_CONDENSED;
|
|
|
|
}
|
|
|
|
if (aStretch == mozilla::FontStretch::Normal()) {
|
|
|
|
return DWRITE_FONT_STRETCH_NORMAL;
|
|
|
|
}
|
|
|
|
if (aStretch == mozilla::FontStretch::SemiExpanded()) {
|
|
|
|
return DWRITE_FONT_STRETCH_SEMI_EXPANDED;
|
|
|
|
}
|
|
|
|
if (aStretch == mozilla::FontStretch::Expanded()) {
|
|
|
|
return DWRITE_FONT_STRETCH_EXPANDED;
|
|
|
|
}
|
|
|
|
if (aStretch == mozilla::FontStretch::ExtraExpanded()) {
|
|
|
|
return DWRITE_FONT_STRETCH_EXTRA_EXPANDED;
|
|
|
|
}
|
|
|
|
if (aStretch == mozilla::FontStretch::UltraExpanded()) {
|
|
|
|
return DWRITE_FONT_STRETCH_ULTRA_EXPANDED;
|
2010-02-26 09:36:07 +03:00
|
|
|
}
|
2018-04-23 17:52:20 +03:00
|
|
|
return DWRITE_FONT_STRETCH_UNDEFINED;
|
2010-02-26 09:36:07 +03:00
|
|
|
}
|
|
|
|
|
2018-04-16 12:00:57 +03:00
|
|
|
static inline mozilla::FontStretch FontStretchFromDWriteStretch(
|
|
|
|
DWRITE_FONT_STRETCH aStretch) {
|
2010-02-26 09:36:07 +03:00
|
|
|
switch (aStretch) {
|
|
|
|
case DWRITE_FONT_STRETCH_ULTRA_CONDENSED:
|
2018-04-23 17:52:20 +03:00
|
|
|
return mozilla::FontStretch::UltraCondensed();
|
2010-02-26 09:36:07 +03:00
|
|
|
case DWRITE_FONT_STRETCH_EXTRA_CONDENSED:
|
2018-04-23 17:52:20 +03:00
|
|
|
return mozilla::FontStretch::ExtraCondensed();
|
2010-02-26 09:36:07 +03:00
|
|
|
case DWRITE_FONT_STRETCH_CONDENSED:
|
2018-04-23 17:52:20 +03:00
|
|
|
return mozilla::FontStretch::Condensed();
|
2010-02-26 09:36:07 +03:00
|
|
|
case DWRITE_FONT_STRETCH_SEMI_CONDENSED:
|
2018-04-23 17:52:20 +03:00
|
|
|
return mozilla::FontStretch::SemiCondensed();
|
2010-02-26 09:36:07 +03:00
|
|
|
case DWRITE_FONT_STRETCH_NORMAL:
|
2018-04-23 17:52:20 +03:00
|
|
|
return mozilla::FontStretch::Normal();
|
2010-02-26 09:36:07 +03:00
|
|
|
case DWRITE_FONT_STRETCH_SEMI_EXPANDED:
|
2018-04-23 17:52:20 +03:00
|
|
|
return mozilla::FontStretch::SemiExpanded();
|
2010-02-26 09:36:07 +03:00
|
|
|
case DWRITE_FONT_STRETCH_EXPANDED:
|
2018-04-23 17:52:20 +03:00
|
|
|
return mozilla::FontStretch::Expanded();
|
2010-02-26 09:36:07 +03:00
|
|
|
case DWRITE_FONT_STRETCH_EXTRA_EXPANDED:
|
2018-04-23 17:52:20 +03:00
|
|
|
return mozilla::FontStretch::ExtraExpanded();
|
2010-02-26 09:36:07 +03:00
|
|
|
case DWRITE_FONT_STRETCH_ULTRA_EXPANDED:
|
2018-04-23 17:52:20 +03:00
|
|
|
return mozilla::FontStretch::UltraExpanded();
|
2010-02-26 09:36:07 +03:00
|
|
|
default:
|
2018-04-23 17:52:20 +03:00
|
|
|
return mozilla::FontStretch::Normal();
|
2010-02-26 09:36:07 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class gfxDWriteFontFileLoader : public IDWriteFontFileLoader {
|
|
|
|
public:
|
|
|
|
gfxDWriteFontFileLoader() {}
|
|
|
|
|
|
|
|
// IUnknown interface
|
|
|
|
IFACEMETHOD(QueryInterface)(IID const& iid, OUT void** ppObject) {
|
|
|
|
if (iid == __uuidof(IDWriteFontFileLoader)) {
|
|
|
|
*ppObject = static_cast<IDWriteFontFileLoader*>(this);
|
|
|
|
return S_OK;
|
|
|
|
} else if (iid == __uuidof(IUnknown)) {
|
|
|
|
*ppObject = static_cast<IUnknown*>(this);
|
|
|
|
return S_OK;
|
|
|
|
} else {
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
2018-11-30 13:46:48 +03:00
|
|
|
}
|
2010-02-26 09:36:07 +03:00
|
|
|
|
|
|
|
IFACEMETHOD_(ULONG, AddRef)() { return 1; }
|
|
|
|
|
|
|
|
IFACEMETHOD_(ULONG, Release)() { return 1; }
|
|
|
|
|
|
|
|
// IDWriteFontFileLoader methods
|
|
|
|
/**
|
2016-01-05 13:08:57 +03:00
|
|
|
* Important! Note the key here -has- to be a pointer to a uint64_t.
|
2010-02-26 09:36:07 +03:00
|
|
|
*/
|
|
|
|
virtual HRESULT STDMETHODCALLTYPE CreateStreamFromKey(
|
|
|
|
void const* fontFileReferenceKey, UINT32 fontFileReferenceKeySize,
|
|
|
|
OUT IDWriteFontFileStream** fontFileStream);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the singleton loader instance. Note that when using this font
|
2016-01-05 13:08:57 +03:00
|
|
|
* loader, the key must be a pointer to a unint64_t.
|
2010-02-26 09:36:07 +03:00
|
|
|
*/
|
|
|
|
static IDWriteFontFileLoader* Instance() {
|
|
|
|
if (!mInstance) {
|
|
|
|
mInstance = new gfxDWriteFontFileLoader();
|
2017-06-30 21:09:05 +03:00
|
|
|
mozilla::gfx::Factory::GetDWriteFactory()->RegisterFontFileLoader(
|
2010-02-26 09:36:07 +03:00
|
|
|
mInstance);
|
|
|
|
}
|
|
|
|
return mInstance;
|
2018-11-30 13:46:48 +03:00
|
|
|
}
|
2010-02-26 09:36:07 +03:00
|
|
|
|
|
|
|
/**
|
2016-01-05 13:08:57 +03:00
|
|
|
* Creates a IDWriteFontFile and IDWriteFontFileStream from aFontData.
|
2018-01-26 20:26:19 +03:00
|
|
|
* The data from aFontData will be copied internally, so the caller
|
|
|
|
* is free to dispose of it once this method returns.
|
2010-02-26 09:36:07 +03:00
|
|
|
*
|
2016-01-05 13:08:57 +03:00
|
|
|
* @param aFontData the font data for the custom font file
|
2018-01-26 20:26:19 +03:00
|
|
|
* @param aLength length of the font data
|
2016-01-05 13:08:57 +03:00
|
|
|
* @param aFontFile out param for the created font file
|
|
|
|
* @param aFontFileStream out param for the corresponding stream
|
|
|
|
* @return HRESULT of internal calls
|
2010-02-26 09:36:07 +03:00
|
|
|
*/
|
2018-01-26 20:26:19 +03:00
|
|
|
static HRESULT CreateCustomFontFile(const uint8_t* aFontData,
|
|
|
|
uint32_t aLength,
|
2016-01-05 13:08:57 +03:00
|
|
|
IDWriteFontFile** aFontFile,
|
|
|
|
IDWriteFontFileStream** aFontFileStream);
|
2010-02-26 09:36:07 +03:00
|
|
|
|
2018-04-05 23:27:07 +03:00
|
|
|
size_t SizeOfIncludingThis(mozilla::MallocSizeOf mallocSizeOf) const;
|
|
|
|
|
2010-02-26 09:36:07 +03:00
|
|
|
private:
|
2016-01-05 13:08:57 +03:00
|
|
|
static IDWriteFontFileLoader* mInstance;
|
2010-02-26 09:36:07 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* GFX_DWRITECOMMON_H */
|