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 _FXET_EDIT_H_ |
8 #define _FXET_EDIT_H_ | 8 #define _FXET_EDIT_H_ |
9 | 9 |
10 #include "fx_edit.h" | 10 #include "fx_edit.h" |
(...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
755 | 755 |
756 CPDF_Point
m_ptScrollPos; | 756 CPDF_Point
m_ptScrollPos; |
757 CPDF_Point
m_ptRefreshScrollPos; | 757 CPDF_Point
m_ptRefreshScrollPos; |
758 FX_BOOL
m_bEnableScroll; | 758 FX_BOOL
m_bEnableScroll; |
759 IFX_Edit_Iterator * m_pItera
tor; | 759 IFX_Edit_Iterator * m_pItera
tor; |
760 CFX_Edit_Refresh m_Refres
h; | 760 CFX_Edit_Refresh m_Refres
h; |
761 CPDF_Point
m_ptCaret; | 761 CPDF_Point
m_ptCaret; |
762 CFX_Edit_Undo m_Undo; | 762 CFX_Edit_Undo m_Undo; |
763 FX_INT32
m_nAlignment; | 763 FX_INT32
m_nAlignment; |
764 FX_BOOL
m_bNotifyFlag; | 764 FX_BOOL
m_bNotifyFlag; |
765 FX_BOOL
m_bTextFullFlag; | |
766 FX_BOOL
m_bEnableOverflow; | 765 FX_BOOL
m_bEnableOverflow; |
767 FX_BOOL
m_bEnableRefresh; | 766 FX_BOOL
m_bEnableRefresh; |
768 CPDF_Rect
m_rcOldContent; | 767 CPDF_Rect
m_rcOldContent; |
769 FX_BOOL
m_bEnableUndo; | 768 FX_BOOL
m_bEnableUndo; |
770 FX_BOOL
m_bNotify; | 769 FX_BOOL
m_bNotify; |
771 FX_BOOL
m_bOprNotify; | 770 FX_BOOL
m_bOprNotify; |
772 CFX_Edit_GroupUndoItem* m_pGroupUndoItem
; | 771 CFX_Edit_GroupUndoItem* m_pGroupUndoItem
; |
773 }; | 772 }; |
774 | 773 |
775 /* ------------------------- CFX_Edit_Iterator ---------------------------- */ | 774 /* ------------------------- CFX_Edit_Iterator ---------------------------- */ |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
814 FX_INT32 GetWordFontIndex(FX_WORD
word, FX_INT32 charset, FX_INT32 nFontIndex); | 813 FX_INT32 GetWordFontIndex(FX_WORD
word, FX_INT32 charset, FX_INT32 nFontIndex); |
815 FX_INT32 GetDefaultFontIndex(); | 814 FX_INT32 GetDefaultFontIndex(); |
816 FX_BOOL IsLatinWord(FX_WORD word
); | 815 FX_BOOL IsLatinWord(FX_WORD word
); |
817 | 816 |
818 private: | 817 private: |
819 IFX_Edit_FontMap* m_pFontMap; | 818 IFX_Edit_FontMap* m_pFontMap; |
820 }; | 819 }; |
821 | 820 |
822 #endif //_FXET_EDIT_H_ | 821 #endif //_FXET_EDIT_H_ |
823 | 822 |
OLD | NEW |