John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 1 | // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 4 | |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 5 | // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 7 | #ifndef PUBLIC_FPDF_TEXT_H_ |
| 8 | #define PUBLIC_FPDF_TEXT_H_ |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 9 | |
Dan Sinclair | 85c8e7f | 2016-11-21 13:50:32 -0500 | [diff] [blame] | 10 | // NOLINTNEXTLINE(build/include) |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 11 | #include "fpdfview.h" |
| 12 | |
| 13 | // Exported Functions |
| 14 | #ifdef __cplusplus |
| 15 | extern "C" { |
| 16 | #endif |
| 17 | |
| 18 | // Function: FPDFText_LoadPage |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 19 | // Prepare information about all characters in a page. |
Tom Sepez | 526f6d5 | 2015-01-28 15:49:13 -0800 | [diff] [blame] | 20 | // Parameters: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 21 | // page - Handle to the page. Returned by FPDF_LoadPage function |
| 22 | // (in FPDFVIEW module). |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 23 | // Return value: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 24 | // A handle to the text page information structure. |
| 25 | // NULL if something goes wrong. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 26 | // Comments: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 27 | // Application must call FPDFText_ClosePage to release the text page |
| 28 | // information. |
Tom Sepez | 526f6d5 | 2015-01-28 15:49:13 -0800 | [diff] [blame] | 29 | // |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 30 | DLLEXPORT FPDF_TEXTPAGE STDCALL FPDFText_LoadPage(FPDF_PAGE page); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 31 | |
| 32 | // Function: FPDFText_ClosePage |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 33 | // Release all resources allocated for a text page information |
| 34 | // structure. |
Tom Sepez | 526f6d5 | 2015-01-28 15:49:13 -0800 | [diff] [blame] | 35 | // Parameters: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 36 | // text_page - Handle to a text page information structure. |
| 37 | // Returned by FPDFText_LoadPage function. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 38 | // Return Value: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 39 | // None. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 40 | // |
| 41 | DLLEXPORT void STDCALL FPDFText_ClosePage(FPDF_TEXTPAGE text_page); |
Tom Sepez | 526f6d5 | 2015-01-28 15:49:13 -0800 | [diff] [blame] | 42 | |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 43 | // Function: FPDFText_CountChars |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 44 | // Get number of characters in a page. |
Tom Sepez | 526f6d5 | 2015-01-28 15:49:13 -0800 | [diff] [blame] | 45 | // Parameters: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 46 | // text_page - Handle to a text page information structure. |
| 47 | // Returned by FPDFText_LoadPage function. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 48 | // Return value: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 49 | // Number of characters in the page. Return -1 for error. |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 50 | // Generated characters, like additional space characters, new line |
| 51 | // characters, are also counted. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 52 | // Comments: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 53 | // Characters in a page form a "stream", inside the stream, each |
| 54 | // character has an index. |
| 55 | // We will use the index parameters in many of FPDFTEXT functions. The |
| 56 | // first character in the page |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 57 | // has an index value of zero. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 58 | // |
| 59 | DLLEXPORT int STDCALL FPDFText_CountChars(FPDF_TEXTPAGE text_page); |
| 60 | |
| 61 | // Function: FPDFText_GetUnicode |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 62 | // Get Unicode of a character in a page. |
Tom Sepez | 526f6d5 | 2015-01-28 15:49:13 -0800 | [diff] [blame] | 63 | // Parameters: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 64 | // text_page - Handle to a text page information structure. |
| 65 | // Returned by FPDFText_LoadPage function. |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 66 | // index - Zero-based index of the character. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 67 | // Return value: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 68 | // The Unicode of the particular character. |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 69 | // If a character is not encoded in Unicode and Foxit engine can't |
| 70 | // convert to Unicode, |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 71 | // the return value will be zero. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 72 | // |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 73 | DLLEXPORT unsigned int STDCALL FPDFText_GetUnicode(FPDF_TEXTPAGE text_page, |
| 74 | int index); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 75 | |
| 76 | // Function: FPDFText_GetFontSize |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 77 | // Get the font size of a particular character. |
Tom Sepez | 526f6d5 | 2015-01-28 15:49:13 -0800 | [diff] [blame] | 78 | // Parameters: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 79 | // text_page - Handle to a text page information structure. |
| 80 | // Returned by FPDFText_LoadPage function. |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 81 | // index - Zero-based index of the character. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 82 | // Return value: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 83 | // The font size of the particular character, measured in points (about |
| 84 | // 1/72 inch). |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 85 | // This is the typographic size of the font (so called "em size"). |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 86 | // |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 87 | DLLEXPORT double STDCALL FPDFText_GetFontSize(FPDF_TEXTPAGE text_page, |
| 88 | int index); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 89 | |
| 90 | // Function: FPDFText_GetCharBox |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 91 | // Get bounding box of a particular character. |
Tom Sepez | 526f6d5 | 2015-01-28 15:49:13 -0800 | [diff] [blame] | 92 | // Parameters: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 93 | // text_page - Handle to a text page information structure. |
| 94 | // Returned by FPDFText_LoadPage function. |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 95 | // index - Zero-based index of the character. |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 96 | // left - Pointer to a double number receiving left position |
| 97 | // of the character box. |
| 98 | // right - Pointer to a double number receiving right position |
| 99 | // of the character box. |
| 100 | // bottom - Pointer to a double number receiving bottom position |
| 101 | // of the character box. |
| 102 | // top - Pointer to a double number receiving top position of |
| 103 | // the character box. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 104 | // Return Value: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 105 | // None. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 106 | // Comments: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 107 | // All positions are measured in PDF "user space". |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 108 | // |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 109 | DLLEXPORT void STDCALL FPDFText_GetCharBox(FPDF_TEXTPAGE text_page, |
| 110 | int index, |
| 111 | double* left, |
| 112 | double* right, |
| 113 | double* bottom, |
| 114 | double* top); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 115 | |
| 116 | // Function: FPDFText_GetCharIndexAtPos |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 117 | // Get the index of a character at or nearby a certain position on the |
| 118 | // page. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 119 | // Parameters: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 120 | // text_page - Handle to a text page information structure. |
| 121 | // Returned by FPDFText_LoadPage function. |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 122 | // x - X position in PDF "user space". |
| 123 | // y - Y position in PDF "user space". |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 124 | // xTolerance - An x-axis tolerance value for character hit |
| 125 | // detection, in point unit. |
| 126 | // yTolerance - A y-axis tolerance value for character hit |
| 127 | // detection, in point unit. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 128 | // Return Value: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 129 | // The zero-based index of the character at, or nearby the point (x,y). |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 130 | // If there is no character at or nearby the point, return value will |
| 131 | // be -1. |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 132 | // If an error occurs, -3 will be returned. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 133 | // |
| 134 | DLLEXPORT int STDCALL FPDFText_GetCharIndexAtPos(FPDF_TEXTPAGE text_page, |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 135 | double x, |
| 136 | double y, |
Lei Zhang | 38a5a39 | 2015-08-13 17:52:16 -0700 | [diff] [blame] | 137 | double xTolerance, |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 138 | double yTolerance); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 139 | |
| 140 | // Function: FPDFText_GetText |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 141 | // Extract unicode text string from the page. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 142 | // Parameters: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 143 | // text_page - Handle to a text page information structure. |
| 144 | // Returned by FPDFText_LoadPage function. |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 145 | // start_index - Index for the start characters. |
| 146 | // count - Number of characters to be extracted. |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 147 | // result - A buffer (allocated by application) receiving the |
| 148 | // extracted unicodes. |
| 149 | // The size of the buffer must be able to hold the |
| 150 | // number of characters plus a terminator. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 151 | // Return Value: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 152 | // Number of characters written into the result buffer, including the |
| 153 | // trailing terminator. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 154 | // Comments: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 155 | // This function ignores characters without unicode information. |
Tom Sepez | 526f6d5 | 2015-01-28 15:49:13 -0800 | [diff] [blame] | 156 | // |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 157 | DLLEXPORT int STDCALL FPDFText_GetText(FPDF_TEXTPAGE text_page, |
| 158 | int start_index, |
| 159 | int count, |
| 160 | unsigned short* result); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 161 | |
| 162 | // Function: FPDFText_CountRects |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 163 | // Count number of rectangular areas occupied by a segment of texts. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 164 | // Parameters: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 165 | // text_page - Handle to a text page information structure. |
| 166 | // Returned by FPDFText_LoadPage function. |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 167 | // start_index - Index for the start characters. |
| 168 | // count - Number of characters. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 169 | // Return value: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 170 | // Number of rectangles. Zero for error. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 171 | // Comments: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 172 | // This function, along with FPDFText_GetRect can be used by |
| 173 | // applications to detect the position |
| 174 | // on the page for a text segment, so proper areas can be highlighted |
| 175 | // or something. |
| 176 | // FPDFTEXT will automatically merge small character boxes into bigger |
| 177 | // one if those characters |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 178 | // are on the same line and use same font settings. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 179 | // |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 180 | DLLEXPORT int STDCALL FPDFText_CountRects(FPDF_TEXTPAGE text_page, |
| 181 | int start_index, |
| 182 | int count); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 183 | |
| 184 | // Function: FPDFText_GetRect |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 185 | // Get a rectangular area from the result generated by |
| 186 | // FPDFText_CountRects. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 187 | // Parameters: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 188 | // text_page - Handle to a text page information structure. |
| 189 | // Returned by FPDFText_LoadPage function. |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 190 | // rect_index - Zero-based index for the rectangle. |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 191 | // left - Pointer to a double value receiving the rectangle |
| 192 | // left boundary. |
| 193 | // top - Pointer to a double value receiving the rectangle |
| 194 | // top boundary. |
| 195 | // right - Pointer to a double value receiving the rectangle |
| 196 | // right boundary. |
| 197 | // bottom - Pointer to a double value receiving the rectangle |
| 198 | // bottom boundary. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 199 | // Return Value: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 200 | // None. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 201 | // |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 202 | DLLEXPORT void STDCALL FPDFText_GetRect(FPDF_TEXTPAGE text_page, |
| 203 | int rect_index, |
| 204 | double* left, |
| 205 | double* top, |
| 206 | double* right, |
| 207 | double* bottom); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 208 | |
| 209 | // Function: FPDFText_GetBoundedText |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 210 | // Extract unicode text within a rectangular boundary on the page. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 211 | // Parameters: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 212 | // text_page - Handle to a text page information structure. |
| 213 | // Returned by FPDFText_LoadPage function. |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 214 | // left - Left boundary. |
| 215 | // top - Top boundary. |
| 216 | // right - Right boundary. |
| 217 | // bottom - Bottom boundary. |
| 218 | // buffer - A unicode buffer. |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 219 | // buflen - Number of characters (not bytes) for the buffer, |
| 220 | // excluding an additional terminator. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 221 | // Return Value: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 222 | // If buffer is NULL or buflen is zero, return number of characters |
| 223 | // (not bytes) of text present within |
| 224 | // the rectangle, excluding a terminating NUL. Generally you should |
| 225 | // pass a buffer at least one larger |
| 226 | // than this if you want a terminating NUL, which will be provided if |
| 227 | // space is available. |
| 228 | // Otherwise, return number of characters copied into the buffer, |
| 229 | // including the terminating NUL |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 230 | // when space for it is available. |
Tom Sepez | 526f6d5 | 2015-01-28 15:49:13 -0800 | [diff] [blame] | 231 | // Comment: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 232 | // If the buffer is too small, as much text as will fit is copied into |
| 233 | // it. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 234 | // |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 235 | DLLEXPORT int STDCALL FPDFText_GetBoundedText(FPDF_TEXTPAGE text_page, |
| 236 | double left, |
| 237 | double top, |
| 238 | double right, |
| 239 | double bottom, |
| 240 | unsigned short* buffer, |
| 241 | int buflen); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 242 | |
| 243 | // Flags used by FPDFText_FindStart function. |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 244 | #define FPDF_MATCHCASE \ |
| 245 | 0x00000001 // If not set, it will not match case by default. |
| 246 | #define FPDF_MATCHWHOLEWORD \ |
| 247 | 0x00000002 // If not set, it will not match the whole word by default. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 248 | |
| 249 | // Function: FPDFText_FindStart |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 250 | // Start a search. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 251 | // Parameters: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 252 | // text_page - Handle to a text page information structure. |
| 253 | // Returned by FPDFText_LoadPage function. |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 254 | // findwhat - A unicode match pattern. |
| 255 | // flags - Option flags. |
| 256 | // start_index - Start from this character. -1 for end of the page. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 257 | // Return Value: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 258 | // A handle for the search context. FPDFText_FindClose must be called |
| 259 | // to release this handle. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 260 | // |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 261 | DLLEXPORT FPDF_SCHHANDLE STDCALL FPDFText_FindStart(FPDF_TEXTPAGE text_page, |
| 262 | FPDF_WIDESTRING findwhat, |
| 263 | unsigned long flags, |
| 264 | int start_index); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 265 | |
| 266 | // Function: FPDFText_FindNext |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 267 | // Search in the direction from page start to end. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 268 | // Parameters: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 269 | // handle - A search context handle returned by |
| 270 | // FPDFText_FindStart. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 271 | // Return Value: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 272 | // Whether a match is found. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 273 | // |
| 274 | DLLEXPORT FPDF_BOOL STDCALL FPDFText_FindNext(FPDF_SCHHANDLE handle); |
| 275 | |
| 276 | // Function: FPDFText_FindPrev |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 277 | // Search in the direction from page end to start. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 278 | // Parameters: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 279 | // handle - A search context handle returned by |
| 280 | // FPDFText_FindStart. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 281 | // Return Value: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 282 | // Whether a match is found. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 283 | // |
| 284 | DLLEXPORT FPDF_BOOL STDCALL FPDFText_FindPrev(FPDF_SCHHANDLE handle); |
| 285 | |
| 286 | // Function: FPDFText_GetSchResultIndex |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 287 | // Get the starting character index of the search result. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 288 | // Parameters: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 289 | // handle - A search context handle returned by |
| 290 | // FPDFText_FindStart. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 291 | // Return Value: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 292 | // Index for the starting character. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 293 | // |
| 294 | DLLEXPORT int STDCALL FPDFText_GetSchResultIndex(FPDF_SCHHANDLE handle); |
| 295 | |
| 296 | // Function: FPDFText_GetSchCount |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 297 | // Get the number of matched characters in the search result. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 298 | // Parameters: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 299 | // handle - A search context handle returned by |
| 300 | // FPDFText_FindStart. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 301 | // Return Value: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 302 | // Number of matched characters. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 303 | // |
| 304 | DLLEXPORT int STDCALL FPDFText_GetSchCount(FPDF_SCHHANDLE handle); |
| 305 | |
| 306 | // Function: FPDFText_FindClose |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 307 | // Release a search context. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 308 | // Parameters: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 309 | // handle - A search context handle returned by |
| 310 | // FPDFText_FindStart. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 311 | // Return Value: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 312 | // None. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 313 | // |
| 314 | DLLEXPORT void STDCALL FPDFText_FindClose(FPDF_SCHHANDLE handle); |
| 315 | |
| 316 | // Function: FPDFLink_LoadWebLinks |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 317 | // Prepare information about weblinks in a page. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 318 | // Parameters: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 319 | // text_page - Handle to a text page information structure. |
| 320 | // Returned by FPDFText_LoadPage function. |
Tom Sepez | 526f6d5 | 2015-01-28 15:49:13 -0800 | [diff] [blame] | 321 | // Return Value: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 322 | // A handle to the page's links information structure. |
| 323 | // NULL if something goes wrong. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 324 | // Comments: |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 325 | // Weblinks are those links implicitly embedded in PDF pages. PDF also |
| 326 | // has a type of |
| 327 | // annotation called "link", FPDFTEXT doesn't deal with that kind of |
| 328 | // link. |
| 329 | // FPDFTEXT weblink feature is useful for automatically detecting links |
| 330 | // in the page |
| 331 | // contents. For example, things like "http://www.foxitsoftware.com" |
| 332 | // will be detected, |
| 333 | // so applications can allow user to click on those characters to |
| 334 | // activate the link, |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 335 | // even the PDF doesn't come with link annotations. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 336 | // |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 337 | // FPDFLink_CloseWebLinks must be called to release resources. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 338 | // |
| 339 | DLLEXPORT FPDF_PAGELINK STDCALL FPDFLink_LoadWebLinks(FPDF_TEXTPAGE text_page); |
| 340 | |
| 341 | // Function: FPDFLink_CountWebLinks |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 342 | // Count number of detected web links. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 343 | // Parameters: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 344 | // link_page - Handle returned by FPDFLink_LoadWebLinks. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 345 | // Return Value: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 346 | // Number of detected web links. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 347 | // |
| 348 | DLLEXPORT int STDCALL FPDFLink_CountWebLinks(FPDF_PAGELINK link_page); |
| 349 | |
| 350 | // Function: FPDFLink_GetURL |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 351 | // Fetch the URL information for a detected web link. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 352 | // Parameters: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 353 | // link_page - Handle returned by FPDFLink_LoadWebLinks. |
| 354 | // link_index - Zero-based index for the link. |
tsepez | 6914118 | 2016-04-21 10:43:39 -0700 | [diff] [blame] | 355 | // buffer - A unicode buffer for the result. |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 356 | // buflen - Number of characters (not bytes) for the buffer, |
tsepez | 6914118 | 2016-04-21 10:43:39 -0700 | [diff] [blame] | 357 | // including an additional terminator. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 358 | // Return Value: |
tsepez | 6914118 | 2016-04-21 10:43:39 -0700 | [diff] [blame] | 359 | // If |buffer| is NULL or |buflen| is zero, return the number of |
| 360 | // characters (not bytes) needed to buffer the result (an additional |
| 361 | // terminator is included in this count). |
| 362 | // Otherwise, copy the result into |buffer|, truncating at |buflen| if |
| 363 | // the result is too large to fit, and return the number of characters |
| 364 | // actually copied into the buffer (the additional terminator is also |
| 365 | // included in this count). |
| 366 | // If |link_index| does not correspond to a valid link, then the result |
| 367 | // is an empty string. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 368 | // |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 369 | DLLEXPORT int STDCALL FPDFLink_GetURL(FPDF_PAGELINK link_page, |
| 370 | int link_index, |
| 371 | unsigned short* buffer, |
| 372 | int buflen); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 373 | |
| 374 | // Function: FPDFLink_CountRects |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 375 | // Count number of rectangular areas for the link. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 376 | // Parameters: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 377 | // link_page - Handle returned by FPDFLink_LoadWebLinks. |
| 378 | // link_index - Zero-based index for the link. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 379 | // Return Value: |
tsepez | 6914118 | 2016-04-21 10:43:39 -0700 | [diff] [blame] | 380 | // Number of rectangular areas for the link. If |link_index| does |
| 381 | // not correspond to a valid link, then 0 is returned. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 382 | // |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 383 | DLLEXPORT int STDCALL FPDFLink_CountRects(FPDF_PAGELINK link_page, |
| 384 | int link_index); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 385 | |
| 386 | // Function: FPDFLink_GetRect |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 387 | // Fetch the boundaries of a rectangle for a link. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 388 | // Parameters: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 389 | // link_page - Handle returned by FPDFLink_LoadWebLinks. |
| 390 | // link_index - Zero-based index for the link. |
| 391 | // rect_index - Zero-based index for a rectangle. |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 392 | // left - Pointer to a double value receiving the rectangle |
tsepez | 6914118 | 2016-04-21 10:43:39 -0700 | [diff] [blame] | 393 | // left boundary. |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 394 | // top - Pointer to a double value receiving the rectangle |
tsepez | 6914118 | 2016-04-21 10:43:39 -0700 | [diff] [blame] | 395 | // top boundary. |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 396 | // right - Pointer to a double value receiving the rectangle |
tsepez | 6914118 | 2016-04-21 10:43:39 -0700 | [diff] [blame] | 397 | // right boundary. |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 398 | // bottom - Pointer to a double value receiving the rectangle |
tsepez | 6914118 | 2016-04-21 10:43:39 -0700 | [diff] [blame] | 399 | // bottom boundary. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 400 | // Return Value: |
tsepez | 6914118 | 2016-04-21 10:43:39 -0700 | [diff] [blame] | 401 | // None. If |link_index| does not correspond to a valid link, then |
| 402 | // |left|, |top|, |right|, and |bottom| remain unmodified. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 403 | // |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 404 | DLLEXPORT void STDCALL FPDFLink_GetRect(FPDF_PAGELINK link_page, |
| 405 | int link_index, |
| 406 | int rect_index, |
| 407 | double* left, |
| 408 | double* top, |
| 409 | double* right, |
| 410 | double* bottom); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 411 | |
| 412 | // Function: FPDFLink_CloseWebLinks |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 413 | // Release resources used by weblink feature. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 414 | // Parameters: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 415 | // link_page - Handle returned by FPDFLink_LoadWebLinks. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 416 | // Return Value: |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 417 | // None. |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 418 | // |
| 419 | DLLEXPORT void STDCALL FPDFLink_CloseWebLinks(FPDF_PAGELINK link_page); |
| 420 | |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 421 | #ifdef __cplusplus |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 422 | } |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 423 | #endif |
| 424 | |
Tom Sepez | 9857e20 | 2015-05-13 17:09:26 -0700 | [diff] [blame] | 425 | #endif // PUBLIC_FPDF_TEXT_H_ |