package gui.commun.etat;
import static gui.MotsCleProjet.CMD_CANCEL;
import static gui.MotsCleProjet.CMD_OK;
import static gui.MotsCleProjet.IsNum;
import static gui.MotsCleProjet.IsNumString;
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.commun.Etat;
/**
* class EtatEditionFenetre
* cr�e l'interface utilisateur qui permet d'ajouter et modifier un enregistrement
* @author Kasandra
*
*/
public class EtatEditionFenetre implements ActionListener{
private JDialog aDialog;// R�f�rence � la boite de dialogue.
private JTextControlKey textDescrip, textTypeEtat;
private JLabel titres, labDescrip, labTypeEtat;
private JPanel titre;
static Font titreFont = new Font("Tahoma", 1, 12);
private Etat etat = new Etat();
protected boolean okFlag;
public boolean OK_Button() {
return okFlag;
}
/**
* Constructeur
*/
public EtatEditionFenetre() {
aDialog = new JDialog(MainWindow.cadrePrincipal(), " Etat...", true);
new JTextControlKey("", 5, IsNum);
textDescrip = new JTextControlKey("", 30, IsNumString);
textTypeEtat = new JTextControlKey("", 30, IsNumString);
okFlag = false;
}
public void initializeDonnee(Etat etat) {
this.etat = etat;
textDescrip.ChampsTxt.setText(etat.getDescrip());
textTypeEtat.ChampsTxt.setText(etat.getTypeEtat());
}
/**
*
* @return etat
*/
public Etat renvoiEtat() {
return etat;
}
/**
* Cr�e panel description �tat
* @return
*/
private JPanel creeDescripEtatPane() {
JPanel parameterPane = new JPanel(false);
parameterPane.setBackground(new java.awt.Color(170, 207, 249));
parameterPane.setLayout(new GridLayout());
parameterPane.setPreferredSize(new Dimension(300, 25));
labDescrip = new JLabel(" Description : *");
labDescrip.setFont(titreFont);
labDescrip.setForeground(new java.awt.Color(66, 79, 120));
parameterPane.add(labDescrip);
parameterPane.add(textDescrip.ChampsTxt);
return parameterPane;
}
/**
* Cr�e panel type �tat
* @return
*/
private JPanel creeTypeEtatPane() {
JPanel parameterPane = new JPanel(false);
parameterPane.setBackground(new java.awt.Color(170, 207, 249));
parameterPane.setLayout(new GridLayout());
parameterPane.setPreferredSize(new Dimension(300, 25));
labTypeEtat = new JLabel(" Type Etat : *");
labTypeEtat.setFont(titreFont);
labTypeEtat.setForeground(new java.awt.Color(66, 79, 120));
parameterPane.add(labTypeEtat);
parameterPane.add(textTypeEtat.ChampsTxt);
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 Etat");
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;
}
/**
* Affiche la fen�tre d'ajout et ses composants
* @throws PrjException
*/
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(creeDescripEtatPane());
parameterPane.add(creeTypeEtatPane());
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(textDescrip.ChampsTxt, textTypeEtat.ChampsTxt)) {
composant.setBackground(Color.WHITE);
composant.setToolTipText("");
}
String cmd = e.getActionCommand();
if (CMD_OK.equals(cmd)) {
Vector<ErreurDeValidation> erreursDeValidation = new Vector<ErreurDeValidation>();
if (textDescrip.ChampsTxt.getText().trim().equals("")) {
erreursDeValidation.add(new ErreurDeValidation(textDescrip.ChampsTxt, "le champ 'etat' est obligatoire."));
}
else if (textTypeEtat.ChampsTxt.getText().trim().equals("")) {
erreursDeValidation.add(new ErreurDeValidation(textTypeEtat.ChampsTxt, "le champ 'type etat' 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{
etat.setDescrip(textDescrip.ChampsTxt.getText());
etat.setTypeEtat(textTypeEtat.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");
}
}
}