Uses of Class
cz.cuni.jagrlib.VectorCommand

Packages that use VectorCommand
cz.cuni.jagrlib Core JaGrLib package. 
cz.cuni.jagrlib.iface Various interfaces for connecting of JaGrLib modules. 
 

Uses of VectorCommand in cz.cuni.jagrlib
 

Subclasses of VectorCommand in cz.cuni.jagrlib
 class VCommand
          Concrete vector commands - individual commands are declared as inner classes of VCommand.
 class VCommand.ArcTo
          Draw a circular arc (counterclockwise) and connects it to the current point.
 class VCommand.Clip
          Sets the current path as the clipping region (the current path is destroed - use VCommand.PushPath and VCommand.PopPath to restore it).
 class VCommand.ClosePath
          Closes the current path.
 class VCommand.CreateFont
          Creates the new font instance (from: family, style, size).
 class VCommand.CubicCurveTo
          Draw a cubic Bezier curve from the current point.
 class VCommand.DrawText
          Draws the given text using current font and current color.
 class VCommand.Fill
          Fills interior of the current path (the current path is destroed - use VCommand.PushPath and VCommand.PopPath to restore it).
 class VCommand.FontOrientation
          Changes the current font's orientation.
 class VCommand.GetFont
          Assigns the actual font (slot A) from the given slot.
 class VCommand.LineTo
          Draw line from tho current point to the given coordinate.
 class VCommand.MoveTo
          Moves current point to the given coordinate.
 class VCommand.NewPath
          Starts a new path (an old path is destroyed).
 class VCommand.PopPath
          Pops one item from the path stack and assigns the current path.
 class VCommand.PushPath
          Pushes the current path on the path stack.
 class VCommand.PutFont
          Puts the actual font (slot A) into the given slot.
 class VCommand.RArcTo
          Draw a circular arc (clockwise) and connects it to the current point.
 class VCommand.SetColor
          Sets the actual drawing color (optionally with alpha-component).
 class VCommand.SetFillCallback
          Sets the actual fill callback routine.
 class VCommand.SetFillStyle
          Sets the actual fill style.
 class VCommand.SetLineCallback
          Sets the actual stroke callback routine.
 class VCommand.SetLineStyle
          Sets the actual stroke style.
 class VCommand.SetLineWidth
          Sets the actual stroke width.
 class VCommand.Stroke
          Strokes the current path (the current path is destroed - use VCommand.PushPath and VCommand.PopPath to restore it).
 class VCommand.TextPath
          Generates path of the given text string and appends it to the current path.
 

Fields in cz.cuni.jagrlib with type parameters of type VectorCommand
protected  java.util.List<VectorCommand> VCommand.commands
          List of sub-commands.
 

Uses of VectorCommand in cz.cuni.jagrlib.iface
 

Methods in cz.cuni.jagrlib.iface with parameters of type VectorCommand
 void VectorGraphics.command(VectorCommand c)
          Single command processing.
 void VectorGraphics.commands(VectorCommand[] c)
          Multiple command processing.
 

Method parameters in cz.cuni.jagrlib.iface with type arguments of type VectorCommand
 void VectorGraphics.commands(java.util.Iterator<VectorCommand> c)
          Multiple command processing.