Home | History | Annotate | Download | only in src

Lines Matching refs:hFont

48   FX_DWORD GetFontData(void* hFont,
53 return m_pInfo->GetFontData(m_pInfo, hFont, table, buffer, size);
57 FX_BOOL GetFaceName(void* hFont, CFX_ByteString& name) override {
60 FX_DWORD size = m_pInfo->GetFaceName(m_pInfo, hFont, NULL, 0);
64 size = m_pInfo->GetFaceName(m_pInfo, hFont, buffer, size);
70 FX_BOOL GetFontCharset(void* hFont, int& charset) override {
72 charset = m_pInfo->GetFontCharset(m_pInfo, hFont);
78 void DeleteFont(void* hFont) override {
80 m_pInfo->DeleteFont(m_pInfo, hFont);
137 void* hFont,
142 ->m_pFontInfo->GetFontData(hFont, table, buffer, buf_size);
146 void* hFont,
151 ->m_pFontInfo->GetFaceName(hFont, name))
159 static int DefaultGetFontCharset(struct _FPDF_SYSFONTINFO* pThis, void* hFont) {
162 ->m_pFontInfo->GetFontCharset(hFont, charset))
167 static void DefaultDeleteFont(struct _FPDF_SYSFONTINFO* pThis, void* hFont) {
168 ((FPDF_SYSFONTINFO_DEFAULT*)pThis)->m_pFontInfo->DeleteFont(hFont);