|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Font | |
de.dante.dviware.type | This package contains classes representing the instructions in a DVI files. |
de.dante.extex | This package contains |
de.dante.extex.backend.documentWriter | This package contains the backends of |
de.dante.extex.backend.documentWriter.dump | This package contains a backend of ExTeX which just dumps the information in a readable format to the output file. |
de.dante.extex.backend.documentWriter.dvi | This package contains the definitions for a DocumentWriter for dvi-Files. |
de.dante.extex.backend.documentWriter.pdf.pdfbox | This package contains the adapter for the PDF-backend and the PDFBox. |
de.dante.extex.backend.documentWriter.postscript.util | This package contains utility classes for the a PostScript DocumentWriter. |
de.dante.extex.backend.documentWriter.rtf | This package contains a DocumentWriter to produce RTF files. |
de.dante.extex.font | This package contains the definitions and implementations for font handling in ExTeX. |
de.dante.extex.font.type.other | |
de.dante.extex.interpreter | This package contains the macro expansion engine and all supporting classes. |
de.dante.extex.interpreter.context | This package contains the container for data in the interpreter. |
de.dante.extex.interpreter.context.impl | This package contains a reference implementation for the
Context . |
de.dante.extex.interpreter.context.tc | This package contains the declarations for a typesetting context. |
de.dante.extex.interpreter.max | This package contains an implementation for the interpreter. |
de.dante.extex.interpreter.primitives.register.font | This package contains primitives for the manipulation of font registers. |
de.dante.extex.interpreter.type.font | |
de.dante.extex.language.hyphenation.base | This package contains a implementation for an hyphenation engine. |
de.dante.extex.language.impl | This package contains implementations which describe a language. |
de.dante.extex.language.ligature | This package contains an implmentation of a ligature builder. |
de.dante.extex.language.ligature.impl | This package contains an implementation of a ligature builder. |
de.dante.extex.typesetter | This package contains the typesetter definitions for ExTeX. |
de.dante.extex.typesetter.listMaker.math | This package contains implementations for math list makers. |
Uses of Font in de.dante.dviware.type |
Methods in de.dante.dviware.type with parameters of type Font | |
int |
DviPostamble.mapFont(Font fnt,
java.util.List list)
Determine the font index and insert a font definition into the output list if required. |
Constructors in de.dante.dviware.type with parameters of type Font | |
DviFntDef(int index,
Font font)
Creates a new object. |
Uses of Font in de.dante.extex |
Methods in de.dante.extex that return Font | |
protected Font |
ExTeX.makeDefaultFont(Configuration config,
FontFactory fontFactory)
Create a default font for the interpreter context. |
Uses of Font in de.dante.extex.backend.documentWriter |
Methods in de.dante.extex.backend.documentWriter with parameters of type Font | |
java.lang.String |
PdftexSupport.pdffontname(Font font)
Retrieve the font name for a given font. |
long |
PdftexSupport.pdffontobjnum(Font font)
Retrieve the font object number for a given font. |
void |
PdftexSupport.pdfincludechars(Font font,
java.lang.String text)
Include a set of characters from a font into the output regardless of whether they are used or not. |
Uses of Font in de.dante.extex.backend.documentWriter.dump |
Methods in de.dante.extex.backend.documentWriter.dump with parameters of type Font | |
java.lang.String |
DumpDocumentWriter.pdffontname(Font font)
|
long |
DumpDocumentWriter.pdffontobjnum(Font font)
|
void |
DumpDocumentWriter.pdfincludechars(Font font,
java.lang.String text)
|
Uses of Font in de.dante.extex.backend.documentWriter.dvi |
Methods in de.dante.extex.backend.documentWriter.dvi with parameters of type Font | |
void |
DviWriter.selectFont(Font font)
Select Font for the next CharNodes. |
Uses of Font in de.dante.extex.backend.documentWriter.pdf.pdfbox |
Methods in de.dante.extex.backend.documentWriter.pdf.pdfbox with parameters of type Font | |
static org.pdfbox.pdmodel.font.PDFont |
PdfBoxType1Font.getInstance(org.pdfbox.pdmodel.PDDocument doc,
Font font)
Returns a instance for the font. |
Uses of Font in de.dante.extex.backend.documentWriter.postscript.util |
Methods in de.dante.extex.backend.documentWriter.postscript.util that return Font | |
Font[] |
FontManager.listFonts()
Getter for the list of fonts. |
Methods in de.dante.extex.backend.documentWriter.postscript.util with parameters of type Font | |
java.lang.String |
FontManager.add(Font font,
UnicodeChar c)
Receive the information that a character in a certain font has been used and should be remembered. |
Uses of Font in de.dante.extex.backend.documentWriter.rtf |
Methods in de.dante.extex.backend.documentWriter.rtf with parameters of type Font | |
protected int |
RtfDocument.mapFont(Font font)
Add a font to the font table if necessary and return a unique index. |
Uses of Font in de.dante.extex.font |
Methods in de.dante.extex.font that return Font | |
Font |
FontFactoryImpl.getInstance(FountKey key)
Return a new instance. |
Font |
FontFactoryImpl.getInstance(TFMFont tfm,
FountKey key)
Return a new instance. |
Font |
FontFactoryImpl.getInstance(VFFont vf,
FountKey key)
Return a new instance. |
Font |
FontFactory.getInstance(FountKey key)
Return a new instance. |
Font |
FontFactory.getInstance(TFMFont tfm,
FountKey key)
Return a new instance. |
Font |
FontFactory.getInstance(VFFont vf,
FountKey key)
Return a new instance. |
Uses of Font in de.dante.extex.font.type.other |
Classes in de.dante.extex.font.type.other that implement Font | |
class |
NullFont
This class implements a dummy font which does not contain any characters. |
Uses of Font in de.dante.extex.interpreter |
Methods in de.dante.extex.interpreter that return Font | |
Font |
TokenSource.getFont(Context context,
java.lang.String primitive)
Parse the specification of a font. |
Uses of Font in de.dante.extex.interpreter.context |
Methods in de.dante.extex.interpreter.context that return Font | |
Font |
ContextFont.getFont(java.lang.String name)
Getter for a current font register. |
Methods in de.dante.extex.interpreter.context with parameters of type Font | |
void |
ContextFont.setFont(java.lang.String name,
Font font,
boolean global)
Setter for font registers. |
void |
Context.set(Font font,
boolean global)
Setter for the font in the current typesetting context. |
Uses of Font in de.dante.extex.interpreter.context.impl |
Methods in de.dante.extex.interpreter.context.impl that return Font | |
Font |
GroupImpl.getFont(java.lang.String name)
|
Font |
Group.getFont(java.lang.String name)
Getter for the current font. |
Font |
ContextImpl.getFont(java.lang.String name)
|
Methods in de.dante.extex.interpreter.context.impl with parameters of type Font | |
void |
GroupImpl.setFont(java.lang.String name,
Font font,
boolean global)
|
void |
Group.setFont(java.lang.String name,
Font font,
boolean global)
Setter for the font with a given name. |
void |
ContextImpl.set(Font font,
boolean global)
|
void |
ContextImpl.setFont(java.lang.String name,
Font font,
boolean global)
|
Uses of Font in de.dante.extex.interpreter.context.tc |
Methods in de.dante.extex.interpreter.context.tc that return Font | |
Font |
TypesettingContextImpl.getFont()
|
Font |
TypesettingContext.getFont()
Getter for the font component. |
Methods in de.dante.extex.interpreter.context.tc with parameters of type Font | |
void |
TypesettingContextImpl.setFont(Font theFont)
|
TypesettingContext |
TypesettingContextFactory.newInstance(TypesettingContext context,
Font font)
Factory method to acquire an instance of the TypesettingContext. |
void |
ModifiableTypesettingContext.setFont(Font font)
Setter for the font component. |
Constructors in de.dante.extex.interpreter.context.tc with parameters of type Font | |
TypesettingContextImpl(Font theFont)
Creates a new object with the given initial font, the color black and no hyphenation. |
Uses of Font in de.dante.extex.interpreter.max |
Methods in de.dante.extex.interpreter.max that return Font | |
Font |
Moritz.getFont(Context context,
java.lang.String primitive)
|
Uses of Font in de.dante.extex.interpreter.primitives.register.font |
Methods in de.dante.extex.interpreter.primitives.register.font that return Font | |
Font |
NullfontPrimitive.convertFont(Context context,
TokenSource source,
Typesetter typesetter)
|
Font |
NamedFont.convertFont(Context context,
TokenSource source,
Typesetter typesetter)
|
Font |
FontPrimitive.convertFont(Context context,
TokenSource source,
Typesetter typesetter)
|
Font |
FontCode.convertFont(Context context,
TokenSource source,
Typesetter typesetter)
|
Constructors in de.dante.extex.interpreter.primitives.register.font with parameters of type Font | |
FontCode(java.lang.String name,
Font fontname)
Creates a new object. |
Uses of Font in de.dante.extex.interpreter.type.font |
Classes in de.dante.extex.interpreter.type.font that implement Font | |
class |
FontImpl
This class constitutes a wrapper for a font. |
class |
VirtualFontImpl
Implementation for a virtual font. |
Methods in de.dante.extex.interpreter.type.font that return Font | |
Font |
FontConvertible.convertFont(Context context,
TokenSource source,
Typesetter typesetter)
Convert some primitive value into a font. |
Methods in de.dante.extex.interpreter.type.font with parameters of type Font | |
static void |
FontUtil.charWarning(java.util.logging.Logger logger,
TypesetterOptions context,
Font font,
UnicodeChar c)
This method produces a log entry for lost characters if the count register tracinglostchars is greater than zero. |
Uses of Font in de.dante.extex.language.hyphenation.base |
Methods in de.dante.extex.language.hyphenation.base with parameters of type Font | |
UnicodeChar |
BaseHyphenationTable.getLigature(UnicodeChar c1,
UnicodeChar c2,
Font f)
|
Uses of Font in de.dante.extex.language.impl |
Methods in de.dante.extex.language.impl with parameters of type Font | |
UnicodeChar |
FutureLanguage.getLigature(UnicodeChar c1,
UnicodeChar c2,
Font f)
|
Uses of Font in de.dante.extex.language.ligature |
Methods in de.dante.extex.language.ligature with parameters of type Font | |
UnicodeChar |
LigatureBuilder.getLigature(UnicodeChar c1,
UnicodeChar c2,
Font f)
Get a single ligature of to characters. |
Uses of Font in de.dante.extex.language.ligature.impl |
Methods in de.dante.extex.language.ligature.impl with parameters of type Font | |
UnicodeChar |
LigatureBuilderImpl.getLigature(UnicodeChar c1,
UnicodeChar c2,
Font f)
|
UnicodeChar |
EmptyLigatureBuilder.getLigature(UnicodeChar c1,
UnicodeChar c2,
Font f)
|
Uses of Font in de.dante.extex.typesetter |
Methods in de.dante.extex.typesetter that return Font | |
Font |
TypesetterOptions.getFont(java.lang.String name)
Getter for a current font register. |
Uses of Font in de.dante.extex.typesetter.listMaker.math |
Classes in de.dante.extex.typesetter.listMaker.math that implement Font | |
class |
MathFont
This class encapsulates a font and provides access to the font dimens with convenience methods. |
Constructors in de.dante.extex.typesetter.listMaker.math with parameters of type Font | |
MathFont(Font font)
Creates a new object. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |