2019-11-15 17:18:58 +01:00
|
|
|
package VistaControlador;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
import javax.swing.JMenu;
|
|
|
|
import javax.swing.JMenuBar;
|
|
|
|
import javax.swing.JMenuItem;
|
|
|
|
|
|
|
|
public class BarraOpciones extends JMenuBar{
|
|
|
|
JMenu menuAr;
|
|
|
|
JMenuItem cambiarRuta;
|
|
|
|
JMenuItem guardarIns;
|
2019-11-16 21:05:09 +01:00
|
|
|
JMenuItem exportarXML;
|
2019-11-15 17:18:58 +01:00
|
|
|
JMenu interfaz;
|
|
|
|
JMenuItem modoOscuro;
|
|
|
|
JMenuItem modoRosa;
|
|
|
|
JMenuItem modoClaro;
|
|
|
|
JMenu mostrar;
|
|
|
|
JMenuItem mostrarTodo;
|
|
|
|
public BarraOpciones() {
|
|
|
|
this.menuAr = new JMenu("Archivo");
|
|
|
|
this.add(this.menuAr);
|
|
|
|
this.guardarIns = new JMenuItem("Guardar instantanea");
|
|
|
|
this.menuAr.add(this.guardarIns);
|
|
|
|
this.cambiarRuta = new JMenuItem("Cambiar ruta de guardado");
|
|
|
|
this.menuAr.add(this.cambiarRuta);
|
2019-11-16 21:05:09 +01:00
|
|
|
this.exportarXML = new JMenuItem("Exportar en un XML");
|
|
|
|
this.menuAr.add(this.exportarXML);
|
2019-11-15 17:18:58 +01:00
|
|
|
this.interfaz = new JMenu("Interfaz");
|
|
|
|
this.add(this.interfaz);
|
|
|
|
this.modoClaro = new JMenuItem("Modo claro");
|
|
|
|
this.interfaz.add(this.modoClaro);
|
|
|
|
this.modoOscuro = new JMenuItem("Modo Oscuro");
|
|
|
|
this.interfaz.add(this.modoOscuro);
|
|
|
|
this.modoRosa = new JMenuItem("Modo Rosa");
|
|
|
|
this.interfaz.add(this.modoRosa);
|
|
|
|
this.mostrar=new JMenu("Mostrar");
|
|
|
|
this.mostrarTodo = new JMenuItem("Mostrar todo");
|
|
|
|
this.mostrar.add(this.mostrarTodo);
|
|
|
|
this.add(this.mostrar);
|
|
|
|
}
|
|
|
|
}
|