| 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 CORE_FXGE_APPLE_APPLE_INT_H_ | 7 #ifndef CORE_FXGE_APPLE_APPLE_INT_H_ |
| 8 #define CORE_FXGE_APPLE_APPLE_INT_H_ | 8 #define CORE_FXGE_APPLE_APPLE_INT_H_ |
| 9 | 9 |
| 10 #include "core/fxcrt/include/fx_system.h" | 10 #include "core/fxcrt/include/fx_system.h" |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 int dest_height, | 127 int dest_height, |
| 128 const FX_RECT* pClipRect, | 128 const FX_RECT* pClipRect, |
| 129 uint32_t flags, | 129 uint32_t flags, |
| 130 int blend_type) override; | 130 int blend_type) override; |
| 131 FX_BOOL StartDIBits(const CFX_DIBSource* pBitmap, | 131 FX_BOOL StartDIBits(const CFX_DIBSource* pBitmap, |
| 132 int bitmap_alpha, | 132 int bitmap_alpha, |
| 133 uint32_t color, | 133 uint32_t color, |
| 134 const CFX_Matrix* pMatrix, | 134 const CFX_Matrix* pMatrix, |
| 135 uint32_t flags, | 135 uint32_t flags, |
| 136 void*& handle, | 136 void*& handle, |
| 137 int blend_type) override { | 137 int blend_type) override; |
| 138 return FALSE; | |
| 139 } | |
| 140 FX_BOOL DrawDeviceText(int nChars, | 138 FX_BOOL DrawDeviceText(int nChars, |
| 141 const FXTEXT_CHARPOS* pCharPos, | 139 const FXTEXT_CHARPOS* pCharPos, |
| 142 CFX_Font* pFont, | 140 CFX_Font* pFont, |
| 143 CFX_FontCache* pCache, | 141 CFX_FontCache* pCache, |
| 144 const CFX_Matrix* pObject2Device, | 142 const CFX_Matrix* pObject2Device, |
| 145 FX_FLOAT font_size, | 143 FX_FLOAT font_size, |
| 146 uint32_t color) override; | 144 uint32_t color) override; |
| 147 void ClearDriver() override; | 145 void ClearDriver() override; |
| 148 | 146 |
| 149 protected: | 147 protected: |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 int32_t m_vertSize; | 180 int32_t m_vertSize; |
| 183 }; | 181 }; |
| 184 | 182 |
| 185 uint32_t FX_GetHashCode(const FX_CHAR* pStr); | 183 uint32_t FX_GetHashCode(const FX_CHAR* pStr); |
| 186 uint32_t FX_IOSGetMatchFamilyNameHashcode(const FX_CHAR* pFontName); | 184 uint32_t FX_IOSGetMatchFamilyNameHashcode(const FX_CHAR* pFontName); |
| 187 uint32_t FX_IOSGetFamilyNamesCount(); | 185 uint32_t FX_IOSGetFamilyNamesCount(); |
| 188 const FX_CHAR* FX_IOSGetFamilyName(uint32_t uIndex); | 186 const FX_CHAR* FX_IOSGetFamilyName(uint32_t uIndex); |
| 189 #endif | 187 #endif |
| 190 | 188 |
| 191 #endif // CORE_FXGE_APPLE_APPLE_INT_H_ | 189 #endif // CORE_FXGE_APPLE_APPLE_INT_H_ |
| OLD | NEW |