|
| | wxPdfFontParserType1 () |
| | Default constructor.
|
| |
| virtual | ~wxPdfFontParserType1 () |
| | Default destructor.
|
| |
| wxPdfFontData * | IdentifyFont (const wxString &fontFileName, int fontIndex) |
| | Identify font based on a font file.
|
| |
| bool | ParseFont (const wxString &fileName, wxInputStream *fontFile, wxInputStream *metricFile, bool onlyNames) |
| | Parse font stream.
|
| |
| bool | LoadFontData (wxPdfFontData *fontData) |
| | Load the font data.
|
| |
| bool | ReadAFM (wxInputStream &afmFile) |
| | Read font metrics from Adobe Font Metric file.
|
| |
| bool | ReadPFM (wxInputStream &pfmFile) |
| | Read font metrics from Printer Font Metric file.
|
| |
| bool | ReadPFX (wxInputStream *pfxFile, bool onlyNames) |
| | Read font data from font file.
|
| |
| | wxPdfFontParser () |
| | Default constructor.
|
| |
| virtual | ~wxPdfFontParser () |
| | Default destructor.
|
| |
| void | SeekI (int offset) |
| | Seek to offset in default input stream.
|
| |
| void | SeekI (int offset, wxInputStream *stream) |
| | Seek to offset in specific input stream.
|
| |
| int | TellI () |
| | Tell current position in default input stream.
|
| |
| int | TellI (wxInputStream *stream) |
| | Tell current position in specific input stream.
|
| |
| void | SkipBytes (int count) |
| | Skip bytes in default input stream.
|
| |
| void | SkipBytes (int count, wxInputStream *stream) |
| | Skip bytes in specific input stream.
|
| |
| int | ReadInt () |
| | Read integer from default input stream.
|
| |
| short | ReadShort () |
| | Read short integer from default input stream.
|
| |
| unsigned short | ReadUShort () |
| | Read unsigned short integer from default input stream.
|
| |
| unsigned char | ReadByte () |
| | Read byte from default input stream.
|
| |
| unsigned char | ReadByte (wxInputStream *stream) |
| | Read byte from specific input stream.
|
| |
| wxString | ReadString (int length) |
| | Read string from default input stream.
|
| |
| wxString | ReadString (int length, wxInputStream *stream) |
| | Read string from specific input stream.
|
| |
| wxString | ReadUnicodeString (int length) |
| | Read Unicode string from default input stream.
|
| |
| short | ReadShortLE (wxInputStream *stream) |
| | Read short integer from specific input stream in little endian mode.
|
| |
| unsigned short | ReadUShortLE (wxInputStream *stream) |
| | Read unsigned short integer from specific input stream in little endian mode.
|
| |
| unsigned int | ReadUIntLE (wxInputStream *stream) |
| | Read unsigned integer from specific input stream in little endian mode.
|
| |
| wxString | ReadString (wxInputStream &stream) |
| | Read string from specific input stream.
|
| |
Class representing a Type1 font parser.