diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-05-12 12:24:22 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-05-12 12:24:22 -0700 |
commit | 8f6445b83139349fa31a137496d54b1847a66d7c (patch) | |
tree | 03d63792bf7aa8339a8254135be041cddd87a2c8 /public/fpdf_sysfontinfo.h | |
parent | 2daf76fde8b2985297a4c5cab8816faae283e46a (diff) | |
download | pdfium-8f6445b83139349fa31a137496d54b1847a66d7c.tar.xz |
NEW public API for pdfwindow font manipulation.chromium/2402chromium/2401chromium/2400
PDFium side of fix to make chromium free of private header
includes. This moves the one snippet of contaminating code
from chrome to PDFium itself.
BUG=486818
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1126283004
Diffstat (limited to 'public/fpdf_sysfontinfo.h')
-rw-r--r-- | public/fpdf_sysfontinfo.h | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/public/fpdf_sysfontinfo.h b/public/fpdf_sysfontinfo.h index 00c9fab0e6..275ca84d55 100644 --- a/public/fpdf_sysfontinfo.h +++ b/public/fpdf_sysfontinfo.h @@ -32,7 +32,6 @@ extern "C" { #endif - /** * Interface: FPDF_SYSFONTINFO * Interface for getting system font information and font mapping @@ -193,6 +192,28 @@ typedef struct _FPDF_SYSFONTINFO { } FPDF_SYSFONTINFO; /** + * Struct: FPDF_CharsetFontMap + * Provides the name of a font to use for a given charset value. + **/ +typedef struct FPDF_CharsetFontMap_ +{ + int charset; // Character Set Enum value, see FXFONT_*_CHARSET above. + const char* fontname; // Name of default font to use with that charset. +} FPDF_CharsetFontMap; + +/** + * Function: FPDF_GetDefaultTTFMap + * Returns a pointer to the default character set to TT Font name map. The + * map is an array of FPDF_CharsetFontMap structs, with its end indicated + * by a { -1, NULL } entry. + * Parameters: + * None. + * Return Value: + * Pointer to the Charset Font Map. + **/ +DLLEXPORT const FPDF_CharsetFontMap* STDCALL FPDF_GetDefaultTTFMap(); + +/** * Function: FPDF_AddInstalledFont * Add a system font to the list in Foxit SDK. * Comments: |