Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.memoire.dja
Class DjaGraphics0  view DjaGraphics0 download DjaGraphics0.java

java.lang.Object
  extended bycom.memoire.dja.DjaGraphics0
All Implemented Interfaces:
DjaOptions
Direct Known Subclasses:
DjaGraphics1, DjaGraphics2

public abstract class DjaGraphics0
extends java.lang.Object
implements DjaOptions

Interface for independant graphic ops.


Field Summary
 
Fields inherited from interface com.memoire.dja.DjaOptions
ABSOLUTE, anchorsColor, ANY, attachsColor, AUTO, BOTH, CENTER, closeX, closeY, controlsColor, defaultBigFont, defaultBoldFont, defaultPlainFont, defaultSmallFont, deltaX, deltaY, DISK_BG, DISK_EMPTY, DISK_FG, EAST, freesColor, handlesColor, HELPER, HORIZONTAL, LEFT, LEFT_TRIANGLE_BG, LEFT_TRIANGLE_EMPTY, LEFT_TRIANGLE_FG, LOSANGE_BG, LOSANGE_EMPTY, LOSANGE_FG, MIDDLE, NONE, NORTH, NORTH_EAST, NORTH_WEST, RELATIVE_ANCHOR, RELATIVE_ATTACH, RELATIVE_CONTROL, RELATIVE_NE, RELATIVE_NW, RELATIVE_SE, RELATIVE_SW, RELATIVE_TEXT_NE, RELATIVE_TEXT_NW, RELATIVE_TEXT_SE, RELATIVE_TEXT_SW, RIGHT, RIGHT_TRIANGLE_BG, RIGHT_TRIANGLE_EMPTY, RIGHT_TRIANGLE_FG, selectionBackground, selectionForeground, selectionTextColor, selectionZone, snap, SOUTH, SOUTH_EAST, SOUTH_WEST, SQUARE_BG, SQUARE_EMPTY, SQUARE_FG, VERTICAL, WEST
 
Constructor Summary
DjaGraphics0()
           
 
Method Summary
abstract  void drawLine(java.awt.Graphics _g, int _x1, int _y1, int _x2, int _y2, DjaGraphics.BresenhamParams _bp)
           
abstract  void drawOval(java.awt.Graphics _g, int _x, int _y, int _w, int _h, DjaGraphics.BresenhamParams _bp)
           
 void drawPoint(java.awt.Graphics _g, int _x, int _y, DjaGraphics.BresenhamParams _bp)
           
 void drawPoint(java.awt.Graphics _g, int _x1, int _y1, int _x2, int _y2, DjaGraphics.BresenhamParams _bp)
           
abstract  void drawPolygon(java.awt.Graphics _g, int[] _xpoints, int[] _ypoints, int _npoints, DjaGraphics.BresenhamParams _bp)
           
 void drawPolygon(java.awt.Graphics _g, java.awt.Polygon _p, DjaGraphics.BresenhamParams _bp)
           
abstract  void drawPolyline(java.awt.Graphics _g, int[] _xpoints, int[] _ypoints, int _npoints, DjaGraphics.BresenhamParams _bp)
           
 void drawPolyline(java.awt.Graphics _g, java.awt.Polygon _p, DjaGraphics.BresenhamParams _bp)
           
abstract  void drawRect(java.awt.Graphics _g, int _x, int _y, int _w, int _h, DjaGraphics.BresenhamParams _bp)
           
abstract  void drawRoundRect(java.awt.Graphics _g, int _x, int _y, int _w, int _h, int _rh, int _rv, DjaGraphics.BresenhamParams _bp)
           
abstract  void fillOval(java.awt.Graphics _g, int _x, int _y, int _w, int _h)
           
 void fillPolygon(java.awt.Graphics _g, int[] _xpoints, int[] _ypoints, int _npoints)
           
 void fillPolygon(java.awt.Graphics _g, java.awt.Polygon _p)
           
 void fillRect(java.awt.Graphics _g, int _x, int _y, int _w, int _h)
           
abstract  void fillRoundRect(java.awt.Graphics _g, int _x, int _y, int _w, int _h, int _rh, int _rv)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DjaGraphics0

public DjaGraphics0()
Method Detail

drawLine

public abstract void drawLine(java.awt.Graphics _g,
                              int _x1,
                              int _y1,
                              int _x2,
                              int _y2,
                              DjaGraphics.BresenhamParams _bp)

drawRect

public abstract void drawRect(java.awt.Graphics _g,
                              int _x,
                              int _y,
                              int _w,
                              int _h,
                              DjaGraphics.BresenhamParams _bp)

drawRoundRect

public abstract void drawRoundRect(java.awt.Graphics _g,
                                   int _x,
                                   int _y,
                                   int _w,
                                   int _h,
                                   int _rh,
                                   int _rv,
                                   DjaGraphics.BresenhamParams _bp)

fillRoundRect

public abstract void fillRoundRect(java.awt.Graphics _g,
                                   int _x,
                                   int _y,
                                   int _w,
                                   int _h,
                                   int _rh,
                                   int _rv)

drawOval

public abstract void drawOval(java.awt.Graphics _g,
                              int _x,
                              int _y,
                              int _w,
                              int _h,
                              DjaGraphics.BresenhamParams _bp)

fillOval

public abstract void fillOval(java.awt.Graphics _g,
                              int _x,
                              int _y,
                              int _w,
                              int _h)

drawPolyline

public abstract void drawPolyline(java.awt.Graphics _g,
                                  int[] _xpoints,
                                  int[] _ypoints,
                                  int _npoints,
                                  DjaGraphics.BresenhamParams _bp)

drawPolygon

public abstract void drawPolygon(java.awt.Graphics _g,
                                 int[] _xpoints,
                                 int[] _ypoints,
                                 int _npoints,
                                 DjaGraphics.BresenhamParams _bp)

drawPoint

public final void drawPoint(java.awt.Graphics _g,
                            int _x,
                            int _y,
                            DjaGraphics.BresenhamParams _bp)

drawPoint

public final void drawPoint(java.awt.Graphics _g,
                            int _x1,
                            int _y1,
                            int _x2,
                            int _y2,
                            DjaGraphics.BresenhamParams _bp)

fillRect

public final void fillRect(java.awt.Graphics _g,
                           int _x,
                           int _y,
                           int _w,
                           int _h)

drawPolyline

public final void drawPolyline(java.awt.Graphics _g,
                               java.awt.Polygon _p,
                               DjaGraphics.BresenhamParams _bp)

drawPolygon

public final void drawPolygon(java.awt.Graphics _g,
                              java.awt.Polygon _p,
                              DjaGraphics.BresenhamParams _bp)

fillPolygon

public final void fillPolygon(java.awt.Graphics _g,
                              java.awt.Polygon _p)

fillPolygon

public final void fillPolygon(java.awt.Graphics _g,
                              int[] _xpoints,
                              int[] _ypoints,
                              int _npoints)