OSDN Git Service

#36897 [DTXC] MIDIインポート機能の呼び出し口を、ファイルメニュー内にも配置。
[dtxmania/dtxmania.git] / SlimDXc_Jun2010(VC++2008) / source / directwrite / IFontCollectionLoader.h
1 /*\r
2 * Copyright (c) 2007-2010 SlimDX Group\r
3\r
4 * Permission is hereby granted, free of charge, to any person obtaining a copy\r
5 * of this software and associated documentation files (the "Software"), to deal\r
6 * in the Software without restriction, including without limitation the rights\r
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r
8 * copies of the Software, and to permit persons to whom the Software is\r
9 * furnished to do so, subject to the following conditions:\r
10\r
11 * The above copyright notice and this permission notice shall be included in\r
12 * all copies or substantial portions of the Software.\r
13\r
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r
20 * THE SOFTWARE.\r
21 */\r
22 #pragma once\r
23 \r
24 #include <dwrite.h>\r
25 \r
26 extern const IID IID_IDWriteFontCollectionLoader;\r
27 \r
28 namespace SlimDX\r
29 {\r
30         namespace DirectWrite\r
31         {\r
32                 using namespace System;\r
33                 ref class Factory;\r
34                 ref class FontFileEnumerator;\r
35 \r
36                 /// <summary>\r
37                 /// The font collection loader interface is used to construct a collection of fonts given a particular type of key.\r
38                 /// The font collection loader interface is recommended to be implemented by a singleton object.\r
39                 /// IMPORTANT: font collection loader implementations must not register themselves with a DirectWrite factory\r
40                 /// inside their constructors and must not unregister themselves in their destructors, because\r
41                 /// registration and unregistraton operations increment and decrement the object reference count respectively.\r
42                 /// Instead, registration and unregistration of font file loaders with DirectWrite factory should be performed\r
43                 /// outside of the font file loader implementation as a separate step.\r
44                 /// </summary>\r
45                 public interface struct IFontCollectionLoader\r
46                 {\r
47                         /// <summary>\r
48                         /// Creates a font file enumerator object that encapsulates a collection of font files.\r
49                         /// The font system calls back to this interface to create a font collection.\r
50                         /// </summary>\r
51                         /// <param name="factory">Factory associated with the loader.</param>\r
52                         /// <param name="collectionKey">Font collection key that uniquely identifies the collection of font files within\r
53                         /// the scope of the font collection loader being used.</param>\r
54                         /// <param name="collectionKeySize">Size of the font collection key in bytes.</param>\r
55                         /// <returns>\r
56                         /// Pointer to the newly created font file enumerator.\r
57                         /// </returns>\r
58                         FontFileEnumerator ^CreateEnumeratorFromKey(Factory ^factory, IntPtr collectionKey, int collectionKeySize);\r
59                 };\r
60 \r
61                 class IFontCollectionLoaderShim : public IDWriteFontCollectionLoader\r
62                 {\r
63                 public:\r
64                         static IFontCollectionLoaderShim *CreateInstance(IFontCollectionLoader ^wrappedInterface);\r
65 \r
66                         STDMETHOD(QueryInterface)(REFIID riid, void **ppvObject);\r
67                         STDMETHOD_(ULONG, AddRef)();\r
68                         STDMETHOD_(ULONG, Release)();\r
69 \r
70                         STDMETHOD(CreateEnumeratorFromKey)(IDWriteFactory *factory, void const *collectionKey, UINT32 collectionKeySize, IDWriteFontFileEnumerator **fontFileEnumerator);\r
71 \r
72                 private:\r
73                         IFontCollectionLoaderShim(IFontCollectionLoader ^wrappedInterface);\r
74 \r
75                         int m_refCount;\r
76                         gcroot<IFontCollectionLoader ^> m_WrappedInterface;\r
77                 };\r
78         }\r
79 }