/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package br.inatel.ec.ac308.agenda.gui;
import br.inatel.ec.ac308.agenda.dados.PessoaFisica;
import br.inatel.ec.ac308.agenda.dao.PessoaFisicaDAO;
import java.util.List;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
/**
*
* @author vitor
*/
public class InterfaceGrafica extends javax.swing.JFrame {
/**
* Creates new form InterfaceGrafica
*/
public InterfaceGrafica() {
initComponents();
}
/**
* 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
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jTabbedPane3 = new javax.swing.JTabbedPane();
jPanel3 = new javax.swing.JPanel();
jTRg = new javax.swing.JTextField();
jTTelefone = new javax.swing.JTextField();
jTCPF = new javax.swing.JTextField();
jTNome = new javax.swing.JTextField();
jTEndereco = new javax.swing.JTextField();
jTTipoRg = new javax.swing.JTextField();
jLabel7 = new javax.swing.JLabel();
jLabel8 = new javax.swing.JLabel();
jLabel9 = new javax.swing.JLabel();
jLabel10 = new javax.swing.JLabel();
jLabel11 = new javax.swing.JLabel();
jLabel12 = new javax.swing.JLabel();
jButtonCadastrar = new javax.swing.JButton();
jButtonAtualizar = new javax.swing.JButton();
jButtonRemover = new javax.swing.JButton();
jButtonLimparTextFild = new javax.swing.JButton();
jScrollPane1 = new javax.swing.JScrollPane();
jTextAreaListar = new javax.swing.JTextArea();
jButtonListar = new javax.swing.JButton();
jButtonLimparTextArea = new javax.swing.JButton();
jButtonSair = new javax.swing.JButton();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jLabel7.setText("Nome:");
jLabel8.setText("Endereço:");
jLabel9.setText("Telefone:");
jLabel10.setText("CPF");
jLabel11.setText("RG");
jLabel12.setText("Tipo RG:");
jButtonCadastrar.setText("Cadastrar");
jButtonCadastrar.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButtonCadastrarActionPerformed(evt);
}
});
jButtonAtualizar.setText("Atualizar");
jButtonAtualizar.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButtonAtualizarActionPerformed(evt);
}
});
jButtonRemover.setText("Remover");
jButtonRemover.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButtonRemoverActionPerformed(evt);
}
});
jButtonLimparTextFild.setText("Limpar");
jButtonLimparTextFild.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButtonLimparTextFildActionPerformed(evt);
}
});
jTextAreaListar.setColumns(20);
jTextAreaListar.setRows(5);
jScrollPane1.setViewportView(jTextAreaListar);
jButtonListar.setText("Listar");
jButtonListar.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButtonListarActionPerformed(evt);
}
});
jButtonLimparTextArea.setText("Limpar");
jButtonLimparTextArea.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButtonLimparTextAreaActionPerformed(evt);
}
});
javax.swing.GroupLayout jPanel3Layout = new javax.swing.GroupLayout(jPanel3);
jPanel3.setLayout(jPanel3Layout);
jPanel3Layout.setHorizontalGroup(
jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel3Layout.createSequentialGroup()
.addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel3Layout.createSequentialGroup()
.addGap(200, 200, 200)
.addComponent(jButtonListar, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addGap(18, 18, 18)
.addComponent(jButtonLimparTextArea, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addGap(250, 250, 250))
.addGroup(jPanel3Layout.createSequentialGroup()
.addGap(28, 28, 28)
.addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel3Layout.createSequentialGroup()
.addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel7)
.addComponent(jLabel8)
.addComponent(jLabel9)
.addComponent(jLabel10)
.addComponent(jLabel11)
.addComponent(jLabel12))
.addGap(34, 34, 34)
.addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.CENTER)
.addComponent(jTNome, javax.swing.GroupLayout.PREFERRED_SIZE, 277, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jTEndereco, javax.swing.GroupLayout.PREFERRED_SIZE, 277, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jTTelefone, javax.swing.GroupLayout.PREFERRED_SIZE, 277, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jTCPF, javax.swing.GroupLayout.PREFERRED_SIZE, 277, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jTRg, javax.swing.GroupLayout.PREFERRED_SIZE, 277, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jTTipoRg, javax.swing.GroupLayout.PREFERRED_SIZE, 277, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(48, 48, 48)
.addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addComponent(jButtonCadastrar, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jButtonAtualizar, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jButtonRemover, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jButtonLimparTextFild, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)))
.addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 539, javax.swing.GroupLayout.PREFERRED_SIZE))))
.addGap(16, 16, 16))
);
jPanel3Layout.setVerticalGroup(
jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel3Layout.createSequentialGroup()
.addGap(36, 36, 36)
.addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jTNome, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel7)
.addComponent(jButtonCadastrar))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jTEndereco, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel8)
.addComponent(jButtonAtualizar))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jTTelefone, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel9)
.addComponent(jButtonRemover))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jTCPF, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel10))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jTRg, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel11)
.addComponent(jButtonLimparTextFild))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jTTipoRg, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel12))
.addGap(10, 10, 10)
.addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 113, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 24, Short.MAX_VALUE)
.addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(jButtonListar, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jButtonLimparTextArea, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)))
);
jTabbedPane3.addTab("Pessoa Física", jPanel3);
jButtonSair.setText("Sair");
jButtonSair.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButtonSairActionPerformed(evt);
}
});
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jTabbedPane3, javax.swing.GroupLayout.PREFERRED_SIZE, 599, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(0, 42, Short.MAX_VALUE))
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jButtonSair)
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(jTabbedPane3, javax.swing.GroupLayout.PREFERRED_SIZE, 445, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jButtonSair)
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void jButtonAtualizarActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButtonAtualizarActionPerformed
PessoaFisica pessoafisica = new PessoaFisica();
pessoafisica.setEndereco(jTEndereco.getText());
pessoafisica.setTelefone(jTTelefone.getText());
pessoafisica.setCpf(jTCPF.getText());
pessoafisica.setIdentidade(jTRg.getText());
pessoafisica.setTipoIdentidade(jTTipoRg.getText());
pessoafisica.setNome(jTNome.getText());
String nome = jTNome.getText();
if ((jTNome.getText().isEmpty()) || (jTEndereco.getText().isEmpty())
|| (jTTelefone.getText().isEmpty()) || (jTCPF.getText().isEmpty())
|| (jTRg.getText().isEmpty()) || (jTTipoRg.getText().isEmpty())) {
JOptionPane.showMessageDialog(null, "Os campos não podem permanecer vazios");
} else {
PessoaFisicaDAO dao = new PessoaFisicaDAO();
dao.updatePessoaFisica(pessoafisica);
JOptionPane.showMessageDialog(null, "Dados atualizados para o contato: " + nome);
}
}//GEN-LAST:event_jButtonAtualizarActionPerformed
private void jButtonCadastrarActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButtonCadastrarActionPerformed
PessoaFisica pessoafisica = new PessoaFisica();
pessoafisica.setNome(jTNome.getText());
pessoafisica.setEndereco(jTEndereco.getText());
pessoafisica.setTelefone(jTTelefone.getText());
pessoafisica.setCpf(jTCPF.getText());
pessoafisica.setIdentidade(jTRg.getText());
pessoafisica.setTipoIdentidade(jTTipoRg.getText());
if ((jTNome.getText().isEmpty()) || (jTEndereco.getText().isEmpty())
|| (jTTelefone.getText().isEmpty()) || (jTCPF.getText().isEmpty())
|| (jTRg.getText().isEmpty()) || (jTTipoRg.getText().isEmpty())) {
JOptionPane.showMessageDialog(null, "Os campos não podem permanecer vazios");
} else {
PessoaFisicaDAO dao = new PessoaFisicaDAO();
dao.adicionaPessoaFisica(pessoafisica);
JOptionPane.showMessageDialog(null, "Contato Armazenada com Sucesso ");
}
}//GEN-LAST:event_jButtonCadastrarActionPerformed
private void jButtonLimparTextFildActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButtonLimparTextFildActionPerformed
jTNome.setText("");
jTEndereco.setText("");
jTTelefone.setText("");
jTCPF.setText("");
jTRg.setText("");
jTTipoRg.setText("");
}//GEN-LAST:event_jButtonLimparTextFildActionPerformed
private void jButtonSairActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButtonSairActionPerformed
System.exit(0);
}//GEN-LAST:event_jButtonSairActionPerformed
private void jButtonRemoverActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButtonRemoverActionPerformed
PessoaFisica pessoafisica = new PessoaFisica();
String nome = JOptionPane.showInputDialog("Insira o nome do contato ser removido!");
pessoafisica.setNome(nome);
PessoaFisicaDAO dao = new PessoaFisicaDAO();
dao.deletaPessoaFisica(pessoafisica);
JOptionPane.showMessageDialog(null, nome + " excluído! ");
}//GEN-LAST:event_jButtonRemoverActionPerformed
private void jButtonListarActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButtonListarActionPerformed
PessoaFisicaDAO dao = new PessoaFisicaDAO();
List<PessoaFisica> pessoasfisica = dao.getListaPessoaFisica();
jTextAreaListar.setText("");
for (PessoaFisica pessoafisica : pessoasfisica) {
jTextAreaListar.append("Nome: " + pessoafisica.getNome() + "\n"
+ "Endereço: " + pessoafisica.getEndereco() + "\n"
+ "Telefone: " + pessoafisica.getTelefone() + "\n"
+ "CPF: " + pessoafisica.getCpf() + "\n"
+ "RG: " + pessoafisica.getIdentidade() + "\n"
+ "Tipo RG: " + pessoafisica.getTipoIdentidade() + "\n"
+ "-------------------------------------------------------------------------------- \n");
}
}//GEN-LAST:event_jButtonListarActionPerformed
private void jButtonLimparTextAreaActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButtonLimparTextAreaActionPerformed
jTextAreaListar.setText("");
}//GEN-LAST:event_jButtonLimparTextAreaActionPerformed
/**
* @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(InterfaceGrafica.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(InterfaceGrafica.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(InterfaceGrafica.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(InterfaceGrafica.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 InterfaceGrafica().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton jButtonAtualizar;
private javax.swing.JButton jButtonCadastrar;
private javax.swing.JButton jButtonLimparTextArea;
private javax.swing.JButton jButtonLimparTextFild;
private javax.swing.JButton jButtonListar;
private javax.swing.JButton jButtonRemover;
private javax.swing.JButton jButtonSair;
private javax.swing.JLabel jLabel10;
private javax.swing.JLabel jLabel11;
private javax.swing.JLabel jLabel12;
private javax.swing.JLabel jLabel7;
private javax.swing.JLabel jLabel8;
private javax.swing.JLabel jLabel9;
private javax.swing.JPanel jPanel3;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JTextField jTCPF;
private javax.swing.JTextField jTEndereco;
private javax.swing.JTextField jTNome;
private javax.swing.JTextField jTRg;
private javax.swing.JTextField jTTelefone;
private javax.swing.JTextField jTTipoRg;
private javax.swing.JTabbedPane jTabbedPane3;
private javax.swing.JTextArea jTextAreaListar;
// End of variables declaration//GEN-END:variables
}