Hola soy nuevo en Java, estoy haciendo una aplicacion parecida al paint y quiero que al hacer click en un boton se muestre un panel en el cual se habilite mi opcion para empezar a dibujar. Por favor es ayuda urgente!
Código Java:
Ver originalpublic class ventana
extends JFrame { private JPanel panelbotones, panelcolores,paneldibujo
; private JButton blinea, bcuadrado, bcirculo, btriangulo
; private JButton bcnegro, bcazul, bcrojo
; public ventana() {
super("Simulador de Paint");
setResizable(false);
contenedor = getContentPane();
setDefaultCloseOperation(EXIT_ON_CLOSE);
AQUI QUISIERA QUE SE ADICIONE EL CANVAS A MI Jpanel por ejemplo
// paneldibujo.add(new canvas());
}
ESTA ES UNA CLASE CANVAS PARA HACER CIRCUNFERENCIAS PERO NO SE SI UNA CLASE ASI SE PUEDE AÑADIR AL EVENTO DEL BOTON DE ARRIBA!!
Código Java:
Ver originalpublic class canvas
extends Canvas implements MouseListener { int x
= 50, y
= 50, radioX
= 30, radioY
= 30; canvas() {
this.
setBackground(Color.
white); this.addMouseListener(this);
this.
setFont(new Font("Forte",
Font.
BOLD,
24)); }
super.paint(g);
g.drawString("Dibuja Circunferencias", 50, 20);
g.drawLine(50, 40, 340, 40);
g.drawOval(x, y, radioX, radioY);
}
x = e.getX();
y = e.getY();
}
radioX = (e.getX() - x);
radioY = (e.getY() - y);
this.repaint();
}
}
}
}
}