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/include/cpdf_document.h" | 7 #include "core/fpdfapi/fpdf_parser/include/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/fpdf_font/include/cpdf_fontencoding.h" | 13 #include "core/fpdfapi/fpdf_font/include/cpdf_fontencoding.h" |
14 #include "core/fpdfapi/fpdf_page/cpdf_pagemodule.h" | 14 #include "core/fpdfapi/fpdf_page/cpdf_pagemodule.h" |
15 #include "core/fpdfapi/fpdf_page/pageint.h" | 15 #include "core/fpdfapi/fpdf_page/pageint.h" |
16 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" | 16 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" |
17 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" | 17 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" |
18 #include "core/fpdfapi/fpdf_parser/include/cpdf_parser.h" | 18 #include "core/fpdfapi/fpdf_parser/include/cpdf_parser.h" |
19 #include "core/fpdfapi/fpdf_parser/include/cpdf_reference.h" | 19 #include "core/fpdfapi/fpdf_parser/include/cpdf_reference.h" |
20 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h" | 20 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h" |
21 #include "core/fpdfapi/fpdf_render/render_int.h" | 21 #include "core/fpdfapi/fpdf_render/render_int.h" |
22 #include "core/fpdfapi/include/cpdf_modulemgr.h" | 22 #include "core/fpdfapi/include/cpdf_modulemgr.h" |
23 #include "core/fxcodec/include/JBig2_DocumentContext.h" | 23 #include "core/fxcodec/include/JBig2_DocumentContext.h" |
24 #include "core/fxge/include/cfx_fontcache.h" | |
25 #include "core/fxge/include/cfx_unicodeencoding.h" | 24 #include "core/fxge/include/cfx_unicodeencoding.h" |
26 #include "core/fxge/include/fx_font.h" | 25 #include "core/fxge/include/fx_font.h" |
27 #include "third_party/base/stl_util.h" | 26 #include "third_party/base/stl_util.h" |
28 | 27 |
29 namespace { | 28 namespace { |
30 | 29 |
31 const int FX_MAX_PAGE_LEVEL = 1024; | 30 const int FX_MAX_PAGE_LEVEL = 1024; |
32 | 31 |
33 const uint16_t g_FX_CP874Unicodes[128] = { | 32 const uint16_t g_FX_CP874Unicodes[128] = { |
34 0x20AC, 0x0000, 0x0000, 0x0000, 0x0000, 0x2026, 0x0000, 0x0000, 0x0000, | 33 0x20AC, 0x0000, 0x0000, 0x0000, 0x0000, 0x2026, 0x0000, 0x0000, 0x0000, |
(...skipping 965 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1000 pLogFont->lfWeight / 5); | 999 pLogFont->lfWeight / 5); |
1001 pFontDesc->SetIntegerFor("CapHeight", capheight); | 1000 pFontDesc->SetIntegerFor("CapHeight", capheight); |
1002 AddIndirectObject(pFontDesc); | 1001 AddIndirectObject(pFontDesc); |
1003 pFontDict->SetReferenceFor("FontDescriptor", this, pFontDesc); | 1002 pFontDict->SetReferenceFor("FontDescriptor", this, pFontDesc); |
1004 hFont = SelectObject(hDC, hFont); | 1003 hFont = SelectObject(hDC, hFont); |
1005 DeleteObject(hFont); | 1004 DeleteObject(hFont); |
1006 DeleteDC(hDC); | 1005 DeleteDC(hDC); |
1007 return LoadFont(pBaseDict); | 1006 return LoadFont(pBaseDict); |
1008 } | 1007 } |
1009 #endif // _FXM_PLATFORM_ == _FXM_PLATFORM_WINDOWS_ | 1008 #endif // _FXM_PLATFORM_ == _FXM_PLATFORM_WINDOWS_ |
OLD | NEW |