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 FPDFSDK_INCLUDE_FXEDIT_FXET_EDIT_H_ | 7 #ifndef FPDFSDK_INCLUDE_FXEDIT_FXET_EDIT_H_ |
8 #define FPDFSDK_INCLUDE_FXEDIT_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; |
19 class CFX_Edit; | 19 class CFX_Edit; |
20 class CFX_Edit_Iterator; | 20 class CFX_Edit_Iterator; |
(...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
823 int32_t GetTypeDescent(int32_t nFontIndex); | 823 int32_t GetTypeDescent(int32_t nFontIndex); |
824 int32_t GetWordFontIndex(FX_WORD word, int32_t charset, int32_t nFontIndex); | 824 int32_t GetWordFontIndex(FX_WORD word, int32_t charset, int32_t nFontIndex); |
825 int32_t GetDefaultFontIndex(); | 825 int32_t GetDefaultFontIndex(); |
826 FX_BOOL IsLatinWord(FX_WORD word); | 826 FX_BOOL IsLatinWord(FX_WORD word); |
827 | 827 |
828 private: | 828 private: |
829 IFX_Edit_FontMap* m_pFontMap; | 829 IFX_Edit_FontMap* m_pFontMap; |
830 }; | 830 }; |
831 | 831 |
832 #endif // FPDFSDK_INCLUDE_FXEDIT_FXET_EDIT_H_ | 832 #endif // FPDFSDK_INCLUDE_FXEDIT_FXET_EDIT_H_ |
OLD | NEW |