Package gui.commun.ville

Source Code of gui.commun.ville.VilleEditionFenetre

package gui.commun.ville;

import static gui.MotsCleProjet.CMD_CANCEL;
import static gui.MotsCleProjet.CMD_OK;
import static gui.MotsCleProjet.IsNumString;
import static gui.util.TaxiGuiUtil.FabricationButton;
import gui.*;
import gui.commun.pays.PaysAffichable;
import gui.util.ErreurDeValidation;
import gui.util.TaxiGuiUtil;

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Vector;

import javax.swing.*;

import modele.chauffeur.Pays;
import modele.chauffeur.Ville;
import dao.GestionnaireDeStockage;
import dao.IDao;


/**
* Classe VilleEditionFenetre
* Cr�e l'interface utilisateur pour ajouter et modifier un enregistrement
* @author Kasandra
*
*/
public class VilleEditionFenetre implements ActionListener{
 
 
  protected boolean okFlag;

  public boolean OK_Button() {
    return okFlag;
  }

  private JDialog aDialog;// R�f�rence � la boite de dialogue.
  private JTextControlKey textNomVille;
 

  private JComboBox cmbPays;

  private JPanel titre;
  private JLabel titres, labVille, labPays;

  private Ville ville = new Ville();

  static Font titreFont = new Font("Tahoma", 1, 12);

  /**
   * Constructeur
   */
  public VilleEditionFenetre() {
    aDialog = new JDialog(MainWindow.cadrePrincipal(), "  Ville...", true);
   
      textNomVille = new JTextControlKey("",30,IsNumString);       
      textNomVille.ChampsTxt.setForeground(new java.awt.Color(66, 79, 120));
     
      cmbPays = new JComboBox(getListePays());
      cmbPays.setForeground(new java.awt.Color(66, 79, 120));
      okFlag = false;
  }

  /**
   * Initialise ville
   * @param ville
   */
  public void initializeDonnee(Ville ville) {
    this.ville = ville;
    textNomVille.ChampsTxt.setText(ville.getNomVille());
   
    selectionnePays(ville.getPays());
  }

  /**
   * Selectionne pays
   * @param pays
   */
  private void selectionnePays(Pays pays) {
    int nbPays = cmbPays.getItemCount();
    for (int i = 0; i<nbPays; i++) {
      if (((PaysAffichable)cmbPays.getItemAt(i)).getPays().getId().equals(pays.getId())) {
        cmbPays.setSelectedIndex(i);
        break;
      }
    }
  }

  /**
   *
   * @return ville
   */
  public Ville renvoiVille() {
    return ville;
  }

  /**
   * Cr�e le panel nom ville
   * @return panel ville
   */
  private JPanel creeNomVillePane()
  {
          JPanel parameterPane = new JPanel(false);
      parameterPane.setBackground(new java.awt.Color(170, 207, 249));
          parameterPane.setLayout(new GridLayout());
          parameterPane.setPreferredSize(new Dimension(300, 25));
       
          labVille = new JLabel("     Ville : *");
          labVille.setFont(titreFont);
          labVille.setForeground(new java.awt.Color(66, 79, 120));

      parameterPane.add(labVille);
          parameterPane.add(textNomVille.ChampsTxt);
          return parameterPane;
  }
 


  /**
   * Cr�e panel pays
   * @return panel pays
   */
  private JPanel creePaysPane()
  {
          JPanel parameterPane = new JPanel(false);
      parameterPane.setBackground(new java.awt.Color(170, 207, 249));
          parameterPane.setLayout(new GridLayout());
          parameterPane.setPreferredSize(new Dimension(300, 25));
         
          labPays = new JLabel("     Pays : *");
          labPays.setFont(titreFont);
          labPays.setForeground(new java.awt.Color(66, 79, 120));

      parameterPane.add(labPays);
          parameterPane.add(cmbPays);
          return parameterPane;
  }

  /**
   * 
   * @return titre du formulaire
   */
  private JPanel getTitre() {
    if (titre == null) {
      GridBagConstraints gridBagTitre = new GridBagConstraints();
      gridBagTitre.gridx = 0;
      gridBagTitre.gridy = 0;
      titres = new JLabel();
      titres.setText("  Fiche ville");
      titres.setFont(new java.awt.Font("Comic Sans MS", 1, 20));
      titres.setForeground(new Color(255, 255, 255));
      titre = new JPanel();
      titre.setLayout(new GridBagLayout());
      titre.setPreferredSize(new Dimension(50, 45));
      titre.setBackground(new Color(66, 79, 120));
      titre.add(titres, gridBagTitre);
    }

    return titre;
  }

  /**
   * D�finit la fen�tre et ses composants
   */
  public void affiche() throws PrjException {
    try {
      JToolBar toolBar = new JToolBar("Outils...");

      JPanel parameterPane = new JPanel(false);
      parameterPane.setBackground(new Color(170, 207, 249));

      parameterPane.setLayout(new FlowLayout());
      parameterPane.setPreferredSize(new Dimension(500, 200));
      parameterPane.setBorder(BorderFactory.createTitledBorder(" "));
      parameterPane.add(creeNomVillePane());
      parameterPane.add(creePaysPane());

      aDialog.getContentPane().add(getTitre(), BorderLayout.NORTH);
      aDialog.getContentPane().add(parameterPane, BorderLayout.CENTER);
      aDialog.getContentPane().add(toolBar, BorderLayout.PAGE_END);

      toolBar.setBackground(new Color(66, 79, 120));
      toolBar.add(FabricationButton("OK", CMD_OK, "OK...", this));
      toolBar.add(FabricationButton("ANNULER", CMD_CANCEL, "Annuler...", this));

      Point p = MainWindow.cadrePrincipal().getLocation();
      aDialog.setLocation((p.x + 450), (p.y + 200));

      aDialog.pack();
      aDialog.setVisible(true);
    } catch (NullPointerException exc) {
      throw new PrjException(exc.getMessage());
    }
  }

  /**
   * Gestionnaire des �v�nements
   */
  public void actionPerformed(ActionEvent e) {
   
    try {
      // Restaure la couleur de fonds par d�faut.
      for (JComponent composant : Arrays.asList(textNomVille.ChampsTxt)) {
        composant.setBackground(Color.WHITE);
        composant.setToolTipText("");
      }
     
    String cmd = e.getActionCommand();
    if (CMD_OK.equals(cmd)) {
     
      Vector<ErreurDeValidation> erreursDeValidation = new Vector<ErreurDeValidation>();
     
      if (textNomVille.ChampsTxt.getText().trim().equals("")) {
        erreursDeValidation.add(new ErreurDeValidation(textNomVille.ChampsTxt, "le champ 'nom de la ville' est obligatoire."));
      }
     
     
      if (!erreursDeValidation.isEmpty()) {
        StringBuffer erreurAffichee = new StringBuffer();
        for (ErreurDeValidation erreurDeValidation : erreursDeValidation) {
          erreurAffichee.append(erreurDeValidation.getMessageErreur());
          erreurAffichee.append("\n");
          erreurDeValidation.getComposant().setBackground(Color.RED);
          erreurDeValidation.getComposant().setToolTipText(erreurDeValidation.getMessageErreur());
        }
        TaxiGuiUtil.MessageBox(MainWindow.desktop(), erreurAffichee.toString(), "ERREUR");
       
        return;
     
      else{
     
      ville.setNomVille(textNomVille.ChampsTxt.getText());
     
      ville.setPays(getPaysSelectionne());

      okFlag = true;
      aDialog.setVisible(false);
    }
    }
    else if (CMD_CANCEL.equals(cmd)) {
      okFlag = false;
      aDialog.setVisible(false);
    }
    }catch(Exception ex) {
      TaxiGuiUtil.MessageBox(MainWindow.desktop(), "Erreur syst�me : " + ex.getMessage(), "Erreur syst�me");
    }
  }

  /**
   * Retourne le pays selectionn�
   * @return
   */
  private Pays getPaysSelectionne() {
    return ((PaysAffichable)cmbPays.getSelectedItem()).getPays();
  }

  /**
   *
   * @return Vector<PaysAffichable>
   */
  private Vector<PaysAffichable> getListePays() {
    Vector<PaysAffichable> paysAffichables = new Vector<PaysAffichable>();
    ArrayList<Pays> pays = getPaysDao().findAll();
    for (Pays epays : pays) {
      paysAffichables.add(new PaysAffichable(epays));
    }
    return paysAffichables;
  }

  /**
   *
   * @return
   */
  private IDao<Pays> getPaysDao() {
    try {
      return GestionnaireDeStockage.getInstance().getPaysDao();
    } catch (ClassNotFoundException e) {
      throw new RuntimeException(e);
    } catch (InstantiationException e) {
      throw new RuntimeException(e);
    } catch (IllegalAccessException e) {
      throw new RuntimeException(e);
    }
  }
}
TOP

Related Classes of gui.commun.ville.VilleEditionFenetre

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.