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 #include "../../core/include/fpdfdoc/fpdf_doc.h" | 7 #include "../../core/include/fpdfdoc/fpdf_doc.h" |
8 #include "../../core/include/fpdftext/fpdf_text.h" | 8 #include "../../core/include/fpdftext/fpdf_text.h" |
9 #include "../../public/fpdf_text.h" | 9 #include "../../public/fpdf_text.h" |
10 | 10 |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 { | 147 { |
148 if (!text_page) return NULL; | 148 if (!text_page) return NULL; |
149 IPDF_TextPageFind* textpageFind=NULL; | 149 IPDF_TextPageFind* textpageFind=NULL; |
150 textpageFind=IPDF_TextPageFind::CreatePageFind((IPDF_TextPage*)text_page
); | 150 textpageFind=IPDF_TextPageFind::CreatePageFind((IPDF_TextPage*)text_page
); |
151 FX_STRSIZE len = CFX_WideString::WStringLength(findwhat); | 151 FX_STRSIZE len = CFX_WideString::WStringLength(findwhat); |
152 textpageFind->FindFirst(CFX_WideString::FromUTF16LE(findwhat, len),flags
,start_index); | 152 textpageFind->FindFirst(CFX_WideString::FromUTF16LE(findwhat, len),flags
,start_index); |
153 return textpageFind; | 153 return textpageFind; |
154 } | 154 } |
155 DLLEXPORT FPDF_BOOL STDCALL FPDFText_FindNext(FPDF_SCHHANDLE handle) | 155 DLLEXPORT FPDF_BOOL STDCALL FPDFText_FindNext(FPDF_SCHHANDLE handle) |
156 { | 156 { |
157 » if (!handle) return FALSE; | 157 » if (!handle) return false; |
158 IPDF_TextPageFind* textpageFind=(IPDF_TextPageFind*)handle; | 158 IPDF_TextPageFind* textpageFind=(IPDF_TextPageFind*)handle; |
159 return textpageFind->FindNext(); | 159 return textpageFind->FindNext(); |
160 } | 160 } |
161 DLLEXPORT FPDF_BOOL STDCALL FPDFText_FindPrev(FPDF_SCHHANDLE handle) | 161 DLLEXPORT FPDF_BOOL STDCALL FPDFText_FindPrev(FPDF_SCHHANDLE handle) |
162 { | 162 { |
163 » if (!handle) return FALSE; | 163 » if (!handle) return false; |
164 IPDF_TextPageFind* textpageFind=(IPDF_TextPageFind*)handle; | 164 IPDF_TextPageFind* textpageFind=(IPDF_TextPageFind*)handle; |
165 return textpageFind->FindPrev(); | 165 return textpageFind->FindPrev(); |
166 } | 166 } |
167 DLLEXPORT int STDCALL FPDFText_GetSchResultIndex(FPDF_SCHHANDLE handle) | 167 DLLEXPORT int STDCALL FPDFText_GetSchResultIndex(FPDF_SCHHANDLE handle) |
168 { | 168 { |
169 if (!handle) return 0; | 169 if (!handle) return 0; |
170 IPDF_TextPageFind* textpageFind=(IPDF_TextPageFind*)handle; | 170 IPDF_TextPageFind* textpageFind=(IPDF_TextPageFind*)handle; |
171 return textpageFind->GetCurOrder(); | 171 return textpageFind->GetCurOrder(); |
172 } | 172 } |
173 DLLEXPORT int STDCALL FPDFText_GetSchCount(FPDF_SCHHANDLE handle) | 173 DLLEXPORT int STDCALL FPDFText_GetSchCount(FPDF_SCHHANDLE handle) |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 *right=rect.right; | 238 *right=rect.right; |
239 *top=rect.top; | 239 *top=rect.top; |
240 *bottom=rect.bottom; | 240 *bottom=rect.bottom; |
241 } | 241 } |
242 } | 242 } |
243 DLLEXPORT void STDCALL FPDFLink_CloseWebLinks(FPDF_PAGELINK link_page) | 243 DLLEXPORT void STDCALL FPDFLink_CloseWebLinks(FPDF_PAGELINK link_page) |
244 { | 244 { |
245 delete (IPDF_LinkExtract*)link_page; | 245 delete (IPDF_LinkExtract*)link_page; |
246 } | 246 } |
247 | 247 |
OLD | NEW |