package gui.commun.pays;
import static gui.MotsCleProjet.CMD_CANCEL;
import static gui.MotsCleProjet.CMD_OK;
import static gui.MotsCleProjet.IsNumString;
import static gui.MotsCleProjet.IsString;
import static gui.util.TaxiGuiUtil.FabricationButton;
import gui.*;
import gui.util.ErreurDeValidation;
import gui.util.TaxiGuiUtil;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Arrays;
import java.util.Vector;
import javax.swing.*;
import modele.chauffeur.Pays;
/**
* Classe PaysDialog
* Cr�e la fen�tre pour ins�rer et modifier un enregistrement
* @author Kasandra
*
*/
public class PaysEditionFenetre implements ActionListener {
private JDialog aDialog;// R�f�rence � la boite de dialogue.
private JTextControlKey textCodePays, textNomPays;
private JLabel titres, labelCodePays, labelNomPays;
private JPanel titre;
private Pays pays = new Pays();
static Font titreFont = new Font("Tahoma", 1, 12);
protected boolean okFlag;
public boolean OK_Button() {
return okFlag;
}
/**
* Constructeur
*/
public PaysEditionFenetre() {
aDialog = new JDialog(MainWindow.cadrePrincipal(), " PAYS...", true);
textCodePays = new JTextControlKey("", 3, IsString);
textCodePays.ChampsTxt.setForeground(new Color(66, 79, 120));
textNomPays = new JTextControlKey("", 30, IsNumString);
textNomPays.ChampsTxt.setForeground(new Color(66, 79, 120));
okFlag = false;
}
/**
* initialise un pays
* @param pays
*/
public void initializeDonnee(Pays pays) {
this.pays = pays;
textCodePays.ChampsTxt.setText(pays.getCode());
textNomPays.ChampsTxt.setText(pays.getNom());
}
/**
* Renvoie un pays
* @return
*/
public Pays renvoiPays() {
return pays;
}
/**
* Cr�e panel code Pays
*
* @return
*/
private JPanel creeCodePaysPane() {
JPanel parameterPane = new JPanel(false);
parameterPane.setBackground(new java.awt.Color(170, 207, 249));
parameterPane.setLayout(new GridLayout());
parameterPane.setPreferredSize(new Dimension(300, 25));
labelCodePays = new JLabel(" Code pays : *");
labelCodePays.setFont(titreFont);
labelCodePays.setForeground(new Color(66, 79, 120));
parameterPane.add(labelCodePays);
parameterPane.add(textCodePays.ChampsTxt);
return parameterPane;
}
/**
* Cr�e panel nom Pays
*
* @return
*/
private JPanel creeNomPaysPane() {
JPanel parameterPane = new JPanel(false);
parameterPane.setBackground(new java.awt.Color(170, 207, 249));
parameterPane.setLayout(new GridLayout());
parameterPane.setPreferredSize(new Dimension(300, 25));
labelNomPays = new JLabel(" Pays : *");
labelNomPays.setFont(titreFont);
labelNomPays.setForeground(new Color(66, 79, 120));
parameterPane.add(labelNomPays);
parameterPane.add(textNomPays.ChampsTxt);
return parameterPane;
}
/**
* Renvoie titre formulaire
*
* @return
*/
private JPanel getTitre() {
if (titre == null) {
GridBagConstraints gridBagTitre = new GridBagConstraints();
gridBagTitre.gridx = 0;
gridBagTitre.gridy = 0;
titres = new JLabel();
titres.setText(" Fiche pays");
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(creeCodePaysPane());
parameterPane.add(creeNomPaysPane());
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(textCodePays.ChampsTxt, textNomPays.ChampsTxt )) {
composant.setBackground(Color.WHITE);
composant.setToolTipText("");
}
String cmd = e.getActionCommand();
if (CMD_OK.equals(cmd)) {
Vector<ErreurDeValidation> erreursDeValidation = new Vector<ErreurDeValidation>();
if (textCodePays.ChampsTxt.getText().trim().equals("")) {
erreursDeValidation.add(new ErreurDeValidation(textCodePays.ChampsTxt, "le champ 'code pays' est obligatoire."));
}
if (textNomPays.ChampsTxt.getText().trim().equals("")) {
erreursDeValidation.add(new ErreurDeValidation(textNomPays.ChampsTxt, "le champ 'nom pays' 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{
pays.setCode(textCodePays.ChampsTxt.getText());
pays.setNom(textNomPays.ChampsTxt.getText());
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");
}
}
}