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/fpdfapi/fpdf_parser/cpdf_document.h" | 7 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" |
8 | 8 |
9 #include <memory> | 9 #include <memory> |
10 #include <set> | 10 #include <set> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "core/fpdfapi/cpdf_modulemgr.h" | 13 #include "core/fpdfapi/cpdf_modulemgr.h" |
14 #include "core/fpdfapi/font/cpdf_fontencoding.h" | 14 #include "core/fpdfapi/font/cpdf_fontencoding.h" |
15 #include "core/fpdfapi/fpdf_page/cpdf_pagemodule.h" | |
16 #include "core/fpdfapi/fpdf_page/pageint.h" | |
17 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" | 15 #include "core/fpdfapi/fpdf_parser/cpdf_array.h" |
18 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h" | 16 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h" |
19 #include "core/fpdfapi/fpdf_parser/cpdf_parser.h" | 17 #include "core/fpdfapi/fpdf_parser/cpdf_parser.h" |
20 #include "core/fpdfapi/fpdf_parser/cpdf_reference.h" | 18 #include "core/fpdfapi/fpdf_parser/cpdf_reference.h" |
21 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h" | 19 #include "core/fpdfapi/fpdf_parser/cpdf_stream.h" |
22 #include "core/fpdfapi/fpdf_render/render_int.h" | 20 #include "core/fpdfapi/fpdf_render/render_int.h" |
| 21 #include "core/fpdfapi/page/cpdf_pagemodule.h" |
| 22 #include "core/fpdfapi/page/pageint.h" |
23 #include "core/fxcodec/JBig2_DocumentContext.h" | 23 #include "core/fxcodec/JBig2_DocumentContext.h" |
24 #include "core/fxge/cfx_unicodeencoding.h" | 24 #include "core/fxge/cfx_unicodeencoding.h" |
25 #include "core/fxge/fx_font.h" | 25 #include "core/fxge/fx_font.h" |
26 #include "third_party/base/ptr_util.h" | 26 #include "third_party/base/ptr_util.h" |
27 #include "third_party/base/stl_util.h" | 27 #include "third_party/base/stl_util.h" |
28 | 28 |
29 namespace { | 29 namespace { |
30 | 30 |
31 const int FX_MAX_PAGE_LEVEL = 1024; | 31 const int FX_MAX_PAGE_LEVEL = 1024; |
32 | 32 |
(...skipping 978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1011 pBBox, pLogFont->lfWeight / 5); | 1011 pBBox, pLogFont->lfWeight / 5); |
1012 pFontDesc->SetIntegerFor("CapHeight", capheight); | 1012 pFontDesc->SetIntegerFor("CapHeight", capheight); |
1013 pFontDict->SetReferenceFor("FontDescriptor", this, | 1013 pFontDict->SetReferenceFor("FontDescriptor", this, |
1014 AddIndirectObject(pFontDesc)); | 1014 AddIndirectObject(pFontDesc)); |
1015 hFont = SelectObject(hDC, hFont); | 1015 hFont = SelectObject(hDC, hFont); |
1016 DeleteObject(hFont); | 1016 DeleteObject(hFont); |
1017 DeleteDC(hDC); | 1017 DeleteDC(hDC); |
1018 return LoadFont(pBaseDict); | 1018 return LoadFont(pBaseDict); |
1019 } | 1019 } |
1020 #endif // _FXM_PLATFORM_ == _FXM_PLATFORM_WINDOWS_ | 1020 #endif // _FXM_PLATFORM_ == _FXM_PLATFORM_WINDOWS_ |
OLD | NEW |