Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 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_CFX_SUBSTFONT_H_ | 7 #ifndef CORE_FXGE_CFX_SUBSTFONT_H_ |
| 8 #define CORE_FXGE_CFX_SUBSTFONT_H_ | 8 #define CORE_FXGE_CFX_SUBSTFONT_H_ |
| 9 | 9 |
| 10 #include "core/fxcrt/fx_string.h" | 10 #include "core/fxcrt/fx_string.h" |
| 11 | 11 |
| 12 #define FXFONT_SUBST_MM 0x01 | 12 #define FXFONT_SUBST_MM 0x01 |
| 13 #define FXFONT_SUBST_GLYPHPATH 0x04 | |
|
dsinclair
2016/10/11 20:18:33
Just to be sure, we don't have another define whic
npm
2016/10/11 20:29:44
git grep m_SubstFlags shows it's only |= with FXFO
| |
| 14 #define FXFONT_SUBST_CLEARTYPE 0x08 | |
| 15 #define FXFONT_SUBST_TRANSFORM 0x10 | |
| 16 #define FXFONT_SUBST_NONSYMBOL 0x20 | |
| 17 #define FXFONT_SUBST_EXACT 0x40 | 13 #define FXFONT_SUBST_EXACT 0x40 |
| 18 | 14 |
| 19 class CFX_SubstFont { | 15 class CFX_SubstFont { |
| 20 public: | 16 public: |
| 21 CFX_SubstFont(); | 17 CFX_SubstFont(); |
| 22 | 18 |
| 23 CFX_ByteString m_Family; | 19 CFX_ByteString m_Family; |
| 24 int m_Charset; | 20 int m_Charset; |
| 25 uint32_t m_SubstFlags; | 21 uint32_t m_SubstFlags; |
| 26 int m_Weight; | 22 int m_Weight; |
| 27 int m_ItalicAngle; | 23 int m_ItalicAngle; |
| 28 bool m_bSubstCJK; | 24 bool m_bSubstCJK; |
| 29 int m_WeightCJK; | 25 int m_WeightCJK; |
| 30 bool m_bItalicCJK; | 26 bool m_bItalicCJK; |
| 31 }; | 27 }; |
| 32 | 28 |
| 33 #endif // CORE_FXGE_CFX_SUBSTFONT_H_ | 29 #endif // CORE_FXGE_CFX_SUBSTFONT_H_ |
| OLD | NEW |