OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #ifndef _FWL_WIDGETTP_H | 7 #ifndef _FWL_WIDGETTP_H |
8 #define _FWL_WIDGETTP_H | 8 #define _FWL_WIDGETTP_H |
9 class IFWL_ThemeProvider; | 9 class IFWL_ThemeProvider; |
10 class IFWL_Widget; | 10 class IFWL_Widget; |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 virtual ~CFWL_FontManager(); | 190 virtual ~CFWL_FontManager(); |
191 IFX_Font* FindFont(const CFX_WideStringC& wsFontFamily, | 191 IFX_Font* FindFont(const CFX_WideStringC& wsFontFamily, |
192 FX_DWORD dwFontStyles, | 192 FX_DWORD dwFontStyles, |
193 FX_WORD dwCodePage); | 193 FX_WORD dwCodePage); |
194 | 194 |
195 protected: | 195 protected: |
196 CFX_PtrArray m_arrFonts; | 196 CFX_PtrArray m_arrFonts; |
197 }; | 197 }; |
198 CFWL_FontManager* FWL_GetFontManager(); | 198 CFWL_FontManager* FWL_GetFontManager(); |
199 #endif | 199 #endif |
OLD | NEW |