Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Side by Side Diff: xfa/fde/cfde_txtedtengine.h

Issue 2535723010: Rename IFX_Stream to IFGAS_Stream. (Closed)
Patch Set: rename more to IFGAS, {} Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « testing/libfuzzer/pdf_xml_fuzzer.cc ('k') | xfa/fde/cfde_txtedtengine.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_FDE_CFDE_TXTEDTENGINE_H_ 7 #ifndef XFA_FDE_CFDE_TXTEDTENGINE_H_
8 #define XFA_FDE_CFDE_TXTEDTENGINE_H_ 8 #define XFA_FDE_CFDE_TXTEDTENGINE_H_
9 9
10 #include <memory> 10 #include <memory>
(...skipping 10 matching lines...) Expand all
21 public: 21 public:
22 CFDE_TxtEdtEngine(); 22 CFDE_TxtEdtEngine();
23 ~CFDE_TxtEdtEngine(); 23 ~CFDE_TxtEdtEngine();
24 24
25 void SetEditParams(const FDE_TXTEDTPARAMS& params); 25 void SetEditParams(const FDE_TXTEDTPARAMS& params);
26 FDE_TXTEDTPARAMS* GetEditParams(); 26 FDE_TXTEDTPARAMS* GetEditParams();
27 27
28 int32_t CountPages() const; 28 int32_t CountPages() const;
29 IFDE_TxtEdtPage* GetPage(int32_t nIndex); 29 IFDE_TxtEdtPage* GetPage(int32_t nIndex);
30 30
31 void SetTextByStream(IFX_Stream* pStream); 31 void SetTextByStream(IFGAS_Stream* pStream);
32 void SetText(const CFX_WideString& wsText); 32 void SetText(const CFX_WideString& wsText);
33 int32_t GetTextLength() const; 33 int32_t GetTextLength() const;
34 CFX_WideString GetText(int32_t nStart, int32_t nCount = -1) const; 34 CFX_WideString GetText(int32_t nStart, int32_t nCount = -1) const;
35 void ClearText(); 35 void ClearText();
36 36
37 int32_t GetCaretRect(CFX_RectF& rtCaret) const; 37 int32_t GetCaretRect(CFX_RectF& rtCaret) const;
38 int32_t GetCaretPos() const; 38 int32_t GetCaretPos() const;
39 int32_t SetCaretPos(int32_t nIndex, bool bBefore); 39 int32_t SetCaretPos(int32_t nIndex, bool bBefore);
40 int32_t MoveCaretPos(FDE_TXTEDTMOVECARET eMoveCaret, 40 int32_t MoveCaretPos(FDE_TXTEDTMOVECARET eMoveCaret,
41 bool bShift = false, 41 bool bShift = false,
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 bool m_bLock; 165 bool m_bLock;
166 int32_t m_nLimit; 166 int32_t m_nLimit;
167 FX_WCHAR m_wcAliasChar; 167 FX_WCHAR m_wcAliasChar;
168 int32_t m_nFirstLineEnd; 168 int32_t m_nFirstLineEnd;
169 bool m_bAutoLineEnd; 169 bool m_bAutoLineEnd;
170 FX_WCHAR m_wLineEnd; 170 FX_WCHAR m_wLineEnd;
171 FDE_TXTEDT_TEXTCHANGE_INFO m_ChangeInfo; 171 FDE_TXTEDT_TEXTCHANGE_INFO m_ChangeInfo;
172 }; 172 };
173 173
174 #endif // XFA_FDE_CFDE_TXTEDTENGINE_H_ 174 #endif // XFA_FDE_CFDE_TXTEDTENGINE_H_
OLDNEW
« no previous file with comments | « testing/libfuzzer/pdf_xml_fuzzer.cc ('k') | xfa/fde/cfde_txtedtengine.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698