Uses of Interface
org.extex.color.Color

Packages that use Color
org.extex.backend.documentWriter.rtf This package contains a DocumentWriter to produce RTF files. 
org.extex.color This package contains some classes for color support. 
org.extex.color.model This package contains implementing classes for different color models. 
org.extex.engine.typesetter.page This package contains the backend support for pages of the core engine of ExTeX
org.extex.interpreter.context This package contains the container for data in the interpreter. 
org.extex.interpreter.max.context This package contains a reference implementation for the Context
org.extex.interpreter.type.color This package contains the definition for some color models. 
org.extex.typesetter.tc This package contains the declarations for a typesetting context. 
org.extex.typesetter.type.noad This package contains the data structures for Noads. 
org.extex.typesetter.type.page This package contains type definitions for the pages and supporting classes. 
org.extex.unit.color This package contains primitives for colors. 
 

Uses of Color in org.extex.backend.documentWriter.rtf
 

Methods in org.extex.backend.documentWriter.rtf with parameters of type Color
 void RtfDocument.newPage(Color color)
          Start a new page.
 

Uses of Color in org.extex.color
 

Methods in org.extex.color with parameters of type Color
 CmykColor BasicColorConverter.toCmyk(Color color)
          Convert an arbitrary color to the CMYK model.
 CmykColor ColorConverter.toCmyk(Color color)
          Convert an arbitrary color to the CMYK model.
 CmykColor NoColorConverter.toCmyk(Color color)
          Convert an arbitrary color to the CMYK model.
 GrayscaleColor BasicColorConverter.toGrayscale(Color color)
          Convert an arbitrary color to the gray-scale model.
 GrayscaleColor ColorConverter.toGrayscale(Color color)
          Convert an arbitrary color to the RGB model.
 GrayscaleColor NoColorConverter.toGrayscale(Color color)
          Convert an arbitrary color to the RGB model.
 HsvColor BasicColorConverter.toHsv(Color color)
          Convert an arbitrary color to the HSV model.
 HsvColor ColorConverter.toHsv(Color color)
          Convert an arbitrary color to the HSV model.
 HsvColor NoColorConverter.toHsv(Color color)
          Convert an arbitrary color to the HSV model.
 RgbColor BasicColorConverter.toRgb(Color color)
          Convert an arbitrary color to the RGB model.
 RgbColor ColorConverter.toRgb(Color color)
          Convert an arbitrary color to the RGB model.
 RgbColor NoColorConverter.toRgb(Color color)
          Convert an arbitrary color to the RGB model.
 

Uses of Color in org.extex.color.model
 

Classes in org.extex.color.model that implement Color
 class CmykColor
          This class implements a color specification in CMYK mode with an alpha channel.
 class GrayscaleColor
          This class implements a color specification in grayscale mode with an alpha channel.
 class HsvColor
          This class implements a color specification in HSV mode with an alpha channel.
 class RgbColor
          This class implements a color specification in RGB mode with an alpha channel.
 

Fields in org.extex.color.model declared as Color
static Color ColorFactory.BLACK
          The constant BLACK contains the color black.
static Color ColorFactory.WHITE
          The constant WHITE contains the color white.
 

Uses of Color in org.extex.engine.typesetter.page
 

Methods in org.extex.engine.typesetter.page that return Color
 Color PageImpl.getColor()
          Getter for the background color.
 

Methods in org.extex.engine.typesetter.page with parameters of type Color
 void PageImpl.setColor(Color bg)
          Setter for the background color.
 

Uses of Color in org.extex.interpreter.context
 

Methods in org.extex.interpreter.context with parameters of type Color
 void Context.set(Color color, boolean global)
          Setter for the color in the current typesetting context.
 

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

Methods in org.extex.interpreter.max.context with parameters of type Color
 void ContextImpl.set(Color color, boolean global)
          Setter for the color in the current typesetting context.
 

Uses of Color in org.extex.interpreter.type.color
 

Methods in org.extex.interpreter.type.color that return Color
 Color ColorConvertible.convertColor(Context context, TokenSource source, Typesetter typesetter)
          This method converts something into a color.
 

Uses of Color in org.extex.typesetter.tc
 

Methods in org.extex.typesetter.tc that return Color
 Color TypesettingContextImpl.getColor()
          Getter for the color.
 Color TypesettingContext.getColor()
          Getter for the color.
 

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

Uses of Color in org.extex.typesetter.type.noad
 

Methods in org.extex.typesetter.type.noad that return Color
 Color AbstractNucleusNoad.getColor()
          Getter for color.
 

Uses of Color in org.extex.typesetter.type.page
 

Methods in org.extex.typesetter.type.page that return Color
 Color Page.getColor()
          Getter for the background color.
 

Methods in org.extex.typesetter.type.page with parameters of type Color
 void Page.setColor(Color background)
          Setter for the background color.
 

Uses of Color in org.extex.unit.color
 

Methods in org.extex.unit.color that return Color
 Color ColorPrimitive.convertColor(Context context, TokenSource source, Typesetter typesetter)
          This method converts something into a color.
static Color ColorParser.parseColor(Context context, TokenSource source, Typesetter typesetter, CodeToken primitive)
          Parse a color specification made up of a color constant for one of the supported color models or a control sequence which is bound to color convertible code.
static Color ColorParser.parseColorConstant(Context context, TokenSource source, Typesetter typesetter, CodeToken primitive)
          Parse a color specification made up of a color constant for one of the supported color models.