| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 |
| 7 #ifndef CORE_FXGE_INCLUDE_CFX_SUBSTFONT_H_ |
| 8 #define CORE_FXGE_INCLUDE_CFX_SUBSTFONT_H_ |
| 9 |
| 10 #include "core/fxcrt/include/fx_string.h" |
| 11 |
| 12 #define FXFONT_SUBST_MM 0x01 |
| 13 #define FXFONT_SUBST_GLYPHPATH 0x04 |
| 14 #define FXFONT_SUBST_CLEARTYPE 0x08 |
| 15 #define FXFONT_SUBST_TRANSFORM 0x10 |
| 16 #define FXFONT_SUBST_NONSYMBOL 0x20 |
| 17 #define FXFONT_SUBST_EXACT 0x40 |
| 18 #define FXFONT_SUBST_STANDARD 0x80 |
| 19 |
| 20 class CFX_SubstFont { |
| 21 public: |
| 22 CFX_SubstFont(); |
| 23 |
| 24 CFX_ByteString m_Family; |
| 25 int m_Charset; |
| 26 uint32_t m_SubstFlags; |
| 27 int m_Weight; |
| 28 int m_ItalicAngle; |
| 29 bool m_bSubstCJK; |
| 30 int m_WeightCJK; |
| 31 bool m_bItalicCJK; |
| 32 }; |
| 33 |
| 34 #endif // CORE_FXGE_INCLUDE_CFX_SUBSTFONT_H_ |
| OLD | NEW |