"Seleccionar asientos" sin parámetros
This commit is contained in:
parent
11afd1c804
commit
d4d6a4c691
|
@ -14,6 +14,8 @@ public class SeleccionarAsientoV extends JPanel {
|
|||
private JPanel pSuperior = new JPanel(new FlowLayout(FlowLayout.LEFT));
|
||||
private JButton bRegresar = new JButton("Regresar.");
|
||||
private int noAsientosSeleccionados = 0;
|
||||
DefaultComboBoxModel salas = new DefaultComboBoxModel();
|
||||
JComboBox cbSalas = new JComboBox(salas);
|
||||
private JLabel lSeleccionar = new JLabel("Asientos seleccionados: " + noAsientosSeleccionados);
|
||||
|
||||
private JLabel lFuncion = new JLabel("Función: XXX");
|
||||
|
@ -54,7 +56,8 @@ public class SeleccionarAsientoV extends JPanel {
|
|||
public void agregarComponentes(){
|
||||
pSuperior.add(this.bRegresar);
|
||||
pSuperior.add(lSeleccionar);
|
||||
pSuperior.add(this.lFuncion);
|
||||
pSuperior.add(this.cbSalas);
|
||||
this.llenarSalas();
|
||||
|
||||
pInferior.add(this.lTotal);
|
||||
pInferior.add(this.bSeleccionar);
|
||||
|
@ -63,6 +66,10 @@ public class SeleccionarAsientoV extends JPanel {
|
|||
this.add(pInferior,BorderLayout.SOUTH);
|
||||
}
|
||||
|
||||
public void llenarSalas(){
|
||||
|
||||
}
|
||||
|
||||
public void crearCeldas(int parX, int parY){
|
||||
|
||||
GridBagConstraints con = new GridBagConstraints();
|
||||
|
|
Loading…
Reference in New Issue