Interface PrimitiveGCInterface


  • public interface PrimitiveGCInterface
    • Method Detail

      • setLineWidth

        void setLineWidth​(int width)
      • getDeviceBounds

        Point getDeviceBounds()
      • setBackground

        void setBackground​(int red,
                           int green,
                           int blue)
      • setForeground

        void setForeground​(int red,
                           int green,
                           int blue)
      • fillRectangle

        void fillRectangle​(int x,
                           int y,
                           int width,
                           int height)
      • fillGradientRectangle

        void fillGradientRectangle​(int x,
                                   int y,
                                   int width,
                                   int height,
                                   boolean vertical)
      • drawImage

        void drawImage​(String location,
                       ClassLoader classLoader,
                       int x,
                       int y)
      • drawImage

        void drawImage​(BufferedImage image,
                       int x,
                       int y)
      • drawLine

        void drawLine​(int x,
                      int y,
                      int x2,
                      int y2)
      • drawRectangle

        void drawRectangle​(int x,
                           int y,
                           int width,
                           int height)
      • drawPoint

        void drawPoint​(int x,
                       int y)
      • drawText

        void drawText​(String text,
                      int x,
                      int y)
      • drawText

        void drawText​(String text,
                      int x,
                      int y,
                      boolean transparent)
      • fillRoundRectangle

        void fillRoundRectangle​(int x,
                                int y,
                                int width,
                                int height,
                                int circleWidth,
                                int circleHeight)
      • drawRoundRectangle

        void drawRoundRectangle​(int x,
                                int y,
                                int width,
                                int height,
                                int circleWidth,
                                int circleHeight)
      • fillPolygon

        void fillPolygon​(int[] polygon)
      • drawPolygon

        void drawPolygon​(int[] polygon)
      • drawPolyline

        void drawPolyline​(int[] polyline)
      • setAntialias

        void setAntialias​(boolean antiAlias)
      • setTransform

        void setTransform​(float translationX,
                          float translationY,
                          int shadowsize,
                          float magnification)
      • setAlpha

        void setAlpha​(int alpha)
      • dispose

        void dispose()
      • getAlpha

        int getAlpha()
      • setFont

        void setFont​(String fontName,
                     int fontSize,
                     boolean fontBold,
                     boolean fontItalic)
      • switchForegroundBackgroundColors

        void switchForegroundBackgroundColors()
      • getArea

        Point getArea()