Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JButton copied when repainting?

I have a JFrame with 2 JPanel in it: a PaintPanel (with a paint() method) and a ButtonPanel (with buttons). When I invoke the repaint() of the PaintPanel (but clicking the button) the button of the ButtonPanel is being painted in the PaintPanel! It isn't clickable or anything, it is just there.

I tried to recreate the problem with this code:

public class Main {

    public static void main(String[] args) {
        JFrame frame = new JFrame("frame");
        frame.setSize(400,400);
        frame.setLayout(new GridLayout(2,1));
        PaintPanel paint = new PaintPanel();
        ButtonPanel buttons = new ButtonPanel(paint);
        frame.add(paint);
        frame.add(buttons);
        frame.setVisible(true);
    }
}

public class PaintPanel extends JPanel{
    public void paint(Graphics g){
        g.drawRect(10, 10, 10, 10);
    }
}

public class ButtonPanel extends JPanel implements ActionListener{

    private PaintPanel paintPanel;

    public ButtonPanel(PaintPanel paintPanel){
        this.paintPanel=paintPanel;
        JButton button = new JButton("button");
        button.addActionListener(this);
        add(button);
    }

    @Override
    public void actionPerformed(ActionEvent arg0) {
        paintPanel.repaint();           
    }
}

This sould recreate the problem I have (sorry for the odd code markings, can't seem to get it right).

I really hope one of you knows what is happening here because i don't...

like image 543
Lucivius Avatar asked Aug 31 '12 20:08

Lucivius


People also ask

Does repaint call paintComponent?

repaint() calls the paintComponent() method. Every time you wish to change the appearance of your JPanel, you must call repaint().

What is system triggered painting?

In a system-triggered painting operation, the system requests a component to render its contents, usually for one of the following reasons: The component is first made visible on the screen. The component is resized. The component has damage that needs to be repaired.

How do I change a JButton image?

you can use this code: Icon i=new ImageIcon("image. jpg"); jButton1. setIcon(i);

Can JButton added to a container?

For example, class JButton in swing API is a button component and provides the functionality of a button. One or more components form a group and this group can be placed in a “Container”.


1 Answers

First of all, you should override paintComponent() instead of paint(). It's part of the best practices in Swing when it comes to do some panel customization.

Secondly, here is the code that works for me (I don't know why yours doesn't though :S):

public class Main {

    public static void main(String[] args) {

        JFrame frame = new JFrame("frame");
        frame.setSize(400, 400);
        // frame.setLayout(new GridLayout(2, 1));
        PaintPanel paint = new PaintPanel();
        ButtonPanel buttons = new ButtonPanel(paint);
        // frame.add(paint);
        // frame.add(buttons);
        frame.setVisible(true);

        JPanel pan = new JPanel(new BorderLayout());
        pan.add(paint);
        pan.add(buttons, BorderLayout.SOUTH);
        frame.add(pan);

    }
}

class PaintPanel extends JPanel {

    @Override
    protected void paintComponent(Graphics g) {
        super.paintComponent(g);
        g.setColor(new Color(new Random().nextInt()));
        g.drawRect(10, 10, 10, 10);
    }
}

class ButtonPanel extends JPanel implements ActionListener {

    private final PaintPanel paintPanel;

    public ButtonPanel(PaintPanel paintPanel) {

        this.paintPanel = paintPanel;
        JButton button = new JButton("button");
        button.addActionListener(this);
        add(button);
    }

    @Override
    public void actionPerformed(ActionEvent arg0) {
        if (getParent() != null) {
            getParent().repaint();
        }
    }
}
like image 122
aymeric Avatar answered Oct 13 '22 22:10

aymeric