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 _FX_EDIT_H_ | 7 #ifndef FPDFSDK_INCLUDE_FXEDIT_FX_EDIT_H_ |
8 #define _FX_EDIT_H_ | 8 #define FPDFSDK_INCLUDE_FXEDIT_FX_EDIT_H_ |
9 | 9 |
10 #include "../../../core/include/fxcrt/fx_basic.h" | 10 #include "../../../core/include/fxcrt/fx_basic.h" |
11 #include "../../../core/include/fxge/fx_dib.h" | 11 #include "../../../core/include/fxge/fx_dib.h" |
12 | 12 |
13 class CFX_RenderDevice; | 13 class CFX_RenderDevice; |
14 class CPDF_Font; | 14 class CPDF_Font; |
15 class CPDF_Matrix; | 15 class CPDF_Matrix; |
16 class CPDF_PageObjects; | 16 class CPDF_PageObjects; |
17 class CPDF_Point; | 17 class CPDF_Point; |
18 class CPDF_Rect; | 18 class CPDF_Rect; |
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
485 virtual void OnVK_RIG
HT(FX_BOOL bShift,FX_BOOL bCtrl) = 0; | 485 virtual void OnVK_RIG
HT(FX_BOOL bShift,FX_BOOL bCtrl) = 0; |
486 virtual void OnVK_HOM
E(FX_BOOL bShift,FX_BOOL bCtrl) = 0; | 486 virtual void OnVK_HOM
E(FX_BOOL bShift,FX_BOOL bCtrl) = 0; |
487 virtual void OnVK_END
(FX_BOOL bShift,FX_BOOL bCtrl) = 0; | 487 virtual void OnVK_END
(FX_BOOL bShift,FX_BOOL bCtrl) = 0; |
488 virtual void OnVK(FX_
INT32 nItemIndex,FX_BOOL bShift,FX_BOOL bCtrl) = 0; | 488 virtual void OnVK(FX_
INT32 nItemIndex,FX_BOOL bShift,FX_BOOL bCtrl) = 0; |
489 virtual FX_BOOL OnChar(F
X_WORD nChar,FX_BOOL bShift,FX_BOOL bCtrl) = 0; | 489 virtual FX_BOOL OnChar(F
X_WORD nChar,FX_BOOL bShift,FX_BOOL bCtrl) = 0; |
490 | 490 |
491 protected: | 491 protected: |
492 ~IFX_List() { } | 492 ~IFX_List() { } |
493 }; | 493 }; |
494 | 494 |
495 #endif | 495 #endif // FPDFSDK_INCLUDE_FXEDIT_FX_EDIT_H_ |
496 | |
OLD | NEW |