//+--------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Abstract:
// DirectX Typography Services public API definitions.
//
//----------------------------------------------------------------------------
#ifndef DWRITE_3_H_INCLUDED
#define DWRITE_3_H_INCLUDED
#pragma once
#include "dwrite_2.h"
interface IDWriteFontFaceReference;
interface IDWriteFont3;
interface IDWriteFontFace3;
interface IDWriteFontSet;
interface IDWriteFontSetBuilder;
interface IDWriteFontCollection1;
interface IDWriteFontFamily1;
interface IDWriteStringList;
interface IDWriteFontDownloadQueue;
///
/// A font resource could not be accessed because it was remote. This can happen
/// when calling CreateFontFace on a non-local font or trying to measure/draw
/// glyphs that are not downloaded yet.
///
#ifndef DWRITE_E_REMOTEFONT
#define DWRITE_E_REMOTEFONT _HRESULT_TYPEDEF_(0x8898500DL)
#endif
///
/// The download was canceled, which happens if the application calls
/// IDWriteFontDownloadQueue::CancelDownload before they finish.
///
#ifndef DWRITE_E_DOWNLOADCANCELLED
#define DWRITE_E_DOWNLOADCANCELLED _HRESULT_TYPEDEF_(0x8898500EL)
#endif
///
/// The download failed to complete because the remote resource is missing
/// or the network is down.
///
#ifndef DWRITE_E_DOWNLOADFAILED
#define DWRITE_E_DOWNLOADFAILED _HRESULT_TYPEDEF_(0x8898500FL)
#endif
///
/// A download request was not added or a download failed because there
/// are too many active downloads.
///
#ifndef DWRITE_E_TOOMANYDOWNLOADS
#define DWRITE_E_TOOMANYDOWNLOADS _HRESULT_TYPEDEF_(0x88985010L)
#endif
///
/// The font property enumeration identifies a string in a font.
///
enum DWRITE_FONT_PROPERTY_ID
{
///
/// Unspecified font property identifier.
///
DWRITE_FONT_PROPERTY_ID_NONE,
///
/// Family name for the weight-stretch-style model.
///
DWRITE_FONT_PROPERTY_ID_WEIGHT_STRETCH_STYLE_FAMILY_NAME,
///
/// Family name preferred by the designer. This enables font designers to group more than four fonts in a single family without losing compatibility with
/// GDI. This name is typically only present if it differs from the GDI-compatible family name.
///
DWRITE_FONT_PROPERTY_ID_TYPOGRAPHIC_FAMILY_NAME,
///
/// Face name of the for the weight-stretch-style (e.g., Regular or Bold).
///
DWRITE_FONT_PROPERTY_ID_WEIGHT_STRETCH_STYLE_FACE_NAME,
///
/// The full name of the font, e.g. "Arial Bold", from name id 4 in the name table.
///
DWRITE_FONT_PROPERTY_ID_FULL_NAME,
///
/// GDI-compatible family name. Because GDI allows a maximum of four fonts per family, fonts in the same family may have different GDI-compatible family names
/// (e.g., "Arial", "Arial Narrow", "Arial Black").
///
DWRITE_FONT_PROPERTY_ID_WIN32_FAMILY_NAME,
///
/// The postscript name of the font, e.g. "GillSans-Bold" from name id 6 in the name table.
///
DWRITE_FONT_PROPERTY_ID_POSTSCRIPT_NAME,
///
/// Script/language tag to identify the scripts or languages that the font was
/// primarily designed to support.
///
///
/// The design script/language tag is meant to be understood from the perspective of
/// users. For example, a font is considered designed for English if it is considered
/// useful for English users. Note that this is different from what a font might be
/// capable of supporting. For example, the Meiryo font was primarily designed for
/// Japanese users. While it is capable of displaying English well, it was not
/// meant to be offered for the benefit of non-Japanese-speaking English users.
///
/// As another example, a font designed for Chinese may be capable of displaying
/// Japanese text, but would likely look incorrect to Japanese users.
///
/// The valid values for this property are "ScriptLangTag" values. These are adapted
/// from the IETF BCP 47 specification, "Tags for Identifying Languages" (see
/// http://tools.ietf.org/html/bcp47). In a BCP 47 language tag, a language subtag
/// element is mandatory and other subtags are optional. In a ScriptLangTag, a
/// script subtag is mandatory and other subtags are option. The following
/// augmented BNF syntax, adapted from BCP 47, is used:
///
/// ScriptLangTag = [language "-"]
/// script
/// ["-" region]
/// *("-" variant)
/// *("-" extension)
/// ["-" privateuse]
///
/// The expansion of the elements and the intended semantics associated with each
/// are as defined in BCP 47. Script subtags are taken from ISO 15924. At present,
/// no extensions are defined, and any extension should be ignored. Private use
/// subtags are defined by private agreement between the source and recipient and
/// may be ignored.
///
/// Subtags must be valid for use in BCP 47 and contained in the Language Subtag
/// Registry maintained by IANA. (See
/// http://www.iana.org/assignments/language-subtag-registry/language-subtag-registry
/// and section 3 of BCP 47 for details.
///
/// Any ScriptLangTag value not conforming to these specifications is ignored.
///
/// Examples:
/// "Latn" denotes Latin script (and any language or writing system using Latin)
/// "Cyrl" denotes Cyrillic script
/// "sr-Cyrl" denotes Cyrillic script as used for writing the Serbian language;
/// a font that has this property value may not be suitable for displaying
/// text in Russian or other languages written using Cyrillic script
/// "Jpan" denotes Japanese writing (Han + Hiragana + Katakana)
///
/// When passing this property to GetPropertyValues, use the overload which does
/// not take a language parameter, since this property has no specific language.
///
DWRITE_FONT_PROPERTY_ID_DESIGN_SCRIPT_LANGUAGE_TAG,
///
/// Script/language tag to identify the scripts or languages that the font declares
/// it is able to support.
///
DWRITE_FONT_PROPERTY_ID_SUPPORTED_SCRIPT_LANGUAGE_TAG,
///
/// Semantic tag to describe the font (e.g. Fancy, Decorative, Handmade, Sans-serif, Swiss, Pixel, Futuristic).
///
DWRITE_FONT_PROPERTY_ID_SEMANTIC_TAG,
///
/// Weight of the font represented as a decimal string in the range 1-999.
///
///
/// This enum is discouraged for use with IDWriteFontSetBuilder2 in favor of the more generic font axis
/// DWRITE_FONT_AXIS_TAG_WEIGHT which supports higher precision and range.
///
DWRITE_FONT_PROPERTY_ID_WEIGHT,
///
/// Stretch of the font represented as a decimal string in the range 1-9.
///
///
/// This enum is discouraged for use with IDWriteFontSetBuilder2 in favor of the more generic font axis
/// DWRITE_FONT_AXIS_TAG_WIDTH which supports higher precision and range.
///
DWRITE_FONT_PROPERTY_ID_STRETCH,
///
/// Style of the font represented as a decimal string in the range 0-2.
///
///
/// This enum is discouraged for use with IDWriteFontSetBuilder2 in favor of the more generic font axes
/// DWRITE_FONT_AXIS_TAG_SLANT and DWRITE_FONT_AXIS_TAG_ITAL.
///
DWRITE_FONT_PROPERTY_ID_STYLE,
///
/// Face name preferred by the designer. This enables font designers to group more than four fonts in a single
/// family without losing compatibility with GDI.
///
DWRITE_FONT_PROPERTY_ID_TYPOGRAPHIC_FACE_NAME,
///
/// Font source name. The meaning of this value depends on the value of the DWRITE_FONT_SOURCE_TYPE of the font.
/// This property is not derived from the font itself, but describes how the font was added to the font set.
///
DWRITE_FONT_PROPERTY_ID_FONT_SOURCE_NAME,
///
/// Total number of properties for NTDDI_WIN10 (IDWriteFontSet).
///
///
/// DWRITE_FONT_PROPERTY_ID_TOTAL cannot be used as a property ID.
///
DWRITE_FONT_PROPERTY_ID_TOTAL = DWRITE_FONT_PROPERTY_ID_STYLE + 1,
///
/// Total number of properties for NTDDI_WIN10_RS3 (IDWriteFontSet1).
///
DWRITE_FONT_PROPERTY_ID_TOTAL_RS3 = DWRITE_FONT_PROPERTY_ID_TYPOGRAPHIC_FACE_NAME + 1,
///
/// Total number of properties for NTDDI_WIN10_RS5 (IDWriteFontSet3).
///
DWRITE_FONT_PROPERTY_ID_TOTAL_RS5 = DWRITE_FONT_PROPERTY_ID_FONT_SOURCE_NAME + 1,
// Obsolete aliases kept to avoid breaking existing code.
DWRITE_FONT_PROPERTY_ID_PREFERRED_FAMILY_NAME = DWRITE_FONT_PROPERTY_ID_TYPOGRAPHIC_FAMILY_NAME,
DWRITE_FONT_PROPERTY_ID_FAMILY_NAME = DWRITE_FONT_PROPERTY_ID_WEIGHT_STRETCH_STYLE_FAMILY_NAME,
DWRITE_FONT_PROPERTY_ID_FACE_NAME = DWRITE_FONT_PROPERTY_ID_WEIGHT_STRETCH_STYLE_FACE_NAME,
};
///
/// Font property used for filtering font sets and
/// building a font set with explicit properties.
///
struct DWRITE_FONT_PROPERTY
{
///
/// Specifies the requested font property, such as DWRITE_FONT_PROPERTY_ID_FAMILY_NAME.
///
DWRITE_FONT_PROPERTY_ID propertyId;
///
/// Specifies the property value, such as "Segoe UI".
///
_Field_z_ WCHAR const* propertyValue;
///
/// Specifies the language / locale to use, such as "en-US".
///
///
/// When passing property information to AddFontFaceReference, localeName indicates
/// the language of the property value. BCP 47 language tags should be used. If a
/// property value is inherently non-linguistic, this can be left empty.
///
/// When used for font set filtering, leave this empty: a match will be found
/// regardless of language associated with property values.
///
_Field_z_ _Maybenull_ WCHAR const* localeName;
};
///
/// Specifies the locality of a resource.
///
enum DWRITE_LOCALITY
{
///
/// The resource is remote, and information is unknown yet, including the file size and date.
/// Attempting to create a font or file stream will fail until locality becomes at least partial.
///
DWRITE_LOCALITY_REMOTE,
///
/// The resource is partially local, meaning you can query the size and date of the file
/// stream, and you may be able to create a font face and retrieve the particular glyphs
/// for metrics and drawing, but not all the glyphs will be present.
///
DWRITE_LOCALITY_PARTIAL,
///
/// The resource is completely local, and all font functions can be called
/// without concern of missing data or errors related to network connectivity.
///
DWRITE_LOCALITY_LOCAL,
};
///
/// Represents a method of rendering glyphs.
///
enum DWRITE_RENDERING_MODE1
{
///
/// Specifies that the rendering mode is determined automatically based on the font and size.
///
DWRITE_RENDERING_MODE1_DEFAULT = DWRITE_RENDERING_MODE_DEFAULT,
///
/// Specifies that no antialiasing is performed. Each pixel is either set to the foreground
/// color of the text or retains the color of the background.
///
DWRITE_RENDERING_MODE1_ALIASED = DWRITE_RENDERING_MODE_ALIASED,
///
/// Specifies that antialiasing is performed in the horizontal direction and the appearance
/// of glyphs is layout-compatible with GDI using CLEARTYPE_QUALITY. Use DWRITE_MEASURING_MODE_GDI_CLASSIC
/// to get glyph advances. The antialiasing may be either ClearType or grayscale depending on
/// the text antialiasing mode.
///
DWRITE_RENDERING_MODE1_GDI_CLASSIC = DWRITE_RENDERING_MODE_GDI_CLASSIC,
///
/// Specifies that antialiasing is performed in the horizontal direction and the appearance
/// of glyphs is layout-compatible with GDI using CLEARTYPE_NATURAL_QUALITY. Glyph advances
/// are close to the font design advances, but are still rounded to whole pixels. Use
/// DWRITE_MEASURING_MODE_GDI_NATURAL to get glyph advances. The antialiasing may be either
/// ClearType or grayscale depending on the text antialiasing mode.
///
DWRITE_RENDERING_MODE1_GDI_NATURAL = DWRITE_RENDERING_MODE_GDI_NATURAL,
///
/// Specifies that antialiasing is performed in the horizontal direction. This rendering
/// mode allows glyphs to be positioned with subpixel precision and is therefore suitable
/// for natural (i.e., resolution-independent) layout. The antialiasing may be either
/// ClearType or grayscale depending on the text antialiasing mode.
///
DWRITE_RENDERING_MODE1_NATURAL = DWRITE_RENDERING_MODE_NATURAL,
///
/// Similar to natural mode except that antialiasing is performed in both the horizontal
/// and vertical directions. This is typically used at larger sizes to make curves and
/// diagonal lines look smoother. The antialiasing may be either ClearType or grayscale
/// depending on the text antialiasing mode.
///
DWRITE_RENDERING_MODE1_NATURAL_SYMMETRIC = DWRITE_RENDERING_MODE_NATURAL_SYMMETRIC,
///
/// Specifies that rendering should bypass the rasterizer and use the outlines directly.
/// This is typically used at very large sizes.
///
DWRITE_RENDERING_MODE1_OUTLINE = DWRITE_RENDERING_MODE_OUTLINE,
///
/// Similar to natural symmetric mode except that when possible, text should be rasterized
/// in a downsampled form.
///
DWRITE_RENDERING_MODE1_NATURAL_SYMMETRIC_DOWNSAMPLED,
};
///
/// The interface that represents text rendering settings for glyph rasterization and filtering.
///
DWRITE_BEGIN_INTERFACE(IDWriteRenderingParams3, "B7924BAA-391B-412A-8C5C-E44CC2D867DC") : IDWriteRenderingParams2
{
///
/// Gets the rendering mode.
///
STDMETHOD_(DWRITE_RENDERING_MODE1, GetRenderingMode1)() PURE;
};
///
/// The root factory interface for all DWrite objects.
///
DWRITE_BEGIN_INTERFACE(IDWriteFactory3, "9A1B41C3-D3BB-466A-87FC-FE67556A3B65") : IDWriteFactory2
{
///
/// Creates a glyph run analysis object, which encapsulates information
/// used to render a glyph run.
///
/// Structure specifying the properties of the glyph run.
/// Optional transform applied to the glyphs and their positions. This transform is applied after the
/// scaling specified by the emSize.
/// Specifies the rendering mode, which must be one of the raster rendering modes (i.e., not default
/// and not outline).
/// Specifies the method to measure glyphs.
/// How to grid-fit glyph outlines. This must be non-default.
/// Horizontal position of the baseline origin, in DIPs.
/// Vertical position of the baseline origin, in DIPs.
/// Receives a pointer to the newly created object.
///
/// Standard HRESULT error code.
///
STDMETHOD(CreateGlyphRunAnalysis)(
_In_ DWRITE_GLYPH_RUN const* glyphRun,
_In_opt_ DWRITE_MATRIX const* transform,
DWRITE_RENDERING_MODE1 renderingMode,
DWRITE_MEASURING_MODE measuringMode,
DWRITE_GRID_FIT_MODE gridFitMode,
DWRITE_TEXT_ANTIALIAS_MODE antialiasMode,
FLOAT baselineOriginX,
FLOAT baselineOriginY,
_COM_Outptr_ IDWriteGlyphRunAnalysis** glyphRunAnalysis
) PURE;
using IDWriteFactory::CreateGlyphRunAnalysis;
using IDWriteFactory2::CreateGlyphRunAnalysis;
///
/// Creates a rendering parameters object with the specified properties.
///
/// The gamma value used for gamma correction, which must be greater than zero and cannot exceed 256.
/// The amount of contrast enhancement, zero or greater.
/// The amount of contrast enhancement to use for grayscale antialiasing, zero or greater.
/// The degree of ClearType level, from 0.0f (no ClearType) to 1.0f (full ClearType).
/// The geometry of a device pixel.
/// Method of rendering glyphs. In most cases, this should be DWRITE_RENDERING_MODE_DEFAULT to automatically use an appropriate mode.
/// How to grid fit glyph outlines. In most cases, this should be DWRITE_GRID_FIT_DEFAULT to automatically choose an appropriate mode.
/// Receives a pointer to the newly created rendering parameters object, or NULL in case of failure.
///
/// Standard HRESULT error code.
///
STDMETHOD(CreateCustomRenderingParams)(
FLOAT gamma,
FLOAT enhancedContrast,
FLOAT grayscaleEnhancedContrast,
FLOAT clearTypeLevel,
DWRITE_PIXEL_GEOMETRY pixelGeometry,
DWRITE_RENDERING_MODE1 renderingMode,
DWRITE_GRID_FIT_MODE gridFitMode,
_COM_Outptr_ IDWriteRenderingParams3** renderingParams
) PURE;
using IDWriteFactory::CreateCustomRenderingParams;
using IDWriteFactory1::CreateCustomRenderingParams;
using IDWriteFactory2::CreateCustomRenderingParams;
///
/// Creates a reference to a font given a full path.
///
/// Absolute file path. Subsequent operations on the constructed object may fail
/// if the user provided filePath doesn't correspond to a valid file on the disk.
/// Last modified time of the input file path. If the parameter is omitted,
/// the function will access the font file to obtain its last write time, so the clients are encouraged to specify this value
/// to avoid extra disk access. Subsequent operations on the constructed object may fail
/// if the user provided lastWriteTime doesn't match the file on the disk.
/// The zero based index of a font face in cases when the font files contain a collection of font faces.
/// If the font files contain a single face, this value should be zero.
/// Font face simulation flags for algorithmic emboldening and italicization.
/// Receives a pointer to the newly created font face reference object, or nullptr in case of failure.
///
/// Standard HRESULT error code.
///
STDMETHOD(CreateFontFaceReference)(
_In_z_ WCHAR const* filePath,
_In_opt_ FILETIME const* lastWriteTime,
UINT32 faceIndex,
DWRITE_FONT_SIMULATIONS fontSimulations,
_COM_Outptr_ IDWriteFontFaceReference** fontFaceReference
) PURE;
///
/// Creates a reference to a font given a file.
///
/// User provided font file representing the font face.
/// The zero based index of a font face in cases when the font files contain a collection of font faces.
/// If the font files contain a single face, this value should be zero.
/// Font face simulation flags for algorithmic emboldening and italicization.
/// Receives a pointer to the newly created font face reference object, or nullptr in case of failure.
///
/// Standard HRESULT error code.
///
STDMETHOD(CreateFontFaceReference)(
_In_ IDWriteFontFile* fontFile,
UINT32 faceIndex,
DWRITE_FONT_SIMULATIONS fontSimulations,
_COM_Outptr_ IDWriteFontFaceReference** fontFaceReference
) PURE;
///
/// Retrieves the list of system fonts.
///
/// Receives a pointer to the font set object, or nullptr in case of failure.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetSystemFontSet)(
_COM_Outptr_ IDWriteFontSet** fontSet
) PURE;
///
/// Creates an empty font set builder to add font face references
/// and create a custom font set.
///
/// Receives a pointer to the newly created font set builder object, or nullptr in case of failure.
///
/// Standard HRESULT error code.
///
STDMETHOD(CreateFontSetBuilder)(
_COM_Outptr_ IDWriteFontSetBuilder** fontSetBuilder
) PURE;
///
/// Create a weight-stretch-style based collection of families (DWRITE_FONT_FAMILY_MODEL_WEIGHT_STRETCH_STYLE)
/// from a set of fonts.
///
/// A set of fonts to use to build the collection.
/// Receives a pointer to the newly created font collection object, or nullptr in case of failure.
///
/// Standard HRESULT error code.
///
STDMETHOD(CreateFontCollectionFromFontSet)(
IDWriteFontSet* fontSet,
_COM_Outptr_ IDWriteFontCollection1** fontCollection
) PURE;
///
/// Retrieves a weight-stretch-style based collection of font families.
///
/// Include downloadable fonts or only locally installed ones.
/// Receives a pointer to the newly created font collection object, or nullptr in
/// case of failure.
/// If this parameter is nonzero, the function performs an immediate check for changes
/// to the set of system fonts. If this parameter is FALSE, the function will still detect changes if the font
/// cache service is running, but there may be some latency. For example, an application might specify TRUE if
/// it has itself just installed a font and wants to be sure the font collection contains that font.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetSystemFontCollection)(
BOOL includeDownloadableFonts,
_COM_Outptr_ IDWriteFontCollection1** fontCollection,
BOOL checkForUpdates = FALSE
) PURE;
using IDWriteFactory::GetSystemFontCollection;
///
/// Gets the font download queue associated with this factory object.
///
/// Receives a pointer to the font download queue interface.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontDownloadQueue)(
_COM_Outptr_ IDWriteFontDownloadQueue** fontDownloadQueue
) PURE;
};
///
/// Set of fonts used for creating font faces, selecting nearest matching fonts, and filtering.
/// Unlike IDWriteFontFamily and IDWriteFontList, which are part of the IDWriteFontCollection heirarchy, font sets
/// are unordered flat lists.
///
DWRITE_BEGIN_INTERFACE(IDWriteFontSet, "53585141-D9F8-4095-8321-D73CF6BD116B") : IUnknown
{
///
/// Get the number of total fonts in the set.
///
///
/// Standard HRESULT error code.
///
STDMETHOD_(UINT32, GetFontCount)() PURE;
///
/// Get a reference to the font at this index, which may be local or remote.
///
/// Zero-based index of the font.
/// Receives a pointer the font face reference object, or nullptr on failure.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontFaceReference)(
UINT32 listIndex,
_COM_Outptr_ IDWriteFontFaceReference** fontFaceReference
) PURE;
///
/// Gets the index of the matching font face reference in the font set, with the same file, face index, and simulations.
///
/// Font face reference object that specifies the physical font.
/// Receives the zero-based index of the matching font if the font was found, or UINT32_MAX otherwise.
/// Receives TRUE if the font exists or FALSE otherwise.
///
/// Standard HRESULT error code.
///
STDMETHOD(FindFontFaceReference)(
IDWriteFontFaceReference* fontFaceReference,
_Out_ UINT32* listIndex,
_Out_ BOOL* exists
) PURE;
///
/// Gets the index of the matching font face reference in the font set, with the same file, face index, and simulations.
///
/// Font face object that specifies the physical font.
/// Receives the zero-based index of the matching font if the font was found, or UINT32_MAX otherwise.
/// Receives TRUE if the font exists or FALSE otherwise.
///
/// Standard HRESULT error code.
///
STDMETHOD(FindFontFace)(
IDWriteFontFace* fontFace,
_Out_ UINT32* listIndex,
_Out_ BOOL* exists
) PURE;
///
/// Returns the property values of a specific font item index.
///
/// Zero-based index of the font.
/// Font property of interest.
/// Receives the value TRUE if the font contains the specified property identifier or FALSE if not.
/// Receives a pointer to the newly created localized strings object, or nullptr on failure or non-existent property.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetPropertyValues)(
UINT32 listIndex,
DWRITE_FONT_PROPERTY_ID propertyId,
_Out_ BOOL* exists,
_COM_Outptr_result_maybenull_ IDWriteLocalizedStrings** values
) PURE;
///
/// Returns all unique property values in the set, which can be used
/// for purposes such as displaying a family list or tag cloud. Values are
/// returned in priority order according to the language list, such that if
/// a font contains more than one localized name, the preferred one will be
/// returned.
///
/// Font property of interest.
/// List of semicolon delimited language names in preferred
/// order. When a particular string like font family has more than one localized name,
/// the first match is returned.
/// Receives a pointer to the newly created strings list.
///
/// Standard HRESULT error code.
///
///
/// For example, suppose the font set includes the Meiryo family, which has both Japanese and English family names.
/// The returned list of distinct family names would include either the Japanese name (if "ja-jp" was specified as
/// a preferred locale) or the English name (in all other cases).
///
STDMETHOD(GetPropertyValues)(
DWRITE_FONT_PROPERTY_ID propertyID,
_In_z_ WCHAR const* preferredLocaleNames,
_COM_Outptr_ IDWriteStringList** values
) PURE;
///
/// Returns all unique property values in the set, which can be used
/// for purposes such as displaying a family list or tag cloud. All values
/// are returned regardless of language, including all localized names.
///
/// Font property of interest.
/// Receives a pointer to the newly created strings list.
///
/// Standard HRESULT error code.
///
///
/// For example, suppose the font set includes the Meiryo family, which has both Japanese and English family names.
/// The returned list of distinct family names would include both the Japanese and English names.
///
STDMETHOD(GetPropertyValues)(
DWRITE_FONT_PROPERTY_ID propertyID,
_COM_Outptr_ IDWriteStringList** values
) PURE;
///
/// Returns how many times a given property value occurs in the set.
///
/// Font property of interest.
/// How many times that property occurs.
///
/// Standard HRESULT error code.
///
///
/// For example, the family name "Segoe UI" may return a count of 12,
/// whereas Harrington only has 1.
///
STDMETHOD(GetPropertyOccurrenceCount)(
_In_ DWRITE_FONT_PROPERTY const* property,
_Out_ UINT32* propertyOccurrenceCount
) PURE;
///
/// Returns a subset of fonts filtered by the given properties.
///
/// List of properties to filter using.
/// How many properties to filter.
/// Subset of fonts that match the properties,
/// or nullptr on failure.
///
/// Standard HRESULT error code.
///
///
/// If no fonts matched the filter, the subset will be empty (GetFontCount
/// returns 0), but the function does not return an error. The subset will
/// always be equal to or less than the original set.
///
STDMETHOD(GetMatchingFonts)(
_In_reads_(propertyCount) DWRITE_FONT_PROPERTY const* properties,
UINT32 propertyCount,
_COM_Outptr_ IDWriteFontSet** filteredSet
) PURE;
///
/// Returns a list of fonts within the given WWS family prioritized by
/// WWS distance.
///
/// Neutral or localized family name of font.
/// Weight of font.
/// Stretch of font.
/// Slope of font.
/// Subset of fonts that match the properties,
/// or nullptr on failure.
///
/// Standard HRESULT error code.
///
///
/// The returned list can include simulated bold and oblique variants,
/// which would be useful for font fallback selection.
///
STDMETHOD(GetMatchingFonts)(
_In_z_ WCHAR const* familyName,
DWRITE_FONT_WEIGHT fontWeight,
DWRITE_FONT_STRETCH fontStretch,
DWRITE_FONT_STYLE fontStyle,
_COM_Outptr_ IDWriteFontSet** filteredSet
) PURE;
};
///
/// Builder interface to add font face references and create a font set.
///
DWRITE_BEGIN_INTERFACE(IDWriteFontSetBuilder, "2F642AFE-9C68-4F40-B8BE-457401AFCB3D") : IUnknown
{
///
/// Adds a reference to a font to the set being built. The necessary
/// metadata will automatically be extracted from the font upon calling
/// CreateFontSet.
///
/// Font face reference object to add to the set.
///
/// Standard HRESULT error code.
///
STDMETHOD(AddFontFaceReference)(
_In_ IDWriteFontFaceReference* fontFaceReference
) PURE;
///
/// Adds a reference to a font to the set being built. The caller
/// supplies enough information to search on, avoiding the need to open
/// the potentially non-local font. Any properties not supplied by the
/// caller will be missing, and those properties will not be available as
/// filters in GetMatchingFonts. GetPropertyValues for missing properties
/// will return an empty string list. The properties passed should generally
/// be consistent with the actual font contents, but they need not be. You
/// could, for example, alias a font using a different name or unique
/// identifier, or you could set custom tags not present in the actual
/// font.
///
/// Reference to the font.
/// List of properties to associate with the reference.
/// How many properties are defined.
///
/// Standard HRESULT error code.
///
STDMETHOD(AddFontFaceReference)(
_In_ IDWriteFontFaceReference* fontFaceReference,
_In_reads_(propertyCount) DWRITE_FONT_PROPERTY const* properties,
UINT32 propertyCount
) PURE;
///
/// Appends an existing font set to the one being built, allowing
/// one to aggregate two sets or to essentially extend an existing one.
///
/// Font set to append font face references from.
///
/// Standard HRESULT error code.
///
STDMETHOD(AddFontSet)(
_In_ IDWriteFontSet* fontSet
) PURE;
///
/// Creates a font set from all the font face references added so
/// far via AddFontFaceReference.
///
/// Receives a pointer to the newly created font set object, or nullptr in case of failure.
///
/// Standard HRESULT error code.
///
///
/// Creating a font set takes less time if the references were added
/// with metadata rather than needing to extract the metadata from the
/// font file.
///
STDMETHOD(CreateFontSet)(
_COM_Outptr_ IDWriteFontSet** fontSet
) PURE;
};
DWRITE_BEGIN_INTERFACE(IDWriteFontCollection1, "53585141-D9F8-4095-8321-D73CF6BD116C") : IDWriteFontCollection
{
///
/// Get the underlying font set used by this collection.
///
/// Contains font set used by the collection.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontSet)(
_COM_Outptr_ IDWriteFontSet** fontSet
) PURE;
///
/// Creates a font family object given a zero-based font family index.
///
/// Zero-based index of the font family.
/// Receives a pointer the newly created font family object.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontFamily)(
UINT32 index,
_COM_Outptr_ IDWriteFontFamily1** fontFamily
) PURE;
using IDWriteFontCollection::GetFontFamily;
};
///
/// The IDWriteFontFamily interface represents a set of fonts that share the same design but are differentiated
/// by weight, stretch, and style.
///
DWRITE_BEGIN_INTERFACE(IDWriteFontFamily1, "DA20D8EF-812A-4C43-9802-62EC4ABD7ADF") : IDWriteFontFamily
{
///
/// Gets the current locality of a font given its zero-based index.
///
/// Zero-based index of the font in the font list.
///
/// The locality enumeration. For fully local files, the result will always
/// be DWRITE_LOCALITY_LOCAL. For downloadable files, the result depends on how
/// much of the file has been downloaded, and GetFont() fails if the locality
/// is REMOTE and potentially fails if PARTIAL. The application can explicitly
/// ask for the font to be enqueued for download via EnqueueFontDownloadRequest
/// followed by BeginDownload().
///
///
/// The locality enumeration.
///
STDMETHOD_(DWRITE_LOCALITY, GetFontLocality)(UINT32 listIndex) PURE;
///
/// Gets a font given its zero-based index.
///
/// Zero-based index of the font in the font list.
/// Receives a pointer to the newly created font object.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFont)(
UINT32 listIndex,
_COM_Outptr_ IDWriteFont3** font
) PURE;
using IDWriteFontFamily::GetFont;
///
/// Gets a font face reference given its zero-based index.
///
/// Zero-based index of the font in the font list.
/// Receives a pointer to the newly created font face reference object.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontFaceReference)(
UINT32 listIndex,
_COM_Outptr_ IDWriteFontFaceReference** fontFaceReference
) PURE;
};
///
/// The IDWriteFontList interface represents a list of fonts.
///
DWRITE_BEGIN_INTERFACE(IDWriteFontList1, "DA20D8EF-812A-4C43-9802-62EC4ABD7ADE") : IDWriteFontList
{
///
/// Gets the current locality of a font given its zero-based index.
///
/// Zero-based index of the font in the font list.
///
/// The locality enumeration. For fully local files, the result will always
/// be DWRITE_LOCALITY_LOCAL. For downloadable files, the result depends on how
/// much of the file has been downloaded, and GetFont() fails if the locality
/// is REMOTE and potentially fails if PARTIAL. The application can explicitly
/// ask for the font to be enqueued for download via EnqueueFontDownloadRequest
/// followed by BeginDownload().
///
///
/// The locality enumeration.
///
STDMETHOD_(DWRITE_LOCALITY, GetFontLocality)(UINT32 listIndex) PURE;
///
/// Gets a font given its zero-based index.
///
/// Zero-based index of the font in the font list.
/// Receives a pointer to the newly created font object.
///
/// Standard HRESULT error code. The function returns DWRITE_E_REMOTEFONT if it could not construct a remote font.
///
STDMETHOD(GetFont)(
UINT32 listIndex,
_COM_Outptr_ IDWriteFont3** font
) PURE;
using IDWriteFontList::GetFont;
///
/// Gets a font face reference given its zero-based index.
///
/// Zero-based index of the font in the font list.
/// Receives a pointer to the newly created font face reference object.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontFaceReference)(
UINT32 listIndex,
_COM_Outptr_ IDWriteFontFaceReference** fontFaceReference
) PURE;
};
///
/// A uniquely identifying reference to a font, from which you can create a font
/// face to query font metrics and use for rendering. A font face reference
/// consists of a font file, font face index, and font face simulation. The file
/// data may or may not be physically present on the local machine yet.
///
DWRITE_BEGIN_INTERFACE(IDWriteFontFaceReference, "5E7FA7CA-DDE3-424C-89F0-9FCD6FED58CD") : IUnknown
{
///
/// Creates a font face from the reference for use with layout,
/// shaping, or rendering.
///
/// Newly created font face object, or nullptr in the case of failure.
///
/// Standard HRESULT error code.
///
///
/// This function can fail with DWRITE_E_REMOTEFONT if the font is not local.
///
STDMETHOD(CreateFontFace)(
_COM_Outptr_ IDWriteFontFace3** fontFace
) PURE;
///
/// Creates a font face with alternate font simulations, for example, to
/// explicitly simulate a bold font face out of a regular variant.
///
/// Font face simulation flags for algorithmic emboldening and italicization.
/// Newly created font face object, or nullptr in the case of failure.
///
/// Standard HRESULT error code.
///
///
/// This function can fail with DWRITE_E_REMOTEFONT if the font is not local.
///
STDMETHOD(CreateFontFaceWithSimulations)(
DWRITE_FONT_SIMULATIONS fontFaceSimulationFlags,
_COM_Outptr_ IDWriteFontFace3** fontFace
) PURE;
///
/// Compares two instances of a font face references for equality.
///
STDMETHOD_(BOOL, Equals)(IDWriteFontFaceReference* fontFaceReference) PURE;
///
/// Obtains the zero-based index of the font face in its font file. If the font files contain a single face,
/// the return value is zero.
///
STDMETHOD_(UINT32, GetFontFaceIndex)() PURE;
///
/// Obtains the algorithmic style simulation flags of a font face.
///
STDMETHOD_(DWRITE_FONT_SIMULATIONS, GetSimulations)() PURE;
///
/// Obtains the font file representing a font face.
///
STDMETHOD(GetFontFile)(
_COM_Outptr_ IDWriteFontFile** fontFile
) PURE;
///
/// Get the local size of the font face in bytes.
///
///
/// The value returned by GetLocalFileSize will always be less than or
/// equal to the value returned by GetFullSize. If the locality is remote,
/// the GetLocalFileSize value is zero. If the locality is local, this
/// value will equal the value returned by GetFileSize. If the locality is
/// partial, this value will equal the size of the portions of the font
/// data that have been downloaded, which will be greater than zero and
/// less than or equal to the GetFileSize value.
///
STDMETHOD_(UINT64, GetLocalFileSize)() PURE;
///
/// Get the total size of the font face in bytes.
///
///
/// If the locality is remote, this value is unknown and will be zero.
/// If the locality is partial or local, the value is the full size of
/// the font face.
///
STDMETHOD_(UINT64, GetFileSize)() PURE;
///
/// Get the last modified date.
///
///
/// The time may be zero if the font file loader does not expose file time.
///
STDMETHOD(GetFileTime)(_Out_ FILETIME* lastWriteTime) PURE;
///
/// Get the locality of this font face reference. You can always successfully
/// create a font face from a fully local font. Attempting to create a font
/// face on a remote or partially local font may fail with DWRITE_E_REMOTEFONT.
/// This function may change between calls depending on background downloads
/// and whether cached data expires.
///
STDMETHOD_(DWRITE_LOCALITY, GetLocality)() PURE;
///
/// Adds a request to the font download queue (IDWriteFontDownloadQueue).
///
///
/// Standard HRESULT error code.
///
STDMETHOD(EnqueueFontDownloadRequest)() PURE;
///
/// Adds a request to the font download queue (IDWriteFontDownloadQueue).
///
/// Array of characters to download.
/// The number of elements in the character array.
///
/// Standard HRESULT error code.
///
///
/// Downloading a character involves downloading every glyph it depends on
/// directly or indirectly, via font tables (cmap, GSUB, COLR, glyf).
///
STDMETHOD(EnqueueCharacterDownloadRequest)(
_In_reads_(characterCount) WCHAR const* characters,
UINT32 characterCount
) PURE;
///
/// Adds a request to the font download queue (IDWriteFontDownloadQueue).
///
/// Array of glyph indices to download.
/// The number of elements in the glyph index array.
///
/// Standard HRESULT error code.
///
///
/// Downloading a glyph involves downloading any other glyphs it depends on
/// from the font tables (GSUB, COLR, glyf).
///
STDMETHOD(EnqueueGlyphDownloadRequest)(
_In_reads_(glyphCount) UINT16 const* glyphIndices,
UINT32 glyphCount
) PURE;
///
/// Adds a request to the font download queue (IDWriteFontDownloadQueue).
///
/// Offset of the fragment from the beginning of the font file.
/// Size of the fragment in bytes.
///
/// Standard HRESULT error code.
///
STDMETHOD(EnqueueFileFragmentDownloadRequest)(
UINT64 fileOffset,
UINT64 fragmentSize
) PURE;
};
///
/// The IDWriteFont interface represents a font in a font collection.
///
DWRITE_BEGIN_INTERFACE(IDWriteFont3, "29748ED6-8C9C-4A6A-BE0B-D912E8538944") : IDWriteFont2
{
///
/// Creates a font face object for the font.
///
/// Receives a pointer to the newly created font face object.
///
/// Standard HRESULT error code. The function returns DWRITE_E_REMOTEFONT if it could not construct a remote font.
///
STDMETHOD(CreateFontFace)(
_COM_Outptr_ IDWriteFontFace3** fontFace
) PURE;
using IDWriteFont::CreateFontFace;
///
/// Compares two instances of a font references for equality.
///
STDMETHOD_(BOOL, Equals)(IDWriteFont* font) PURE;
///
/// Return a font face reference identifying this font.
///
/// A uniquely identifying reference to a font face.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontFaceReference)(
_COM_Outptr_ IDWriteFontFaceReference** fontFaceReference
) PURE;
///
/// Determines whether the font supports the specified character.
///
/// Unicode (UCS-4) character value.
///
/// Returns TRUE if the font has the specified character, FALSE if not.
///
STDMETHOD_(BOOL, HasCharacter)(
UINT32 unicodeValue
) PURE;
using IDWriteFont::HasCharacter;
///
/// Gets the current locality of the font.
///
///
/// The locality enumeration. For fully local files, the result will always
/// be DWRITE_LOCALITY_LOCAL. A downloadable file may be any of the states,
/// and this function may change between calls.
///
///
/// The locality enumeration.
///
STDMETHOD_(DWRITE_LOCALITY, GetLocality)() PURE;
};
///
/// The interface that represents an absolute reference to a font face.
/// It contains font face type, appropriate file references and face identification data.
/// Various font data such as metrics, names and glyph outlines is obtained from IDWriteFontFace.
///
DWRITE_BEGIN_INTERFACE(IDWriteFontFace3, "D37D7598-09BE-4222-A236-2081341CC1F2") : IDWriteFontFace2
{
///
/// Return a font face reference identifying this font.
///
/// A uniquely identifying reference to a font face.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontFaceReference)(
_COM_Outptr_ IDWriteFontFaceReference** fontFaceReference
) PURE;
///
/// Gets the PANOSE values from the font, used for font selection and
/// matching.
///
/// PANOSE structure to fill in.
///
/// The function does not simulate these, such as substituting a weight or
/// proportion inferred on other values. If the font does not specify them,
/// they are all set to 'any' (0).
///
STDMETHOD_(void, GetPanose)(
_Out_ DWRITE_PANOSE* panose
) PURE;
///
/// Gets the weight of the specified font.
///
STDMETHOD_(DWRITE_FONT_WEIGHT, GetWeight)() PURE;
///
/// Gets the stretch (aka. width) of the specified font.
///
STDMETHOD_(DWRITE_FONT_STRETCH, GetStretch)() PURE;
///
/// Gets the style (aka. slope) of the specified font.
///
STDMETHOD_(DWRITE_FONT_STYLE, GetStyle)() PURE;
///
/// Creates an localized strings object that contains the weight-stretch-style family names for the font family, indexed by locale name.
///
/// Receives a pointer to the newly created localized strings object.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFamilyNames)(
_COM_Outptr_ IDWriteLocalizedStrings** names
) PURE;
///
/// Gets a localized strings collection containing the weight-stretch-style face names for the font (e.g., Regular or Bold), indexed by locale name.
///
/// Receives a pointer to the newly created localized strings object.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFaceNames)(
_COM_Outptr_ IDWriteLocalizedStrings** names
) PURE;
///
/// Gets a localized strings collection containing the specified informational strings, indexed by locale name.
///
/// Identifies the string to get.
/// Receives a pointer to the newly created localized strings object.
/// Receives the value TRUE if the font contains the specified string ID or FALSE if not.
///
/// Standard HRESULT error code. If the font does not contain the specified string, the return value is S_OK but
/// informationalStrings receives a NULL pointer and exists receives the value FALSE.
///
STDMETHOD(GetInformationalStrings)(
DWRITE_INFORMATIONAL_STRING_ID informationalStringID,
_COM_Outptr_result_maybenull_ IDWriteLocalizedStrings** informationalStrings,
_Out_ BOOL* exists
) PURE;
///
/// Determines whether the font supports the specified character.
///
/// Unicode (UCS-4) character value.
///
/// Returns TRUE if the font has the specified character, FALSE if not.
///
STDMETHOD_(BOOL, HasCharacter)(
UINT32 unicodeValue
) PURE;
///
/// Determines the recommended text rendering and grid-fit mode to be used based on the
/// font, size, world transform, and measuring mode.
///
/// Logical font size in DIPs.
/// Number of pixels per logical inch in the horizontal direction.
/// Number of pixels per logical inch in the vertical direction.
/// Specifies the world transform.
/// Specifies the quality of the graphics system's outline rendering,
/// affects the size threshold above which outline rendering is used.
/// Specifies the method used to measure during text layout. For proper
/// glyph spacing, the function returns a rendering mode that is compatible with the specified
/// measuring mode.
/// Rendering parameters object. This parameter is necessary in case the rendering parameters
/// object overrides the rendering mode.
/// Receives the recommended rendering mode.
/// Receives the recommended grid-fit mode.
///
/// This method should be used to determine the actual rendering mode in cases where the rendering
/// mode of the rendering params object is DWRITE_RENDERING_MODE_DEFAULT, and the actual grid-fit
/// mode when the rendering params object is DWRITE_GRID_FIT_MODE_DEFAULT.
///
///
/// Standard HRESULT error code.
///
STDMETHOD(GetRecommendedRenderingMode)(
FLOAT fontEmSize,
FLOAT dpiX,
FLOAT dpiY,
_In_opt_ DWRITE_MATRIX const* transform,
BOOL isSideways,
DWRITE_OUTLINE_THRESHOLD outlineThreshold,
DWRITE_MEASURING_MODE measuringMode,
_In_opt_ IDWriteRenderingParams* renderingParams,
_Out_ DWRITE_RENDERING_MODE1* renderingMode,
_Out_ DWRITE_GRID_FIT_MODE* gridFitMode
) PURE;
using IDWriteFontFace2::GetRecommendedRenderingMode;
///
/// Determines whether the character is locally downloaded from the font.
///
/// Unicode (UCS-4) character value.
///
/// Returns TRUE if the font has the specified character locally available,
/// FALSE if not or if the font does not support that character.
///
STDMETHOD_(BOOL, IsCharacterLocal)(
UINT32 unicodeValue
) PURE;
///
/// Determines whether the glyph is locally downloaded from the font.
///
/// Glyph identifier.
///
/// Returns TRUE if the font has the specified glyph locally available.
///
STDMETHOD_(BOOL, IsGlyphLocal)(
UINT16 glyphId
) PURE;
///
/// Determines whether the specified characters are local.
///
/// Array of characters.
/// The number of elements in the character array.
/// Specifies whether to enqueue a download request
/// if any of the specified characters are not local.
/// Receives TRUE if all of the specified characters are local,
/// FALSE if any of the specified characters are remote.
///
/// Standard HRESULT error code.
///
STDMETHOD(AreCharactersLocal)(
_In_reads_(characterCount) WCHAR const* characters,
UINT32 characterCount,
BOOL enqueueIfNotLocal,
_Out_ BOOL* isLocal
) PURE;
///
/// Determines whether the specified glyphs are local.
///
/// Array of glyph indices.
/// The number of elements in the glyph index array.
/// Specifies whether to enqueue a download request
/// if any of the specified glyphs are not local.
/// Receives TRUE if all of the specified glyphs are local,
/// FALSE if any of the specified glyphs are remote.
///
/// Standard HRESULT error code.
///
STDMETHOD(AreGlyphsLocal)(
_In_reads_(glyphCount) UINT16 const* glyphIndices,
UINT32 glyphCount,
BOOL enqueueIfNotLocal,
_Out_ BOOL* isLocal
) PURE;
};
///
/// Represents a collection of strings indexed by number.
/// An IDWriteStringList is otherwise identical to IDWriteLocalizedStrings except
/// for the semantics, where localized strings are indexed on language (each
/// language has one string property) whereas a string list may contain multiple
/// strings of the same language, such as a string list of family names from a
/// font set. You can QueryInterface from an IDWriteLocalizedStrings to an
/// IDWriteStringList.
///
DWRITE_BEGIN_INTERFACE(IDWriteStringList, "CFEE3140-1157-47CA-8B85-31BFCF3F2D0E") : IUnknown
{
///
/// Gets the number of strings.
///
STDMETHOD_(UINT32, GetCount)() PURE;
///
/// Gets the length in characters (not including the null terminator) of the locale name with the specified index.
///
/// Zero-based index of the locale name.
/// Receives the length in characters, not including the null terminator.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetLocaleNameLength)(
UINT32 listIndex,
_Out_ UINT32* length
) PURE;
///
/// Copies the locale name with the specified index to the specified array.
///
/// Zero-based index of the locale name.
/// Character array that receives the locale name.
/// Size of the array in characters. The size must include space for the terminating
/// null character.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetLocaleName)(
UINT32 listIndex,
_Out_writes_z_(size) WCHAR* localeName,
UINT32 size
) PURE;
///
/// Gets the length in characters (not including the null terminator) of the string with the specified index.
///
/// Zero-based index of the string.
/// Receives the length in characters, not including the null terminator.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetStringLength)(
UINT32 listIndex,
_Out_ UINT32* length
) PURE;
///
/// Copies the string with the specified index to the specified array.
///
/// Zero-based index of the string.
/// Character array that receives the string.
/// Size of the array in characters. The size must include space for the terminating
/// null character.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetString)(
UINT32 listIndex,
_Out_writes_z_(stringBufferSize) WCHAR* stringBuffer,
UINT32 stringBufferSize
) PURE;
};
///
/// Application-defined callback interface that receives notifications from the font
/// download queue (IDWriteFontDownloadQueue interface). Callbacks will occur on the
/// downloading thread, and objects must be prepared to handle calls on their methods
/// from other threads at any time.
///
DWRITE_BEGIN_INTERFACE(IDWriteFontDownloadListener, "B06FE5B9-43EC-4393-881B-DBE4DC72FDA7") : IUnknown
{
///
/// The DownloadCompleted method is called back on an arbitrary thread when a
/// download operation ends.
///
/// Pointer to the download queue interface on which
/// the BeginDownload method was called.
/// Optional context object that was passed to BeginDownload.
/// AddRef is called on the context object by BeginDownload and Release is called
/// after the DownloadCompleted method returns.
/// Result of the download operation.
STDMETHOD_(void, DownloadCompleted)(
_In_ IDWriteFontDownloadQueue* downloadQueue,
_In_opt_ IUnknown* context,
HRESULT downloadResult
) PURE;
};
///
/// Interface that enqueues download requests for remote fonts, characters, glyphs, and font fragments.
/// Provides methods to asynchronously execute a download, cancel pending downloads, and be notified of
/// download completion. Callbacks to listeners will occur on the downloading thread, and objects must
/// be must be able to handle calls on their methods from other threads at any time.
///
DWRITE_BEGIN_INTERFACE(IDWriteFontDownloadQueue, "B71E6052-5AEA-4FA3-832E-F60D431F7E91") : IUnknown
{
///
/// Registers a client-defined listener object that receives download notifications.
/// All registered listener's DownloadCompleted will be called after BeginDownload
/// completes.
///
/// Listener object to add.
/// Receives a token value, which the caller must subsequently
/// pass to RemoveListener.
///
/// Standard HRESULT error code.
///
///
/// An IDWriteFontDownloadListener can also be passed to BeginDownload via the
/// context parameter, rather than globally registered to the queue.
///
STDMETHOD(AddListener)(
IDWriteFontDownloadListener* listener,
_Out_ UINT32* token
) PURE;
///
/// Unregisters a notification handler that was previously registered using
/// AddListener.
///
/// Token value previously returned by AddListener.
///
/// Returns S_OK if successful or E_INVALIDARG if the specified token does not
/// correspond to a registered listener.
///
STDMETHOD(RemoveListener)(
UINT32 token
) PURE;
///
/// Determines whether the download queue is empty. Note that the queue does not
/// include requests that are already being downloaded. In other words, BeginDownload
/// clears the queue.
///
///
/// TRUE if the queue is empty, FALSE if there are requests pending for BeginDownload.
///
STDMETHOD_(BOOL, IsEmpty)() PURE;
///
/// Begins an asynchronous download operation. The download operation executes
/// in the background until it completes or is cancelled by a CancelDownload call.
///
/// Optional context object that is passed back to the
/// download notification handler's DownloadCompleted method. If the context object
/// implements IDWriteFontDownloadListener, its DownloadCompleted will be called
/// when done.
///
/// Returns S_OK if a download was successfully begun, S_FALSE if the queue was
/// empty, or a standard HRESULT error code.
///
///
/// BeginDownload removes all download requests from the queue, transferring them
/// to a background download operation. If any previous downloads are still ongoing
/// when BeginDownload is called again, the new download does not complete until
/// the previous downloads have finished. If the queue is empty and no active
/// downloads are pending, the DownloadCompleted callback is called immediately with
/// DWRITE_DOWNLOAD_RESULT_NONE.
///
STDMETHOD(BeginDownload)(
_In_opt_ IUnknown* context = nullptr
) PURE;
///
/// Removes all download requests from the queue and cancels any active download
/// operations. This calls DownloadCompleted with DWRITE_E_DOWNLOADCANCELLED.
/// Applications should call this when shutting down if they started any
/// downloads that have not finished yet with a call to DownloadCompleted.
///
///
/// Standard HRESULT error code.
///
STDMETHOD(CancelDownload)() PURE;
///
/// Get the current generation number of the download queue, which is incremented
/// every time after a download completes, whether failed or successful. This cookie
/// comparison value may be used to compared against cached data to know when it is
/// stale.
///
///
/// The number of download queue generations.
///
STDMETHOD_(UINT64, GetGenerationCount)() PURE;
};
///
/// The GDI interop interface provides interoperability with GDI.
///
DWRITE_BEGIN_INTERFACE(IDWriteGdiInterop1, "4556BE70-3ABD-4F70-90BE-421780A6F515") : IDWriteGdiInterop
{
///
/// Creates a font object that matches the properties specified by the LOGFONT structure.
///
/// Structure containing a GDI-compatible font description.
/// The font collection to search. If NULL, the local system font collection is used.
/// Receives a newly created font object if successful, or NULL in case of error.
///
/// Standard HRESULT error code.
///
///
/// The only fields that matter include: lfFaceName, lfCharSet, lfWeight, lfItalic.
/// Font size and rendering mode are a rendering time property, not a font property,
/// and text decorations like underline are drawn separately from the text. If no
/// font matches the given weight, slope, and character set, the best match within
/// the given GDI family name will be returned. DWRITE_E_NOFONT is returned if there
/// is no matching font name using either the GDI family name (e.g. Arial) or the
/// full font name (e.g. Arial Bold Italic).
///
STDMETHOD(CreateFontFromLOGFONT)(
_In_ LOGFONTW const* logFont,
_In_opt_ IDWriteFontCollection* fontCollection,
_COM_Outptr_ IDWriteFont** font
) PURE;
///
/// Reads the font signature from the given font.
///
/// Font to read font signature from.
/// Font signature from the OS/2 table, ulUnicodeRange and ulCodePageRange.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontSignature)(
_In_ IDWriteFont* font,
_Out_ FONTSIGNATURE* fontSignature
) PURE;
///
/// Reads the font signature from the given font.
///
/// Font to read font signature from.
/// Font signature from the OS/2 table, ulUnicodeRange and ulCodePageRange.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontSignature)(
_In_ IDWriteFontFace* fontFace,
_Out_ FONTSIGNATURE* fontSignature
) PURE;
///
/// Get a list of matching fonts based on the LOGFONT values. Only fonts
/// of that family name will be returned.
///
///
/// Standard HRESULT error code.
///
STDMETHOD(GetMatchingFontsByLOGFONT)(
_In_ LOGFONTW const* logFont,
_In_ IDWriteFontSet* fontSet,
_COM_Outptr_ IDWriteFontSet** filteredSet
) PURE;
using IDWriteGdiInterop::CreateFontFromLOGFONT;
};
///
/// Information about a formatted line of text.
///
struct DWRITE_LINE_METRICS1 : DWRITE_LINE_METRICS
{
///
/// White space before the content of the line. This is included in the line height and baseline distances.
/// If the line is formatted horizontally either with a uniform line spacing or with proportional
/// line spacing, this value represents the extra space above the content.
///
FLOAT leadingBefore;
///
/// White space after the content of the line. This is included in the height of the line.
/// If the line is formatted horizontally either with a uniform line spacing or with proportional
/// line spacing, this value represents the extra space below the content.
///
FLOAT leadingAfter;
};
///
/// Specify whether DWRITE_FONT_METRICS::lineGap value should be part of the line metrics.
///
enum DWRITE_FONT_LINE_GAP_USAGE
{
///
/// The usage of the font line gap depends on the method used for text layout.
///
DWRITE_FONT_LINE_GAP_USAGE_DEFAULT,
///
/// The font line gap is excluded from line spacing
///
DWRITE_FONT_LINE_GAP_USAGE_DISABLED,
///
/// The font line gap is included in line spacing
///
DWRITE_FONT_LINE_GAP_USAGE_ENABLED
};
///
/// The DWRITE_LINE_SPACING structure specifies the parameters used to specify how to manage space between lines.
///
struct DWRITE_LINE_SPACING
{
///
/// Method used to determine line spacing.
///
DWRITE_LINE_SPACING_METHOD method;
///
/// Spacing between lines.
/// The interpretation of this parameter depends upon the line spacing method, as follows:
/// - default line spacing: ignored
/// - uniform line spacing: explicit distance in DIPs between lines
/// - proportional line spacing: a scaling factor to be applied to the computed line height;
/// for each line, the height of the line is computed as for default line spacing, and the scaling factor is applied to that value.
///
FLOAT height;
///
/// Distance from top of line to baseline.
/// The interpretation of this parameter depends upon the line spacing method, as follows:
/// - default line spacing: ignored
/// - uniform line spacing: explicit distance in DIPs from the top of the line to the baseline
/// - proportional line spacing: a scaling factor applied to the computed baseline; for each line,
/// the baseline distance is computed as for default line spacing, and the scaling factor is applied to that value.
///
FLOAT baseline;
///
/// Proportion of the entire leading distributed before the line. The allowed value is between 0 and 1.0. The remaining
/// leading is distributed after the line. It is ignored for the default and uniform line spacing methods.
/// The leading that is available to distribute before or after the line depends on the values of the height and
/// baseline parameters.
///
FLOAT leadingBefore;
///
/// Specify whether DWRITE_FONT_METRICS::lineGap value should be part of the line metrics.
///
DWRITE_FONT_LINE_GAP_USAGE fontLineGapUsage;
};
DWRITE_BEGIN_INTERFACE(IDWriteTextFormat2, "F67E0EDD-9E3D-4ECC-8C32-4183253DFE70") : IDWriteTextFormat1
{
///
/// Set line spacing.
///
/// How to manage space between lines.
///
/// Standard HRESULT error code.
///
STDMETHOD(SetLineSpacing)(_In_ DWRITE_LINE_SPACING const* lineSpacingOptions) PURE;
///
/// Get line spacing.
///
/// How to manage space between lines.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetLineSpacing)(_Out_ DWRITE_LINE_SPACING* lineSpacingOptions) PURE;
using IDWriteTextFormat1::SetLineSpacing;
using IDWriteTextFormat1::GetLineSpacing;
};
DWRITE_BEGIN_INTERFACE(IDWriteTextLayout3, "07DDCD52-020E-4DE8-AC33-6C953D83F92D") : IDWriteTextLayout2
{
///
/// Invalidates the layout, forcing layout to remeasure before calling the
/// metrics or drawing functions. This is useful if the locality of a font
/// changes, and layout should be redrawn, or if the size of a client
/// implemented IDWriteInlineObject changes.
///
///
/// Standard HRESULT error code.
///
STDMETHOD(InvalidateLayout)() PURE;
///
/// Set line spacing.
///
/// How to manage space between lines.
///
/// Standard HRESULT error code.
///
STDMETHOD(SetLineSpacing)(_In_ DWRITE_LINE_SPACING const* lineSpacingOptions) PURE;
///
/// Get line spacing.
///
/// How to manage space between lines.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetLineSpacing)(_Out_ DWRITE_LINE_SPACING* lineSpacingOptions) PURE;
///
/// GetLineMetrics returns properties of each line.
///
/// The array to fill with line information.
/// The maximum size of the lineMetrics array.
/// The actual size of the lineMetrics
/// array that is needed.
///
/// Standard HRESULT error code.
///
///
/// If maxLineCount is not large enough E_NOT_SUFFICIENT_BUFFER,
/// which is equivalent to HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER),
/// is returned and *actualLineCount is set to the number of lines
/// needed.
///
STDMETHOD(GetLineMetrics)(
_Out_writes_to_opt_(maxLineCount, *actualLineCount) DWRITE_LINE_METRICS1* lineMetrics,
UINT32 maxLineCount,
_Out_ UINT32* actualLineCount
) PURE;
using IDWriteTextLayout2::SetLineSpacing;
using IDWriteTextLayout2::GetLineSpacing;
using IDWriteTextLayout2::GetLineMetrics;
};
////////////////////////////////////////////////////////////////////////////////////////////////////
#if DWRITE_CORE || NTDDI_VERSION >= /*NTDDI_WIN10_RS1*/0x0A000002
///
/// Represents a color glyph run. The IDWriteFactory4::TranslateColorGlyphRun
/// method returns an ordered collection of color glyph runs of varying types
/// depending on what the font supports.
///
///
/// For runs without any specific color, such as PNG data, the runColor field will be zero.
///
struct DWRITE_COLOR_GLYPH_RUN1 : DWRITE_COLOR_GLYPH_RUN
{
///
/// Type of glyph image format for this color run. Exactly one type will be set since
/// TranslateColorGlyphRun has already broken down the run into separate parts.
///
DWRITE_GLYPH_IMAGE_FORMATS glyphImageFormat;
///
/// Measuring mode to use for this glyph run.
///
DWRITE_MEASURING_MODE measuringMode;
};
///
/// Data for a single glyph from GetGlyphImageData.
///
struct DWRITE_GLYPH_IMAGE_DATA
{
///
/// Pointer to the glyph data, be it SVG, PNG, JPEG, TIFF.
///
_Field_size_bytes_(imageDataSize) void const* imageData;
///
/// Size of glyph data in bytes.
///
UINT32 imageDataSize;
///
/// Unique identifier for the glyph data. Clients may use this to cache a parsed/decompressed
/// version and tell whether a repeated call to the same font returns the same data.
///
UINT32 uniqueDataId;
///
/// Pixels per em of the returned data. For non-scalable raster data (PNG/TIFF/JPG), this can be larger
/// or smaller than requested from GetGlyphImageData when there isn't an exact match.
/// For scaling intermediate sizes, use: desired pixels per em * font em size / actual pixels per em.
///
UINT32 pixelsPerEm;
///
/// Size of image when the format is pixel data.
///
D2D1_SIZE_U pixelSize;
///
/// Left origin along the horizontal Roman baseline.
///
D2D1_POINT_2L horizontalLeftOrigin;
///
/// Right origin along the horizontal Roman baseline.
///
D2D1_POINT_2L horizontalRightOrigin;
///
/// Top origin along the vertical central baseline.
///
D2D1_POINT_2L verticalTopOrigin;
///
/// Bottom origin along vertical central baseline.
///
D2D1_POINT_2L verticalBottomOrigin;
};
///
/// Enumerator for an ordered collection of color glyph runs.
///
DWRITE_BEGIN_INTERFACE(IDWriteColorGlyphRunEnumerator1, "7C5F86DA-C7A1-4F05-B8E1-55A179FE5A35") : IDWriteColorGlyphRunEnumerator
{
///
/// Gets the current color glyph run.
///
/// Receives a pointer to the color
/// glyph run. The pointer remains valid until the next call to
/// MoveNext or until the interface is released.
///
/// Standard HRESULT error code. An error is returned if there is
/// no current glyph run, i.e., if MoveNext has not yet been called
/// or if the end of the sequence has been reached.
///
STDMETHOD(GetCurrentRun)(
_Outptr_ DWRITE_COLOR_GLYPH_RUN1 const** colorGlyphRun
) PURE;
using IDWriteColorGlyphRunEnumerator::GetCurrentRun;
};
///
/// The interface that represents an absolute reference to a font face.
/// It contains font face type, appropriate file references and face identification data.
/// Various font data such as metrics, names and glyph outlines is obtained from IDWriteFontFace.
///
DWRITE_BEGIN_INTERFACE(IDWriteFontFace4, "27F2A904-4EB8-441D-9678-0563F53E3E2F") : IDWriteFontFace3
{
///
/// Gets all the glyph image formats supported by the entire font (SVG, PNG, JPEG, ...).
///
STDMETHOD_(DWRITE_GLYPH_IMAGE_FORMATS, GetGlyphImageFormats)() PURE;
///
/// Gets the available image formats of a specific glyph and ppem. Glyphs often have at least TrueType
/// or CFF outlines, but they may also have SVG outlines, or they may have only bitmaps
/// with no TrueType/CFF outlines. Some image formats, notably the PNG/JPEG ones, are size
/// specific and will return no match when there isn't an entry in that size range.
///
///
/// Glyph ids beyond the glyph count return DWRITE_GLYPH_IMAGE_FORMATS_NONE.
///
STDMETHOD(GetGlyphImageFormats)(
UINT16 glyphId,
UINT32 pixelsPerEmFirst,
UINT32 pixelsPerEmLast,
_Out_ DWRITE_GLYPH_IMAGE_FORMATS* glyphImageFormats
) PURE;
///
/// Gets a pointer to the glyph data based on the desired image format.
///
///
/// The glyphDataContext must be released via ReleaseGlyphImageData when done if the data is not empty,
/// similar to IDWriteFontFileStream::ReadFileFragment and IDWriteFontFileStream::ReleaseFileFragment.
/// The data pointer is valid so long as the IDWriteFontFace exists and ReleaseGlyphImageData has not
/// been called.
///
///
/// The DWRITE_GLYPH_IMAGE_DATA::uniqueDataId is valuable for caching purposes so that if the same
/// resource is returned more than once, an existing resource can be quickly retrieved rather than
/// needing to reparse or decompress the data.
///
///
/// The function only returns SVG or raster data - requesting TrueType/CFF/COLR data returns
/// DWRITE_E_INVALIDARG. Those must be drawn via DrawGlyphRun or queried using GetGlyphOutline instead.
/// Exactly one format may be requested or else the function returns DWRITE_E_INVALIDARG.
/// If the glyph does not have that format, the call is not an error, but the function returns empty data.
///
STDMETHOD(GetGlyphImageData)(
_In_ UINT16 glyphId,
UINT32 pixelsPerEm,
DWRITE_GLYPH_IMAGE_FORMATS glyphImageFormat,
_Out_ DWRITE_GLYPH_IMAGE_DATA* glyphData,
_Outptr_result_maybenull_ void** glyphDataContext
) PURE;
///
/// Releases the table data obtained earlier from ReadGlyphData.
///
/// Opaque context from ReadGlyphData.
STDMETHOD_(void, ReleaseGlyphImageData)(
void* glyphDataContext
) PURE;
};
DWRITE_BEGIN_INTERFACE(IDWriteFactory4, "4B0B5BD3-0797-4549-8AC5-FE915CC53856") : IDWriteFactory3
{
///
/// Translates a glyph run to a sequence of color glyph runs, which can be
/// rendered to produce a color representation of the original "base" run.
///
/// Horizontal and vertical origin of the base glyph run in
/// pre-transform coordinates.
/// Pointer to the original "base" glyph run.
/// Optional glyph run description.
/// Which data formats TranslateColorGlyphRun
/// should split the runs into.
/// Measuring mode, needed to compute the origins
/// of each glyph.
/// Matrix converting from the client's
/// coordinate space to device coordinates (pixels), i.e., the world transform
/// multiplied by any DPI scaling.
/// Zero-based index of the color palette to use.
/// Valid indices are less than the number of palettes in the font, as returned
/// by IDWriteFontFace2::GetColorPaletteCount.
/// If the function succeeds, receives a pointer
/// to an enumerator object that can be used to obtain the color glyph runs.
/// If the base run has no color glyphs, then the output pointer is NULL
/// and the method returns DWRITE_E_NOCOLOR.
///
/// Returns DWRITE_E_NOCOLOR if the font has no color information, the glyph run
/// does not contain any color glyphs, or the specified color palette index
/// is out of range. In this case, the client should render the original glyph
/// run. Otherwise, returns a standard HRESULT error code.
///
///
/// The old IDWriteFactory2::TranslateColorGlyphRun is equivalent to passing
/// DWRITE_GLYPH_IMAGE_FORMATS_TRUETYPE|CFF|COLR.
///
STDMETHOD(TranslateColorGlyphRun)(
D2D1_POINT_2F baselineOrigin,
_In_ DWRITE_GLYPH_RUN const* glyphRun,
_In_opt_ DWRITE_GLYPH_RUN_DESCRIPTION const* glyphRunDescription,
DWRITE_GLYPH_IMAGE_FORMATS desiredGlyphImageFormats,
DWRITE_MEASURING_MODE measuringMode,
_In_opt_ DWRITE_MATRIX const* worldAndDpiTransform,
UINT32 colorPaletteIndex,
_COM_Outptr_ IDWriteColorGlyphRunEnumerator1** colorLayers
) PURE;
using IDWriteFactory2::TranslateColorGlyphRun;
///
/// Converts glyph run placements to glyph origins.
///
///
/// Standard HRESULT error code.
///
///
/// The transform and DPI have no affect on the origin scaling.
/// They are solely used to compute glyph advances when not supplied
/// and align glyphs in pixel aligned measuring modes.
///
STDMETHOD(ComputeGlyphOrigins)(
DWRITE_GLYPH_RUN const* glyphRun,
DWRITE_MEASURING_MODE measuringMode,
D2D1_POINT_2F baselineOrigin,
_In_opt_ DWRITE_MATRIX const* worldAndDpiTransform,
_Out_writes_(glyphRun->glyphCount) D2D1_POINT_2F* glyphOrigins
) PURE;
///
/// Converts glyph run placements to glyph origins. This overload is for natural metrics, which
/// includes SVG, TrueType natural modes, and bitmap placement.
///
STDMETHOD(ComputeGlyphOrigins)(
DWRITE_GLYPH_RUN const* glyphRun,
D2D1_POINT_2F baselineOrigin,
_Out_writes_(glyphRun->glyphCount) D2D1_POINT_2F* glyphOrigins
) PURE;
};
#endif // DWRITE_CORE || NTDDI_VERSION >= NTDDI_WIN10_RS1
////////////////////////////////////////////////////////////////////////////////////////////////////
#if DWRITE_CORE || NTDDI_VERSION >= /*NTDDI_WIN10_RS2*/0x0A000003
DWRITE_BEGIN_INTERFACE(IDWriteFontSetBuilder1, "3FF7715F-3CDC-4DC6-9B72-EC5621DCCAFD") : IDWriteFontSetBuilder
{
///
/// Adds references to all the fonts in the specified font file. The method
/// parses the font file to determine the fonts and their properties.
///
/// Font file reference object to add to the set.
///
/// Standard HRESULT error code.
///
STDMETHOD(AddFontFile)(
_In_ IDWriteFontFile* fontFile
) PURE;
};
///
/// The IDWriteAsyncResult interface represents the result of an asynchronous
/// operation. A client can use the interface to wait for the operation to
/// complete and to get the result.
///
DWRITE_BEGIN_INTERFACE(IDWriteAsyncResult, "CE25F8FD-863B-4D13-9651-C1F88DC73FE2") : IUnknown
{
///
/// The GetWaitHandleMethod method returns a handle that can be used to wait
/// for the asynchronous operation to complete. The handle remains valid
/// until the interface is released.
///
STDMETHOD_(HANDLE, GetWaitHandle)() PURE;
///
/// The GetResult method returns the result of the asynchronous operation.
/// The return value is E_PENDING if the operation has not yet completed.
///
STDMETHOD(GetResult)() PURE;
};
///
/// DWRITE_FILE_FRAGMENT represents a range of bytes in a font file.
///
struct DWRITE_FILE_FRAGMENT
{
///
/// Starting offset of the fragment from the beginning of the file.
///
UINT64 fileOffset;
///
/// Size of the file fragment, in bytes.
///
UINT64 fragmentSize;
};
///
/// IDWriteRemoteFontFileStream represents a font file stream parts of which may be
/// non-local. Non-local data must be downloaded before it can be accessed using
/// ReadFragment. The interface exposes methods to download font data and query the
/// locality of font data.
///
///
/// For more information, see the description of IDWriteRemoteFontFileLoader.
///
DWRITE_BEGIN_INTERFACE(IDWriteRemoteFontFileStream, "4DB3757A-2C72-4ED9-B2B6-1ABABE1AFF9C") : IDWriteFontFileStream
{
///
/// GetLocalFileSize returns the number of bytes of the font file that are
/// currently local, which should always be less than or equal to the full
/// file size returned by GetFileSize. If the locality is remote, the return
/// value is zero. If the file is fully local, the return value must be the
/// same as GetFileSize.
///
/// Receives the local size of the file.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetLocalFileSize)(
_Out_ UINT64* localFileSize
) PURE;
///
/// GetFileFragmentLocality returns information about the locality of a byte range (i.e.,
/// font fragment) within the font file stream.
///
/// Offset of the fragment from the beginning of the font file.
/// Size of the fragment in bytes.
/// Receives TRUE if the first byte of the fragment is local, FALSE if not.
/// Receives the number of contiguous bytes from the start of the
/// fragment that have the same locality as the first byte.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFileFragmentLocality)(
UINT64 fileOffset,
UINT64 fragmentSize,
_Out_ BOOL* isLocal,
_Out_range_(0, fragmentSize) UINT64* partialSize
) PURE;
///
/// Gets the current locality of the file.
///
///
/// Returns the locality enumeration (i.e., remote, partial, or local).
///
STDMETHOD_(DWRITE_LOCALITY, GetLocality)() PURE;
///
/// BeginDownload begins downloading all or part of the font file.
///
/// Unique identifier of a download
/// operation.
/// Array of structures, each specifying a byte
/// range to download.
/// Number of elements in the fileFragments array.
/// This can be zero to just download file information, such as the size.
/// Receives an object that can be used to wait for
/// the asynchronous download to complete and to get the download result upon
/// completion. The result may be NULL if the download completes synchronously.
/// For example, this can happen if method determines that the requested data
/// is already local.
///
/// Standard HRESULT error code.
///
STDMETHOD(BeginDownload)(
_In_ UUID const* downloadOperationID,
_In_reads_(fragmentCount) DWRITE_FILE_FRAGMENT const* fileFragments,
UINT32 fragmentCount,
_COM_Outptr_result_maybenull_ IDWriteAsyncResult** asyncResult
) PURE;
};
///
/// Specifies the container format of a font resource. A container format is distinct from
/// a font file format (DWRITE_FONT_FILE_TYPE) because the container describes the container
/// in which the underlying font file is packaged.
///
enum DWRITE_CONTAINER_TYPE
{
DWRITE_CONTAINER_TYPE_UNKNOWN,
DWRITE_CONTAINER_TYPE_WOFF,
DWRITE_CONTAINER_TYPE_WOFF2
};
///
/// The IDWriteRemoteFontFileLoader interface represents a font file loader that can access
/// remote (i.e., downloadable) fonts. The IDWriteFactory5::CreateHttpFontFileLoader method
/// returns an instance of this interface, or a client can create its own implementation.
///
///
/// Calls to a remote file loader or stream should never block waiting for network operations.
/// Any call that cannot succeeded immediately using local (e.g., cached) must should return
/// DWRITE_E_REMOTEFONT. This error signifies to DWrite that it should add requests to the
/// font download queue.
///
DWRITE_BEGIN_INTERFACE(IDWriteRemoteFontFileLoader, "68648C83-6EDE-46C0-AB46-20083A887FDE") : IDWriteFontFileLoader
{
///
/// Creates a remote font file stream object that encapsulates an open file resource
/// and can be used to download remote file data.
///
/// Font file reference key that uniquely identifies the font file resource
/// within the scope of the font loader being used.
/// Size of font file reference key in bytes.
/// Pointer to the newly created font file stream.
///
/// Standard HRESULT error code.
///
///
/// Unlike CreateStreamFromKey, this method can be used to create a stream for a remote file. If the file is
/// remote, the returned stream's BeginDownload method can be used to download all or part of the font file.
/// However, the stream cannot be used to get the file size or access font data unless the file is at least
/// partially local.
///
STDMETHOD(CreateRemoteStreamFromKey)(
_In_reads_bytes_(fontFileReferenceKeySize) void const* fontFileReferenceKey,
UINT32 fontFileReferenceKeySize,
_COM_Outptr_ IDWriteRemoteFontFileStream** fontFileStream
) PURE;
///
/// Gets the locality of the file resource identified by the unique key.
///
/// Font file reference key that uniquely identifies the font file resource
/// within the scope of the font loader being used.
/// Size of font file reference key in bytes.
/// Locality of the file.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetLocalityFromKey)(
_In_reads_bytes_(fontFileReferenceKeySize) void const* fontFileReferenceKey,
UINT32 fontFileReferenceKeySize,
_Out_ DWRITE_LOCALITY* locality
) PURE;
///
/// Creates a font file reference from a URL if the loader supports this capability.
///
/// Factory used to create the font file reference.
/// Optional base URL. The base URL is used to resolve the fontFileUrl
/// if it is relative. For example, the baseUrl might be the URL of the referring document
/// that contained the fontFileUrl.
/// URL of the font resource.
/// Receives a pointer to the newly created font file reference.
///
/// Standard HRESULT error code, or E_NOTIMPL if the loader does not implement this method.
///
STDMETHOD(CreateFontFileReferenceFromUrl)(
IDWriteFactory* factory,
_In_opt_z_ WCHAR const* baseUrl,
_In_z_ WCHAR const* fontFileUrl,
_COM_Outptr_ IDWriteFontFile** fontFile
) PURE;
};
///
/// The IDWriteInMemoryFontFileLoader interface enables clients to reference
/// in-memory fonts without having to implement a custom loader. The
/// IDWriteFactory5::CreateInMemoryFontFileLoader method returns an instance
/// of this interface, which the client is responsible for registering and
/// unregistering using IDWriteFactory::RegisterFontFileLoader and
/// IDWriteFactory::UnregisterFontFileLoader.
///
DWRITE_BEGIN_INTERFACE(IDWriteInMemoryFontFileLoader, "DC102F47-A12D-4B1C-822D-9E117E33043F") : IDWriteFontFileLoader
{
///
/// The CreateInMemoryFontFileReference method creates a font file reference
/// (IDWriteFontFile object) from an array of bytes. The font file reference
/// is bound to the IDWriteInMemoryFontFileLoader instance with which it was
/// created and remains valid for as long as that loader is registered with
/// the factory.
///
/// Factory object used to create the font file reference.
/// Pointer to a memory block containing the font data.
/// Size of the font data.
/// Optional object that owns the memory specified by
/// the fontData parameter. If this parameter is not NULL, the method stores a
/// pointer to the font data and adds a reference to the owner object. The
/// fontData pointer must remain valid until the owner object is released. If
/// this parameter is NULL, the method makes a copy of the font data.
/// Receives a pointer to the newly-created font file
/// reference.
///
/// Standard HRESULT error code.
///
STDMETHOD(CreateInMemoryFontFileReference)(
IDWriteFactory* factory,
_In_reads_bytes_(fontDataSize) void const* fontData,
UINT32 fontDataSize,
_In_opt_ IUnknown* ownerObject,
_COM_Outptr_ IDWriteFontFile** fontFile
) PURE;
///
/// The GetFileCount method returns the number of font file references that
/// have been created using this loader instance.
///
STDMETHOD_(UINT32, GetFileCount)() PURE;
};
///
/// The root factory interface for all DWrite objects.
///
DWRITE_BEGIN_INTERFACE(IDWriteFactory5, "958DB99A-BE2A-4F09-AF7D-65189803D1D3") : IDWriteFactory4
{
///
/// Creates an empty font set builder to add font face references
/// and create a custom font set.
///
/// Receives a pointer to the newly created font set builder object, or nullptr in case of failure.
///
/// Standard HRESULT error code.
///
STDMETHOD(CreateFontSetBuilder)(
_COM_Outptr_ IDWriteFontSetBuilder1** fontSetBuilder
) PURE;
using IDWriteFactory3::CreateFontSetBuilder;
///
/// The CreateInMemoryFontFileLoader method creates a loader object that can
/// be used to create font file references to in-memory fonts. The caller is
/// responsible for registering and unregistering the loader.
///
/// Receives a pointer to the newly-created loader object.
///
/// Standard HRESULT error code.
///
STDMETHOD(CreateInMemoryFontFileLoader)(
_COM_Outptr_ IDWriteInMemoryFontFileLoader** newLoader
) PURE;
///
/// The CreateHttpFontFileLoader function creates a remote font file loader
/// that can create font file references from HTTP or HTTPS URLs. The caller
/// is responsible for registering and unregistering the loader.
///
/// Optional referrer URL for HTTP requests.
/// Optional additional header fields to include
/// in HTTP requests. Each header field consists of a name followed by a colon
/// (":") and the field value, as specified by RFC 2616. Multiple header fields
/// may be separated by newlines.
/// Receives a pointer to the newly-created loader object.
///
/// Standard HRESULT error code.
///
STDMETHOD(CreateHttpFontFileLoader)(
_In_opt_z_ WCHAR const* referrerUrl,
_In_opt_z_ WCHAR const* extraHeaders,
_COM_Outptr_ IDWriteRemoteFontFileLoader** newLoader
) PURE;
///
/// The AnalyzeContainerType method analyzes the specified file data to determine
/// whether it is a known font container format (e.g., WOFF or WOFF2).
///
///
/// Returns the container type if recognized. DWRITE_CONTAINER_TYPE_UNKOWNN is
/// returned for all other files, including uncompressed font files.
///
STDMETHOD_(DWRITE_CONTAINER_TYPE, AnalyzeContainerType)(
_In_reads_bytes_(fileDataSize) void const* fileData,
UINT32 fileDataSize
) PURE;
///
/// The UnpackFontFile method unpacks font data from a container file (WOFF or
/// WOFF2) and returns the unpacked font data in the form of a font file stream.
///
/// Container type returned by AnalyzeContainerType.
/// Pointer to the compressed data.
/// Size of the compressed data, in bytes.
/// Receives a pointer to a newly created font
/// file stream containing the uncompressed data.
///
/// Standard HRESULT error code. The return value is E_INVALIDARG if the container
/// type is DWRITE_CONTAINER_TYPE_UNKNOWN.
///
STDMETHOD(UnpackFontFile)(
DWRITE_CONTAINER_TYPE containerType,
_In_reads_bytes_(fileDataSize) void const* fileData,
UINT32 fileDataSize,
_COM_Outptr_ IDWriteFontFileStream** unpackedFontStream
) PURE;
};
#endif // DWRITE_CORE || NTDDI_VERSION >= NTDDI_WIN10_RS2
////////////////////////////////////////////////////////////////////////////////////////////////////
#if DWRITE_CORE || NTDDI_VERSION >= /*NTDDI_WIN10_RS3*/0x0A000004
interface IDWriteFontResource;
interface IDWriteFontFace5;
interface IDWriteFontFaceReference1;
interface IDWriteFontSet1;
interface IDWriteFontCollection2;
interface IDWriteTextFormat3;
interface IDWriteFontSetBuilder2;
///
/// Creates an OpenType tag for a font axis.
///
#define DWRITE_MAKE_FONT_AXIS_TAG(a,b,c,d) (static_cast(DWRITE_MAKE_OPENTYPE_TAG(a,b,c,d)))
///
/// Four character identifier for a font axis.
///
///
/// Use DWRITE_MAKE_FONT_AXIS_TAG() to create a custom one.
///
enum DWRITE_FONT_AXIS_TAG : UINT32
{
DWRITE_FONT_AXIS_TAG_WEIGHT = DWRITE_MAKE_FONT_AXIS_TAG('w','g','h','t'),
DWRITE_FONT_AXIS_TAG_WIDTH = DWRITE_MAKE_FONT_AXIS_TAG('w','d','t','h'),
DWRITE_FONT_AXIS_TAG_SLANT = DWRITE_MAKE_FONT_AXIS_TAG('s','l','n','t'),
DWRITE_FONT_AXIS_TAG_OPTICAL_SIZE = DWRITE_MAKE_FONT_AXIS_TAG('o','p','s','z'),
DWRITE_FONT_AXIS_TAG_ITALIC = DWRITE_MAKE_FONT_AXIS_TAG('i','t','a','l'),
};
#define DWRITE_STANDARD_FONT_AXIS_COUNT 5
///
/// Value for a font axis, used when querying and creating font instances.
///
struct DWRITE_FONT_AXIS_VALUE
{
///
/// Four character identifier of the font axis (weight, width, slant, italic...).
///
DWRITE_FONT_AXIS_TAG axisTag;
///
/// Value for the given axis, with the meaning and range depending on the axis semantics.
/// Certain well known axes have standard ranges and defaults, such as weight (1..1000, default=400),
/// width (>0, default=100), slant (-90..90, default=-20), and italic (0 or 1).
///
FLOAT value;
};
///
/// Minimum and maximum range of a font axis.
///
struct DWRITE_FONT_AXIS_RANGE
{
///
/// Four character identifier of the font axis (weight, width, slant, italic...).
///
DWRITE_FONT_AXIS_TAG axisTag;
///
/// Minimum value supported by this axis.
///
FLOAT minValue;
///
/// Maximum value supported by this axis. The maximum can equal the minimum.
///
FLOAT maxValue;
};
///
/// How font families are grouped together, used by IDWriteFontCollection.
///
enum DWRITE_FONT_FAMILY_MODEL
{
///
/// Families are grouped by the typographic family name preferred by the font author. The family can contain as
/// many face as the font author wants.
/// This corresponds to the DWRITE_FONT_PROPERTY_ID_TYPOGRAPHIC_FAMILY_NAME.
///
DWRITE_FONT_FAMILY_MODEL_TYPOGRAPHIC,
///
/// Families are grouped by the weight-stretch-style family name, where all faces that differ only by those three
/// axes are grouped into the same family, but any other axes go into a distinct family. For example, the Sitka
/// family with six different optical sizes yields six separate families (Sitka Caption, Display, Text, Subheading,
/// Heading, Banner...). This corresponds to the DWRITE_FONT_PROPERTY_ID_WEIGHT_STRETCH_STYLE_FAMILY_NAME.
///
DWRITE_FONT_FAMILY_MODEL_WEIGHT_STRETCH_STYLE,
};
///
/// Apply certain axes automatically in layout during font selection.
///
enum DWRITE_AUTOMATIC_FONT_AXES
{
///
/// No axes are automatically applied.
///
DWRITE_AUTOMATIC_FONT_AXES_NONE = 0x0000,
///
/// Automatically pick an appropriate optical value based on the font size (via SetFontSize) when no value is
/// specified via DWRITE_FONT_AXIS_TAG_OPTICAL_SIZE. Callers can still explicitly apply the 'opsz' value over
/// text ranges via SetFontAxisValues, which take priority.
///
DWRITE_AUTOMATIC_FONT_AXES_OPTICAL_SIZE = 0x0001,
};
#ifdef DEFINE_ENUM_FLAG_OPERATORS
DEFINE_ENUM_FLAG_OPERATORS(DWRITE_AUTOMATIC_FONT_AXES)
#endif
///
/// Attributes for a font axis.
///
enum DWRITE_FONT_AXIS_ATTRIBUTES
{
///
/// No attributes.
///
DWRITE_FONT_AXIS_ATTRIBUTES_NONE = 0x0000,
///
/// This axis is implemented as a variation axis in a variable font, with a continuous range of
/// values, such as a range of weights from 100..900. Otherwise it is either a static axis that
/// holds a single point, or it has a range but doesn't vary, such as optical size in the Skia
/// Heading font which covers a range of points but doesn't interpolate any new glyph outlines.
///
DWRITE_FONT_AXIS_ATTRIBUTES_VARIABLE = 0x0001,
///
/// This axis is recommended to be remain hidden in user interfaces. The font developer may
/// recommend this if an axis is intended to be accessed only programmatically, or is meant for
/// font-internal or font-developer use only. The axis may be exposed in lower-level font
/// inspection utilities, but should not be exposed in common or even advanced-mode user
/// interfaces in content-authoring apps.
///
DWRITE_FONT_AXIS_ATTRIBUTES_HIDDEN = 0x0002,
};
#ifdef DEFINE_ENUM_FLAG_OPERATORS
DEFINE_ENUM_FLAG_OPERATORS(DWRITE_FONT_AXIS_ATTRIBUTES)
#endif
DWRITE_BEGIN_INTERFACE(IDWriteFactory6, "F3744D80-21F7-42EB-B35D-995BC72FC223") : IDWriteFactory5
{
///
/// Creates a reference to a specific font instance within a file.
///
/// User provided font file representing the font face.
/// The zero based index of a font face in cases when the font files contain a collection of font faces.
/// If the font files contain a single face, this value should be zero.
/// Font face simulation flags for algorithmic emboldening and italicization.
/// List of font axis values.
/// Number of font axis values.
/// Receives a pointer to the newly created font face reference object, or nullptr in case of failure.
///
/// Standard HRESULT error code.
///
STDMETHOD(CreateFontFaceReference)(
_In_ IDWriteFontFile* fontFile,
UINT32 faceIndex,
DWRITE_FONT_SIMULATIONS fontSimulations,
_In_reads_(fontAxisValueCount) DWRITE_FONT_AXIS_VALUE const* fontAxisValues,
UINT32 fontAxisValueCount,
_COM_Outptr_ IDWriteFontFaceReference1** fontFaceReference
) PURE;
using IDWriteFactory5::CreateFontFaceReference;
///
/// Creates a font resource given a font file and face index.
///
/// User provided font file representing the font face.
/// The zero based index of a font face in cases when the font files contain a collection of font faces.
/// If the font files contain a single face, this value should be zero.
/// Receives a pointer to the newly created font resource object, or nullptr in case of failure.
///
/// Standard HRESULT error code.
///
STDMETHOD(CreateFontResource)(
_In_ IDWriteFontFile* fontFile,
UINT32 faceIndex,
_COM_Outptr_ IDWriteFontResource** fontResource
) PURE;
///
/// Retrieves the set of system fonts.
///
/// Include downloadable fonts or only locally installed ones.
/// Receives a pointer to the font set object, or nullptr in case of failure.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetSystemFontSet)(
BOOL includeDownloadableFonts,
_COM_Outptr_ IDWriteFontSet1** fontSet
) PURE;
using IDWriteFactory3::GetSystemFontSet;
///
/// Retrieves a collection of fonts grouped into families.
///
/// Include downloadable fonts or only locally installed ones.
/// How to group families in the collection.
/// Receives a pointer to the font collection object, or nullptr in case of failure.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetSystemFontCollection)(
BOOL includeDownloadableFonts,
DWRITE_FONT_FAMILY_MODEL fontFamilyModel,
_COM_Outptr_ IDWriteFontCollection2** fontCollection
) PURE;
using IDWriteFactory3::GetSystemFontCollection;
///
/// Create a collection of fonts grouped into families from a font set.
///
/// A set of fonts to use to build the collection.
/// How to group families in the collection.
/// Receives a pointer to the newly created font collection object, or nullptr in case of failure.
///
/// Standard HRESULT error code.
///
STDMETHOD(CreateFontCollectionFromFontSet)(
IDWriteFontSet* fontSet,
DWRITE_FONT_FAMILY_MODEL fontFamilyModel,
_COM_Outptr_ IDWriteFontCollection2** fontCollection
) PURE;
using IDWriteFactory5::CreateFontCollectionFromFontSet;
///
/// Creates an empty font set builder to add font instances and create a custom font set.
///
/// Receives a pointer to the newly created font set builder object, or nullptr in case of failure.
///
/// Standard HRESULT error code.
///
STDMETHOD(CreateFontSetBuilder)(
_COM_Outptr_ IDWriteFontSetBuilder2** fontSetBuilder
) PURE;
using IDWriteFactory3::CreateFontSetBuilder;
using IDWriteFactory5::CreateFontSetBuilder;
///
/// Create a text format object used for text layout.
///
/// Name of the font family from the collection.
/// Font collection, with nullptr indicating the system font collection.
/// List of font axis values.
/// Number of font axis values.
/// Logical size of the font in DIP units.
/// Locale name (e.g. "ja-JP", "en-US", "ar-EG").
/// Receives a pointer to the newly created text format object, or nullptr in case of failure.
///
/// Standard HRESULT error code.
///
///
/// If fontCollection is nullptr, the system font collection is used, grouped by typographic family name
/// (DWRITE_FONT_FAMILY_MODEL_TYPOGRAPHIC) without downloadable fonts.
///
STDMETHOD(CreateTextFormat)(
_In_z_ WCHAR const* fontFamilyName,
_In_opt_ IDWriteFontCollection* fontCollection,
_In_reads_(fontAxisValueCount) DWRITE_FONT_AXIS_VALUE const* fontAxisValues,
UINT32 fontAxisValueCount,
FLOAT fontSize,
_In_z_ WCHAR const* localeName,
_COM_Outptr_ IDWriteTextFormat3** textFormat
) PURE;
using IDWriteFactory::CreateTextFormat;
};
DWRITE_BEGIN_INTERFACE(IDWriteFontFace5, "98EFF3A5-B667-479A-B145-E2FA5B9FDC29") : IDWriteFontFace4
{
///
/// Get the number of axes defined by the font. This includes both static and variable axes.
///
STDMETHOD_(UINT32, GetFontAxisValueCount)() PURE;
///
/// Get the list of axis values used by the font.
///
/// List of font axis values.
/// Maximum number of font axis values to write.
///
/// Standard HRESULT error code, or E_INVALIDARG if fontAxisValueCount doesn't match GetFontAxisValueCount.
///
///
/// The values are returned in the canonical order defined by the font, clamped to the actual range supported,
/// not specifically the same axis value array passed to CreateFontFace.
///
STDMETHOD(GetFontAxisValues)(
_Out_writes_(fontAxisValueCount) DWRITE_FONT_AXIS_VALUE* fontAxisValues,
UINT32 fontAxisValueCount
) PURE;
///
/// Whether this font's resource supports any variable axes. When true, at least one DWRITE_FONT_AXIS_RANGE
/// in the font resource has a non-empty range (maximum > minimum).
///
STDMETHOD_(BOOL, HasVariations)() PURE;
///
/// Get the underlying font resource for this font face. A caller can use that to query information on the resource
/// or recreate a new font face instance with different axis values.
///
/// Newly created font resource object.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontResource)(
_COM_Outptr_ IDWriteFontResource** fontResource
) PURE;
///
/// Compares two instances of a font face for equality.
///
STDMETHOD_(BOOL, Equals)(IDWriteFontFace* fontFace) PURE;
};
///
/// Interface to return axis information for a font resource and create specific font face instances.
///
DWRITE_BEGIN_INTERFACE(IDWriteFontResource, "1F803A76-6871-48E8-987F-B975551C50F2") : IUnknown
{
///
/// Get the font file of the resource.
///
/// Receives a pointer to the font file.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontFile)(
_COM_Outptr_ IDWriteFontFile** fontFile
) PURE;
///
/// Obtains the zero-based index of the font face in its font file. If the font files contain a single face,
/// the return value is zero.
///
STDMETHOD_(UINT32, GetFontFaceIndex)() PURE;
///
/// Get the number of axes supported by the font resource. This includes both static and variable axes.
///
STDMETHOD_(UINT32, GetFontAxisCount)() PURE;
///
/// Get the default values for all axes supported by the font resource.
///
/// List of font axis values.
/// Maximum number of font axis values to write.
///
/// Different font resources may have different defaults.
/// For OpenType 1.8 fonts, these values come from the STAT and fvar tables.
/// For older fonts without a STAT table, weight-width-slant-italic are read from the OS/2 table.
///
///
/// Standard HRESULT error code, or E_INVALIDARG if fontAxisValueCount doesn't match GetFontAxisCount.
///
STDMETHOD(GetDefaultFontAxisValues)(
_Out_writes_(fontAxisValueCount) DWRITE_FONT_AXIS_VALUE* fontAxisValues,
UINT32 fontAxisValueCount
) PURE;
///
/// Get ranges of each axis.
///
///
/// Total number of axis ranges
///
/// Standard HRESULT error code, or E_INVALIDARG if fontAxisRangeCount doesn't match GetFontAxisCount.
///
///
/// Non-varying axes will have empty ranges (minimum==maximum).
///
STDMETHOD(GetFontAxisRanges)(
_Out_writes_(fontAxisRangeCount) DWRITE_FONT_AXIS_RANGE* fontAxisRanges,
UINT32 fontAxisRangeCount
) PURE;
///
/// Gets attributes about the given axis, such as whether the font author recommends to hide the axis
/// in user interfaces.
///
/// Font axis, from 0 to GetFontAxisValueCount - 1.
/// Receives the attributes for the given axis.
///
/// Attributes for a font axis, or NONE if axisIndex is beyond the font count.
///
STDMETHOD_(DWRITE_FONT_AXIS_ATTRIBUTES, GetFontAxisAttributes)(
UINT32 axisIndex
) PURE;
///
/// Gets the localized names of a font axis.
///
/// Font axis, from 0 to GetFontAxisCount - 1.
/// Receives a pointer to the newly created localized strings object.
///
/// The font author may not have supplied names for some font axes. The localized strings
/// will be empty in that case.
///
///
/// Standard HRESULT error code.
///
STDMETHOD(GetAxisNames)(
UINT32 axisIndex,
_COM_Outptr_ IDWriteLocalizedStrings** names
) PURE;
///
/// Get the number of named values for a specific axis.
///
/// Font axis, from 0 to GetFontAxisCount - 1.
///
/// Number of named values.
///
STDMETHOD_(UINT32, GetAxisValueNameCount)(
UINT32 axisIndex
) PURE;
///
/// Gets the localized names of specific values for a font axis.
///
/// Font axis, from 0 to GetFontAxisCount - 1.
/// Value index, from 0 to GetAxisValueNameCount - 1.
/// Range of the named value.
/// Receives a pointer to the newly created localized strings object.
///
/// The font author may not have supplied names for some font axis values. The localized strings
/// will be empty in that case. The range may be a single point, where minimum == maximum.
/// All ranges are in ascending order by axisValueIndex.
///
///
/// Standard HRESULT error code.
///
STDMETHOD(GetAxisValueNames)(
UINT32 axisIndex,
UINT32 axisValueIndex,
_Out_ DWRITE_FONT_AXIS_RANGE* fontAxisRange,
_COM_Outptr_ IDWriteLocalizedStrings** names
) PURE;
///
/// Whether this font's resource supports any variable axes. When true, at least one DWRITE_FONT_AXIS_RANGE
/// in the font resource has a non-empty range (maximum > minimum).
///
STDMETHOD_(BOOL, HasVariations)() PURE;
///
/// Creates a font face instance with specific axis values.
///
/// Font face simulation flags for algorithmic emboldening and italicization.
/// List of font axis values.
/// Number of font axis values.
/// Receives a pointer to the newly created font face object, or nullptr on failure.
///
/// The passed input axis values are permitted to be a subset or superset of all the ones actually supported by
/// the font. Any unspecified axes use their default values, values beyond the ranges are clamped, and any
/// non-varying axes have no effect.
///
///
/// Standard HRESULT error code, or DWRITE_E_REMOTEFONT if the face is not local.
///
STDMETHOD(CreateFontFace)(
DWRITE_FONT_SIMULATIONS fontSimulations,
_In_reads_(fontAxisValueCount) DWRITE_FONT_AXIS_VALUE const* fontAxisValues,
UINT32 fontAxisValueCount,
_COM_Outptr_ IDWriteFontFace5** fontFace
) PURE;
///
/// Creates a font face reference with specific axis values.
///
/// Font face simulation flags for algorithmic emboldening and italicization.
/// List of font axis values.
/// Number of font axis values.
/// Receives a pointer to the newly created font face reference object, or nullptr on failure.
///
/// The passed input axis values are permitted to be a subset or superset of all the ones actually supported by
/// the font. Any unspecified axes use their default values, values beyond the ranges are clamped, and any
/// non-varying axes have no effect.
///
///
/// Standard HRESULT error code.
///
STDMETHOD(CreateFontFaceReference)(
DWRITE_FONT_SIMULATIONS fontSimulations,
_In_reads_(fontAxisValueCount) DWRITE_FONT_AXIS_VALUE const* fontAxisValues,
UINT32 fontAxisValueCount,
_COM_Outptr_ IDWriteFontFaceReference1** fontFaceReference
) PURE;
};
DWRITE_BEGIN_INTERFACE(IDWriteFontFaceReference1, "C081FE77-2FD1-41AC-A5A3-34983C4BA61A") : IDWriteFontFaceReference
{
///
/// Creates a font face from the reference for use with layout, shaping, or rendering.
///
/// Newly created font face object, or nullptr in the case of failure.
///
/// Standard HRESULT error code.
///
///
/// This function can fail with DWRITE_E_REMOTEFONT if the font is not local.
///
STDMETHOD(CreateFontFace)(
_COM_Outptr_ IDWriteFontFace5** fontFace
) PURE;
using IDWriteFontFaceReference::CreateFontFace;
///
/// Get the number of axes specified by the reference.
///
STDMETHOD_(UINT32, GetFontAxisValueCount)() PURE;
///
/// Get the list of font axis values specified by the reference.
///
/// List of font axis values.
/// Number of font axis values.
///
/// Standard HRESULT error code, or E_INVALIDARG if fontAxisValueCount doesn't match GetFontAxisValueCount.
///
STDMETHOD(GetFontAxisValues)(
_Out_writes_(fontAxisValueCount) DWRITE_FONT_AXIS_VALUE* fontAxisValues,
UINT32 fontAxisValueCount
) PURE;
};
DWRITE_BEGIN_INTERFACE(IDWriteFontSetBuilder2, "EE5BA612-B131-463C-8F4F-3189B9401E45") : IDWriteFontSetBuilder1
{
///
/// Adds a font to the set being built, with the caller supplying enough information to search on
/// and determine axis ranges, avoiding the need to open the potentially non-local font.
///
/// Font file reference object to add to the set.
/// The zero based index of a font face in a collection.
/// Font face simulation flags for algorithmic emboldening and italicization.
/// List of font axis values.
/// Number of font axis values.
/// List of axis ranges.
/// Number of axis ranges.
/// List of properties to associate with the reference.
/// How many properties are defined.
///
/// Standard HRESULT error code.
///
///
/// The font properties should include at least a family (typographic or weight/style/stretch).
/// Otherwise the font would be accessible in the IDWriteFontSet only by index, not name.
///
STDMETHOD(AddFont)(
_In_ IDWriteFontFile* fontFile,
UINT32 fontFaceIndex,
DWRITE_FONT_SIMULATIONS fontSimulations,
_In_reads_(fontAxisValueCount) DWRITE_FONT_AXIS_VALUE const* fontAxisValues,
UINT32 fontAxisValueCount,
_In_reads_(fontAxisRangeCount) DWRITE_FONT_AXIS_RANGE const* fontAxisRanges,
UINT32 fontAxisRangeCount,
_In_reads_(propertyCount) DWRITE_FONT_PROPERTY const* properties,
UINT32 propertyCount
) PURE;
///
/// Adds references to all the fonts in the specified font file. The method
/// parses the font file to determine the fonts and their properties.
///
/// Absolute file path to add to the font set.
///
/// Standard HRESULT error code.
///
STDMETHOD(AddFontFile)(
_In_z_ WCHAR const* filePath
) PURE;
using IDWriteFontSetBuilder1::AddFontFile;
};
DWRITE_BEGIN_INTERFACE(IDWriteFontSet1, "7E9FDA85-6C92-4053-BC47-7AE3530DB4D3") : IDWriteFontSet
{
///
/// Generates a matching font set based on the requested inputs, ordered so that nearer matches are earlier.
///
/// Font property of interest, such as typographic family or weight/stretch/style family.
/// List of font axis values.
/// Number of font axis values.
/// Prioritized list of fonts that match the properties, or nullptr on failure.
///
/// Standard HRESULT error code.
///
///
/// This can yield distinct items that were not in the original font set, including items with simulation flags
/// (if they would be a closer match to the request) and instances that were not named by the font author.
/// Items from the same font resources are collapsed into one, the closest possible match.
///
STDMETHOD(GetMatchingFonts)(
_In_opt_ DWRITE_FONT_PROPERTY const* fontProperty,
_In_reads_(fontAxisValueCount) DWRITE_FONT_AXIS_VALUE const* fontAxisValues,
UINT32 fontAxisValueCount,
_COM_Outptr_ IDWriteFontSet1** matchingFonts
) PURE;
using IDWriteFontSet::GetMatchingFonts;
///
/// Returns a font set that contains only the first occurrence of each font resource in the given set.
///
/// New font set consisting of single default instances from font resources.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFirstFontResources)(
_COM_Outptr_ IDWriteFontSet1** filteredFontSet
) PURE;
///
/// Returns a subset of fonts filtered by the given properties.
///
/// List of properties to filter using.
/// How many properties to filter.
/// Select any property rather rather than the intersection of them all.
/// Subset of fonts that match the properties, or nullptr on failure.
///
/// Standard HRESULT error code.
///
///
/// If no fonts matched the filter, the returned subset will be empty (GetFontCount returns 0).
/// The subset will always be equal to or less than the original set.
///
STDMETHOD(GetFilteredFonts)(
_In_reads_opt_(propertyCount) DWRITE_FONT_PROPERTY const* properties,
UINT32 propertyCount,
BOOL selectAnyProperty,
_COM_Outptr_ IDWriteFontSet1** filteredFontSet
) PURE;
///
/// Returns a subset of fonts filtered by the given ranges, endpoint-inclusive.
///
/// List of axis ranges.
/// Number of axis ranges.
/// Select any range rather rather than the intersection of them all.
/// Subset of fonts that fall within the ranges, or nullptr on failure.
///
/// Standard HRESULT error code.
///
///
/// If no fonts matched the filter, the subset will be empty (GetFontCount returns 0), but the function does not
/// return an error. The subset will always be equal to or less than the original set.
///
STDMETHOD(GetFilteredFonts)(
_In_reads_(fontAxisRangeCount) DWRITE_FONT_AXIS_RANGE const* fontAxisRanges,
UINT32 fontAxisRangeCount,
BOOL selectAnyRange,
_COM_Outptr_ IDWriteFontSet1** filteredFontSet
) PURE;
///
/// Returns a subset of fonts filtered by the given indices.
///
/// Array of indices, each index from [0..GetFontCount() - 1].
/// Number of indices.
/// Subset of fonts that come from the given indices, or nullptr on failure.
///
/// Standard HRESULT error code.
///
///
/// The indices can come in any order, meaning this function can produce a new set with items removed, duplicated,
/// or reordered from the original. If zero indices were passed, an empty font set is returned.
///
STDMETHOD(GetFilteredFonts)(
_In_reads_(indexCount) UINT32 const* indices,
UINT32 indexCount,
_COM_Outptr_ IDWriteFontSet1** filteredFontSet
) PURE;
///
/// Get all the item indices filtered by the given properties.
///
/// List of properties to filter using.
/// How many properties to filter.
/// Select any property rather rather than the intersection of them all.
/// Ascending array of indices [0..GetFontCount() - 1].
/// Number of indices.
/// Actual number of indices written or needed [0..GetFontCount()-1].
///
/// E_NOT_SUFFICIENT_BUFFER if the buffer is too small, with actualIndexCount set to the needed size.
/// The actualIndexCount will always be <= IDwriteFontSet::GetFontCount.
///
STDMETHOD(GetFilteredFontIndices)(
_In_reads_(propertyCount) DWRITE_FONT_PROPERTY const* properties,
UINT32 propertyCount,
BOOL selectAnyProperty,
_Out_writes_(maxIndexCount) UINT32* indices,
UINT32 maxIndexCount,
_Out_ UINT32* actualIndexCount
) PURE;
///
/// Get all the item indices filtered by the given ranges.
///
/// List of axis ranges.
/// Number of axis ranges.
/// Select any property rather rather than the intersection of them all.
/// Ascending array of indices [0..GetFontCount() - 1].
/// Number of indices.
/// Actual number of indices written or needed [0..GetFontCount()-1].
///
/// E_NOT_SUFFICIENT_BUFFER if the buffer is too small, with actualIndexCount set to the needed size.
///
STDMETHOD(GetFilteredFontIndices)(
_In_reads_(fontAxisRangeCount) DWRITE_FONT_AXIS_RANGE const* fontAxisRanges,
UINT32 fontAxisRangeCount,
BOOL selectAnyRange,
_Out_writes_(maxIndexCount) UINT32* indices,
UINT32 maxIndexCount,
_Out_ UINT32* actualIndexCount
) PURE;
///
/// Gets all axis ranges in the font set, the union of all contained items.
///
/// List of axis ranges.
/// Number of axis ranges.
/// Actual number of axis ranges written or needed.
///
/// E_NOT_SUFFICIENT_BUFFER if the buffer is too small, with actualFontAxisRangeCount set to the needed size.
///
STDMETHOD(GetFontAxisRanges)(
_Out_writes_(maxFontAxisRangeCount) DWRITE_FONT_AXIS_RANGE* fontAxisRanges,
UINT32 maxFontAxisRangeCount,
_Out_ UINT32* actualFontAxisRangeCount
) PURE;
///
/// Get the axis ranges of a single item.
///
/// Zero-based index of the font in the set.
/// List of axis ranges.
/// Number of axis ranges.
/// Actual number of axis ranges written or needed.
///
/// E_NOT_SUFFICIENT_BUFFER if the buffer is too small, with actualFontAxisRangeCount set to the needed size.
///
STDMETHOD(GetFontAxisRanges)(
UINT32 listIndex,
_Out_writes_(maxFontAxisRangeCount) DWRITE_FONT_AXIS_RANGE* fontAxisRanges,
UINT32 maxFontAxisRangeCount,
_Out_ UINT32* actualFontAxisRangeCount
) PURE;
///
/// Get the font face reference of a single item.
///
/// Zero-based index of the font item in the set.
/// Receives a pointer to the font face reference.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontFaceReference)(
UINT32 listIndex,
_COM_Outptr_ IDWriteFontFaceReference1** fontFaceReference
) PURE;
using IDWriteFontSet::GetFontFaceReference;
///
/// Create the font resource of a single item.
///
/// Zero-based index of the font item in the set.
/// Receives a pointer to the font resource.
///
/// Standard HRESULT error code, or DWRITE_E_REMOTEFONT if the file is not local.
///
STDMETHOD(CreateFontResource)(
UINT32 listIndex,
_COM_Outptr_ IDWriteFontResource** fontResource
) PURE;
///
/// Create a font face for a single item (rather than going through the font face reference).
///
/// Zero-based index of the font item in the set.
/// Receives a pointer to the font face.
///
/// Standard HRESULT error code, or DWRITE_E_REMOTEFONT if the file is not local.
///
STDMETHOD(CreateFontFace)(
UINT32 listIndex,
_COM_Outptr_ IDWriteFontFace5** fontFace
) PURE;
///
/// Return the locality of a single item.
///
/// Zero-based index of the font item in the set.
///
/// The locality enumeration. For fully local files, the result will always
/// be DWRITE_LOCALITY_LOCAL. For downloadable files, the result depends on how
/// much of the file has been downloaded.
///
///
/// The locality enumeration.
///
STDMETHOD_(DWRITE_LOCALITY, GetFontLocality)(UINT32 listIndex) PURE;
};
DWRITE_BEGIN_INTERFACE(IDWriteFontList2, "C0763A34-77AF-445A-B735-08C37B0A5BF5") : IDWriteFontList1
{
///
/// Get the underlying font set used by this list.
///
/// Contains font set used by the list.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontSet)(
_COM_Outptr_ IDWriteFontSet1** fontSet
) PURE;
};
DWRITE_BEGIN_INTERFACE(IDWriteFontFamily2, "3ED49E77-A398-4261-B9CF-C126C2131EF3") : IDWriteFontFamily1
{
///
/// Gets a list of fonts in the font family ranked in order of how well they match the specified axis values.
///
/// List of font axis values.
/// Number of font axis values.
/// Receives a pointer to the newly created font list object.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetMatchingFonts)(
_In_reads_(fontAxisValueCount) DWRITE_FONT_AXIS_VALUE const* fontAxisValues,
UINT32 fontAxisValueCount,
_COM_Outptr_ IDWriteFontList2** matchingFonts
) PURE;
using IDWriteFontFamily::GetMatchingFonts;
///
/// Get the underlying font set used by this family.
///
/// Contains font set used by the family.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontSet)(
_COM_Outptr_ IDWriteFontSet1** fontSet
) PURE;
};
DWRITE_BEGIN_INTERFACE(IDWriteFontCollection2, "514039C6-4617-4064-BF8B-92EA83E506E0") : IDWriteFontCollection1
{
///
/// Creates a font family object given a zero-based font family index.
///
/// Zero-based index of the font family.
/// Receives a pointer the newly created font family object.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontFamily)(
UINT32 index,
_COM_Outptr_ IDWriteFontFamily2** fontFamily
) PURE;
using IDWriteFontCollection::GetFontFamily;
using IDWriteFontCollection1::GetFontFamily;
///
/// Gets a list of fonts in the specified font family ranked in order of how well they match the specified axis values.
///
/// Name of the font family. The name is not case-sensitive but must otherwise exactly match a family name in the collection.
/// List of font axis values.
/// Number of font axis values.
/// Receives a pointer to the newly created font list object.
///
/// If no fonts matched, the list will be empty (GetFontCount returns 0),
/// but the function does not return an error.
///
///
/// Standard HRESULT error code.
///
STDMETHOD(GetMatchingFonts)(
_In_z_ WCHAR const* familyName,
_In_reads_(fontAxisValueCount) DWRITE_FONT_AXIS_VALUE const* fontAxisValues,
UINT32 fontAxisValueCount,
_COM_Outptr_ IDWriteFontList2** fontList
) PURE;
///
/// Get the font family model used by the font collection to group families.
///
///
/// Family model enumeration.
///
STDMETHOD_(DWRITE_FONT_FAMILY_MODEL, GetFontFamilyModel)() PURE;
///
/// Get the underlying font set used by this collection.
///
/// Contains font set used by the collection.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontSet)(
_COM_Outptr_ IDWriteFontSet1** fontSet
) PURE;
using IDWriteFontCollection1::GetFontSet;
};
DWRITE_BEGIN_INTERFACE(IDWriteTextLayout4, "05A9BF42-223F-4441-B5FB-8263685F55E9") : IDWriteTextLayout3
{
///
/// Set values for font axes over a range of text.
///
/// List of font axis values.
/// Number of font axis values.
///
/// Standard HRESULT error code.
///
STDMETHOD(SetFontAxisValues)(
_In_reads_(fontAxisValueCount) DWRITE_FONT_AXIS_VALUE const* fontAxisValues,
UINT32 fontAxisValueCount,
DWRITE_TEXT_RANGE textRange
) PURE;
///
/// Get the number of axes set on the text position.
///
STDMETHOD_(UINT32, GetFontAxisValueCount)(
UINT32 currentPosition
) PURE;
///
/// Get the list of font axis values on the text position.
///
/// List of font axis values.
/// Maximum number of font axis values to write.
///
/// Standard HRESULT error code, or E_INVALIDARG if fontAxisValueCount doesn't match GetFontAxisValueCount.
///
STDMETHOD(GetFontAxisValues)(
UINT32 currentPosition,
_Out_writes_(fontAxisValueCount) DWRITE_FONT_AXIS_VALUE* fontAxisValues,
UINT32 fontAxisValueCount,
_Out_opt_ DWRITE_TEXT_RANGE* textRange = nullptr
) PURE;
///
/// Get the automatic axis options.
///
///
/// Automatic axis options.
///
STDMETHOD_(DWRITE_AUTOMATIC_FONT_AXES, GetAutomaticFontAxes)() PURE;
///
/// Sets the automatic font axis options.
///
/// Automatic font axis options.
///
/// Standard HRESULT error code.
///
STDMETHOD(SetAutomaticFontAxes)(DWRITE_AUTOMATIC_FONT_AXES automaticFontAxes) PURE;
};
DWRITE_BEGIN_INTERFACE(IDWriteTextFormat3, "6D3B5641-E550-430D-A85B-B7BF48A93427") : IDWriteTextFormat2
{
///
/// Set values for font axes of the format.
///
/// List of font axis values.
/// Number of font axis values.
///
/// Standard HRESULT error code.
///
STDMETHOD(SetFontAxisValues)(
_In_reads_(fontAxisValueCount) DWRITE_FONT_AXIS_VALUE const* fontAxisValues,
UINT32 fontAxisValueCount
) PURE;
///
/// Get the number of axes set on the format.
///
STDMETHOD_(UINT32, GetFontAxisValueCount)() PURE;
///
/// Get the list of font axis values on the format.
///
/// List of font axis values.
/// Maximum number of font axis values to write.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontAxisValues)(
_Out_writes_(fontAxisValueCount) DWRITE_FONT_AXIS_VALUE* fontAxisValues,
UINT32 fontAxisValueCount
) PURE;
///
/// Get the automatic axis options.
///
///
/// Automatic axis options.
///
STDMETHOD_(DWRITE_AUTOMATIC_FONT_AXES, GetAutomaticFontAxes)() PURE;
///
/// Sets the automatic font axis options.
///
/// Automatic font axis options.
///
/// Standard HRESULT error code.
///
STDMETHOD(SetAutomaticFontAxes)(DWRITE_AUTOMATIC_FONT_AXES automaticFontAxes) PURE;
};
DWRITE_BEGIN_INTERFACE(IDWriteFontFallback1, "2397599D-DD0D-4681-BD6A-F4F31EAADE77") : IDWriteFontFallback
{
///
/// Determines an appropriate font to use to render the range of text.
///
/// The text source implementation holds the text and locale.
/// Length of the text to analyze.
/// Default font collection to use.
/// Family name of the base font. If you pass nullptr, no matching will be done against
/// the base family.
/// List of font axis values.
/// Number of font axis values.
/// Length of text mapped to the mapped font. This will always be less or equal to the
/// input text length and greater than zero (if the text length is non-zero) so that the caller advances at
/// least one character each call.
/// The font face that should be used to render the first mappedLength characters of the text.
/// If it returns null, then no known font can render the text, and mappedLength is the number of unsupported
/// characters to skip.
/// Scale factor to multiply the em size of the returned font by.
///
/// Standard HRESULT error code.
///
STDMETHOD(MapCharacters)(
IDWriteTextAnalysisSource* analysisSource,
UINT32 textPosition,
UINT32 textLength,
_In_opt_ IDWriteFontCollection* baseFontCollection,
_In_opt_z_ WCHAR const* baseFamilyName,
_In_reads_(fontAxisValueCount) DWRITE_FONT_AXIS_VALUE const* fontAxisValues,
UINT32 fontAxisValueCount,
_Deref_out_range_(0, textLength) UINT32* mappedLength,
_Out_ FLOAT* scale,
_COM_Outptr_ IDWriteFontFace5** mappedFontFace
) PURE;
using IDWriteFontFallback::MapCharacters;
};
#endif // DWRITE_CORE || NTDDI_VERSION >= NTDDI_WIN10_RS3
#if DWRITE_CORE || NTDDI_VERSION >= /*NTDDI_WIN10_RS4*/0x0A000005
DWRITE_BEGIN_INTERFACE(IDWriteFontSet2, "DC7EAD19-E54C-43AF-B2DA-4E2B79BA3F7F") : IDWriteFontSet1
{
///
/// Gets the expiration event for the font set, if any. The expiration event is set on a system font set object if
/// it is out of date due to fonts being installed, uninstalled, or updated. The client should handle the event by
/// getting a new system font set.
///
///
/// Returns an event handle if called on the system font set, or nullptr if called on a custom font set.
///
///
/// The client must not call CloseHandle on the returned event handle. The handle is owned by the font set
/// object, and remains valid as long as the client holds a reference to the font set. The client can wait
/// on the returned event or use RegisterWaitForSingleObject to request a callback when the event is set.
///
STDMETHOD_(HANDLE, GetExpirationEvent)() PURE;
};
DWRITE_BEGIN_INTERFACE(IDWriteFontCollection3, "A4D055A6-F9E3-4E25-93B7-9E309F3AF8E9") : IDWriteFontCollection2
{
///
/// Gets the expiration event for the font collection, if any. The expiration event is set on a system font
/// collection object if it is out of date due to fonts being installed, uninstalled, or updated. The client
/// should handle the event by getting a new system font collection.
///
///
/// Returns an event handle if called on the system font collection, or nullptr if called on a custom font
/// collection.
///
///
/// The client must not call CloseHandle on the returned event handle. The handle is owned by the font collection
/// object, and remains valid as long as the client holds a reference to the font collection. The client can wait
/// on the returned event or use RegisterWaitForSingleObject to request a callback when the event is set.
///
STDMETHOD_(HANDLE, GetExpirationEvent)() PURE;
};
DWRITE_BEGIN_INTERFACE(IDWriteFactory7, "35D0E0B3-9076-4D2E-A016-A91B568A06B4") : IDWriteFactory6
{
///
/// Retrieves the set of system fonts.
///
/// Include downloadable fonts or only locally installed ones.
/// Receives a pointer to the font set object, or nullptr in case of failure.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetSystemFontSet)(
BOOL includeDownloadableFonts,
_COM_Outptr_ IDWriteFontSet2** fontSet
) PURE;
using IDWriteFactory6::GetSystemFontSet;
///
/// Retrieves a collection of fonts grouped into families.
///
/// Include downloadable fonts or only locally installed ones.
/// How to group families in the collection.
/// Receives a pointer to the font collection object, or nullptr in case of failure.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetSystemFontCollection)(
BOOL includeDownloadableFonts,
DWRITE_FONT_FAMILY_MODEL fontFamilyModel,
_COM_Outptr_ IDWriteFontCollection3** fontCollection
) PURE;
using IDWriteFactory6::GetSystemFontCollection;
};
#endif // DWRITE_CORE || NTDDI_VERSION >= NTDDI_WIN10_RS4
#if DWRITE_CORE || NTDDI_VERSION >= /*NTDDI_WIN10_RS5*/0x0A000006
///
/// The font source type identifies the mechanism by which a font came to be included in a font set.
///
enum DWRITE_FONT_SOURCE_TYPE
{
///
/// The font source is unknown or is not any of the other defined font source types.
///
DWRITE_FONT_SOURCE_TYPE_UNKNOWN,
///
/// The font source is a font file, which is installed for all users on the device.
///
DWRITE_FONT_SOURCE_TYPE_PER_MACHINE,
///
/// The font source is a font file, which is installed for the current user.
///
DWRITE_FONT_SOURCE_TYPE_PER_USER,
///
/// The font source is an APPX package, which includes one or more font files.
/// The font source name is the full name of the package.
///
DWRITE_FONT_SOURCE_TYPE_APPX_PACKAGE,
///
/// The font source is a font provider for downloadable fonts.
///
DWRITE_FONT_SOURCE_TYPE_REMOTE_FONT_PROVIDER
};
DWRITE_BEGIN_INTERFACE(IDWriteFontSet3, "7C073EF2-A7F4-4045-8C32-8AB8AE640F90") : IDWriteFontSet2
{
///
/// Gets the font source type of the specified font.
///
/// Zero-based index of the font.
STDMETHOD_(DWRITE_FONT_SOURCE_TYPE, GetFontSourceType)(UINT32 fontIndex) PURE;
///
/// Gets the length of the font source name for the specified font.
///
/// Zero-based index of the font.
STDMETHOD_(UINT32, GetFontSourceNameLength)(UINT32 listIndex) PURE;
///
/// Copies the font source name for the specified font to an output array.
///
/// Zero-based index of the font.
/// Character array that receives the string.
/// Size of the array in characters. The size must include space for the terminating
/// null character.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFontSourceName)(
UINT32 listIndex,
_Out_writes_z_(stringBufferSize) WCHAR* stringBuffer,
UINT32 stringBufferSize
) PURE;
};
#endif // DWRITE_CORE || NTDDI_VERSION >= NTDDI_WIN10_RS5
#if DWRITE_CORE || NTDDI_VERSION >= /*NTDDI_WIN10_MN*/0x0A000009
DWRITE_BEGIN_INTERFACE(IDWriteFontFace6, "C4B1FE1B-6E84-47D5-B54C-A597981B06AD") : IDWriteFontFace5
{
///
/// Creates a localized strings object that contains the family names for the font, indexed by locale name.
///
/// Specifies how fonts are grouped into families, which affects the family name property.
/// Receives a pointer to an object to contains the font family names, indexed by locale.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFamilyNames)(
DWRITE_FONT_FAMILY_MODEL fontFamilyModel,
_COM_Outptr_ IDWriteLocalizedStrings * *names
) PURE;
using IDWriteFontFace3::GetFamilyNames;
///
/// Creates a localized strings object that contains the face names for the font, indexed by locale name.
///
/// Specifies how fonts are grouped into families, which affects the face name property.
/// Receives a pointer to an object to contains the font face names, indexed by locale.
///
/// Standard HRESULT error code.
///
STDMETHOD(GetFaceNames)(
DWRITE_FONT_FAMILY_MODEL fontFamilyModel,
_COM_Outptr_ IDWriteLocalizedStrings * *names
) PURE;
using IDWriteFontFace3::GetFaceNames;
};
#endif // DWRITE_CORE || NTDDI_VERSION >= NTDDI_WIN10_MN
#if DWRITE_CORE || NTDDI_VERSION >= /*NTDDI_WIN10_NI*/0x0A00000C
DWRITE_BEGIN_INTERFACE(IDWriteFontSet4, "EEC175FC-BEA9-4C86-8B53-CCBDD7DF0C82") : IDWriteFontSet3
{
///
/// Computes derived font axis values from the specified font weight, stretch, style, and size.
///
/// Pointer to an optional array of input axis values. Axes present
/// in this array are excluded from the output. This is so explicit axis values take precedence over
/// derived axis values.
/// Size of the array of input axis values.
/// Font weight, used to compute "wght" axis value.
/// Font stretch, used to compute "wdth" axis value.
/// Font style, used to compute "slnt" and "ital" axis values.
/// Font size in DIPs, used to compute "opsz" axis value. If this parameter is zero,
/// no "opsz" axis value is added to the output array.
/// Pointer to an output array to which derived axis values are written.
/// The size of this array must be at least DWRITE_STANDARD_FONT_AXIS_COUNT (5). The return value is
/// the actual number of axis values written to this array.
/// Returns the actual number of derived axis values written to the output array.
/// The caller should concatenate the output axis values to the input axis values (if any),
/// and pass the combined axis values to the GetMatchingFonts method. This does not result in duplicates
/// because the output does not include any axes present in the inputAxisValues array.
///
STDMETHOD_(UINT32, ConvertWeightStretchStyleToFontAxisValues)(
_In_reads_opt_(inputAxisCount) DWRITE_FONT_AXIS_VALUE const* inputAxisValues,
UINT32 inputAxisCount,
DWRITE_FONT_WEIGHT fontWeight,
DWRITE_FONT_STRETCH fontStretch,
DWRITE_FONT_STYLE fontStyle,
float fontSize,
_Out_writes_to_(DWRITE_STANDARD_FONT_AXIS_COUNT, return) DWRITE_FONT_AXIS_VALUE* outputAxisValues
) PURE;
///
/// Generates a matching font set based on the requested inputs, ordered so that nearer matches are earlier.
///
/// Font family name. This can be a typographic family name, weight/stretch/style
/// family name, GDI (RBIZ) family name, or full name.
/// Array of font axis values.
/// Number of font axis values.
/// Specifies which simulations (i.e., algorithmic emboldening and/or slant)
/// may be applied to matching fonts to better match the specified axis values. No simulations are applied if
/// this parameter is DWRITE_FONT_SIMULATIONS_NONE (0).
/// Receives a pointer to a newly-created font set, which contains a prioritized
/// list of fonts that match the specified inputs.
///
/// Standard HRESULT error code.
///
///
/// This can yield distinct items that were not in the original font set, including items with simulation flags
/// (if they would be a closer match to the request) and instances that were not named by the font author.
/// Items from the same font resources are collapsed into one, the closest possible match.
///
STDMETHOD(GetMatchingFonts)(
_In_z_ WCHAR const* familyName,
_In_reads_(fontAxisValueCount) DWRITE_FONT_AXIS_VALUE const* fontAxisValues,
UINT32 fontAxisValueCount,
DWRITE_FONT_SIMULATIONS allowedSimulations,
_COM_Outptr_ IDWriteFontSet4** matchingFonts
) PURE;
};
#endif // DWRITE_CORE || NTDDI_VERSION >= NTDDI_WIN10_NI
#if DWRITE_CORE
///
/// Contains information about a bitmap associated with an IDWriteBitmapRenderTarget.
/// The bitmap is top-down with 32-bits per pixel and no padding between scan lines.
///
struct DWRITE_BITMAP_DATA_BGRA32
{
UINT32 width;
UINT32 height;
_Field_size_(width * height) UINT32* pixels;
};
///
/// Encapsulates a bitmap which can be used for rendering glyphs.
///
DWRITE_BEGIN_INTERFACE(IDWriteBitmapRenderTarget2, "C553A742-FC01-44DA-A66E-B8B9ED6C3995") : IDWriteBitmapRenderTarget1
{
///
/// Gets the demensions and a pointer to the system memory bitmap encapsulated by this
/// bitmap render target object. The pointer is owned by the render target object, and
/// remains valid as long as the object exists.
///
STDMETHOD(GetBitmapData)(_Out_ DWRITE_BITMAP_DATA_BGRA32* bitmapData) PURE;
};
///
/// DWRITE_GLYPH_IMAGE_FORMATS_COLR_PAINT_TREE image format represents a color glyph that can be
/// rendered by drawing paint elements returned by IDWritePaintReader.
///
#ifndef DWRITE_GLYPH_IMAGE_FORMATS_COLR_PAINT_TREE_DEFINED
#define DWRITE_GLYPH_IMAGE_FORMATS_COLR_PAINT_TREE_DEFINED
#define DWRITE_GLYPH_IMAGE_FORMATS_COLR_PAINT_TREE static_cast(0x00000100)
#endif
///
/// Defines known feature level for use with the IDWritePaintReader interface and
/// related APIs. A feature level represents a level of functionality. For example, it
/// determines what DWRITE_PAINT_TYPE values might be returned.
///
///
/// See the DWRITE_PAINT_TYPE enumeration for which paint types are required for each
/// feature level.
///
enum DWRITE_PAINT_FEATURE_LEVEL
{
///
/// No paint API support.
///
DWRITE_PAINT_FEATURE_LEVEL_NONE = 0,
///
/// Specifies a level of functionality corresponding to OpenType COLR version 0.
///
DWRITE_PAINT_FEATURE_LEVEL_COLR_V0 = 1,
///
/// Specifies a level of functionality corresponding to OpenType COLR version 1.
///
DWRITE_PAINT_FEATURE_LEVEL_COLR_V1 = 2
};
///
/// Combination of flags specifying attributes of a color glyph or of specific color values in
/// a color glyph.
///
enum DWRITE_PAINT_ATTRIBUTES
{
DWRITE_PAINT_ATTRIBUTES_NONE = 0,
///
/// Specifies that the color value (or any color value in the glyph) comes from the font's
/// color palette. This means the appearance may depend on the current palette index, which
/// may be important to clients that cache color glyphs.
///
DWRITE_PAINT_ATTRIBUTES_USES_PALETTE = 0x01,
///
/// Specifies that the color value (or any color value in the glyph) comes from the client-specified
/// text color. This means the appearance may depend on the text color, which may be important to
/// clients that cache color glyphs.
///
DWRITE_PAINT_ATTRIBUTES_USES_TEXT_COLOR = 0x02
};
#ifdef DEFINE_ENUM_FLAG_OPERATORS
DEFINE_ENUM_FLAG_OPERATORS(DWRITE_PAINT_ATTRIBUTES)
#endif
///
/// Represents a color in a color glyph.
///
struct DWRITE_PAINT_COLOR
{
///
/// Color value (not premultiplied). See the colorAttributes member for information about how
/// the color is determined.
///
DWRITE_COLOR_F value;
///
/// If the colorAttributes member is DWRITE_PAINT_ATTRIBUTES_USES_PALETTE, this member is
/// the index of a palette entry in the selected color palette. Otherwise, this member is
/// DWRITE_NO_PALETTE_INDEX (0xFFFF).
///
UINT16 paletteEntryIndex;
///
/// Specifies an alpha value multiplier in the range 0 to 1 that was used to compute the color
/// value. Color glyph descriptions may include alpha values to be multiplied with the alpha
/// values of palette entries.
///
float alphaMultiplier;
///
/// Specifies how the color value is determined. If this member is
/// DWRITE_PAINT_ATTRIBUTES_USES_PALETTE, the color value is determined by getting the color at
/// paletteEntryIndex in the current color palette. The color's alpha value is then multiplied
/// by alphaMultiplier. If a font has multiple color palettes, a client can set the current color
/// palette using the IDWritePaintReader::SetColorPaletteIndex method. A client that uses a custom
/// palette can use the paletteEntryIndex and alphaMultiplier methods to compute the color. If this
/// member is DWRITE_PAINT_ATTRIBUTES_USES_TEXT_COLOR, the color value is equal to the text
/// foreground color, which can be set using the IDWritePaintReader::SetTextColor method.
///
DWRITE_PAINT_ATTRIBUTES colorAttributes;
};
///
/// Specifies a composite mode for combining source and destination paint elements in a
/// color glyph. These are taken from the W3C Compositing and Blending Level 1 specification.
///
enum DWRITE_COLOR_COMPOSITE_MODE
{
// Porter-Duff modes.
DWRITE_COLOR_COMPOSITE_CLEAR,
DWRITE_COLOR_COMPOSITE_SRC,
DWRITE_COLOR_COMPOSITE_DEST,
DWRITE_COLOR_COMPOSITE_SRC_OVER,
DWRITE_COLOR_COMPOSITE_DEST_OVER,
DWRITE_COLOR_COMPOSITE_SRC_IN,
DWRITE_COLOR_COMPOSITE_DEST_IN,
DWRITE_COLOR_COMPOSITE_SRC_OUT,
DWRITE_COLOR_COMPOSITE_DEST_OUT,
DWRITE_COLOR_COMPOSITE_SRC_ATOP,
DWRITE_COLOR_COMPOSITE_DEST_ATOP,
DWRITE_COLOR_COMPOSITE_XOR,
DWRITE_COLOR_COMPOSITE_PLUS,
// Separable color blend modes.
DWRITE_COLOR_COMPOSITE_SCREEN,
DWRITE_COLOR_COMPOSITE_OVERLAY,
DWRITE_COLOR_COMPOSITE_DARKEN,
DWRITE_COLOR_COMPOSITE_LIGHTEN,
DWRITE_COLOR_COMPOSITE_COLOR_DODGE,
DWRITE_COLOR_COMPOSITE_COLOR_BURN,
DWRITE_COLOR_COMPOSITE_HARD_LIGHT,
DWRITE_COLOR_COMPOSITE_SOFT_LIGHT,
DWRITE_COLOR_COMPOSITE_DIFFERENCE,
DWRITE_COLOR_COMPOSITE_EXCLUSION,
DWRITE_COLOR_COMPOSITE_MULTIPLY,
// Non-separable color blend modes.
DWRITE_COLOR_COMPOSITE_HSL_HUE,
DWRITE_COLOR_COMPOSITE_HSL_SATURATION,
DWRITE_COLOR_COMPOSITE_HSL_COLOR,
DWRITE_COLOR_COMPOSITE_HSL_LUMINOSITY
};
///
/// Identifies a type of paint element in a color glyph. A color glyph's visual representation
/// is defined by a tree of paint elements. A paint element's properties are specified by a
/// DWRITE_PAINT_ELEMENT structure, which combines a paint type an a union.
///
///
/// For more information about each paint type, see DWRITE_PAINT_ELEMENT.
///
enum DWRITE_PAINT_TYPE
{
// The following paint types may be returned for color feature levels greater than
// or equal to DWRITE_PAINT_FEATURE_LEVEL_COLR_V0.
DWRITE_PAINT_TYPE_NONE,
DWRITE_PAINT_TYPE_LAYERS,
DWRITE_PAINT_TYPE_SOLID_GLYPH,
// The following paint types may be returned for color feature levels greater than
// or equal to DWRITE_PAINT_FEATURE_LEVEL_COLR_V1.
DWRITE_PAINT_TYPE_SOLID,
DWRITE_PAINT_TYPE_LINEAR_GRADIENT,
DWRITE_PAINT_TYPE_RADIAL_GRADIENT,
DWRITE_PAINT_TYPE_SWEEP_GRADIENT,
DWRITE_PAINT_TYPE_GLYPH,
DWRITE_PAINT_TYPE_COLOR_GLYPH,
DWRITE_PAINT_TYPE_TRANSFORM,
DWRITE_PAINT_TYPE_COMPOSITE
};
///
/// Specifies properties of a paint element, which is one node in a visual tree associated
/// with a color glyph. This is passed as an output parameter to various IDWritePaintReader
/// methods.
///
///
/// For a detailed description of how paint elements should be rendered, see the OpenType COLR
/// table specification. Comments below reference the COLR paint record formats associated with
/// each paint type.
///
/// Note that this structure (and its size) may differ for different versions of the API, as
/// newer versions may have additional union members for new paint types. For this reason,
/// IDWritePaintReader methods that take a DWRITE_PAINT_ELEMENT output parameter also take a
/// structSize parameter, for which the caller should specify actual size of the structure
/// allocated by the caller, i.e., sizeof(DWRITE_PAINT_ELEMENT). Clients should use caution
/// when passing DWRITE_PAINT_ELEMENT objects between components that may have been compiled
/// against different versions of this header file.
///
struct DWRITE_PAINT_ELEMENT
{
///
/// Specifies the paint type, and thus which member of the union is valid.
///
DWRITE_PAINT_TYPE paintType;
///
/// Specifies type-specific properties of the paint element.
///
union PAINT_UNION
{
///
/// Valid for paint elements of type DWRITE_PAINT_TYPE_LAYERS.
/// Contains one or more child paint elements to be drawn in bottom-up order.
///
///
/// This corresponds to a PaintColrLayers record in the OpenType COLR table.
/// Or it may correspond to a BaseGlyph record defined by COLR version 0.
///
struct PAINT_LAYERS
{
///
/// Number of child paint elements in bottom-up order. Use the IDWritePaintReader
/// interface's MoveFirstChild and MoveNextSibling methods to retrieve the child paint
/// elements. Use the MoveParent method to return to the parent element.
///
UINT32 childCount;
} layers;
///
/// Valid for paint elements of type DWRITE_PAINT_TYPE_SOLID_GLYPH.
/// Specifies a glyph with a solid color fill.
/// This paint element has no child elements.
///
///
/// This corresponds to a combination of two paint records in the OpenType COLR table:
/// a PaintGlyph record, which references either a PaintSolid or PaintVarSolid record.
/// Or it may correspond to a Layer record defined by COLR version 0.
///
struct PAINT_SOLID_GLYPH
{
///
/// Glyph index defining the shape to be filled.
///
UINT32 glyphIndex;
///
/// Glyph color used to fill the glyph shape.
///
DWRITE_PAINT_COLOR color;
} solidGlyph;
///
/// Valid for paint elements of type DWRITE_PAINT_TYPE_SOLID.
/// Specifies a solid color used to fill the current shape or clip.
/// This paint element has no child elements.
///
///
/// This corresponds to a PaintSolid or PaintVarSolid record in the OpenType COLR table.
///
DWRITE_PAINT_COLOR solid;
///
/// Valid for paint elements of type DWRITE_PAINT_TYPE_LINEAR_GRADIENT.
/// Specifies a linear gradient used to fill the current shape or clip.
/// This paint element has no child elements.
///
///
/// This corresponds to a PaintLinearGradient or PaintVarLinearGradient record in the OpenType
/// COLR table.
///
struct PAINT_LINEAR_GRADIENT
{
///
/// D2D1_EXTEND_MODE value speciying how colors outside the interval are defined.
///
UINT32 extendMode;
///
/// Number of gradient stops. Use the IDWritePaintReader::GetGradientStops method to
/// get the gradient stops.
///
UINT32 gradientStopCount;
///
/// X coordinate of the start point of the color line.
///
float x0;
///
/// Y coordinate of the start point of the color line.
///
float y0;
///
/// X coordinate of the end point of the color line.
///
float x1;
///
/// Y coordinate of the end point of the color line.
///
float y1;
///
/// X coordinate of the rotation point of the color line.
///
float x2;
///
/// Y coordinate of the rotation point of the color line.
///
float y2;
} linearGradient;
///
/// Valid for paint elements of type DWRITE_PAINT_TYPE_RADIAL_GRADIENT.
/// Specifies a radial gradient used to fill the current shape or clip.
/// This paint element has no child elements.
///
///
/// This corresponds to a PaintRadialGradient or PaintVarRadialGradient record in the OpenType
/// COLR table.
///
struct PAINT_RADIAL_GRADIENT
{
///
/// D2D1_EXTEND_MODE value speciying how colors outside the interval are defined.
///
UINT32 extendMode;
///
/// Number of gradient stops. Use the IDWritePaintReader::GetGradientStops method to
/// get the gradient stops.
///
UINT32 gradientStopCount;
///
/// Center X coordinate of the start circle.
///
float x0;
///
/// Center Y coordinate of the start circle.
///
float y0;
///
/// Radius of the start circle.
///
float radius0;
///
/// Center X coordinate of the end circle.
///
float x1;
///
/// Center Y coordinate of the end circle.
///
float y1;
///
/// Radius of the end circle.
///
float radius1;
} radialGradient;
///
/// Valid for paint elements of type DWRITE_PAINT_TYPE_SWEEP_GRADIENT.
/// Specifies a sweep gradient used to fill the current shape or clip.
/// This paint element has no child elements.
///
///
/// This corresponds to a PaintSweepGradient or PaintVarSweepGradient record in the OpenType
/// COLR table.
///
struct PAINT_SWEEP_GRADIENT
{
///
/// D2D1_EXTEND_MODE value speciying how colors outside the interval are defined.
///
UINT32 extendMode;
///
/// Number of gradient stops. Use the IDWritePaintReader::GetGradientStops method to
/// get the gradient stops.
///
UINT32 gradientStopCount;
///
/// Center X coordinate.
///
float centerX;
///
/// Center Y coordinate.
///
float centerY;
///
/// Start of the angular range of the gradient, measured in counter-clockwise degrees
/// from the direction of the positive x axis.
///
float startAngle;
///
/// End of the angular range of the gradient, measured in counter-clockwise degrees
/// from the direction of the positive x axis.
///
float endAngle;
} sweepGradient;
///
/// Valid for paint elements of type DWRITE_PAINT_TYPE_GLYPH.
/// Specifies a glyph shape to be filled or, equivalently, a clip region.
/// This paint element has one child element.
///
///
/// The child paint element defines how the glyph shape is filled. The child element can be a single paint
/// element, such as a linear gradient. Or the child element can be the root of a visual tree to be rendered
/// with the glyph shape as a clip region.
/// This corresponds to a PaintGlyph record in the OpenType COLR table.
///
struct PAINT_GLYPH
{
///
/// Glyph index of the glyph that defines the shape to be filled.
///
UINT32 glyphIndex;
} glyph;
///
/// Valid for paint elements of type DWRITE_PAINT_TYPE_COLOR_GLYPH.
/// Specifies another color glyph, used as a reusable component.
/// This paint element has one child element, which is the root paint element of the specified color glyph.
///
///
/// This corresponds to a PaintColorGlyph record in the OpenType COLR table.
///
struct PAINT_COLOR_GLYPH
{
///
/// Glyph index of the referenced color glyph.
///
UINT32 glyphIndex;
///
/// Clip box of the referenced color glyph, in ems. This is an empty rectangle of the color glyph does
/// not specify a clip box. If it is not an empty rect, the client is required to clip the child content
/// to this box.
///
D2D_RECT_F clipBox;
} colorGlyph;
///
/// Valid for paint elements of type DWRITE_PAINT_TYPE_TRANSFORM.
/// Specifies an affine transform to be applied to child content.
/// This paint element has one child element, which is the transformed content.
///
///
/// This corresponds to paint formats 12 through 31 in the OpenType COLR table.
///
DWRITE_MATRIX transform;
///
/// Valid for paint elements of type DWRITE_PAINT_TYPE_COMPOSITE.
/// Combines the two child paint elements using the specified compositing or blending mode.
/// This paint element has two child elements. The first child is the paint source. The
/// second child is the paint destination (or backdrop).
///
///
/// This corresponds to a PaintComposite record in the OpenType COLR table.
///
struct PAINT_COMPOSITE
{
///
/// Specifies the compositing or blending mode.
///
DWRITE_COLOR_COMPOSITE_MODE mode;
} composite;
} paint;
};
struct D2D1_GRADIENT_STOP;
///
/// Interface used to read color glyph data for a specific font. A color glyph is
/// represented as a visual tree of paint elements.
///
DWRITE_BEGIN_INTERFACE(IDWritePaintReader, "8128E912-3B97-42A5-AB6C-24AAD3A86E54") : IUnknown
{
///
/// Sets the current glyph and positions the reader on the root paint element of the
/// selected glyph's visual tree.
///
/// Glyph index to get the color glyph representation for.
/// Receives information about the root paint element of the
/// glyph's visual tree.
/// Size of the DWRITE_PAINT_ELEMENT structure, in bytes.
/// Receives a precomputed glyph box (in ems) for the specified glyph,
/// if one is specified by the font. Otherwise, the glyph box is set to an empty rectangle
/// (all zeros). If a non-empty clip box is specified, the client must clip the color
/// glyph's representation to the specified box.
/// Receives optional paint attributes for the glyph.
///
/// Standard HRESULT error code.
///
///
/// If the specified glyph index is not a color glyph, the method succeeds, but the paintType
/// member of the DWRITE_PAINT_ELEMENT structure is set to DWRITE_PAINT_TYPE_NONE. In this
/// case, the application should draw the input glyph as a non-color glyph.
///
STDMETHOD(SetCurrentGlyph)(
UINT32 glyphIndex,
_Out_writes_bytes_(structSize) DWRITE_PAINT_ELEMENT* paintElement,
UINT32 structSize,
_Out_ D2D_RECT_F* clipBox,
_Out_opt_ DWRITE_PAINT_ATTRIBUTES* glyphAttributes = nullptr
) PURE;
// Inline overload of SetCurrentGlyph, in which structSize is implied.
HRESULT SetCurrentGlyph(
UINT32 glyphIndex,
_Out_ DWRITE_PAINT_ELEMENT* paintElement,
_Out_ D2D_RECT_F* clipBox,
_Out_opt_ DWRITE_PAINT_ATTRIBUTES* glyphAttributes = nullptr
)
{
return SetCurrentGlyph(
glyphIndex,
paintElement,
sizeof(DWRITE_PAINT_ELEMENT),
clipBox,
glyphAttributes
);
}
///
/// Sets the client-defined text color. The default value is transparent black. Changing the text color
/// can affect the appearance of a glyph if its definition uses the current text color. If this is the
/// case, the SetCurrentGlyph method returns the DWRITE_PAINT_ATTRIBUTES_USES_TEXT_COLOR flag via the
/// glyphAttributes output parameter.
///
/// Specifies the text color.
///
/// Standard HRESULT error code.
///
STDMETHOD(SetTextColor)(
DWRITE_COLOR_F const& textColor
) PURE;
///
/// Sets the current color palette index. The default value is zero. Changing the palette index can affect
/// the appearance of a glyph if its definition references colors in the color palette. If this is the case,
/// the SetCurrentGlyph method returns the DWRITE_PAINT_ATTRIBUTES_USES_PALETTE flag via the glyphAttributes
/// output parameter.
///
/// Specifies the color palette index.
///
/// Standard HRESULT error code.
///
STDMETHOD(SetColorPaletteIndex)(
UINT32 colorPaletteIndex
) PURE;
///
/// Sets a custom color palette with client-defined palette entries instead of using a font-defined color
/// palette. Changing the color palette can affect the appearance of a glyph if its definition references
/// colors in the color palette. If this is the case, the SetCurrentGlyph method returns the
/// DWRITE_PAINT_ATTRIBUTES_USES_PALETTE flag via the glyphAttributes output parameter.
///
/// Array of palette entries for the client-defined color palette.
/// Size of the paletteEntries array. This must equal the font's palette
/// entry count as returned by IDWriteFontFace2::GetPaletteEntryCount.
///
/// Standard HRESULT error code.
///
STDMETHOD(SetCustomColorPalette)(
_In_reads_(paletteEntryCount) DWRITE_COLOR_F const* paletteEntries,
UINT32 paletteEntryCount
) PURE;
///
/// Sets the current position in the visual tree to the first child of the current paint element, and returns
/// the newly-selected element's properties via the paintElement output parameter.
///
/// Receives the properties of the newly-selected element.
/// Size of the DWRITE_PAINT_ELEMENT structure, in bytes.
///
/// Standard HRESULT error code. The return value is E_INVALIDARG if the current paint element doesn't have
/// any children.
///
///
/// Whether a paint element has children (and how many) can be determined a priori from its paint type and
/// properties. For more information, see DWRITE_PAINT_ELEMENT.
///
STDMETHOD(MoveToFirstChild)(
_Out_writes_bytes_(structSize) DWRITE_PAINT_ELEMENT* paintElement,
UINT32 structSize = sizeof(DWRITE_PAINT_ELEMENT)
) PURE;
///
/// Sets the current position in the visual tree to the next sibling of the current paint element, and returns
/// the newly-selected element's properties via the paintElement output parameter.
///
/// Receives the properties of the newly-selected element.
/// Size of the DWRITE_PAINT_ELEMENT structure, in bytes.
///
/// Standard HRESULT error code. The return value is E_INVALIDARG if the current paint element doesn't have
/// a next sibling.
///
///
/// Whether a paint element has children (and how many) can be determined a priori from its paint type and
/// properties. For more information, see DWRITE_PAINT_ELEMENT.
///
STDMETHOD(MoveToNextSibling)(
_Out_writes_bytes_(structSize) DWRITE_PAINT_ELEMENT* paintElement,
UINT32 structSize = sizeof(DWRITE_PAINT_ELEMENT)
) PURE;
///
/// Sets the current position in the visual tree to the parent of the current paint element.
///
///
/// Standard HRESULT error code. The return value is E_INVALIDARG if the current paint element is the root
/// element of the visual tree.
///
STDMETHOD(MoveToParent)() PURE;
///
/// Returns gradient stops of the current paint element.
///
/// Index of the first gradient stop to get.
/// Number of gradient stops to get.
/// Receives the gradient stops.
/// Standard HRESULT error code.
/// Gradient stops are guaranteed to be in ascending order by position.
STDMETHOD(GetGradientStops)(
UINT32 firstGradientStopIndex,
UINT32 gradientStopCount,
_Out_writes_(gradientStopCount) D2D1_GRADIENT_STOP* gradientStops
) PURE;
///
/// Returns color information about each gradient stop, such as palette indices.
///
/// Index of the first gradient stop to get.
/// Number of gradient stops to get.
/// Receives the gradient stop colors.
/// Standard HRESULT error code.
STDMETHOD(GetGradientStopColors)(
UINT32 firstGradientStopIndex,
UINT32 gradientStopCount,
_Out_writes_(gradientStopCount) DWRITE_PAINT_COLOR* gradientStopColors
) PURE;
};
DWRITE_BEGIN_INTERFACE(IDWriteFontFace7, "3945B85B-BC95-40F7-B72C-8B73BFC7E13B") : IDWriteFontFace6
{
///
/// Returns the maximum paint feature level supported for the specified glyph image format.
/// Possible values are specified by the DWRITE_PAINT_FEATURE_LEVEL enumeration,
/// but additional feature levels may be added over time.
///
/// Glyph image format to get the paint feature level for.
/// The return value is zero if the image format is not supported by the IDWritePaintReader API,
/// or if the font doesn't contain image data in that format.
STDMETHOD_(DWRITE_PAINT_FEATURE_LEVEL, GetPaintFeatureLevel)(
DWRITE_GLYPH_IMAGE_FORMATS glyphImageFormat
) PURE;
///
/// Creates a paint reader object, which can be used to retrieve vector graphic information
/// for color glyphs in the font.
///
/// Specifies the type of glyph data the reader will obtain. The only
/// glyph image format currently supported by this method is DWRITE_GLYPH_IMAGE_FORMATS_COLR_PAINT_TREE.
/// Specifies the maximum paint feature level supported by the client.
/// This affects the types of paint elements that may be returned by the paint reader.
/// Receives a pointer to the newly-created object.
/// Standard HRESULT error code.
STDMETHOD(CreatePaintReader)(
DWRITE_GLYPH_IMAGE_FORMATS glyphImageFormat,
DWRITE_PAINT_FEATURE_LEVEL paintFeatureLevel,
_COM_Outptr_ IDWritePaintReader** paintReader
) PURE;
};
DWRITE_BEGIN_INTERFACE(IDWriteFactory8, "EE0A7FB5-DEF4-4C23-A454-C9C7DC878398") : IDWriteFactory7
{
///
/// Translates a glyph run to a sequence of color glyph runs, which can be
/// rendered to produce a color representation of the original "base" run.
///
/// Horizontal and vertical origin of the base glyph run in
/// pre-transform coordinates.
/// Pointer to the original "base" glyph run.
/// Optional glyph run description.
/// Which data formats TranslateColorGlyphRun
/// should split the runs into.
/// Paint feature level supported by the caller. Used
/// when desiredGlyphImageFormats includes DWRITE_GLYPH_IMAGE_FORMATS_COLR_PAINT_TREE. See
/// DWRITE_PAINT_FEATURE_LEVEL for more information.
/// Measuring mode, needed to compute the origins
/// of each glyph.
/// Matrix converting from the client's
/// coordinate space to device coordinates (pixels), i.e., the world transform
/// multiplied by any DPI scaling.
/// Zero-based index of the color palette to use.
/// Valid indices are less than the number of palettes in the font, as returned
/// by IDWriteFontFace2::GetColorPaletteCount.
/// If the function succeeds, receives a pointer
/// to an enumerator object that can be used to obtain the color glyph runs.
/// If the base run has no color glyphs, then the output pointer is NULL
/// and the method returns DWRITE_E_NOCOLOR.
///
/// Returns DWRITE_E_NOCOLOR if the font has no color information, the glyph run
/// does not contain any color glyphs, or the specified color palette index
/// is out of range. In this case, the client should render the original glyph
/// run. Otherwise, returns a standard HRESULT error code.
///
///
/// The old IDWriteFactory2::TranslateColorGlyphRun is equivalent to passing
/// DWRITE_GLYPH_IMAGE_FORMATS_TRUETYPE|CFF|COLR.
///
STDMETHOD(TranslateColorGlyphRun)(
D2D1_POINT_2F baselineOrigin,
_In_ DWRITE_GLYPH_RUN const* glyphRun,
_In_opt_ DWRITE_GLYPH_RUN_DESCRIPTION const* glyphRunDescription,
DWRITE_GLYPH_IMAGE_FORMATS desiredGlyphImageFormats,
DWRITE_PAINT_FEATURE_LEVEL paintFeatureLevel,
DWRITE_MEASURING_MODE measuringMode,
_In_opt_ DWRITE_MATRIX const* worldAndDpiTransform,
UINT32 colorPaletteIndex,
_COM_Outptr_ IDWriteColorGlyphRunEnumerator1** colorEnumerator
) PURE;
};
///
/// Encapsulates a bitmap which can be used for rendering glyphs.
///
DWRITE_BEGIN_INTERFACE(IDWriteBitmapRenderTarget3, "AEEC37DB-C337-40F1-8E2A-9A41B167B238") : IDWriteBitmapRenderTarget2
{
///
/// Returns the paint feature level supported by this render target.
/// A client can pass the return value of this method to IDWriteFactory8::TranslateColorGlyphRun.
///
STDMETHOD_(DWRITE_PAINT_FEATURE_LEVEL, GetPaintFeatureLevel)() PURE;
///
/// Draws a glyph run in a "paint" image format returned by IDWriteColorGlyphRunEnumerator1.
///
/// X-coordinate of the baseline.
/// Y-coordinate of the baseline.
/// Specifies measuring mode for positioning glyphs in the run.
/// The glyph run to draw.
/// The image format of the color glyph run, as returned by
/// IDWriteColorGlyphRunEnumerator1. This must be one of the "paint" image formats.
/// Foreground color of the text, used in cases where a color glyph
/// uses the text color.
/// Zero-based index of the font-defined color palette to use.
/// Optional rectangle that receives the bounding box (in pixels not DIPs) of all the pixels affected by
/// drawing the glyph run. The black box rectangle may extend beyond the dimensions of the bitmap.
///
/// Standard HRESULT error code.
///
STDMETHOD(DrawPaintGlyphRun)(
FLOAT baselineOriginX,
FLOAT baselineOriginY,
DWRITE_MEASURING_MODE measuringMode,
_In_ DWRITE_GLYPH_RUN const* glyphRun,
DWRITE_GLYPH_IMAGE_FORMATS glyphImageFormat,
COLORREF textColor,
UINT32 colorPaletteIndex = 0,
_Out_opt_ RECT* blackBoxRect = NULL
) PURE;
///
/// Draws a glyph run, using color representations of glyphs if available in the font.
///
/// X-coordinate of the baseline.
/// Y-coordinate of the baseline.
/// Specifies measuring mode for positioning glyphs in the run.
/// The glyph run to draw.
/// Object that controls rendering behavior.
/// Foreground color of the text.
/// Zero-based index of the font-defined color palette to use.
/// Optional rectangle that receives the bounding box (in pixels not DIPs) of all the pixels affected by
/// drawing the glyph run. The black box rectangle may extend beyond the dimensions of the bitmap.
///
/// Standard HRESULT error code.
///
///
/// This method internally calls TranslateColorGlyphRun and then automatically calls the appropriate
/// lower-level methods to render monochrome or color glyph runs.
///
STDMETHOD(DrawGlyphRunWithColorSupport)(
FLOAT baselineOriginX,
FLOAT baselineOriginY,
DWRITE_MEASURING_MODE measuringMode,
_In_ DWRITE_GLYPH_RUN const* glyphRun,
_In_ IDWriteRenderingParams* renderingParams,
COLORREF textColor,
UINT32 colorPaletteIndex = 0,
_Out_opt_ RECT* blackBoxRect = NULL
) PURE;
};
#endif // DWRITE_CORE
#if DWRITE_CORE
///
/// Specifies the data type of a parameter passed to
/// IDWriteEventSink::LogEvent.
///
enum DWRITE_EVENT_PARAM_TYPE : UINT32
{
///
/// An event tag, which is a UINT64 value encoding up to eight ASCII characters
/// in little-endian order.
///
DWRITE_EVENT_PARAM_TYPE_TAG,
///
/// 32-bit unsigned value.
///
DWRITE_EVENT_PARAM_TYPE_UINT32,
///
/// Time in system clock ticks as reported by std::chrono::system_clock.
///
DWRITE_EVENT_PARAM_TYPE_DATETIME,
///
/// Null-terminated string of WCHAR.
///
DWRITE_EVENT_PARAM_TYPE_STRINGW,
///
/// Null-terminated UTF-8 string.
///
DWRITE_EVENT_PARAM_TYPE_STRINGA
};
///
/// Represents a parameter passed to IDWriteEventSink::LogEvent.
///
struct DWRITE_EVENT_PARAM
{
DWRITE_EVENT_PARAM_TYPE paramType;
union DWRITE_EVENT_PARAM_VALUE
{
UINT64 tag; // DWRITE_EVENT_PARAM_TYPE_TAG
UINT32 uint32; // DWRITE_EVENT_PARAM_TYPE_UINT32
UINT64 dateTime; // DWRITE_EVENT_PARAM_TYPE_DATETIME
_Field_z_ WCHAR const* stringW; // DWRITE_EVENT_PARAM_TYPE_STRINGW
_Field_z_ char const* stringA; // DWRITE_EVENT_PARAM_TYPE_STRINGA
} paramValue;
};
///
/// Callback interface that receives internal events from DWriteCore.
///
///
/// Events sent to this interface should be used for diagnostic purposes only,
/// they may change from version to version.
///
/// Each type of event is idenfied by a "tag" comprising up to 8 ASCII characters
/// encoded as a UINT64. The first character of the tag is in the low-order byte.
/// Following are some well-known event tags and the expected parameters for each.
///
/// "state" (TAG newState) ...
/// Indicates an object is transitioning to the state specified by newState.
/// Common states are "ctor" for a new object and "dtor" for a destroyed
/// object.
///
/// "error" (UINT32 errorCode) (TAG taskID) (UINT32 lineNumber) ...
///
/// "warning" (STRINGA message) (UINT32 lineNumber)?
///
/// "badfont" (STRINGA message)
///
/// "assert" (STRINGA fileName) (UINT32 lineNumber) (STRINGA expression)
///
///
DWRITE_BEGIN_INTERFACE(IDWriteEventSink, "b2839dc9-5419-4223-a069-c792d2dc6ba0") : IUnknown
{
///
/// Notifies the event sink of an internal DWriteCore event.
///
/// Unique integer ID of the object that logged the
/// event, or zero if the event did not come from a specific object.
/// Event tag identifying the type of object that
/// logged the event, or zero if the event did not come from a specific
/// object.
/// Event tag identifying the type of event.
/// Array of additional event parameters.
/// Number of additional event parameters.
STDMETHOD_(void, LogEvent)(
UINT32 objectId,
UINT64 classTag,
UINT64 eventTag,
_In_reads_(eventParamCount) DWRITE_EVENT_PARAM const* eventParams,
UINT32 eventParamCount
) PURE;
};
#endif // DWRITE_CORE
#endif // DWRITE_3_H_INCLUDED