Class TLcdMIFTextGXYFontStyle

java.lang.Object
com.luciad.format.mif.gxy.TLcdMIFTextGXYFontStyle
All Implemented Interfaces:
ILcdCloneable, ILcdGXYPainterStyle, Serializable, Cloneable

public class TLcdMIFTextGXYFontStyle extends Object implements ILcdGXYPainterStyle, ILcdCloneable
This class implements an ILcdGXYPainterStyle for MIF text objects. It sets a selectionColor before painting an Object in ILcdGXYPainter.SELECTED mode, or the color and stroke specified by the MIF pen otherwise.
See Also:
  • Constructor Details

    • TLcdMIFTextGXYFontStyle

      public TLcdMIFTextGXYFontStyle()
      Constructs a TLcdMIFTextGXYFontStyle with the default selection color (red).
    • TLcdMIFTextGXYFontStyle

      public TLcdMIFTextGXYFontStyle(Color aSelectionColor)
      Constructs a TLcdMIFTextGXYFontStyle with the given selection color.
      Parameters:
      aSelectionColor - the color to paint selected text in.
  • Method Details

    • setSelectionColor

      public void setSelectionColor(Color aSelectionColor)
      Sets the color in which selected objects are displayed.
      Parameters:
      aSelectionColor - the color in which selected objects are displayed.
      See Also:
    • getSelectionColor

      public Color getSelectionColor()
      Returns the color in which selected objects are displayed.
      Returns:
      the color in which selected objects are displayed.
      See Also:
    • setFont

      public void setFont(Font aFont)
      Sets the font to use to display the text objects.
      Parameters:
      aFont - the font to use to display the text objects.
      See Also:
    • getFont

      public Font getFont()
      Returns the font used to display the text objects.
      Returns:
      the font used to display the text objects.
      See Also:
    • setColor

      public void setColor(Color aColor)
      Sets the color to display non selected objects.
      Parameters:
      aColor - the color to display non selected objects.
      See Also:
    • getColor

      public Color getColor()
      Returns the color used to display non selected objects.
      Returns:
      the color used to display non selected objects.
      See Also:
    • setupGraphics

      public void setupGraphics(Graphics aGraphics, Object aObject, int aMode, ILcdGXYContext aGXYContext)
      Description copied from interface: ILcdGXYPainterStyle
      Set up aGraphics before painting aObject. For example, if (aMode & ILcdGXYPainter.SELECTED) != 0, you may want to call aGraphics.setColor(Color.red) for instance, to see the selected representation of a aObject in red.
      Specified by:
      setupGraphics in interface ILcdGXYPainterStyle
      Parameters:
      aGraphics - the Graphics to set up.
      aObject - the Object to paint.
      aMode - the painting mode to consider (defined in ILcdGXYPainter).
      aGXYContext - the ILcdGXYContext to consider.
      See Also:
    • clone

      public Object clone()
      Description copied from interface: ILcdCloneable

      Makes Object.clone() public.

      When for example extending from java.lang.Object, it can be implemented like this:
      
       public Object clone() {
         try {
           return super.clone();
         } catch ( CloneNotSupportedException e ) {
           // Cannot happen: extends from Object and implements Cloneable (see also Object.clone)
           throw new RuntimeException( e );
         }
       }
       
      Specified by:
      clone in interface ILcdCloneable
      Overrides:
      clone in class Object
      See Also: