Graphics: setPaintMode() : Graphics « java.awt « Java by API






Graphics: setPaintMode()

 
import java.awt.Color;
import java.awt.Graphics;

import javax.swing.JFrame;
import javax.swing.JPanel;

public class MainClass extends JPanel {

  public void paint(Graphics g) {
    int w = getSize().width;
    int midW = w / 2;

    g.drawString("XOR Mode", 0, 30);

    g.drawOval(7, 37, 50, 50);

    g.setXORMode(Color.white);

    for (int i = 0; i < 15; i += 3) {
      g.drawOval(10 + i, 40 + i, 50, 50);
    }

    g.setPaintMode();

    g.drawString("Paint Mode", midW, 30);

    g.drawOval(midW + 7, 37, 50, 50);

    for (int i = 0; i < 15; i += 3) {
      g.drawOval(midW + 10 + i, 40 + i, 50, 50);
    }
  }

  public static void main(String[] args) {
    JFrame frame = new JFrame();
    frame.getContentPane().add(new MainClass());

    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(200, 200);
    frame.setVisible(true);
  }
}
           
         
  








Related examples in the same category

1.Graphics: clipRect(int x, int y, int width, int height)
2.Graphics: draw3DRect(int x, int y, int width, int height, boolean raised)
3.Graphics: drawArc(int x, int y, int width, int height, int startAngle, int arcAngle)
4.Graphics: drawBytes(byte[] data,int offset,int length,int x,int y)
5.Graphics: drawChars(char[] data, int offset, int length, int x, int y)
6.Graphics: drawImage(Image img, int x, int y, ImageObserver ob)
7.Graphics: drawLine(int x1, int y1, int x2, int y2)
8.Graphics: drawRoundRect(int x,int y,int width,int height,int arcWidth,int arcHeight)
9.Graphics: drawOval(int x, int y, int width, int height)
10.Graphics: drawPolygon(int[] xPoints, int[] yPoints, int nPoints)
11.Graphics: drawPolyline(int[] xPoints,int[] yPoints,int nPoints)
12.Graphics: drawRect(int x, int y, int width, int height)
13.Graphics: drawString(String str, int x, int y)
14.Graphics: fillArc(int x, int y, int width, int height, int startAngle, int arcAngle)
15.Graphics: fill3DRect(int x, int y, int width, int height, boolean raised)
16.Graphics: fillOval(int x, int y, int width, int height)
17.Graphics: fillPolygon(int[] xPoints, int[] yPoints, int nPoints)
18.Graphics: fillRect(int x, int y, int width, int height)
19.Graphics: fillRoundRect(int x,int y,int width,int height,int arcWidth,int arcHeight)
20.Graphics: getFontMetrics()
21.Graphics: setClip(int x, int y, int width, int height)
22.Graphics: setColor(Color c)
23.Graphics: setXORMode(Color cl)