Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: xfa/fxfa/app/xfa_fontmgr.cpp

Issue 1864973005: Move remaining xfa/include/fxfa files (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fxfa/app/xfa_ffwidgethandler.cpp ('k') | xfa/fxfa/app/xfa_fwladapter.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "xfa/include/fxfa/xfa_fontmgr.h" 7 #include "xfa/fxfa/include/xfa_fontmgr.h"
8 8
9 #include <algorithm> 9 #include <algorithm>
10 10
11 #include "core/fpdfapi/fpdf_font/include/cpdf_font.h" 11 #include "core/fpdfapi/fpdf_font/include/cpdf_font.h"
12 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" 12 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h"
13 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" 13 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h"
14 #include "xfa/include/fxfa/xfa_ffapp.h" 14 #include "xfa/fxfa/include/xfa_ffapp.h"
15 #include "xfa/include/fxfa/xfa_ffdoc.h" 15 #include "xfa/fxfa/include/xfa_ffdoc.h"
16 16
17 #if _FXM_PLATFORM_ == _FXM_PLATFORM_WINDOWS_ 17 #if _FXM_PLATFORM_ == _FXM_PLATFORM_WINDOWS_
18 static const XFA_FONTINFO g_XFAFontsMap[] = { 18 static const XFA_FONTINFO g_XFAFontsMap[] = {
19 {0x01d5d33e, L"SimSun", L"Arial", 0, 936}, 19 {0x01d5d33e, L"SimSun", L"Arial", 0, 936},
20 {0x01e4f102, L"YouYuan", L"Arial", 1, 936}, 20 {0x01e4f102, L"YouYuan", L"Arial", 1, 936},
21 {0x030549dc, L"LiSu", L"Arial", 1, 936}, 21 {0x030549dc, L"LiSu", L"Arial", 1, 936},
22 {0x032edd44, L"Simhei", L"Arial", 1, 936}, 22 {0x032edd44, L"Simhei", L"Arial", 1, 936},
23 {0x03eac6fc, L"PoorRichard-Regular", L"Arial", 2, 1252}, 23 {0x03eac6fc, L"PoorRichard-Regular", L"Arial", 2, 1252},
24 {0x03ed90e6, L"Nina", L"Arial", 0, 1252}, 24 {0x03ed90e6, L"Nina", L"Arial", 0, 1252},
25 {0x077b56b3, L"KingsoftPhoneticPlain", L"Arial", 0, 1252}, 25 {0x077b56b3, L"KingsoftPhoneticPlain", L"Arial", 0, 1252},
(...skipping 2051 matching lines...) Expand 10 before | Expand all | Expand 10 after
2077 CXFA_PDFFontMgr* pMgr = NULL; 2077 CXFA_PDFFontMgr* pMgr = NULL;
2078 m_PDFFontMgrArray.GetNextAssoc(ps, (void*&)hDoc, (void*&)pMgr); 2078 m_PDFFontMgrArray.GetNextAssoc(ps, (void*&)hDoc, (void*&)pMgr);
2079 delete pMgr; 2079 delete pMgr;
2080 } 2080 }
2081 m_PDFFontMgrArray.RemoveAll(); 2081 m_PDFFontMgrArray.RemoveAll();
2082 m_FontMap.clear(); 2082 m_FontMap.clear();
2083 } 2083 }
2084 void CXFA_FontMgr::SetDefFontMgr(CXFA_DefFontMgr* pFontMgr) { 2084 void CXFA_FontMgr::SetDefFontMgr(CXFA_DefFontMgr* pFontMgr) {
2085 m_pDefFontMgr = pFontMgr; 2085 m_pDefFontMgr = pFontMgr;
2086 } 2086 }
OLDNEW
« no previous file with comments | « xfa/fxfa/app/xfa_ffwidgethandler.cpp ('k') | xfa/fxfa/app/xfa_fwladapter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698