ReactOS 0.4.16-dev-2207-geb15453
CFontCache Class Reference

#include <CFontCache.hpp>

Public Member Functions

void Read ()
 
void SetFontDir (const LPCWSTR Path)
 
const CStringW & FontPath () const
 
size_t Size ()
 
CStringW Name (size_t Index)
 
CFontInfoFind (const FontPidlEntry *fontEntry)
 
CStringW Filename (CFontInfo *info, bool alwaysFullPath=false)
 

Protected Member Functions

 CFontCache ()
 
void Insert (CAtlList< CFontInfo > &fonts, const CStringW &KeyName)
 

Private Attributes

CAtlArray< CFontInfom_Fonts
 
CStringW m_FontFolderPath
 

Friends

class CFontExtModule
 

Detailed Description

Definition at line 36 of file CFontCache.hpp.

Constructor & Destructor Documentation

◆ CFontCache()

CFontCache::CFontCache ( )
protected

Definition at line 116 of file CFontCache.cpp.

117{
118}

Member Function Documentation

◆ Filename()

CStringW CFontCache::Filename ( CFontInfo info,
bool  alwaysFullPath = false 
)

Definition at line 158 of file CFontCache.cpp.

159{
161 if (info)
162 {
163 File = info->File();
164
165 if (!File.IsEmpty() && alwaysFullPath)
166 {
167 // Ensure this is a full path
169 {
171 }
172 }
173 }
174
175 return File;
176}
CStringW m_FontFolderPath
Definition: CFontCache.hpp:40
Definition: File.h:16
BOOL WINAPI PathIsRelativeW(const WCHAR *path)
Definition: path.c:1030

Referenced by _CDataObject_CreateInstance(), CFontExt::GetDisplayNameOf(), CFontExt::GetUIObjectOf(), and CFontInfo::ReadAttrs().

◆ Find()

CFontInfo * CFontCache::Find ( const FontPidlEntry fontEntry)

Definition at line 145 of file CFontCache.cpp.

146{
147 for (UINT n = 0; n < Size(); ++n)
148 {
149 if (m_Fonts[n].Name().CompareNoCase(fontEntry->Name) == 0)
150 {
151 return &m_Fonts[n];
152 }
153 }
154 return nullptr;
155}
CAtlArray< CFontInfo > m_Fonts
Definition: CFontCache.hpp:39
size_t Size()
Definition: CFontCache.cpp:126
LPWSTR Name
Definition: desk.c:124
GLdouble n
Definition: glext.h:7729
unsigned int UINT
Definition: ndis.h:50
WCHAR Name[1]
Definition: fontpidl.hpp:15

Referenced by _CDataObject_CreateInstance(), CFontExt::CompareIDs(), CFontExt::CreateForegroundMenu(), CFontExt::GetDetailsOf(), CFontExt::GetDisplayNameOf(), and CFontExt::GetUIObjectOf().

◆ FontPath()

const CStringW & CFontCache::FontPath ( ) const
inline

Definition at line 51 of file CFontCache.hpp.

51{ return m_FontFolderPath; }

Referenced by InstallFontFiles().

◆ Insert()

void CFontCache::Insert ( CAtlList< CFontInfo > &  fonts,
const CStringW KeyName 
)
protected

Definition at line 178 of file CFontCache.cpp.

179{
180 POSITION it = fonts.GetHeadPosition();
181 while (it != NULL)
182 {
183 POSITION lastit = it;
184 const CFontInfo& info = fonts.GetNext(it);
185 if (info.Name().CompareNoCase(KeyName) >= 0)
186 {
187 fonts.InsertBefore(lastit, CFontInfo(KeyName));
188 return;
189 }
190 }
191 fonts.AddTail(CFontInfo(KeyName));
192}
POSITION AddTail(INARGTYPE element)
Definition: atlcoll.h:629
POSITION GetHeadPosition() const
Definition: atlcoll.h:554
POSITION InsertBefore(_In_ POSITION pos, INARGTYPE element)
Definition: atlcoll.h:704
E & GetNext(_Inout_ POSITION &pos)
Definition: atlcoll.h:566
#define NULL
Definition: types.h:112
_Must_inspect_result_ _In_ WDFDEVICE _In_ PCUNICODE_STRING KeyName
Definition: wdfdevice.h:2705

Referenced by Read().

◆ Name()

CStringW CFontCache::Name ( size_t  Index)

Definition at line 134 of file CFontCache.cpp.

135{
136 if (m_Fonts.GetCount() == 0u)
137 Read();
138
139 if (Index >= m_Fonts.GetCount())
140 return CStringW();
141
142 return m_Fonts[Index].Name();
143}
void Read()
Definition: CFontCache.cpp:194
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble * u
Definition: glfuncs.h:240
CAtlStringW CStringW
Definition: atlstr.h:130
_In_ WDFCOLLECTION _In_ ULONG Index

Referenced by CEnumFonts::Next().

◆ Read()

void CFontCache::Read ( )

Definition at line 194 of file CFontCache.cpp.

195{
197 CRegKey key;
198
199 // Enumerate all registered font names
201 {
203 DWORD dwAllocated = 128;
204 DWORD ilIndex = 0;
206 do
207 {
208 DWORD dwSize = dwAllocated;
209 PWSTR Buffer = KeyName.GetBuffer(dwSize);
210 Status = RegEnumValueW(key.m_hKey, ilIndex, Buffer, &dwSize, NULL, NULL, NULL, NULL);
211 KeyName.ReleaseBuffer(dwSize);
212 if (Status == ERROR_SUCCESS)
213 {
214 // Insert will create an ordered list
215 Insert(fonts, KeyName);
216 ilIndex++;
217 continue;
218 }
220 break;
221 else if (Status == ERROR_MORE_DATA)
222 {
223 dwAllocated += 128;
224 }
225 } while (Status == ERROR_MORE_DATA || Status == ERROR_SUCCESS);
226 }
227
228 // Move the fonts from a list to an array (for easy indexing)
229 m_Fonts.SetCount(fonts.GetCount());
230 size_t Index = 0;
231 POSITION it = fonts.GetHeadPosition();
232 while (it != NULL)
233 {
234 m_Fonts[Index] = fonts.GetNext(it);
235 Index++;
236 }
237}
size_t GetCount() const
Definition: atlcoll.h:542
Definition: bufpool.h:45
void Insert(CAtlList< CFontInfo > &fonts, const CStringW &KeyName)
Definition: CFontCache.cpp:178
#define ERROR_MORE_DATA
Definition: dderror.h:13
#define ERROR_SUCCESS
Definition: deptool.c:10
static LSTATUS(WINAPI *pRegDeleteTreeW)(HKEY
#define FONT_HIVE
Definition: precomp.h:49
#define FONT_KEY
Definition: precomp.h:50
LONG WINAPI RegEnumValueW(_In_ HKEY hKey, _In_ DWORD index, _Out_ LPWSTR value, _Inout_ PDWORD val_count, _Reserved_ PDWORD reserved, _Out_opt_ PDWORD type, _Out_opt_ LPBYTE data, _Inout_opt_ PDWORD count)
Definition: reg.c:2830
#define ERROR_NO_MORE_ITEMS
Definition: compat.h:105
unsigned long DWORD
Definition: ntddk_ex.h:95
Status
Definition: gdiplustypes.h:25
PSDBQUERYRESULT_VISTA PVOID DWORD * dwSize
Definition: env.c:56
#define KEY_READ
Definition: nt_native.h:1026
Definition: copy.c:22
uint16_t * PWSTR
Definition: typedefs.h:56

Referenced by CFontExt::Drop(), Name(), and Size().

◆ SetFontDir()

void CFontCache::SetFontDir ( const LPCWSTR  Path)

Definition at line 120 of file CFontCache.cpp.

121{
124}
PRTL_UNICODE_STRING_BUFFER Path
bool IsEmpty() const noexcept
Definition: atlsimpstr.h:394

Referenced by CFontExt::Initialize().

◆ Size()

size_t CFontCache::Size ( )

Definition at line 126 of file CFontCache.cpp.

127{
128 if (m_Fonts.GetCount() == 0u)
129 Read();
130
131 return m_Fonts.GetCount();
132}

Referenced by Find().

Friends And Related Function Documentation

◆ CFontExtModule

friend class CFontExtModule
friend

Definition at line 59 of file CFontCache.hpp.

Member Data Documentation

◆ m_FontFolderPath

CStringW CFontCache::m_FontFolderPath
private

Definition at line 40 of file CFontCache.hpp.

Referenced by Filename(), FontPath(), and SetFontDir().

◆ m_Fonts

CAtlArray<CFontInfo> CFontCache::m_Fonts
private

Definition at line 39 of file CFontCache.hpp.

Referenced by Find(), Name(), Read(), and Size().


The documentation for this class was generated from the following files: