| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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 CORE_FXGE_ANDROID_FX_ANDROID_FONT_H_ | 7 #ifndef CORE_FXGE_ANDROID_CFX_ANDROIDFONTINFO_H_ |
| 8 #define CORE_FXGE_ANDROID_FX_ANDROID_FONT_H_ | 8 #define CORE_FXGE_ANDROID_CFX_ANDROIDFONTINFO_H_ |
| 9 | 9 |
| 10 #include "core/fxcrt/fx_system.h" | 10 #include "core/fxcrt/fx_system.h" |
| 11 | |
| 12 #if _FX_OS_ == _FX_ANDROID_ | |
| 13 | |
| 14 #include "core/fxge/cfx_fontmapper.h" | 11 #include "core/fxge/cfx_fontmapper.h" |
| 15 #include "core/fxge/fx_font.h" | 12 #include "core/fxge/fx_font.h" |
| 16 #include "core/fxge/ifx_systemfontinfo.h" | 13 #include "core/fxge/ifx_systemfontinfo.h" |
| 17 | 14 |
| 18 class CFPF_SkiaFontMgr; | 15 class CFPF_SkiaFontMgr; |
| 19 | 16 |
| 20 class CFX_AndroidFontInfo : public IFX_SystemFontInfo { | 17 class CFX_AndroidFontInfo : public IFX_SystemFontInfo { |
| 21 public: | 18 public: |
| 22 CFX_AndroidFontInfo(); | 19 CFX_AndroidFontInfo(); |
| 23 ~CFX_AndroidFontInfo() override; | 20 ~CFX_AndroidFontInfo() override; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 38 uint8_t* buffer, | 35 uint8_t* buffer, |
| 39 uint32_t size) override; | 36 uint32_t size) override; |
| 40 FX_BOOL GetFaceName(void* hFont, CFX_ByteString& name) override; | 37 FX_BOOL GetFaceName(void* hFont, CFX_ByteString& name) override; |
| 41 FX_BOOL GetFontCharset(void* hFont, int& charset) override; | 38 FX_BOOL GetFontCharset(void* hFont, int& charset) override; |
| 42 void DeleteFont(void* hFont) override; | 39 void DeleteFont(void* hFont) override; |
| 43 | 40 |
| 44 protected: | 41 protected: |
| 45 CFPF_SkiaFontMgr* m_pFontMgr; | 42 CFPF_SkiaFontMgr* m_pFontMgr; |
| 46 }; | 43 }; |
| 47 | 44 |
| 48 #endif // _FX_OS_ == _FX_ANDROID_ | 45 #endif // CORE_FXGE_ANDROID_CFX_ANDROIDFONTINFO_H_ |
| 49 | |
| 50 #endif // CORE_FXGE_ANDROID_FX_ANDROID_FONT_H_ | |
| OLD | NEW |