I'm trying to have the up arrow key paint redraw the section of the screen when I press it but paint() can't contain keyPressed(), and keyPressed can't access g2. Do you have any suggestions?
public void paint(Graphics g)
{
Graphics2D g2 = (Graphics2D) g;
g2.setPaint(Color.RED.darker().darker());
g2.fill(new Arc2D.Double(200, 100, 350, 350, 45, 90, Arc2D.PIE));
}
@Override
public void keyPressed(KeyEvent e)
{
int keyCode = e.getKeyCode();
if (keyCode == KeyEvent.VK_UP) {
System.out.println("Pressed Up Key");
g2.setPaint(Color.RED);
g2.fill(new Arc2D.Double(200, 100, 350, 350, 45, 90, Arc2D.PIE));
repaint();
}
This is not how Swing painting is done. Rather than trying to directly manipulate a Graphics object within a key listener (or key bindings), change a field of the object with key press and call repaint.
Note that if this is a Swing GUI, you're almost always better off using Key Bindings and not a KeyListener. For one, you have less hassles with having to grab the focus.
For example: