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 CORE_INCLUDE_FPDFTEXT_FPDF_TEXT_H_ | 7 #ifndef CORE_INCLUDE_FPDFTEXT_FPDF_TEXT_H_ |
8 #define CORE_INCLUDE_FPDFTEXT_FPDF_TEXT_H_ | 8 #define CORE_INCLUDE_FPDFTEXT_FPDF_TEXT_H_ |
9 | 9 |
10 #include "core/include/fpdfapi/fpdf_parser.h" | 10 #include "core/include/fpdfapi/fpdf_parser.h" |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 | 51 |
52 virtual void ParseTextPage() = 0; | 52 virtual void ParseTextPage() = 0; |
53 virtual bool IsParsed() const = 0; | 53 virtual bool IsParsed() const = 0; |
54 virtual int CharIndexFromTextIndex(int TextIndex) const = 0; | 54 virtual int CharIndexFromTextIndex(int TextIndex) const = 0; |
55 virtual int TextIndexFromCharIndex(int CharIndex) const = 0; | 55 virtual int TextIndexFromCharIndex(int CharIndex) const = 0; |
56 virtual int CountChars() const = 0; | 56 virtual int CountChars() const = 0; |
57 virtual void GetCharInfo(int index, FPDF_CHAR_INFO* info) const = 0; | 57 virtual void GetCharInfo(int index, FPDF_CHAR_INFO* info) const = 0; |
58 virtual void GetRectArray(int start, | 58 virtual void GetRectArray(int start, |
59 int nCount, | 59 int nCount, |
60 CFX_RectArray& rectArray) const = 0; | 60 CFX_RectArray& rectArray) const = 0; |
61 virtual int GetIndexAtPos(CPDF_Point point, | 61 virtual int GetIndexAtPos(CFX_FloatPoint point, |
62 FX_FLOAT xTolerance, | 62 FX_FLOAT xTolerance, |
63 FX_FLOAT yTolerance) const = 0; | 63 FX_FLOAT yTolerance) const = 0; |
64 virtual int GetIndexAtPos(FX_FLOAT x, | 64 virtual int GetIndexAtPos(FX_FLOAT x, |
65 FX_FLOAT y, | 65 FX_FLOAT y, |
66 FX_FLOAT xTolerance, | 66 FX_FLOAT xTolerance, |
67 FX_FLOAT yTolerance) const = 0; | 67 FX_FLOAT yTolerance) const = 0; |
68 virtual CFX_WideString GetTextByRect(const CFX_FloatRect& rect) const = 0; | 68 virtual CFX_WideString GetTextByRect(const CFX_FloatRect& rect) const = 0; |
69 virtual void GetRectsArrayByRect(const CFX_FloatRect& rect, | 69 virtual void GetRectsArrayByRect(const CFX_FloatRect& rect, |
70 CFX_RectArray& resRectArray) const = 0; | 70 CFX_RectArray& resRectArray) const = 0; |
71 virtual int CountRects(int start, int nCount) = 0; | 71 virtual int CountRects(int start, int nCount) = 0; |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 virtual ~IPDF_LinkExtract() {} | 111 virtual ~IPDF_LinkExtract() {} |
112 | 112 |
113 virtual FX_BOOL ExtractLinks(const IPDF_TextPage* pTextPage) = 0; | 113 virtual FX_BOOL ExtractLinks(const IPDF_TextPage* pTextPage) = 0; |
114 virtual int CountLinks() const = 0; | 114 virtual int CountLinks() const = 0; |
115 virtual CFX_WideString GetURL(int index) const = 0; | 115 virtual CFX_WideString GetURL(int index) const = 0; |
116 virtual void GetBoundedSegment(int index, int& start, int& count) const = 0; | 116 virtual void GetBoundedSegment(int index, int& start, int& count) const = 0; |
117 virtual void GetRects(int index, CFX_RectArray& rects) const = 0; | 117 virtual void GetRects(int index, CFX_RectArray& rects) const = 0; |
118 }; | 118 }; |
119 | 119 |
120 #endif // CORE_INCLUDE_FPDFTEXT_FPDF_TEXT_H_ | 120 #endif // CORE_INCLUDE_FPDFTEXT_FPDF_TEXT_H_ |
OLD | NEW |