"Seleccionar asientos" sin parámetros

This commit is contained in:
David 2024-03-19 20:04:31 -06:00
parent 11afd1c804
commit d4d6a4c691
1 changed files with 8 additions and 1 deletions

View File

@ -14,6 +14,8 @@ public class SeleccionarAsientoV extends JPanel {
private JPanel pSuperior = new JPanel(new FlowLayout(FlowLayout.LEFT)); private JPanel pSuperior = new JPanel(new FlowLayout(FlowLayout.LEFT));
private JButton bRegresar = new JButton("Regresar."); private JButton bRegresar = new JButton("Regresar.");
private int noAsientosSeleccionados = 0; private int noAsientosSeleccionados = 0;
DefaultComboBoxModel salas = new DefaultComboBoxModel();
JComboBox cbSalas = new JComboBox(salas);
private JLabel lSeleccionar = new JLabel("Asientos seleccionados: " + noAsientosSeleccionados); private JLabel lSeleccionar = new JLabel("Asientos seleccionados: " + noAsientosSeleccionados);
private JLabel lFuncion = new JLabel("Función: XXX"); private JLabel lFuncion = new JLabel("Función: XXX");
@ -54,7 +56,8 @@ public class SeleccionarAsientoV extends JPanel {
public void agregarComponentes(){ public void agregarComponentes(){
pSuperior.add(this.bRegresar); pSuperior.add(this.bRegresar);
pSuperior.add(lSeleccionar); pSuperior.add(lSeleccionar);
pSuperior.add(this.lFuncion); pSuperior.add(this.cbSalas);
this.llenarSalas();
pInferior.add(this.lTotal); pInferior.add(this.lTotal);
pInferior.add(this.bSeleccionar); pInferior.add(this.bSeleccionar);
@ -63,6 +66,10 @@ public class SeleccionarAsientoV extends JPanel {
this.add(pInferior,BorderLayout.SOUTH); this.add(pInferior,BorderLayout.SOUTH);
} }
public void llenarSalas(){
}
public void crearCeldas(int parX, int parY){ public void crearCeldas(int parX, int parY){
GridBagConstraints con = new GridBagConstraints(); GridBagConstraints con = new GridBagConstraints();