diff options
Diffstat (limited to 'fpdfsdk/pdfwindow/cpwl_edit.h')
-rw-r--r-- | fpdfsdk/pdfwindow/cpwl_edit.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/fpdfsdk/pdfwindow/cpwl_edit.h b/fpdfsdk/pdfwindow/cpwl_edit.h index 038aba955f..ebf556ad71 100644 --- a/fpdfsdk/pdfwindow/cpwl_edit.h +++ b/fpdfsdk/pdfwindow/cpwl_edit.h @@ -7,6 +7,8 @@ #ifndef FPDFSDK_PDFWINDOW_CPWL_EDIT_H_ #define FPDFSDK_PDFWINDOW_CPWL_EDIT_H_ +#include <utility> + #include "core/fpdfdoc/cpvt_wordrange.h" #include "core/fxcrt/cfx_unowned_ptr.h" #include "core/fxcrt/fx_basic.h" @@ -22,15 +24,14 @@ class IPWL_Filler_Notify { float fPopupMax, bool* bBottom, float* fPopupRet) = 0; - virtual void OnBeforeKeyStroke(void* pPrivateData, - CFX_WideString& strChange, - const CFX_WideString& strChangeEx, - int nSelStart, - int nSelEnd, - bool bKeyDown, - bool& bRC, - bool& bExit, - uint32_t nFlag) = 0; + virtual std::pair<bool, bool> OnBeforeKeyStroke( + void* pPrivateData, + CFX_WideString& strChange, + const CFX_WideString& strChangeEx, + int nSelStart, + int nSelEnd, + bool bKeyDown, + uint32_t nFlag) = 0; #ifdef PDF_ENABLE_XFA virtual bool OnPopupPreOpen(void* pPrivateData, uint32_t nFlag) = 0; virtual bool OnPopupPostOpen(void* pPrivateData, uint32_t nFlag) = 0; |