Uses of Interface
org.extex.typesetter.tc.font.Font

Packages that use Font
org.extex This package contains ExTeX – an implementation of a typesetting engine based on the concepts of TeX
org.extex.backend.documentWriter.dvi This package contains the definitions for a DocumentWriter for dvi-Files. 
org.extex.backend.documentWriter.pdf This package contains a backend of ExTeX which produce a PDF-file. 
org.extex.backend.documentWriter.pdf.pdfbox This package contains the adapter for the PDF-backend and the PDFBox. 
org.extex.backend.documentWriter.postscript.util This package contains utility classes for the a PostScript DocumentWriter. 
org.extex.backend.documentWriter.rtf This package contains a DocumentWriter to produce RTF files. 
org.extex.dviware.type This package contains classes representing the instructions in a DVI files. 
org.extex.interpreter This package contains the macro expansion engine and all supporting classes. 
org.extex.interpreter.context This package contains the container for data in the interpreter. 
org.extex.interpreter.max This package contains the macro expansion engine and supporting classes. 
org.extex.interpreter.max.context This package contains a reference implementation for the Context
org.extex.interpreter.type.font   
org.extex.language.hyphenation.base This package contains the base hyphenation table implementation. 
org.extex.language.impl This package contains implementations which describe a language. 
org.extex.language.ligature This package contains an implmentation of a ligature builder. 
org.extex.language.ligature.impl This package contains an implementation of a ligature builder. 
org.extex.pdf.api This package contains utility classes for ExTeX's pdfTeX mode. 
org.extex.typesetter This package contains the typesetter definitions for ExTeX. 
org.extex.typesetter.common This package contains some common classes for any typesetters. 
org.extex.typesetter.tc This package contains the declarations for a typesetting context. 
org.extex.typesetter.tc.font   
org.extex.typesetter.tc.font.impl   
org.extex.unit.base.register.font This package contains primitives for the manipulation of font registers. 
 

Uses of Font in org.extex
 

Methods in org.extex that return Font
protected  Font ExTeX.makeDefaultFont(Configuration config, CoreFontFactory fontFactory)
          Create a default font for the interpreter context.
 

Uses of Font in org.extex.backend.documentWriter.dvi
 

Methods in org.extex.backend.documentWriter.dvi with parameters of type Font
 void DviWriter.selectFont(Font font)
          Select Font for the next CharNodes.
 

Uses of Font in org.extex.backend.documentWriter.pdf
 

Methods in org.extex.backend.documentWriter.pdf with parameters of type Font
 java.lang.String PdfDocumentWriter.pdffontname(Font font)
          Retrieve the font name for a given font.
 long PdfDocumentWriter.pdffontobjnum(Font font)
          Retrieve the font object number for a given font.
 void PdfDocumentWriter.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 org.extex.backend.documentWriter.pdf.pdfbox
 

Methods in org.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 org.extex.backend.documentWriter.postscript.util
 

Methods in org.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 org.extex.backend.documentWriter.rtf
 

Methods in org.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 org.extex.dviware.type
 

Methods in org.extex.dviware.type with parameters of type Font
 int DviPostamble.mapFont(Font fnt, java.util.List<DviCode> list)
          Determine the font index and insert a font definition into the output list if required.
 

Constructors in org.extex.dviware.type with parameters of type Font
DviFntDef(int index, Font font)
          Creates a new object.
 

Uses of Font in org.extex.interpreter
 

Methods in org.extex.interpreter that return Font
 Font TokenSource.getFont(Context context, CodeToken primitive)
          Parse the specification of a font.
 

Uses of Font in org.extex.interpreter.context
 

Methods in org.extex.interpreter.context that return Font
 Font ContextFont.getFont(java.lang.String name)
          Getter for a current font register.
 

Methods in org.extex.interpreter.context with parameters of type Font
 void Context.set(Font font, boolean global)
          Setter for the font in the current typesetting context.
 void ContextFont.setFont(java.lang.String name, Font font, boolean global)
          Setter for font registers.
 

Uses of Font in org.extex.interpreter.max
 

Methods in org.extex.interpreter.max that return Font
 Font Moritz.getFont(Context context, CodeToken primitive)
           
 

Uses of Font in org.extex.interpreter.max.context
 

Methods in org.extex.interpreter.max.context that return Font
 Font GroupImpl.getFont(java.lang.String name)
          Getter for the current font.
 Font Group.getFont(java.lang.String name)
          Getter for the current font.
 Font ContextImpl.getFont(java.lang.String name)
           
 

Methods in org.extex.interpreter.max.context with parameters of type Font
 void ContextImpl.set(Font font, boolean global)
          Setter for the font in the current typesetting context.
 void GroupImpl.setFont(java.lang.String name, Font font, boolean global)
          Setter for the font with a given name.
 void Group.setFont(java.lang.String name, Font font, boolean global)
          Setter for the font with a given name.
 void ContextImpl.setFont(java.lang.String name, Font font, boolean global)
          Setter for font registers.
 

Uses of Font in org.extex.interpreter.type.font
 

Methods in org.extex.interpreter.type.font that return Font
 Font FontConvertible.convertFont(Context context, TokenSource source, Typesetter typesetter)
          Convert some primitive value into a font.
 

Uses of Font in org.extex.language.hyphenation.base
 

Methods in org.extex.language.hyphenation.base with parameters of type Font
 UnicodeChar BaseHyphenationTable.getLigature(UnicodeChar c1, UnicodeChar c2, Font f)
          Get a single ligature of to characters.
 

Uses of Font in org.extex.language.impl
 

Methods in org.extex.language.impl with parameters of type Font
 UnicodeChar FutureLanguage.getLigature(UnicodeChar c1, UnicodeChar c2, Font f)
          Get a single ligature of to characters.
 

Uses of Font in org.extex.language.ligature
 

Methods in org.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 org.extex.language.ligature.impl
 

Methods in org.extex.language.ligature.impl with parameters of type Font
 UnicodeChar LigatureBuilderImpl.getLigature(UnicodeChar c1, UnicodeChar c2, Font f)
          Get a single ligature of to characters.
 UnicodeChar EmptyLigatureBuilder.getLigature(UnicodeChar c1, UnicodeChar c2, Font f)
          Get a single ligature of to characters.
 

Uses of Font in org.extex.pdf.api
 

Methods in org.extex.pdf.api 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 org.extex.typesetter
 

Methods in org.extex.typesetter that return Font
 Font TypesetterOptions.getFont(java.lang.String name)
          Getter for a current font register.
 Font PageContext.getFont(java.lang.String name)
          Getter for a current font register.
 

Uses of Font in org.extex.typesetter.common
 

Methods in org.extex.typesetter.common 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 org.extex.typesetter.tc
 

Methods in org.extex.typesetter.tc that return Font
 Font TypesettingContextImpl.getFont()
          Getter for the font component.
 Font TypesettingContext.getFont()
          Getter for the font component.
 

Methods in org.extex.typesetter.tc with parameters of type Font
 TypesettingContext TypesettingContextFactory.newInstance(TypesettingContext context, Font font)
          Factory method to acquire an instance of the TypesettingContext.
 void TypesettingContextImpl.setFont(Font font)
          Setter for the font component.
 void ModifiableTypesettingContext.setFont(Font font)
          Setter for the font component.
 

Constructors in org.extex.typesetter.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 org.extex.typesetter.tc.font
 

Subinterfaces of Font in org.extex.typesetter.tc.font
 interface ModifiableFont
          This interface descries the ability to receive an internal font.
 

Uses of Font in org.extex.typesetter.tc.font.impl
 

Classes in org.extex.typesetter.tc.font.impl that implement Font
 class FontImpl
          This class constitutes a wrapper for a font.
 class NullFont
          This class implements a dummy font which does not contain any characters.
 

Uses of Font in org.extex.unit.base.register.font
 

Methods in org.extex.unit.base.register.font that return Font
 Font NamedFont.convertFont(Context context, TokenSource source, Typesetter typesetter)
          Convert some primitive value into a font.
 Font NullfontPrimitive.convertFont(Context context, TokenSource source, Typesetter typesetter)
          Convert some primitive value into a font.
 Font FontCode.convertFont(Context context, TokenSource source, Typesetter typesetter)
          Convert some primitive value into a font.
 Font FontPrimitive.convertFont(Context context, TokenSource source, Typesetter typesetter)
          Convert some primitive value into a font.
 

Constructors in org.extex.unit.base.register.font with parameters of type Font
FontCode(CodeToken token, Font fnt)
          Creates a new object.