637 |
jp_milcent |
1 |
package org.tela_botanica.client.vues;
|
|
|
2 |
|
639 |
jp_milcent |
3 |
import java.util.Iterator;
|
687 |
jp_milcent |
4 |
import java.util.List;
|
639 |
jp_milcent |
5 |
|
637 |
jp_milcent |
6 |
import org.tela_botanica.client.Mediateur;
|
687 |
jp_milcent |
7 |
import org.tela_botanica.client.RegistreId;
|
637 |
jp_milcent |
8 |
import org.tela_botanica.client.i18n.Constantes;
|
|
|
9 |
import org.tela_botanica.client.images.Images;
|
687 |
jp_milcent |
10 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
|
|
11 |
import org.tela_botanica.client.modeles.Configuration;
|
639 |
jp_milcent |
12 |
import org.tela_botanica.client.modeles.Valeur;
|
|
|
13 |
import org.tela_botanica.client.modeles.ValeurListe;
|
703 |
jp_milcent |
14 |
import org.tela_botanica.client.modeles.aDonneeListe;
|
637 |
jp_milcent |
15 |
|
687 |
jp_milcent |
16 |
import com.extjs.gxt.ui.client.Registry;
|
637 |
jp_milcent |
17 |
import com.extjs.gxt.ui.client.Style.HorizontalAlignment;
|
703 |
jp_milcent |
18 |
import com.extjs.gxt.ui.client.Style.SortDir;
|
639 |
jp_milcent |
19 |
import com.extjs.gxt.ui.client.event.BaseEvent;
|
637 |
jp_milcent |
20 |
import com.extjs.gxt.ui.client.event.ButtonEvent;
|
639 |
jp_milcent |
21 |
import com.extjs.gxt.ui.client.event.ComponentEvent;
|
|
|
22 |
import com.extjs.gxt.ui.client.event.Events;
|
|
|
23 |
import com.extjs.gxt.ui.client.event.Listener;
|
637 |
jp_milcent |
24 |
import com.extjs.gxt.ui.client.event.SelectionListener;
|
703 |
jp_milcent |
25 |
import com.extjs.gxt.ui.client.store.ListStore;
|
637 |
jp_milcent |
26 |
import com.extjs.gxt.ui.client.widget.LayoutContainer;
|
|
|
27 |
import com.extjs.gxt.ui.client.widget.TabItem;
|
|
|
28 |
import com.extjs.gxt.ui.client.widget.TabPanel;
|
|
|
29 |
import com.extjs.gxt.ui.client.widget.button.ButtonBar;
|
639 |
jp_milcent |
30 |
import com.extjs.gxt.ui.client.widget.form.CheckBox;
|
|
|
31 |
import com.extjs.gxt.ui.client.widget.form.CheckBoxGroup;
|
703 |
jp_milcent |
32 |
import com.extjs.gxt.ui.client.widget.form.ComboBox;
|
639 |
jp_milcent |
33 |
import com.extjs.gxt.ui.client.widget.form.Field;
|
637 |
jp_milcent |
34 |
import com.extjs.gxt.ui.client.widget.form.FormPanel;
|
639 |
jp_milcent |
35 |
import com.extjs.gxt.ui.client.widget.form.Radio;
|
|
|
36 |
import com.extjs.gxt.ui.client.widget.form.RadioGroup;
|
|
|
37 |
import com.extjs.gxt.ui.client.widget.form.FormPanel.LabelAlign;
|
637 |
jp_milcent |
38 |
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
|
639 |
jp_milcent |
39 |
import com.extjs.gxt.ui.client.widget.layout.FormData;
|
637 |
jp_milcent |
40 |
import com.extjs.gxt.ui.client.widget.layout.FormLayout;
|
639 |
jp_milcent |
41 |
import com.extjs.gxt.ui.client.widget.tips.ToolTipConfig;
|
687 |
jp_milcent |
42 |
import com.google.gwt.core.client.GWT;
|
637 |
jp_milcent |
43 |
|
687 |
jp_milcent |
44 |
public abstract class Formulaire extends LayoutContainer implements Rafraichissable {
|
637 |
jp_milcent |
45 |
|
|
|
46 |
public static final String MODE_AJOUTER = "AJOUT";
|
|
|
47 |
public static final String MODE_MODIFIER = "MODIF";
|
|
|
48 |
|
|
|
49 |
protected Constantes i18nC = null;
|
|
|
50 |
protected Mediateur mediateur = null;
|
687 |
jp_milcent |
51 |
protected Configuration config = null;
|
|
|
52 |
|
637 |
jp_milcent |
53 |
protected String mode = null;
|
|
|
54 |
protected int tabIndex = 100;
|
|
|
55 |
|
|
|
56 |
protected FormPanel panneauFormulaire = null;
|
|
|
57 |
protected ButtonBar barreOutilsValidation = null;
|
775 |
jpm |
58 |
|
639 |
jp_milcent |
59 |
protected String menuIdCourant = null;
|
|
|
60 |
protected static Boolean clicBoutonvalidation = false;
|
775 |
jpm |
61 |
|
|
|
62 |
public FormPanel getFormulaire() {
|
|
|
63 |
return panneauFormulaire;
|
|
|
64 |
}
|
639 |
jp_milcent |
65 |
|
648 |
jp_milcent |
66 |
public void initialiserFormulaire(Mediateur mediateurCourrant, String modeDeCreation, String idMenuCourrant) {
|
637 |
jp_milcent |
67 |
// Initialisation de variables
|
|
|
68 |
mode = modeDeCreation;
|
|
|
69 |
mediateur = mediateurCourrant;
|
|
|
70 |
i18nC = Mediateur.i18nC;
|
648 |
jp_milcent |
71 |
menuIdCourant = idMenuCourrant;
|
687 |
jp_milcent |
72 |
config = (Configuration) Registry.get(RegistreId.CONFIG);
|
648 |
jp_milcent |
73 |
|
637 |
jp_milcent |
74 |
// Iniatilisation du layoutContainer
|
|
|
75 |
setLayout(new FitLayout());
|
|
|
76 |
setBorders(false);
|
|
|
77 |
|
|
|
78 |
// Création du panneau du FORMULAIRE GÉNÉRAL
|
|
|
79 |
panneauFormulaire = new FormPanel();
|
|
|
80 |
panneauFormulaire.setBodyBorder(false);
|
|
|
81 |
panneauFormulaire.setFrame(true);
|
775 |
jpm |
82 |
panneauFormulaire.setCollapsible(false);
|
637 |
jp_milcent |
83 |
panneauFormulaire.setButtonAlign(HorizontalAlignment.CENTER);
|
|
|
84 |
panneauFormulaire.setLayout(new FitLayout());
|
775 |
jpm |
85 |
|
|
|
86 |
if (modeDeCreation.equals(MODE_AJOUTER)) {
|
|
|
87 |
panneauFormulaire.setIcon(Images.ICONES.formAjouter());
|
|
|
88 |
} else if (modeDeCreation.equals(MODE_AJOUTER)) {
|
|
|
89 |
panneauFormulaire.setIcon(Images.ICONES.formModifier());
|
|
|
90 |
}
|
639 |
jp_milcent |
91 |
|
775 |
jpm |
92 |
barreOutilsValidation = new FormulaireBarreValidation(creerEcouteurValidation());
|
|
|
93 |
panneauFormulaire.setBottomComponent(barreOutilsValidation);
|
648 |
jp_milcent |
94 |
|
|
|
95 |
add(panneauFormulaire);
|
637 |
jp_milcent |
96 |
}
|
|
|
97 |
|
775 |
jpm |
98 |
protected abstract SelectionListener<ButtonEvent> creerEcouteurValidation();
|
637 |
jp_milcent |
99 |
|
775 |
jpm |
100 |
protected abstract void soumettreFormulaire();
|
|
|
101 |
|
637 |
jp_milcent |
102 |
protected TabItem creerOnglet(String nom, String id) {
|
|
|
103 |
TabItem onglet = new TabItem();
|
|
|
104 |
onglet.setId(id);
|
|
|
105 |
onglet.setText(nom);
|
687 |
jp_milcent |
106 |
FormulaireOnglet.parametrer(onglet);
|
637 |
jp_milcent |
107 |
return onglet;
|
|
|
108 |
}
|
639 |
jp_milcent |
109 |
|
|
|
110 |
protected void verifierApresRafraichissement() {
|
|
|
111 |
// Si le bouton Valider a été cliqué, nous affichons la liste des structures
|
|
|
112 |
if (clicBoutonvalidation) {
|
|
|
113 |
mediateur.clicMenu(menuIdCourant);
|
|
|
114 |
clicBoutonvalidation = false;
|
|
|
115 |
}
|
|
|
116 |
}
|
|
|
117 |
|
|
|
118 |
/** Méthode simplifiant la création de FormLayout.
|
|
|
119 |
* Chacun des paramètres peut prendre la valeur null pour utiliser la valeur par défaut.
|
|
|
120 |
*
|
|
|
121 |
* @param labelWidth largeur des labels.
|
|
|
122 |
* @param labelAlign alignement des labels
|
|
|
123 |
* @return
|
|
|
124 |
*/
|
687 |
jp_milcent |
125 |
protected static FormLayout creerFormLayout(Integer labelWidth, LabelAlign labelAlign) {
|
639 |
jp_milcent |
126 |
FormLayout formLayout = new FormLayout();
|
|
|
127 |
if (labelWidth != null) {
|
|
|
128 |
formLayout.setLabelWidth(labelWidth);
|
|
|
129 |
}
|
|
|
130 |
if (labelAlign != null) {
|
|
|
131 |
formLayout.setLabelAlign(labelAlign);
|
|
|
132 |
}
|
|
|
133 |
return formLayout;
|
|
|
134 |
}
|
|
|
135 |
|
|
|
136 |
/** Méthode simplifiant la création de bouton radio oui/non
|
|
|
137 |
*
|
|
|
138 |
* @param listeNom nom de la liste de valeur
|
|
|
139 |
* @return
|
|
|
140 |
*/
|
|
|
141 |
protected RadioGroup creerChoixUniqueRadioGroupe(String groupeNom, String listeNom) {
|
|
|
142 |
groupeNom += "_grp";
|
|
|
143 |
// NOTE : il semblerait qu'il faille aussi utiliser setName() pour éviter tout problème...
|
|
|
144 |
RadioGroup radioGroup = new RadioGroup(groupeNom);
|
|
|
145 |
radioGroup.setName(groupeNom);
|
|
|
146 |
|
|
|
147 |
if (listeNom.equals("ouiNon")) {
|
|
|
148 |
ValeurListe ouiNonListe = new ValeurListe();
|
|
|
149 |
ouiNonListe.ajouter(new Valeur("1", i18nC.oui(), "NULL", "NULL"));
|
|
|
150 |
ouiNonListe.ajouter(new Valeur("0", i18nC.non(), "NULL", "NULL"));
|
|
|
151 |
creerChoixUniqueBoutonRadio(radioGroup, ouiNonListe);
|
|
|
152 |
}
|
|
|
153 |
|
|
|
154 |
return radioGroup;
|
|
|
155 |
}
|
|
|
156 |
|
|
|
157 |
protected void creerChoixUniqueBoutonRadio(RadioGroup radioGroupe, ValeurListe listeValeurs) {
|
|
|
158 |
for (Iterator<String> it = listeValeurs.keySet().iterator(); it.hasNext();) {
|
|
|
159 |
Valeur val = listeValeurs.get(it.next());
|
|
|
160 |
|
|
|
161 |
Radio radioBtn = new Radio();
|
|
|
162 |
radioBtn.setName(radioGroupe.getName().replace("_grp", ""));
|
|
|
163 |
radioBtn.setId(val.getId()+"_"+radioBtn.getName());
|
|
|
164 |
radioBtn.setBoxLabel(val.getNom());
|
|
|
165 |
radioBtn.setValueAttribute(val.getId());
|
|
|
166 |
radioBtn.addListener(Events.Change, new Listener<ComponentEvent>() {
|
|
|
167 |
|
|
|
168 |
public void handleEvent(ComponentEvent be) {
|
|
|
169 |
//Window.alert(((Radio) be.component).getName());
|
|
|
170 |
afficherChampSupplementaire(((Radio) be.getComponent()));
|
|
|
171 |
}
|
|
|
172 |
|
|
|
173 |
});
|
|
|
174 |
|
|
|
175 |
if (! val.getDescription().equals("NULL")) {
|
|
|
176 |
radioBtn.setToolTip(new ToolTipConfig(val.getNom(), val.getDescription()));
|
|
|
177 |
}
|
|
|
178 |
radioGroupe.add(radioBtn);
|
|
|
179 |
}
|
|
|
180 |
}
|
|
|
181 |
|
775 |
jpm |
182 |
protected void afficherChampSupplementaire(Radio radioBtn) {
|
|
|
183 |
GWT.log("Vous devez redéfinir la méthode afficherChampSupplementaire(Radio radioBtn) dans votre classe formulaire.", null);
|
|
|
184 |
};
|
639 |
jp_milcent |
185 |
|
|
|
186 |
/** Méthode simplifiant la création de choix multiple sous forme de case à cocher.
|
|
|
187 |
* Apelle un service retournant la liste des valeurs représentant les cases à cocher.
|
|
|
188 |
* Ajoute ou pas un champ "Autre".
|
|
|
189 |
*
|
|
|
190 |
* @return ContentPanel le panneau contenant les cases à cocher
|
|
|
191 |
*/
|
|
|
192 |
protected LayoutContainer creerChoixMultipleCp() {
|
|
|
193 |
LayoutContainer conteneur = new LayoutContainer();
|
|
|
194 |
conteneur.setLayout(creerFormLayout(650, LabelAlign.TOP));
|
|
|
195 |
return conteneur;
|
|
|
196 |
}
|
|
|
197 |
|
|
|
198 |
/** Méthode simplifiant la création de choix multiple sous forme de case à cocher.
|
|
|
199 |
* Apelle un service retournant la liste des valeurs représentant les cases à cocher.
|
|
|
200 |
* Ajoute ou pas un champ "Autre".
|
|
|
201 |
*
|
|
|
202 |
* @param cp panneau conteant le groupe de case à cocher
|
|
|
203 |
* @param cacGroup le groupe de case à cocher
|
|
|
204 |
* @param listeValeurs la liste de valeurs à transformer en case à cocher
|
|
|
205 |
* @param boolAutreChp booléen indiquant si oui ou non le champ autre doit apparaître
|
|
|
206 |
* @return
|
|
|
207 |
*/
|
|
|
208 |
protected void creerChoixMultipleCac(LayoutContainer cp, final CheckBoxGroup cacGroupe, ValeurListe listeValeurs, final Field<String> autreChp) {
|
|
|
209 |
cp.addListener(Events.Hide, new Listener<BaseEvent>() {
|
|
|
210 |
|
|
|
211 |
public void handleEvent(BaseEvent be) {
|
|
|
212 |
cacGroupe.reset();
|
|
|
213 |
autreChp.setValue("");
|
|
|
214 |
}
|
|
|
215 |
|
|
|
216 |
});
|
|
|
217 |
|
|
|
218 |
cacGroupe.setAutoWidth(true);
|
|
|
219 |
cacGroupe.setStyleAttribute("padding", "3px");
|
|
|
220 |
cacGroupe.setData("liste_id", listeValeurs.getId());
|
|
|
221 |
for (Iterator<String> it = listeValeurs.keySet().iterator(); it.hasNext();) {
|
|
|
222 |
Valeur val = listeValeurs.get(it.next());
|
|
|
223 |
String nom = val.get("nom");
|
|
|
224 |
CheckBox cac = new CheckBox();
|
|
|
225 |
cac.setId("val-"+val.getId());
|
|
|
226 |
cac.setData("id", val.getId());
|
|
|
227 |
cac.setBoxLabel(nom);
|
|
|
228 |
if (! val.getDescription().equals("NULL")) {
|
|
|
229 |
cac.setToolTip(new ToolTipConfig(val.getNom(), val.getDescription()));
|
|
|
230 |
}
|
|
|
231 |
cacGroupe.add(cac);
|
|
|
232 |
}
|
|
|
233 |
cp.add(cacGroupe);
|
|
|
234 |
|
|
|
235 |
if (autreChp != null) {
|
|
|
236 |
// FIXME : éviter le chevauchement du texte des cases à cocher avec le label "Autre" sur les petits écrans
|
|
|
237 |
LayoutContainer conteneur = new LayoutContainer();
|
|
|
238 |
conteneur.setLayout(creerFormLayout(50, LabelAlign.TOP));
|
|
|
239 |
autreChp.setId("autre-"+listeValeurs.getId());
|
|
|
240 |
autreChp.setFieldLabel("Autre");
|
|
|
241 |
autreChp.setLabelStyle("font-weight:normal;");
|
|
|
242 |
conteneur.add(autreChp, new FormData(500, 0));
|
|
|
243 |
|
|
|
244 |
cp.add(conteneur);
|
|
|
245 |
}
|
|
|
246 |
cp.layout();
|
|
|
247 |
}
|
687 |
jp_milcent |
248 |
|
703 |
jp_milcent |
249 |
@SuppressWarnings({"unchecked"})
|
|
|
250 |
public static void rafraichirComboBox(aDonneeListe<?> listeValeurs, ListStore store, ComboBox combo) {
|
|
|
251 |
List<?> liste = listeValeurs.toList();
|
|
|
252 |
if (liste.size() > 0) {
|
|
|
253 |
store.removeAll();
|
|
|
254 |
store.add(liste);
|
|
|
255 |
store.sort("nom", SortDir.ASC);
|
|
|
256 |
combo.setStore(store);
|
|
|
257 |
}
|
|
|
258 |
}
|
|
|
259 |
|
687 |
jp_milcent |
260 |
}
|