Iniciada nueva vista y aniadido loggin

This commit is contained in:
roche
2019-11-22 13:54:05 +01:00
parent c759f93fea
commit f17a530c56
16 changed files with 82 additions and 6 deletions

View File

@@ -0,0 +1,31 @@
package VistaControlador;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JRadioButton;
import javax.swing.JRadioButtonMenuItem;
public class VistaPanelInterfaz extends VistaPanel{
JRadioButtonMenuItem menu;
JRadioButton temaClaro;
JRadioButton temaRosa;
JRadioButton temaOscuro;
JCheckBox aplicarBarra;
JButton aplicarCambios;
VistaPanelInterfaz() {
this.menu = new JRadioButtonMenuItem();
this.temaClaro = new JRadioButton();
this.menu.add(this.temaClaro);
this.temaOscuro = new JRadioButton();
this.menu.add(this.temaOscuro);
this.temaRosa = new JRadioButton();
this.menu.add(this.temaRosa);
this.add(this.menu);
this.aplicarBarra = new JCheckBox();
this.add(this.aplicarBarra);
this.aplicarCambios = new JButton("Aplicar");
this.add(this.aplicarCambios);
}
}