| 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_PDFWINDOW_PWL_EDIT_H_ | 7 #ifndef FPDFSDK_PDFWINDOW_PWL_EDIT_H_ |
| 8 #define FPDFSDK_PDFWINDOW_PWL_EDIT_H_ | 8 #define FPDFSDK_PDFWINDOW_PWL_EDIT_H_ |
| 9 | 9 |
| 10 #include "core/fxcrt/include/fx_basic.h" | 10 #include "core/fxcrt/include/fx_basic.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 int32_t& nRet, | 24 int32_t& nRet, |
| 25 FX_FLOAT& fPopupRet) = 0; // nRet: (0:bottom 1:top) | 25 FX_FLOAT& fPopupRet) = 0; // nRet: (0:bottom 1:top) |
| 26 virtual void OnBeforeKeyStroke(void* pPrivateData, | 26 virtual void OnBeforeKeyStroke(void* pPrivateData, |
| 27 CFX_WideString& strChange, | 27 CFX_WideString& strChange, |
| 28 const CFX_WideString& strChangeEx, | 28 const CFX_WideString& strChangeEx, |
| 29 int nSelStart, | 29 int nSelStart, |
| 30 int nSelEnd, | 30 int nSelEnd, |
| 31 FX_BOOL bKeyDown, | 31 FX_BOOL bKeyDown, |
| 32 FX_BOOL& bRC, | 32 FX_BOOL& bRC, |
| 33 FX_BOOL& bExit, | 33 FX_BOOL& bExit, |
| 34 FX_DWORD nFlag) = 0; | 34 uint32_t nFlag) = 0; |
| 35 #ifdef PDF_ENABLE_XFA | 35 #ifdef PDF_ENABLE_XFA |
| 36 virtual void OnPopupPreOpen(void* pPrivateData, | 36 virtual void OnPopupPreOpen(void* pPrivateData, |
| 37 FX_BOOL& bExit, | 37 FX_BOOL& bExit, |
| 38 FX_DWORD nFlag) = 0; | 38 uint32_t nFlag) = 0; |
| 39 virtual void OnPopupPostOpen(void* pPrivateData, | 39 virtual void OnPopupPostOpen(void* pPrivateData, |
| 40 FX_BOOL& bExit, | 40 FX_BOOL& bExit, |
| 41 FX_DWORD nFlag) = 0; | 41 uint32_t nFlag) = 0; |
| 42 #endif // PDF_ENABLE_XFA | 42 #endif // PDF_ENABLE_XFA |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 class CPWL_Edit : public CPWL_EditCtrl, public IFX_Edit_OprNotify { | 45 class CPWL_Edit : public CPWL_EditCtrl, public IFX_Edit_OprNotify { |
| 46 public: | 46 public: |
| 47 CPWL_Edit(); | 47 CPWL_Edit(); |
| 48 ~CPWL_Edit() override; | 48 ~CPWL_Edit() override; |
| 49 | 49 |
| 50 // CPWL_EditCtrl | 50 // CPWL_EditCtrl |
| 51 CFX_ByteString GetClassName() const override; | 51 CFX_ByteString GetClassName() const override; |
| 52 void OnDestroy() override; | 52 void OnDestroy() override; |
| 53 void OnCreated() override; | 53 void OnCreated() override; |
| 54 void RePosChildWnd() override; | 54 void RePosChildWnd() override; |
| 55 CFX_FloatRect GetClientRect() const override; | 55 CFX_FloatRect GetClientRect() const override; |
| 56 void GetThisAppearanceStream(CFX_ByteTextBuf& sAppStream) override; | 56 void GetThisAppearanceStream(CFX_ByteTextBuf& sAppStream) override; |
| 57 void DrawThisAppearance(CFX_RenderDevice* pDevice, | 57 void DrawThisAppearance(CFX_RenderDevice* pDevice, |
| 58 CFX_Matrix* pUser2Device) override; | 58 CFX_Matrix* pUser2Device) override; |
| 59 FX_BOOL OnLButtonDown(const CFX_FloatPoint& point, FX_DWORD nFlag) override; | 59 FX_BOOL OnLButtonDown(const CFX_FloatPoint& point, uint32_t nFlag) override; |
| 60 FX_BOOL OnLButtonDblClk(const CFX_FloatPoint& point, FX_DWORD nFlag) override; | 60 FX_BOOL OnLButtonDblClk(const CFX_FloatPoint& point, uint32_t nFlag) override; |
| 61 FX_BOOL OnRButtonUp(const CFX_FloatPoint& point, FX_DWORD nFlag) override; | 61 FX_BOOL OnRButtonUp(const CFX_FloatPoint& point, uint32_t nFlag) override; |
| 62 FX_BOOL OnMouseWheel(short zDelta, | 62 FX_BOOL OnMouseWheel(short zDelta, |
| 63 const CFX_FloatPoint& point, | 63 const CFX_FloatPoint& point, |
| 64 FX_DWORD nFlag) override; | 64 uint32_t nFlag) override; |
| 65 FX_BOOL OnKeyDown(uint16_t nChar, FX_DWORD nFlag) override; | 65 FX_BOOL OnKeyDown(uint16_t nChar, uint32_t nFlag) override; |
| 66 FX_BOOL OnChar(uint16_t nChar, FX_DWORD nFlag) override; | 66 FX_BOOL OnChar(uint16_t nChar, uint32_t nFlag) override; |
| 67 CFX_FloatRect GetFocusRect() const override; | 67 CFX_FloatRect GetFocusRect() const override; |
| 68 void OnSetFocus() override; | 68 void OnSetFocus() override; |
| 69 void OnKillFocus() override; | 69 void OnKillFocus() override; |
| 70 | 70 |
| 71 void SetAlignFormatH(PWL_EDIT_ALIGNFORMAT_H nFormat = PEAH_LEFT, | 71 void SetAlignFormatH(PWL_EDIT_ALIGNFORMAT_H nFormat = PEAH_LEFT, |
| 72 FX_BOOL bPaint = TRUE); // 0:left 1:right 2:middle | 72 FX_BOOL bPaint = TRUE); // 0:left 1:right 2:middle |
| 73 void SetAlignFormatV(PWL_EDIT_ALIGNFORMAT_V nFormat = PEAV_TOP, | 73 void SetAlignFormatV(PWL_EDIT_ALIGNFORMAT_V nFormat = PEAV_TOP, |
| 74 FX_BOOL bPaint = TRUE); // 0:top 1:bottom 2:center | 74 FX_BOOL bPaint = TRUE); // 0:top 1:bottom 2:center |
| 75 | 75 |
| 76 void SetCharArray(int32_t nCharArray); | 76 void SetCharArray(int32_t nCharArray); |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 CPVT_WordRange CombineWordRange(const CPVT_WordRange& wr1, | 147 CPVT_WordRange CombineWordRange(const CPVT_WordRange& wr1, |
| 148 const CPVT_WordRange& wr2); | 148 const CPVT_WordRange& wr2); |
| 149 CPVT_WordRange GetLatinWordsRange(const CFX_FloatPoint& point) const; | 149 CPVT_WordRange GetLatinWordsRange(const CFX_FloatPoint& point) const; |
| 150 CPVT_WordRange GetLatinWordsRange(const CPVT_WordPlace& place) const; | 150 CPVT_WordRange GetLatinWordsRange(const CPVT_WordPlace& place) const; |
| 151 CPVT_WordRange GetArabicWordsRange(const CPVT_WordPlace& place) const; | 151 CPVT_WordRange GetArabicWordsRange(const CPVT_WordPlace& place) const; |
| 152 CPVT_WordRange GetSameWordsRange(const CPVT_WordPlace& place, | 152 CPVT_WordRange GetSameWordsRange(const CPVT_WordPlace& place, |
| 153 FX_BOOL bLatin, | 153 FX_BOOL bLatin, |
| 154 FX_BOOL bArabic) const; | 154 FX_BOOL bArabic) const; |
| 155 | 155 |
| 156 public: | 156 public: |
| 157 FX_BOOL IsProceedtoOnChar(uint16_t nKeyCode, FX_DWORD nFlag); | 157 FX_BOOL IsProceedtoOnChar(uint16_t nKeyCode, uint32_t nFlag); |
| 158 | 158 |
| 159 private: | 159 private: |
| 160 IPWL_Filler_Notify* m_pFillerNotify; | 160 IPWL_Filler_Notify* m_pFillerNotify; |
| 161 IPWL_SpellCheck* m_pSpellCheck; | 161 IPWL_SpellCheck* m_pSpellCheck; |
| 162 FX_BOOL m_bFocus; | 162 FX_BOOL m_bFocus; |
| 163 CFX_FloatRect m_rcOldWindow; | 163 CFX_FloatRect m_rcOldWindow; |
| 164 | 164 |
| 165 public: | 165 public: |
| 166 void AttachFFLData(void* pData) { m_pFormFiller = pData; } | 166 void AttachFFLData(void* pData) { m_pFormFiller = pData; } |
| 167 | 167 |
| 168 private: | 168 private: |
| 169 void* m_pFormFiller; | 169 void* m_pFormFiller; |
| 170 }; | 170 }; |
| 171 | 171 |
| 172 #endif // FPDFSDK_PDFWINDOW_PWL_EDIT_H_ | 172 #endif // FPDFSDK_PDFWINDOW_PWL_EDIT_H_ |
| OLD | NEW |