controladores
This commit is contained in:
parent
e6210edd09
commit
03b14e2c37
|
@ -1,2 +1,2 @@
|
|||
compile.on.save=true
|
||||
user.properties.file=C:\\Users\\reyes\\AppData\\Roaming\\NetBeans\\18\\build.properties
|
||||
user.properties.file=C:\\Users\\juanl\\AppData\\Roaming\\NetBeans\\19\\build.properties
|
||||
|
|
|
@ -3,12 +3,13 @@
|
|||
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
|
||||
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
|
||||
<group>
|
||||
<file>file:/C:/Users/reyes/Documents/ProyectoSalaConciertos/SalaDeConciertos/src/Vista/Vista.java</file>
|
||||
<file>file:/C:/Users/reyes/Documents/ProyectoSalaConciertos/SalaDeConciertos/src/Vista/metodoPago.java</file>
|
||||
<file>file:/C:/Users/reyes/Documents/ProyectoSalaConciertos/SalaDeConciertos/src/Vista/seleccionarBoleto.java</file>
|
||||
<file>file:/C:/Users/reyes/Documents/ProyectoSalaConciertos/SalaDeConciertos/src/Vista/confirmacionPago.java</file>
|
||||
<file>file:/C:/Users/reyes/Documents/ProyectoSalaConciertos/SalaDeConciertos/src/Vista/salaPrincipal.java</file>
|
||||
<file>file:/C:/Users/reyes/Documents/ProyectoSalaConciertos/SalaDeConciertos/src/Vista/login.java</file>
|
||||
<file>file:/C:/Users/juanl/Documents/SalaDeConciertos/src/Vista/MetodoPago.java</file>
|
||||
<file>file:/C:/Users/juanl/Documents/SalaDeConciertos/src/Controlador/ControladorLogin.java</file>
|
||||
<file>file:/C:/Users/juanl/Documents/SalaDeConciertos/src/Vista/Login.java</file>
|
||||
<file>file:/C:/Users/juanl/Documents/SalaDeConciertos/src/Vista/SalaPrincipal.java</file>
|
||||
<file>file:/C:/Users/juanl/Documents/SalaDeConciertos/src/Modelo/Consulta.java</file>
|
||||
<file>file:/C:/Users/juanl/Documents/SalaDeConciertos/src/Vista/seleccionarBoleto.java</file>
|
||||
<file>file:/C:/Users/juanl/Documents/SalaDeConciertos/src/Controlador/ControladorRegistro.java</file>
|
||||
</group>
|
||||
</open-files>
|
||||
</project-private>
|
||||
|
|
|
@ -11,14 +11,14 @@ import javax.swing.ImageIcon;
|
|||
*
|
||||
* @author reyes
|
||||
*/
|
||||
public class confirmacionPago extends javax.swing.JFrame {
|
||||
public class ConfirmacionPago extends javax.swing.JFrame {
|
||||
|
||||
/**
|
||||
* Creates new form confirmacionPago
|
||||
*/
|
||||
ImageIcon imagen;
|
||||
|
||||
public confirmacionPago() {
|
||||
public ConfirmacionPago() {
|
||||
initComponents();
|
||||
ImageIcon icon = new ImageIcon("C:\\Users\\reyes\\Documents\\ProyectoSalaConciertos\\SalaDeConciertos\\src\\Vista\\Images\\musica.png");
|
||||
Image image = icon.getImage();
|
||||
|
|
|
@ -165,9 +165,6 @@
|
|||
<Color blue="e6" green="e6" red="e6" type="rgb"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<Events>
|
||||
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtNombreUsuarioActionPerformed"/>
|
||||
</Events>
|
||||
</Component>
|
||||
<Component class="javax.swing.JButton" name="btnLogin">
|
||||
<Properties>
|
||||
|
@ -179,9 +176,6 @@
|
|||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Iniciar Sesion"/>
|
||||
</Properties>
|
||||
<Events>
|
||||
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnLoginActionPerformed"/>
|
||||
</Events>
|
||||
</Component>
|
||||
<Component class="javax.swing.JLabel" name="jLabel3">
|
||||
<Properties>
|
||||
|
@ -235,9 +229,6 @@
|
|||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Registrarse"/>
|
||||
</Properties>
|
||||
<Events>
|
||||
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="btnRegistrarseActionPerformed"/>
|
||||
</Events>
|
||||
</Component>
|
||||
<Component class="javax.swing.JPasswordField" name="txtContraseñaLogin">
|
||||
<Properties>
|
||||
|
|
|
@ -4,21 +4,45 @@
|
|||
*/
|
||||
package Vista;
|
||||
|
||||
import Controlador.ControladorLogin;
|
||||
import javax.swing.JButton;
|
||||
import javax.swing.JPasswordField;
|
||||
import javax.swing.JTextField;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author reyes
|
||||
*/
|
||||
public class login extends javax.swing.JFrame {
|
||||
public class Login extends javax.swing.JFrame {
|
||||
|
||||
/**
|
||||
* Creates new form login
|
||||
*/
|
||||
public login() {
|
||||
ControladorLogin contorlador = new ControladorLogin(this);
|
||||
public Login() {
|
||||
initComponents();
|
||||
setTitle("Inicio Sesion");
|
||||
setResizable(false);
|
||||
btnLogin.addActionListener(contorlador);
|
||||
btnRegistrarse.addActionListener(contorlador);
|
||||
}
|
||||
|
||||
public JButton getBtnLogin() {
|
||||
return btnLogin;
|
||||
}
|
||||
|
||||
public JButton getBtnRegistrarse() {
|
||||
return btnRegistrarse;
|
||||
}
|
||||
|
||||
public JPasswordField getTxtContraseñaLogin() {
|
||||
return txtContraseñaLogin;
|
||||
}
|
||||
|
||||
public JTextField getTxtNombreUsuario() {
|
||||
return txtNombreUsuario;
|
||||
}
|
||||
|
||||
/**
|
||||
* This method is called from within the constructor to initialize the form.
|
||||
* WARNING: Do NOT modify this code. The content of this method is always
|
||||
|
@ -57,20 +81,10 @@ public class login extends javax.swing.JFrame {
|
|||
jLabel2.setText("Un sitio seguro para comprar tus boletos para tus conciertos favoritos");
|
||||
|
||||
txtNombreUsuario.setBackground(new java.awt.Color(230, 230, 230));
|
||||
txtNombreUsuario.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
txtNombreUsuarioActionPerformed(evt);
|
||||
}
|
||||
});
|
||||
|
||||
btnLogin.setBackground(new java.awt.Color(51, 51, 51));
|
||||
btnLogin.setForeground(new java.awt.Color(255, 255, 255));
|
||||
btnLogin.setText("Iniciar Sesion");
|
||||
btnLogin.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
btnLoginActionPerformed(evt);
|
||||
}
|
||||
});
|
||||
|
||||
jLabel3.setFont(new java.awt.Font("Centaur", 0, 12)); // NOI18N
|
||||
jLabel3.setText("Ayuda");
|
||||
|
@ -91,11 +105,6 @@ public class login extends javax.swing.JFrame {
|
|||
btnRegistrarse.setBackground(new java.awt.Color(51, 51, 51));
|
||||
btnRegistrarse.setForeground(new java.awt.Color(255, 255, 255));
|
||||
btnRegistrarse.setText("Registrarse");
|
||||
btnRegistrarse.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
btnRegistrarseActionPerformed(evt);
|
||||
}
|
||||
});
|
||||
|
||||
txtContraseñaLogin.setBackground(new java.awt.Color(230, 230, 230));
|
||||
|
||||
|
@ -187,18 +196,6 @@ public class login extends javax.swing.JFrame {
|
|||
pack();
|
||||
}// </editor-fold>//GEN-END:initComponents
|
||||
|
||||
private void btnLoginActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnLoginActionPerformed
|
||||
// TODO add your handling code here:
|
||||
}//GEN-LAST:event_btnLoginActionPerformed
|
||||
|
||||
private void txtNombreUsuarioActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_txtNombreUsuarioActionPerformed
|
||||
// TODO add your handling code here:
|
||||
}//GEN-LAST:event_txtNombreUsuarioActionPerformed
|
||||
|
||||
private void btnRegistrarseActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnRegistrarseActionPerformed
|
||||
// TODO add your handling code here:
|
||||
}//GEN-LAST:event_btnRegistrarseActionPerformed
|
||||
|
||||
/**
|
||||
* @param args the command line arguments
|
||||
*/
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
<DimensionLayout dim="0">
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<Component id="jPanel1" min="-2" pref="288" max="-2" attributes="0"/>
|
||||
<Component id="jPanel1" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace min="0" pref="0" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
|
@ -85,7 +85,7 @@
|
|||
</Group>
|
||||
</Group>
|
||||
</Group>
|
||||
<EmptySpace pref="33" max="32767" attributes="0"/>
|
||||
<EmptySpace pref="29" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" attributes="0">
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
|
|
|
@ -8,12 +8,12 @@ package Vista;
|
|||
*
|
||||
* @author reyes
|
||||
*/
|
||||
public class metodoPago extends javax.swing.JFrame {
|
||||
public class MetodoPago extends javax.swing.JFrame {
|
||||
|
||||
/**
|
||||
* Creates new form metodoPago
|
||||
*/
|
||||
public metodoPago() {
|
||||
public MetodoPago() {
|
||||
initComponents();
|
||||
}
|
||||
|
||||
|
@ -133,7 +133,7 @@ public class metodoPago extends javax.swing.JFrame {
|
|||
.addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, 229, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addComponent(jTextField4, javax.swing.GroupLayout.PREFERRED_SIZE, 229, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addComponent(jTextField5, javax.swing.GroupLayout.PREFERRED_SIZE, 229, javax.swing.GroupLayout.PREFERRED_SIZE))))
|
||||
.addContainerGap(33, Short.MAX_VALUE))
|
||||
.addContainerGap(29, Short.MAX_VALUE))
|
||||
.addGroup(jPanel1Layout.createSequentialGroup()
|
||||
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addGroup(jPanel1Layout.createSequentialGroup()
|
||||
|
@ -191,7 +191,7 @@ public class metodoPago extends javax.swing.JFrame {
|
|||
layout.setHorizontalGroup(
|
||||
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addGroup(layout.createSequentialGroup()
|
||||
.addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, 288, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addGap(0, 0, Short.MAX_VALUE))
|
||||
);
|
||||
layout.setVerticalGroup(
|
||||
|
@ -216,40 +216,6 @@ public class metodoPago extends javax.swing.JFrame {
|
|||
// TODO add your handling code here:
|
||||
}//GEN-LAST:event_jButton2ActionPerformed
|
||||
|
||||
/**
|
||||
* @param args the command line arguments
|
||||
*/
|
||||
public static void main(String args[]) {
|
||||
/* Set the Nimbus look and feel */
|
||||
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
|
||||
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
|
||||
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
|
||||
*/
|
||||
try {
|
||||
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
|
||||
if ("Nimbus".equals(info.getName())) {
|
||||
javax.swing.UIManager.setLookAndFeel(info.getClassName());
|
||||
break;
|
||||
}
|
||||
}
|
||||
} catch (ClassNotFoundException ex) {
|
||||
java.util.logging.Logger.getLogger(metodoPago.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (InstantiationException ex) {
|
||||
java.util.logging.Logger.getLogger(metodoPago.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (IllegalAccessException ex) {
|
||||
java.util.logging.Logger.getLogger(metodoPago.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
|
||||
java.util.logging.Logger.getLogger(metodoPago.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
}
|
||||
//</editor-fold>
|
||||
|
||||
/* Create and display the form */
|
||||
java.awt.EventQueue.invokeLater(new Runnable() {
|
||||
public void run() {
|
||||
new metodoPago().setVisible(true);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Variables declaration - do not modify//GEN-BEGIN:variables
|
||||
private javax.swing.JButton jButton1;
|
||||
|
|
|
@ -1,19 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<Form version="1.3" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JFrameFormInfo">
|
||||
<NonVisualComponents>
|
||||
<Component class="javax.swing.JTextField" name="txtContraseña1">
|
||||
<Properties>
|
||||
<Property name="background" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="e6" green="e6" red="e6" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="toolTipText" type="java.lang.String" value=""/>
|
||||
</Properties>
|
||||
<Events>
|
||||
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtContraseña1ActionPerformed"/>
|
||||
</Events>
|
||||
</Component>
|
||||
</NonVisualComponents>
|
||||
<Properties>
|
||||
<Property name="defaultCloseOperation" type="int" value="3"/>
|
||||
</Properties>
|
||||
|
@ -67,18 +54,7 @@
|
|||
<Group type="103" groupAlignment="0" max="-2" attributes="0">
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace min="-2" pref="66" max="-2" attributes="0"/>
|
||||
<Component id="jButton2" min="-2" pref="147" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace min="-2" pref="30" max="-2" attributes="0"/>
|
||||
<Group type="103" groupAlignment="0" max="-2" attributes="0">
|
||||
<Component id="jLabel6" min="-2" max="-2" attributes="0"/>
|
||||
<Component id="jLabel1" min="-2" max="-2" attributes="0"/>
|
||||
<Component id="txtNombreUsuarioRegistro" max="32767" attributes="0"/>
|
||||
<Component id="jLabel7" min="-2" max="-2" attributes="0"/>
|
||||
<Component id="txtCorreoRegistro" alignment="0" max="32767" attributes="0"/>
|
||||
<Component id="jPasswordField1" alignment="0" pref="220" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
<Component id="btnRegistrar" min="-2" pref="147" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" attributes="0">
|
||||
<EmptySpace min="-2" pref="18" max="-2" attributes="0"/>
|
||||
|
@ -94,6 +70,18 @@
|
|||
</Group>
|
||||
</Group>
|
||||
</Group>
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace min="-2" pref="30" max="-2" attributes="0"/>
|
||||
<Group type="103" groupAlignment="0" max="-2" attributes="0">
|
||||
<Component id="jLabel6" min="-2" max="-2" attributes="0"/>
|
||||
<Component id="jLabel1" min="-2" max="-2" attributes="0"/>
|
||||
<Component id="txtNombreUsuarioRegistro" max="32767" attributes="0"/>
|
||||
<Component id="jLabel7" min="-2" max="-2" attributes="0"/>
|
||||
<Component id="txtCorreoRegistro" alignment="0" max="32767" attributes="0"/>
|
||||
<Component id="txtPassword" alignment="0" max="32767" attributes="0"/>
|
||||
<Component id="labelName" alignment="0" min="-2" pref="220" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
</Group>
|
||||
<EmptySpace pref="24" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
|
@ -123,13 +111,15 @@
|
|||
<Component id="jLabel6" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace type="separate" max="-2" attributes="0"/>
|
||||
<Component id="txtNombreUsuarioRegistro" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace type="separate" max="-2" attributes="0"/>
|
||||
<EmptySpace min="-2" pref="5" max="-2" attributes="0"/>
|
||||
<Component id="labelName" min="-2" pref="22" max="-2" attributes="0"/>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="jLabel1" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace type="separate" max="-2" attributes="0"/>
|
||||
<Component id="jPasswordField1" min="-2" max="-2" attributes="0"/>
|
||||
<Component id="txtPassword" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace min="-2" pref="33" max="-2" attributes="0"/>
|
||||
<Component id="jButton2" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace pref="53" max="32767" attributes="0"/>
|
||||
<Component id="btnRegistrar" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace pref="38" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
</DimensionLayout>
|
||||
|
@ -172,9 +162,6 @@
|
|||
</Property>
|
||||
<Property name="toolTipText" type="java.lang.String" value=""/>
|
||||
</Properties>
|
||||
<Events>
|
||||
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtCorreoRegistroActionPerformed"/>
|
||||
</Events>
|
||||
</Component>
|
||||
<Component class="javax.swing.JTextField" name="txtNombreUsuarioRegistro">
|
||||
<Properties>
|
||||
|
@ -183,9 +170,6 @@
|
|||
</Property>
|
||||
<Property name="toolTipText" type="java.lang.String" value=""/>
|
||||
</Properties>
|
||||
<Events>
|
||||
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="txtNombreUsuarioRegistroActionPerformed"/>
|
||||
</Events>
|
||||
</Component>
|
||||
<Component class="javax.swing.JLabel" name="jLabel1">
|
||||
<Properties>
|
||||
|
@ -203,7 +187,7 @@
|
|||
<Property name="text" type="java.lang.String" value="Registro"/>
|
||||
</Properties>
|
||||
</Component>
|
||||
<Component class="javax.swing.JButton" name="jButton2">
|
||||
<Component class="javax.swing.JButton" name="btnRegistrar">
|
||||
<Properties>
|
||||
<Property name="background" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="33" green="33" red="33" type="rgb"/>
|
||||
|
@ -213,11 +197,8 @@
|
|||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Registrarse"/>
|
||||
</Properties>
|
||||
<Events>
|
||||
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jButton2ActionPerformed"/>
|
||||
</Events>
|
||||
</Component>
|
||||
<Component class="javax.swing.JPasswordField" name="jPasswordField1">
|
||||
<Component class="javax.swing.JPasswordField" name="txtPassword">
|
||||
<Properties>
|
||||
<Property name="background" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="e6" green="e6" red="e6" type="rgb"/>
|
||||
|
@ -225,9 +206,8 @@
|
|||
</Properties>
|
||||
</Component>
|
||||
<Component class="javax.swing.JLabel" name="logoimagen">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" value="."/>
|
||||
</Properties>
|
||||
</Component>
|
||||
<Component class="javax.swing.JLabel" name="labelName">
|
||||
</Component>
|
||||
</SubComponents>
|
||||
</Container>
|
||||
|
|
|
@ -4,37 +4,64 @@
|
|||
*/
|
||||
package Vista;
|
||||
|
||||
import Controlador.ControladorRegistro;
|
||||
import java.awt.Image;
|
||||
import javax.swing.ImageIcon;
|
||||
import javax.swing.JButton;
|
||||
import javax.swing.JLabel;
|
||||
import javax.swing.JPasswordField;
|
||||
import javax.swing.JTextField;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author reyes
|
||||
*/
|
||||
public class registro extends javax.swing.JFrame {
|
||||
public class Registro extends javax.swing.JFrame {
|
||||
|
||||
/**
|
||||
* Creates new form registro
|
||||
*/
|
||||
ImageIcon imagen;
|
||||
|
||||
public registro() {
|
||||
public Registro() {
|
||||
setTitle("Registro");
|
||||
ImageIcon icon = new ImageIcon("C:\\Users\\reyes\\Documents\\ProyectoSalaConciertos\\SalaDeConciertos\\src\\Vista\\Images\\musica.png");
|
||||
ImageIcon icon = new ImageIcon("src\\Images\\music.png");
|
||||
Image image = icon.getImage();
|
||||
this.setIconImage(image);
|
||||
this.setResizable(false);
|
||||
this.setLocation(470, 130);
|
||||
initComponents();
|
||||
ControladorRegistro controlador = new ControladorRegistro(this);
|
||||
slogan();
|
||||
}
|
||||
|
||||
public JButton getBtnRegistrar() {
|
||||
return btnRegistrar;
|
||||
}
|
||||
|
||||
public JTextField getTxtCorreoRegistro() {
|
||||
return txtCorreoRegistro;
|
||||
}
|
||||
|
||||
public JTextField getTxtNombreUsuarioRegistro() {
|
||||
return txtNombreUsuarioRegistro;
|
||||
}
|
||||
|
||||
public JPasswordField getTxtPassword() {
|
||||
return txtPassword;
|
||||
}
|
||||
|
||||
public JLabel getLabelName() {
|
||||
return labelName;
|
||||
}
|
||||
|
||||
|
||||
public void slogan() {
|
||||
imagen = new ImageIcon("C:\\Users\\reyes\\Documents\\ProyectoSalaConciertos\\SalaDeConciertos\\src\\Vista\\Images\\musicas.png");
|
||||
logoimagen.setIcon(imagen);
|
||||
//logoimagen.setPreferredSize(new Dimension(150, 120));
|
||||
ImageIcon imagenIcon = new ImageIcon("src\\Images\\music.png");
|
||||
Image imagenOriginal = imagenIcon.getImage();
|
||||
Image imagenEscalada = imagenOriginal.getScaledInstance(60,60, Image.SCALE_SMOOTH); // Ajusta el tamaño a 300x300 píxeles
|
||||
ImageIcon imagenFinal = new ImageIcon(imagenEscalada);
|
||||
logoimagen.setIcon(imagenFinal);
|
||||
}
|
||||
|
||||
|
||||
|
@ -47,7 +74,6 @@ public class registro extends javax.swing.JFrame {
|
|||
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
|
||||
private void initComponents() {
|
||||
|
||||
txtContraseña1 = new javax.swing.JTextField();
|
||||
panelRegistro = new javax.swing.JPanel();
|
||||
logo = new javax.swing.JLabel();
|
||||
jLabel6 = new javax.swing.JLabel();
|
||||
|
@ -56,17 +82,10 @@ public class registro extends javax.swing.JFrame {
|
|||
txtNombreUsuarioRegistro = new javax.swing.JTextField();
|
||||
jLabel1 = new javax.swing.JLabel();
|
||||
jLabel3 = new javax.swing.JLabel();
|
||||
jButton2 = new javax.swing.JButton();
|
||||
jPasswordField1 = new javax.swing.JPasswordField();
|
||||
btnRegistrar = new javax.swing.JButton();
|
||||
txtPassword = new javax.swing.JPasswordField();
|
||||
logoimagen = new javax.swing.JLabel();
|
||||
|
||||
txtContraseña1.setBackground(new java.awt.Color(230, 230, 230));
|
||||
txtContraseña1.setToolTipText("");
|
||||
txtContraseña1.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
txtContraseña1ActionPerformed(evt);
|
||||
}
|
||||
});
|
||||
labelName = new javax.swing.JLabel();
|
||||
|
||||
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
|
||||
|
||||
|
@ -85,19 +104,9 @@ public class registro extends javax.swing.JFrame {
|
|||
|
||||
txtCorreoRegistro.setBackground(new java.awt.Color(230, 230, 230));
|
||||
txtCorreoRegistro.setToolTipText("");
|
||||
txtCorreoRegistro.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
txtCorreoRegistroActionPerformed(evt);
|
||||
}
|
||||
});
|
||||
|
||||
txtNombreUsuarioRegistro.setBackground(new java.awt.Color(230, 230, 230));
|
||||
txtNombreUsuarioRegistro.setToolTipText("");
|
||||
txtNombreUsuarioRegistro.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
txtNombreUsuarioRegistroActionPerformed(evt);
|
||||
}
|
||||
});
|
||||
|
||||
jLabel1.setText("Contraseña:");
|
||||
|
||||
|
@ -105,18 +114,11 @@ public class registro extends javax.swing.JFrame {
|
|||
jLabel3.setFont(new java.awt.Font("Microsoft YaHei", 0, 18)); // NOI18N
|
||||
jLabel3.setText("Registro");
|
||||
|
||||
jButton2.setBackground(new java.awt.Color(51, 51, 51));
|
||||
jButton2.setForeground(new java.awt.Color(255, 255, 255));
|
||||
jButton2.setText("Registrarse");
|
||||
jButton2.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
jButton2ActionPerformed(evt);
|
||||
}
|
||||
});
|
||||
btnRegistrar.setBackground(new java.awt.Color(51, 51, 51));
|
||||
btnRegistrar.setForeground(new java.awt.Color(255, 255, 255));
|
||||
btnRegistrar.setText("Registrarse");
|
||||
|
||||
jPasswordField1.setBackground(new java.awt.Color(230, 230, 230));
|
||||
|
||||
logoimagen.setText(".");
|
||||
txtPassword.setBackground(new java.awt.Color(230, 230, 230));
|
||||
|
||||
javax.swing.GroupLayout panelRegistroLayout = new javax.swing.GroupLayout(panelRegistro);
|
||||
panelRegistro.setLayout(panelRegistroLayout);
|
||||
|
@ -126,16 +128,7 @@ public class registro extends javax.swing.JFrame {
|
|||
.addGroup(panelRegistroLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
|
||||
.addGroup(panelRegistroLayout.createSequentialGroup()
|
||||
.addGap(66, 66, 66)
|
||||
.addComponent(jButton2, javax.swing.GroupLayout.PREFERRED_SIZE, 147, javax.swing.GroupLayout.PREFERRED_SIZE))
|
||||
.addGroup(panelRegistroLayout.createSequentialGroup()
|
||||
.addGap(30, 30, 30)
|
||||
.addGroup(panelRegistroLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
|
||||
.addComponent(jLabel6)
|
||||
.addComponent(jLabel1)
|
||||
.addComponent(txtNombreUsuarioRegistro)
|
||||
.addComponent(jLabel7)
|
||||
.addComponent(txtCorreoRegistro)
|
||||
.addComponent(jPasswordField1, javax.swing.GroupLayout.DEFAULT_SIZE, 220, Short.MAX_VALUE)))
|
||||
.addComponent(btnRegistrar, javax.swing.GroupLayout.PREFERRED_SIZE, 147, javax.swing.GroupLayout.PREFERRED_SIZE))
|
||||
.addGroup(panelRegistroLayout.createSequentialGroup()
|
||||
.addGap(18, 18, 18)
|
||||
.addComponent(logoimagen, javax.swing.GroupLayout.PREFERRED_SIZE, 68, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
|
@ -145,7 +138,17 @@ public class registro extends javax.swing.JFrame {
|
|||
.addComponent(jLabel3))
|
||||
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, panelRegistroLayout.createSequentialGroup()
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
||||
.addComponent(logo)))))
|
||||
.addComponent(logo))))
|
||||
.addGroup(panelRegistroLayout.createSequentialGroup()
|
||||
.addGap(30, 30, 30)
|
||||
.addGroup(panelRegistroLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
|
||||
.addComponent(jLabel6)
|
||||
.addComponent(jLabel1)
|
||||
.addComponent(txtNombreUsuarioRegistro)
|
||||
.addComponent(jLabel7)
|
||||
.addComponent(txtCorreoRegistro)
|
||||
.addComponent(txtPassword)
|
||||
.addComponent(labelName, javax.swing.GroupLayout.PREFERRED_SIZE, 220, javax.swing.GroupLayout.PREFERRED_SIZE))))
|
||||
.addContainerGap(24, Short.MAX_VALUE))
|
||||
);
|
||||
panelRegistroLayout.setVerticalGroup(
|
||||
|
@ -168,13 +171,15 @@ public class registro extends javax.swing.JFrame {
|
|||
.addComponent(jLabel6)
|
||||
.addGap(18, 18, 18)
|
||||
.addComponent(txtNombreUsuarioRegistro, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addGap(18, 18, 18)
|
||||
.addGap(5, 5, 5)
|
||||
.addComponent(labelName, javax.swing.GroupLayout.PREFERRED_SIZE, 22, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
.addComponent(jLabel1)
|
||||
.addGap(18, 18, 18)
|
||||
.addComponent(jPasswordField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addComponent(txtPassword, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addGap(33, 33, 33)
|
||||
.addComponent(jButton2)
|
||||
.addContainerGap(53, Short.MAX_VALUE))
|
||||
.addComponent(btnRegistrar)
|
||||
.addContainerGap(38, Short.MAX_VALUE))
|
||||
);
|
||||
|
||||
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
|
||||
|
@ -196,35 +201,19 @@ public class registro extends javax.swing.JFrame {
|
|||
pack();
|
||||
}// </editor-fold>//GEN-END:initComponents
|
||||
|
||||
private void txtContraseña1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_txtContraseña1ActionPerformed
|
||||
// TODO add your handling code here:
|
||||
}//GEN-LAST:event_txtContraseña1ActionPerformed
|
||||
|
||||
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton2ActionPerformed
|
||||
// TODO add your handling code here:
|
||||
}//GEN-LAST:event_jButton2ActionPerformed
|
||||
|
||||
private void txtNombreUsuarioRegistroActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_txtNombreUsuarioRegistroActionPerformed
|
||||
// TODO add your handling code here:
|
||||
}//GEN-LAST:event_txtNombreUsuarioRegistroActionPerformed
|
||||
|
||||
private void txtCorreoRegistroActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_txtCorreoRegistroActionPerformed
|
||||
// TODO add your handling code here:
|
||||
}//GEN-LAST:event_txtCorreoRegistroActionPerformed
|
||||
|
||||
|
||||
// Variables declaration - do not modify//GEN-BEGIN:variables
|
||||
private javax.swing.JButton jButton2;
|
||||
private javax.swing.JButton btnRegistrar;
|
||||
private javax.swing.JLabel jLabel1;
|
||||
private javax.swing.JLabel jLabel3;
|
||||
private javax.swing.JLabel jLabel6;
|
||||
private javax.swing.JLabel jLabel7;
|
||||
private javax.swing.JPasswordField jPasswordField1;
|
||||
private javax.swing.JLabel labelName;
|
||||
private javax.swing.JLabel logo;
|
||||
private javax.swing.JLabel logoimagen;
|
||||
private javax.swing.JPanel panelRegistro;
|
||||
private javax.swing.JTextField txtContraseña1;
|
||||
private javax.swing.JTextField txtCorreoRegistro;
|
||||
private javax.swing.JTextField txtNombreUsuarioRegistro;
|
||||
private javax.swing.JPasswordField txtPassword;
|
||||
// End of variables declaration//GEN-END:variables
|
||||
}
|
||||
|
|
|
@ -197,27 +197,19 @@
|
|||
<EmptySpace min="-2" pref="96" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" attributes="0">
|
||||
<EmptySpace type="separate" max="-2" attributes="0"/>
|
||||
<Component id="panelGeneral" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace min="-2" pref="33" max="-2" attributes="0"/>
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<Group type="102" attributes="0">
|
||||
<EmptySpace type="separate" max="-2" attributes="0"/>
|
||||
<Component id="panelGeneral" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace min="-2" pref="33" max="-2" attributes="0"/>
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<Component id="jPanel4" min="-2" max="-2" attributes="0"/>
|
||||
<Component id="panelVip" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
<Component id="jPanel4" min="-2" max="-2" attributes="0"/>
|
||||
<Component id="panelVip" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<EmptySpace max="32767" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<Group type="102" attributes="0">
|
||||
<EmptySpace type="unrelated" max="-2" attributes="0"/>
|
||||
<Component id="panelC" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Component id="panelC" min="-2" max="-2" attributes="0"/>
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace min="-2" pref="53" max="-2" attributes="0"/>
|
||||
<Component id="jLabel7" min="-2" max="-2" attributes="0"/>
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
*/
|
||||
package Vista;
|
||||
|
||||
import Modelo.Usuario;
|
||||
import java.awt.BorderLayout;
|
||||
import java.awt.Color;
|
||||
import java.awt.Dimension;
|
||||
|
@ -19,14 +20,15 @@ import javax.swing.JButton;
|
|||
*
|
||||
* @author reyes
|
||||
*/
|
||||
public class salaPrincipal extends javax.swing.JFrame {
|
||||
public class SalaPrincipal extends javax.swing.JFrame {
|
||||
|
||||
/**
|
||||
* Creates new form salaPrincipal
|
||||
*/
|
||||
ImageIcon imagen;
|
||||
|
||||
public salaPrincipal() {
|
||||
Usuario user;
|
||||
public SalaPrincipal(Usuario user) {
|
||||
this.user = user;
|
||||
initComponents();
|
||||
setTitle("Sala Principal");
|
||||
setLocationRelativeTo(null);
|
||||
|
|
|
@ -3,9 +3,9 @@ package Vista;
|
|||
*
|
||||
* @author reyes
|
||||
*/
|
||||
public class SeleccionarBoleto extends javax.swing.JFrame {
|
||||
public class seleccionarBoleto extends javax.swing.JFrame {
|
||||
|
||||
public SeleccionarBoleto() {
|
||||
public seleccionarBoleto() {
|
||||
initComponents();
|
||||
}
|
||||
|
||||
|
@ -33,6 +33,7 @@ public class SeleccionarBoleto extends javax.swing.JFrame {
|
|||
jButton1 = new javax.swing.JButton();
|
||||
|
||||
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
|
||||
setMaximumSize(new java.awt.Dimension(32767, 32767));
|
||||
|
||||
jPanel1.setBackground(new java.awt.Color(249, 244, 244));
|
||||
|
||||
|
|
Loading…
Reference in New Issue