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 XFA_FEE_FDE_TXTEDTENGINE_H_ | 7 #ifndef XFA_FEE_FDE_TXTEDTENGINE_H_ |
8 #define XFA_FEE_FDE_TXTEDTENGINE_H_ | 8 #define XFA_FEE_FDE_TXTEDTENGINE_H_ |
9 | 9 |
10 #include "core/fxcrt/include/fx_string.h" | 10 #include "core/fxcrt/include/fx_string.h" |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 CFX_ArrayTemplate<FDE_LPTXTEDTSELRANGE> m_SelRangePtrArr; | 180 CFX_ArrayTemplate<FDE_LPTXTEDTSELRANGE> m_SelRangePtrArr; |
181 int32_t m_nPageLineCount; | 181 int32_t m_nPageLineCount; |
182 int32_t m_nLineCount; | 182 int32_t m_nLineCount; |
183 int32_t m_nAnchorPos; | 183 int32_t m_nAnchorPos; |
184 int32_t m_nLayoutPos; | 184 int32_t m_nLayoutPos; |
185 FX_FLOAT m_fCaretPosReserve; | 185 FX_FLOAT m_fCaretPosReserve; |
186 int32_t m_nCaret; | 186 int32_t m_nCaret; |
187 FX_BOOL m_bBefore; | 187 FX_BOOL m_bBefore; |
188 int32_t m_nCaretPage; | 188 int32_t m_nCaretPage; |
189 CFX_RectF m_rtCaret; | 189 CFX_RectF m_rtCaret; |
190 FX_DWORD m_dwFindFlags; | 190 uint32_t m_dwFindFlags; |
191 FX_BOOL m_bLock; | 191 FX_BOOL m_bLock; |
192 int32_t m_nLimit; | 192 int32_t m_nLimit; |
193 FX_WCHAR m_wcAliasChar; | 193 FX_WCHAR m_wcAliasChar; |
194 int32_t m_nFirstLineEnd; | 194 int32_t m_nFirstLineEnd; |
195 FX_BOOL m_bAutoLineEnd; | 195 FX_BOOL m_bAutoLineEnd; |
196 FX_WCHAR m_wLineEnd; | 196 FX_WCHAR m_wLineEnd; |
197 FDE_TXTEDT_TEXTCHANGE_INFO m_ChangeInfo; | 197 FDE_TXTEDT_TEXTCHANGE_INFO m_ChangeInfo; |
198 }; | 198 }; |
199 | 199 |
200 class CFDE_TxtEdtDoRecord_Insert : public IFDE_TxtEdtDoRecord { | 200 class CFDE_TxtEdtDoRecord_Insert : public IFDE_TxtEdtDoRecord { |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 | 238 |
239 private: | 239 private: |
240 CFDE_TxtEdtEngine* m_pEngine; | 240 CFDE_TxtEdtEngine* m_pEngine; |
241 FX_BOOL m_bSel; | 241 FX_BOOL m_bSel; |
242 int32_t m_nIndex; | 242 int32_t m_nIndex; |
243 int32_t m_nCaret; | 243 int32_t m_nCaret; |
244 CFX_WideString m_wsRange; | 244 CFX_WideString m_wsRange; |
245 }; | 245 }; |
246 | 246 |
247 #endif // XFA_FEE_FDE_TXTEDTENGINE_H_ | 247 #endif // XFA_FEE_FDE_TXTEDTENGINE_H_ |
OLD | NEW |