所以,我正在尝试结合使用paintComponent()以及使用MouseListener和MouseActionListener,但是当我运行它时会遇到很多错误,并且它不起作用我想要它。特别是在这段代码中,我希望程序在按下,拖动和释放按钮时,获取印刷机的坐标,然后是版本的坐标,然后测量形状的大小,并绘制指定的形状由JComboBox提供。我也有颜色选择器和JFrame底部的按钮。我想知道如何运行paintComponent()方法,而不是它自动运行,所以我可以在绘制之前给它规范,并按需绘制。另外,我想知道是否有另一种方法可以做到这一点,而且我对如何接近它完全错了。 我希望解释不是太混乱:)。任何帮助都很棒,谢谢!
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
@SuppressWarnings({"unchecked", "rawtypes"})
public class GraphicGUI extends JPanel implements ActionListener {
HandlerClass handler = new HandlerClass();
public int x1, x2, y1, y2, width, height;
public String event;
public JButton colorChooserButton;
public Color color = (Color.WHITE);
public JComboBox shapeBox;
public JLabel eventLabel;
public GraphicGUI(){
shapeBox = new JComboBox();
eventLabel = new JLabel();
colorChooserButton = new JButton("Choose a color");
colorChooserButton.addActionListener(this);
shapeBox.addItem("Oval");
shapeBox.addItem("Rectangle");
shapeBox.addItem("Line");
super.addMouseListener(handler);
super.addMouseMotionListener(handler);
}
public void actionPerformed(ActionEvent arg0){
if(arg0.getSource().equals(colorChooserButton)){
color = JColorChooser.showDialog(null, "Pick Your Color", color);
if(color==null){
color = (Color.BLACK);
}
}
}
public void paintComponent(Graphics g){
super.paintComponent(g);
this.setBackground(Color.white);
if(shapeBox.getSelectedItem() == "Oval")
if(event.equals("released")){
width = x1-x2;
height = y1-y2;
g.setColor(color);
g.fillOval(x1, y1, width, height);
}
}
private class HandlerClass implements MouseListener, MouseMotionListener{
//Mouse Events
public void mouseClicked(MouseEvent arg0){
event = "click";
}
public void mousePressed(MouseEvent arg0){
event = "pressed";
x1 = arg0.getX();
y1 = arg0.getY();
eventLabel.setText(String.format("Mouse pressed at %d, %d", x1, y1));
}
public void mouseReleased(MouseEvent arg0){
event = "released";
x2 = arg0.getX();
y2 = arg0.getY();
eventLabel.setText(String.format("Mouse released at %d, %d", x2, y2));
}
public void mouseEntered(MouseEvent arg0){
}
public void mouseExited(MouseEvent arg0){
}
//Mouse Motion Events
public void mouseDragged(MouseEvent arg0){
}
public void mouseMoved(MouseEvent arg0){
}
}
}
答案 0 :(得分:0)
你应该画出形状才能开始。
public void paintComponent(Graphics g){
//Draw the oval
g.setColor(color);
g.fillOval(x1, y1, width, height);
}
public void mouseReleased(MouseEvent arg0){
event = "released";
x2 = arg0.getX();
y2 = arg0.getY();
if( x2 > x1 ) {
width = x2-x1;
} else {
width = x1-x2;
}
if( y2 > y1 ) {
height = y2-y1;
} else {
height = y1-y2;
}
eventLabel.setText(String.format("Mouse released at %d, %d", x2, y2));
}
然后(如果你想添加更多形状)你需要一种方法来添加形状(duh),这样你就可以得到一个形状列表并遍历该列表。
你真的应该(必须)初始化你所有的变量。
询问您是否需要更多详细信息。 :)