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/src/fpdftext/text_int.h" | 7 #include "core/src/fpdftext/text_int.h" |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <cctype> | 10 #include <cctype> |
11 #include <cwctype> | 11 #include <cwctype> |
12 #include <memory> | 12 #include <memory> |
13 #include <utility> | 13 #include <utility> |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
| 16 #include "core/include/fpdfapi/cpdf_dictionary.h" |
| 17 #include "core/include/fpdfapi/cpdf_string.h" |
16 #include "core/include/fpdfapi/fpdf_module.h" | 18 #include "core/include/fpdfapi/fpdf_module.h" |
17 #include "core/include/fpdfapi/fpdf_page.h" | 19 #include "core/include/fpdfapi/fpdf_page.h" |
18 #include "core/include/fpdfapi/fpdf_pageobj.h" | 20 #include "core/include/fpdfapi/fpdf_pageobj.h" |
19 #include "core/include/fpdfapi/fpdf_resource.h" | 21 #include "core/include/fpdfapi/fpdf_resource.h" |
20 #include "core/include/fpdftext/fpdf_text.h" | 22 #include "core/include/fpdftext/fpdf_text.h" |
21 #include "core/include/fxcrt/fx_bidi.h" | 23 #include "core/include/fxcrt/fx_bidi.h" |
22 #include "core/include/fxcrt/fx_ext.h" | 24 #include "core/include/fxcrt/fx_ext.h" |
23 #include "core/include/fxcrt/fx_ucd.h" | 25 #include "core/include/fxcrt/fx_ucd.h" |
24 #include "third_party/base/stl_util.h" | 26 #include "third_party/base/stl_util.h" |
25 | 27 |
(...skipping 2464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2490 if (!m_bIsParsed || index < 0 || index >= m_LinkList.GetSize()) { | 2492 if (!m_bIsParsed || index < 0 || index >= m_LinkList.GetSize()) { |
2491 return; | 2493 return; |
2492 } | 2494 } |
2493 CPDF_LinkExt* link = NULL; | 2495 CPDF_LinkExt* link = NULL; |
2494 link = m_LinkList.GetAt(index); | 2496 link = m_LinkList.GetAt(index); |
2495 if (!link) { | 2497 if (!link) { |
2496 return; | 2498 return; |
2497 } | 2499 } |
2498 m_pTextPage->GetRectArray(link->m_Start, link->m_Count, rects); | 2500 m_pTextPage->GetRectArray(link->m_Start, link->m_Count, rects); |
2499 } | 2501 } |
OLD | NEW |