繁体   English   中英

Java SWING无法正确绘制

[英]Java SWING Not Painting Properly

我遇到JFrame无法正确绘制的问题。 有人可以看看解决方案吗? 我已经尝试过使用BoxLayouts,但是它也不起作用。 直到我将鼠标悬停在按钮上,按钮才会显示。

全部集中在一个文件和可执行文件中。

问候

package Executable;

import java.awt.AlphaComposite;
import java.awt.Color;
import java.awt.EventQueue;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Point;
import java.awt.RenderingHints;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.MouseMotionListener;
import java.util.ArrayList;

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

public class Whiteboard implements ActionListener 
{
JFrame frame;
public static Color drawColor = Color.BLACK;
public static String drawShape = "line";
JButton redButton, blueButton, blackButton, greenButton, circleButton,         lineButton, rectangleButton;

public static void main(String[] args)
{
    EventQueue.invokeLater(new Runnable()
    {
        public void run()
        {
            try
            {
                Whiteboard window = new Whiteboard();
                window.frame.setVisible(true);
            }
            catch (Exception e)
            {
                e.printStackTrace();
            }
        }
    });
}

public Hw11()
{
    initialize();
}

private void initialize()
{
    frame = new JFrame();
    frame.setBounds(100, 100, 686, 464);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.getContentPane().setLayout(null);

    JPanel toolpanel = new JPanel();
    toolpanel.setBounds(10, 11, 652, 48);
    frame.getContentPane().add(toolpanel);
    toolpanel.setLayout(null);

    blackButton = new JButton();
    blackButton.setBackground(Color.BLACK);
    blackButton.setBounds(10, 11, 89, 26);
    blackButton.addActionListener(this);
    toolpanel.add(blackButton);

    redButton = new JButton();
    redButton.setBackground(Color.RED);
    redButton.setBounds(101, 11, 89, 26);
    redButton.addActionListener(this);
    toolpanel.add(redButton);

    greenButton = new JButton();
    greenButton.setBackground(Color.GREEN);
    greenButton.setBounds(192, 11, 89, 26);
    greenButton.addActionListener(this);
    toolpanel.add(greenButton);

    blueButton = new JButton();
    blueButton.setBackground(Color.BLUE);
    blueButton.setBounds(283, 11, 89, 26);
    blueButton.addActionListener(this);
    toolpanel.add(blueButton);

    circleButton = new JButton("Circle");
    circleButton.setBounds(465, 11, 89, 26);
    circleButton.addActionListener(this);
    toolpanel.add(circleButton);

    lineButton = new JButton("Line");
    lineButton.setBounds(374, 11, 89, 26);
    lineButton.addActionListener(this);
    toolpanel.add(lineButton);

    rectangleButton = new JButton("Rect");
    rectangleButton.setBounds(555, 11, 89, 26);
    rectangleButton.addActionListener(this);
    toolpanel.add(rectangleButton);

    DrawPanel whiteboard = new DrawPanel();
    whiteboard.setBounds(10, 63, 652, 351);
    frame.getContentPane().add(whiteboard);
}

public void actionPerformed(ActionEvent e) 
{
    if (e.getSource() == redButton)
        drawColor = Color.RED;
    else if (e.getSource() == blueButton)
        drawColor = Color.BLUE;
    else if (e.getSource() == blackButton)
        drawColor = Color.BLACK;
    else if (e.getSource() == greenButton)
        drawColor = Color.GREEN;
    else if (e.getSource() == lineButton)
        drawShape = "line";
    else if (e.getSource() == circleButton)
        drawShape = "circle";
    else if (e.getSource() == rectangleButton)
        drawShape = "rect";
}
}

class DrawPanel extends JPanel implements MouseListener, MouseMotionListener
{
private Point p1, p2, p3;
ArrayList<Shape> shapes = new ArrayList<>();
Shape temp;

public DrawPanel()
{
    setBackground(Color.WHITE);
    addMouseListener(this);
    addMouseMotionListener(this);
}

public void mousePressed(MouseEvent e)
{
    p1 = e.getPoint();
}

public void mouseReleased(MouseEvent e)
{
    p2 = e.getPoint();
    Shape s = null;
    if (Hw11.drawShape.equals("line"))
    {
        s = new Line(p1, p2, Hw11.drawColor);
    }
    else if (Hw11.drawShape.equals("circle"))
    {
        s = new Circle(p1, p2, Hw11.drawColor);
    }
    else if (Hw11.drawShape.equals("rect"))
    {
        s = new Rectangle(p1, p2, Hw11.drawColor);
    }
    shapes.add(s);
    Graphics g = getGraphics();
    paint(g);
}

public void paintBackground()
{
    setBackground(Color.WHITE);
}

@Override
public void paintComponent(Graphics g)
{
    Graphics2D g2 = (Graphics2D) g;
    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
    g2.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.7f));
    paintBackground();
    super.paintComponent(g2);
    temp.draw(g);
    for (int i = 0; i < shapes.size(); i++)
    {
        Shape s = shapes.get(i);
        s.draw(g);
    }
}

public void mouseDragged(MouseEvent e)
{
    p3 = e.getPoint();

    if (Hw11.drawShape.equals("line"))
    {
        temp = new Line(p1, p3, Hw11.drawColor);
    }
    else if (Hw11.drawShape.equals("circle"))
    {
        temp = new Circle(p1, p3, Hw11.drawColor);
    }
    else if (Hw11.drawShape.equals("rect"))
    {
        temp = new Rectangle(p1, p3, Hw11.drawColor);
    }
    Graphics g = getGraphics();
    paint(g);
}

public void mouseMoved(MouseEvent e)
{

}

public void mouseClicked(MouseEvent e)
{

}

public void mouseEntered(MouseEvent e)
{

}

public void mouseExited(MouseEvent e)
{

}
}

abstract class Shape
{
Point p1;
Point p2;
Color c;

public Shape(Point p1, Point p2, Color c)
{
    this.p1 = p1;
    this.p2 = p2;
    this.c = c;
}

public abstract void draw(Graphics g);
}

class Line extends Shape
{
public Line(Point p1, Point p2, Color c)
{
    super(p1, p2, c);
}

@Override
public void draw(Graphics g)
{
    g.setColor(c);
    g.drawLine(p1.x, p1.y, p2.x, p2.y);//draw line p1 - p2
}

}


class Circle extends Shape
{
public Circle(Point p1, Point p2, Color c)
{
    super(p1, p2, c);
}

@Override
public void draw(Graphics g)
{
    g.setColor(c);
    int r = (int)Math.sqrt((p2.x-p1.x)*(p2.x-p1.x) + (p2.y-p1.y)*(p2.y-p1.y));
    g.drawOval(p1.x, p1.y - (r/2), r, r);//draw circle p1 - p2
}
}

class Rectangle extends Shape
{
public Rectangle(Point p1, Point p2, Color c)
{
    super(p1, p2, c);
}

@Override
public void draw(Graphics g)
{
    g.setColor(c);
    int width = p2.x - p1.x;
    int height = p2.y - p1.y;
g.drawRect(p1.x, p1.y, width, height);//draw rect p1 - p2
}
}

除了NullPointerException,这里还有多个问题。

您不应该直接致电paint

Graphics g = getGraphics();
paint(g);

使用repaint(); 而不是paint(getGraphics());

您不应该修改传递给paintComponentGraphics

Graphics2D g2 = (Graphics2D) g;
g2.setRenderingHint(...);
g2.setComposite(...);

这可能会意外地转移到除您尝试绘制的组件之外的其他组件上。

而是创建一个副本:

Graphics2D g2 = (Graphics2D) g.create();

g2.setRenderingHint(...);
g2.setComposite(...);
...

// and dispose it at the end of paintComponent
g2.dispose();

您不应该在paintComponent内修改组件状态:

public void paintBackground()
{
    setBackground(Color.WHITE);
}

@Override
public void paintComponent(Graphics g)
{
    ...
    paintBackground();

这样做会导致无休止的重画循环,因为如果颜色不同,则setBackground重画。

而是使用g.fillRect(...)g.clearRect(...)

您的Shape temp声明为一个类字段,但是它在public void mouseDragged(MouseEvent e)初始化。 因此,在第一个拖动动作之前以及在temp.draw(g);它为null temp.draw(g); 它给出一个异常。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM