| 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 _FXET_EDIT_H_ | 7 #ifndef FPDFSDK_INCLUDE_FXEDIT_FXET_EDIT_H_ |
| 8 #define _FXET_EDIT_H_ | 8 #define FPDFSDK_INCLUDE_FXEDIT_FXET_EDIT_H_ |
| 9 | 9 |
| 10 #include "../../../core/include/fpdfdoc/fpdf_vt.h" | 10 #include "../../../core/include/fpdfdoc/fpdf_vt.h" |
| 11 #include "fx_edit.h" | 11 #include "fx_edit.h" |
| 12 | 12 |
| 13 class CFX_Edit_Page; | 13 class CFX_Edit_Page; |
| 14 struct CFX_Edit_LineRect; | 14 struct CFX_Edit_LineRect; |
| 15 class CFX_Edit_LineRectArray; | 15 class CFX_Edit_LineRectArray; |
| 16 class CFX_Edit_RectArray; | 16 class CFX_Edit_RectArray; |
| 17 class CFX_Edit_Refresh; | 17 class CFX_Edit_Refresh; |
| 18 class CFX_Edit_Select; | 18 class CFX_Edit_Select; |
| (...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 807 FX_INT32 GetTypeAscent(FX_INT32 n
FontIndex); | 807 FX_INT32 GetTypeAscent(FX_INT32 n
FontIndex); |
| 808 FX_INT32 GetTypeDescent(FX_INT32
nFontIndex); | 808 FX_INT32 GetTypeDescent(FX_INT32
nFontIndex); |
| 809 FX_INT32 GetWordFontIndex(FX_WORD
word, FX_INT32 charset, FX_INT32 nFontIndex); | 809 FX_INT32 GetWordFontIndex(FX_WORD
word, FX_INT32 charset, FX_INT32 nFontIndex); |
| 810 FX_INT32 GetDefaultFontIndex(); | 810 FX_INT32 GetDefaultFontIndex(); |
| 811 FX_BOOL IsLatinWord(FX_WORD word
); | 811 FX_BOOL IsLatinWord(FX_WORD word
); |
| 812 | 812 |
| 813 private: | 813 private: |
| 814 IFX_Edit_FontMap* m_pFontMap; | 814 IFX_Edit_FontMap* m_pFontMap; |
| 815 }; | 815 }; |
| 816 | 816 |
| 817 #endif //_FXET_EDIT_H_ | 817 #endif // FPDFSDK_INCLUDE_FXEDIT_FXET_EDIT_H_ |
| 818 | |
| OLD | NEW |