Magic_Game/src/kiwano/render/dx/FontCollectionLoader.h

110 lines
3.2 KiB
C++

// Copyright (c) 2016-2018 Kiwano - Nomango
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITH_Out_ WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// _Out_ OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#pragma once
#include <kiwano/render/dx/D2DDeviceResources.h>
namespace kiwano
{
interface DWRITE_DECLARE_INTERFACE("7EC7A55A-1964-4098-83E0-EFA7C12C6EF7")
IFontCollectionLoader : public IDWriteFontCollectionLoader
{
public:
static HRESULT Create(
_Out_ IFontCollectionLoader** ppCollectionLoader
);
STDMETHOD(AddFilePaths)(
Vector<String> const& filePaths,
_Out_ LPVOID * pCollectionKey,
_Out_ uint32_t * pCollectionKeySize
) PURE;
};
interface DWRITE_DECLARE_INTERFACE("0A1A3F2A-85F2-41BB-80FD-EC01271740C4")
IFontFileEnumerator : public IDWriteFontFileEnumerator
{
public:
static HRESULT Create(
_Out_ IFontFileEnumerator** ppEnumerator,
IDWriteFactory* pFactory
);
STDMETHOD(SetFilePaths)(
Vector<String> const& filePaths
) PURE;
};
interface DWRITE_DECLARE_INTERFACE("F2C411F0-2FB0-4D0E-8C73-D2B8F30137A4")
IResourceFontCollectionLoader : public IDWriteFontCollectionLoader
{
public:
static HRESULT Create(
_Out_ IResourceFontCollectionLoader** ppCollectionLoader,
IDWriteFontFileLoader * pFileLoader
);
STDMETHOD(AddResources)(
Vector<Resource> const& resources,
_Out_ LPVOID * pCollectionKey,
_Out_ uint32_t * pCollectionKeySize
) PURE;
};
interface DWRITE_DECLARE_INTERFACE("08D21408-6FC1-4E36-A4EB-4DA16BE3399E")
IResourceFontFileLoader : public IDWriteFontFileLoader
{
public:
static HRESULT Create(
_Out_ IResourceFontFileLoader** ppFileLoader
);
};
interface DWRITE_DECLARE_INTERFACE("0AD0EC74-7503-46E8-8899-520175ECCB4A")
IResourceFontFileEnumerator : public IDWriteFontFileEnumerator
{
public:
static HRESULT Create(
_Out_ IResourceFontFileEnumerator** ppEnumerator,
IDWriteFactory* pFactory,
IDWriteFontFileLoader* pFileLoader
);
STDMETHOD(SetResources)(
Vector<Resource> const& resources
) PURE;
};
interface DWRITE_DECLARE_INTERFACE("A6267450-27F3-4948-995F-FF8345A72F88")
IResourceFontFileStream : public IDWriteFontFileStream
{
public:
static HRESULT Create(
_Out_ IResourceFontFileStream** ppStream,
const Resource resource
);
};
}