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_PDFWINDOW_PWL_EDIT_H_ | 7 #ifndef FPDFSDK_PDFWINDOW_PWL_EDIT_H_ |
8 #define FPDFSDK_INCLUDE_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" |
11 #include "fpdfsdk/include/fxedit/fx_edit.h" | 11 #include "fpdfsdk/include/fxedit/fx_edit.h" |
12 #include "fpdfsdk/include/pdfwindow/PWL_EditCtrl.h" | 12 #include "fpdfsdk/pdfwindow/PWL_EditCtrl.h" |
13 #include "fpdfsdk/include/pdfwindow/PWL_Wnd.h" | 13 #include "fpdfsdk/pdfwindow/PWL_Wnd.h" |
14 | 14 |
15 class IPWL_SpellCheck; | 15 class IPWL_SpellCheck; |
16 | 16 |
17 class IPWL_Filler_Notify { | 17 class IPWL_Filler_Notify { |
18 public: | 18 public: |
19 virtual ~IPWL_Filler_Notify() {} | 19 virtual ~IPWL_Filler_Notify() {} |
20 virtual void QueryWherePopup( | 20 virtual void QueryWherePopup( |
21 void* pPrivateData, | 21 void* pPrivateData, |
22 FX_FLOAT fPopupMin, | 22 FX_FLOAT fPopupMin, |
23 FX_FLOAT fPopupMax, | 23 FX_FLOAT fPopupMax, |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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_INCLUDE_PDFWINDOW_PWL_EDIT_H_ | 172 #endif // FPDFSDK_PDFWINDOW_PWL_EDIT_H_ |
OLD | NEW |