| 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_SRC_FXGE_GE_FX_TEXT_INT_H_ | 7 #ifndef CORE_FXGE_GE_FX_TEXT_INT_H_ |
| 8 #define CORE_SRC_FXGE_GE_FX_TEXT_INT_H_ | 8 #define CORE_FXGE_GE_FX_TEXT_INT_H_ |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 | 11 |
| 12 #include "core/include/fxge/fx_font.h" | 12 #include "core/include/fxge/fx_font.h" |
| 13 #include "core/include/fxge/fx_freetype.h" | 13 #include "core/include/fxge/fx_freetype.h" |
| 14 | 14 |
| 15 struct _CFX_UniqueKeyGen { | 15 struct _CFX_UniqueKeyGen { |
| 16 void Generate(int count, ...); | 16 void Generate(int count, ...); |
| 17 FX_CHAR m_Key[128]; | 17 FX_CHAR m_Key[128]; |
| 18 int m_KeyLen; | 18 int m_KeyLen; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 | 74 |
| 75 const CFX_ByteString m_FilePath; | 75 const CFX_ByteString m_FilePath; |
| 76 const CFX_ByteString m_FaceName; | 76 const CFX_ByteString m_FaceName; |
| 77 const CFX_ByteString m_FontTables; | 77 const CFX_ByteString m_FontTables; |
| 78 const FX_DWORD m_FontOffset; | 78 const FX_DWORD m_FontOffset; |
| 79 const FX_DWORD m_FileSize; | 79 const FX_DWORD m_FileSize; |
| 80 FX_DWORD m_Styles; | 80 FX_DWORD m_Styles; |
| 81 FX_DWORD m_Charsets; | 81 FX_DWORD m_Charsets; |
| 82 }; | 82 }; |
| 83 | 83 |
| 84 #endif // CORE_SRC_FXGE_GE_FX_TEXT_INT_H_ | 84 #endif // CORE_FXGE_GE_FX_TEXT_INT_H_ |
| OLD | NEW |