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

Side by Side Diff: core/fpdftext/include/ipdf_textpage.h

Issue 1801973002: Move fx_crypto.h and fpdf_text.h out of core/include. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 months 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 | « core/fpdftext/include/ipdf_linkextract.h ('k') | core/fpdftext/include/ipdf_textpagefind.h » ('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 2016 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_FPDFTEXT_INCLUDE_IPDF_TEXTPAGE_H_
8 #define CORE_INCLUDE_FPDFTEXT_FPDF_TEXT_H_ 8 #define CORE_FPDFTEXT_INCLUDE_IPDF_TEXTPAGE_H_
9 9
10 #include "core/include/fpdfapi/fpdf_page.h"
11 #include "core/include/fpdfapi/fpdf_pageobj.h"
10 #include "core/include/fxcrt/fx_coordinates.h" 12 #include "core/include/fxcrt/fx_coordinates.h"
11 #include "core/include/fxcrt/fx_system.h" 13 #include "core/include/fxcrt/fx_system.h"
12 14
13 class CPDF_Page;
14 class CPDF_TextObject;
15 class IPDF_LinkExtract;
16 class IPDF_ReflowedPage;
17 class IPDF_TextPage;
18 class IPDF_TextPageFind;
19
20 #define CHAR_ERROR -1
21 #define CHAR_NORMAL 0
22 #define CHAR_GENERATED 1
23 #define CHAR_UNUNICODE 2
24
25 struct FPDF_CHAR_INFO { 15 struct FPDF_CHAR_INFO {
26 FX_WCHAR m_Unicode; 16 FX_WCHAR m_Unicode;
27 FX_WCHAR m_Charcode; 17 FX_WCHAR m_Charcode;
28 int32_t m_Flag; 18 int32_t m_Flag;
29 FX_FLOAT m_FontSize; 19 FX_FLOAT m_FontSize;
30 FX_FLOAT m_OriginX; 20 FX_FLOAT m_OriginX;
31 FX_FLOAT m_OriginY; 21 FX_FLOAT m_OriginY;
32 CFX_FloatRect m_CharBox; 22 CFX_FloatRect m_CharBox;
33 CPDF_TextObject* m_pTextObj; 23 CPDF_TextObject* m_pTextObj;
34 CFX_Matrix m_Matrix; 24 CFX_Matrix m_Matrix;
35 }; 25 };
36 26
37 using CFX_RectArray = CFX_ArrayTemplate<CFX_FloatRect>;
38
39 #define FPDFTEXT_LRTB 0
40 #define FPDFTEXT_RLTB 1
41 #define FPDFTEXT_TBRL 2
42 #define FPDFTEXT_LEFT -1
43 #define FPDFTEXT_RIGHT 1
44 #define FPDFTEXT_UP -2
45 #define FPDFTEXT_DOWN 2
46
47 class IPDF_TextPage { 27 class IPDF_TextPage {
48 public: 28 public:
49 static IPDF_TextPage* CreateTextPage(const CPDF_Page* pPage, int flags = 0); 29 static IPDF_TextPage* CreateTextPage(const CPDF_Page* pPage, int flags = 0);
50 static IPDF_TextPage* CreateReflowTextPage(IPDF_ReflowedPage* pRefPage);
51 virtual ~IPDF_TextPage() {} 30 virtual ~IPDF_TextPage() {}
52 31
53 virtual void ParseTextPage() = 0; 32 virtual void ParseTextPage() = 0;
54 virtual bool IsParsed() const = 0; 33 virtual bool IsParsed() const = 0;
55 virtual int CharIndexFromTextIndex(int TextIndex) const = 0; 34 virtual int CharIndexFromTextIndex(int TextIndex) const = 0;
56 virtual int TextIndexFromCharIndex(int CharIndex) const = 0; 35 virtual int TextIndexFromCharIndex(int CharIndex) const = 0;
57 virtual int CountChars() const = 0; 36 virtual int CountChars() const = 0;
58 virtual void GetCharInfo(int index, FPDF_CHAR_INFO* info) const = 0; 37 virtual void GetCharInfo(int index, FPDF_CHAR_INFO* info) const = 0;
59 virtual void GetRectArray(int start, 38 virtual void GetRectArray(int start,
60 int nCount, 39 int nCount,
(...skipping 19 matching lines...) Expand all
80 virtual int CountBoundedSegments(FX_FLOAT left, 59 virtual int CountBoundedSegments(FX_FLOAT left,
81 FX_FLOAT top, 60 FX_FLOAT top,
82 FX_FLOAT right, 61 FX_FLOAT right,
83 FX_FLOAT bottom, 62 FX_FLOAT bottom,
84 FX_BOOL bContains = FALSE) = 0; 63 FX_BOOL bContains = FALSE) = 0;
85 virtual void GetBoundedSegment(int index, int& start, int& count) const = 0; 64 virtual void GetBoundedSegment(int index, int& start, int& count) const = 0;
86 virtual int GetWordBreak(int index, int direction) const = 0; 65 virtual int GetWordBreak(int index, int direction) const = 0;
87 virtual CFX_WideString GetPageText(int start = 0, int nCount = -1) const = 0; 66 virtual CFX_WideString GetPageText(int start = 0, int nCount = -1) const = 0;
88 }; 67 };
89 68
90 #define FPDFTEXT_MATCHCASE 0x00000001 69 #endif // CORE_FPDFTEXT_INCLUDE_IPDF_TEXTPAGE_H_
91 #define FPDFTEXT_MATCHWHOLEWORD 0x00000002
92 #define FPDFTEXT_CONSECUTIVE 0x00000004
93
94 class IPDF_TextPageFind {
95 public:
96 static IPDF_TextPageFind* CreatePageFind(const IPDF_TextPage* pTextPage);
97 virtual ~IPDF_TextPageFind() {}
98
99 virtual FX_BOOL FindFirst(const CFX_WideString& findwhat,
100 int flags,
101 int startPos = 0) = 0;
102 virtual FX_BOOL FindNext() = 0;
103 virtual FX_BOOL FindPrev() = 0;
104 virtual void GetRectArray(CFX_RectArray& rects) const = 0;
105 virtual int GetCurOrder() const = 0;
106 virtual int GetMatchedCount() const = 0;
107 };
108
109 class IPDF_LinkExtract {
110 public:
111 static IPDF_LinkExtract* CreateLinkExtract();
112 virtual ~IPDF_LinkExtract() {}
113
114 virtual FX_BOOL ExtractLinks(const IPDF_TextPage* pTextPage) = 0;
115 virtual int CountLinks() const = 0;
116 virtual CFX_WideString GetURL(int index) const = 0;
117 virtual void GetBoundedSegment(int index, int& start, int& count) const = 0;
118 virtual void GetRects(int index, CFX_RectArray& rects) const = 0;
119 };
120
121 #endif // CORE_INCLUDE_FPDFTEXT_FPDF_TEXT_H_
OLDNEW
« no previous file with comments | « core/fpdftext/include/ipdf_linkextract.h ('k') | core/fpdftext/include/ipdf_textpagefind.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698