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 "fpdfsdk/pdfwindow/PWL_FontMap.h" | 7 #include "fpdfsdk/pdfwindow/PWL_FontMap.h" |
8 | 8 |
9 #include "core/fpdfapi/fpdf_font/cpdf_font.h" | 9 #include "core/fpdfapi/fpdf_font/cpdf_font.h" |
10 #include "core/fpdfapi/fpdf_font/cpdf_fontencoding.h" | 10 #include "core/fpdfapi/fpdf_font/cpdf_fontencoding.h" |
11 #include "core/fpdfapi/fpdf_parser/include/cpdf_document.h" | 11 #include "core/fpdfapi/fpdf_parser/cpdf_document.h" |
12 #include "core/fpdfapi/fpdf_parser/include/cpdf_parser.h" | 12 #include "core/fpdfapi/fpdf_parser/cpdf_parser.h" |
13 #include "core/fpdfapi/include/cpdf_modulemgr.h" | 13 #include "core/fpdfapi/include/cpdf_modulemgr.h" |
14 #include "core/fpdfdoc/include/ipvt_fontmap.h" | 14 #include "core/fpdfdoc/include/ipvt_fontmap.h" |
15 #include "fpdfsdk/pdfwindow/PWL_Wnd.h" | 15 #include "fpdfsdk/pdfwindow/PWL_Wnd.h" |
16 | 16 |
17 namespace { | 17 namespace { |
18 | 18 |
19 const char kDefaultFontName[] = "Helvetica"; | 19 const char kDefaultFontName[] = "Helvetica"; |
20 | 20 |
21 const char* const g_sDEStandardFontName[] = {"Courier", | 21 const char* const g_sDEStandardFontName[] = {"Courier", |
22 "Courier-Bold", | 22 "Courier-Bold", |
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
438 return FXFONT_RUSSIAN_CHARSET; | 438 return FXFONT_RUSSIAN_CHARSET; |
439 | 439 |
440 if (word >= 0x0100 && word <= 0x024F) | 440 if (word >= 0x0100 && word <= 0x024F) |
441 return FXFONT_EASTEUROPE_CHARSET; | 441 return FXFONT_EASTEUROPE_CHARSET; |
442 | 442 |
443 if (word >= 0x1E00 && word <= 0x1EFF) | 443 if (word >= 0x1E00 && word <= 0x1EFF) |
444 return FXFONT_VIETNAMESE_CHARSET; | 444 return FXFONT_VIETNAMESE_CHARSET; |
445 | 445 |
446 return FXFONT_ANSI_CHARSET; | 446 return FXFONT_ANSI_CHARSET; |
447 } | 447 } |
OLD | NEW |