935 |
jpm |
1 |
package org.tela_botanica.client.vues.personne;
|
127 |
gduche |
2 |
|
277 |
jp_milcent |
3 |
import org.tela_botanica.client.Mediateur;
|
127 |
gduche |
4 |
import org.tela_botanica.client.RegistreId;
|
|
|
5 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
277 |
jp_milcent |
6 |
import org.tela_botanica.client.modeles.Information;
|
935 |
jpm |
7 |
import org.tela_botanica.client.modeles.personne.Personne;
|
|
|
8 |
import org.tela_botanica.client.modeles.personne.PersonneListe;
|
915 |
jpm |
9 |
import org.tela_botanica.client.util.Debug;
|
127 |
gduche |
10 |
|
|
|
11 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
12 |
import com.extjs.gxt.ui.client.Style.LayoutRegion;
|
|
|
13 |
import com.extjs.gxt.ui.client.util.Margins;
|
277 |
jp_milcent |
14 |
import com.extjs.gxt.ui.client.widget.Info;
|
127 |
gduche |
15 |
import com.extjs.gxt.ui.client.widget.LayoutContainer;
|
|
|
16 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayout;
|
|
|
17 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayoutData;
|
277 |
jp_milcent |
18 |
import com.google.gwt.core.client.GWT;
|
127 |
gduche |
19 |
|
|
|
20 |
public class PersonneVue extends LayoutContainer implements Rafraichissable {
|
|
|
21 |
|
436 |
gduche |
22 |
private PersonneListeVue panneauPersonneListe;
|
|
|
23 |
private PersonneDetailVue panneauPersonneDetail;
|
529 |
gduche |
24 |
private Mediateur mediateur = null;
|
127 |
gduche |
25 |
|
529 |
gduche |
26 |
public PersonneVue(Mediateur mediateur) {
|
|
|
27 |
this.mediateur = mediateur;
|
|
|
28 |
|
127 |
gduche |
29 |
BorderLayout layout = new BorderLayout();
|
|
|
30 |
layout.setEnableState(false);
|
|
|
31 |
setLayout(layout);
|
|
|
32 |
|
436 |
gduche |
33 |
panneauPersonneListe = new PersonneListeVue();
|
127 |
gduche |
34 |
this.add(panneauPersonneListe, new BorderLayoutData(LayoutRegion.CENTER));
|
|
|
35 |
|
529 |
gduche |
36 |
panneauPersonneDetail = new PersonneDetailVue(mediateur);
|
127 |
gduche |
37 |
BorderLayoutData southData = new BorderLayoutData(LayoutRegion.SOUTH, .5f, 200, 1000);
|
|
|
38 |
southData.setSplit(true);
|
|
|
39 |
southData.setMargins(new Margins(5, 0, 0, 0));
|
150 |
gduche |
40 |
this.add(panneauPersonneDetail, southData);
|
127 |
gduche |
41 |
}
|
|
|
42 |
|
656 |
gduche |
43 |
public void rafraichir(Object nouvellesDonnees) {
|
|
|
44 |
if (nouvellesDonnees instanceof Personne) {
|
|
|
45 |
panneauPersonneDetail.rafraichir((Personne) nouvellesDonnees);
|
|
|
46 |
} else if (nouvellesDonnees instanceof PersonneListe) {
|
|
|
47 |
panneauPersonneListe.rafraichir((PersonneListe) nouvellesDonnees);
|
1061 |
gduche |
48 |
mediateur.desactiverChargement();
|
656 |
gduche |
49 |
} else if (nouvellesDonnees instanceof Information) {
|
|
|
50 |
Information info = (Information) nouvellesDonnees;
|
277 |
jp_milcent |
51 |
// Affichage des éventuels messages de déboguage ou d'alerte
|
|
|
52 |
if (info.getMessages() != null && !info.getMessages().toString().equals("[]")) {
|
|
|
53 |
GWT.log(info.getMessages().toString(), null);
|
|
|
54 |
}
|
|
|
55 |
// Traitement en fonction des types d'information
|
|
|
56 |
if (info.getType().equals("liste_personne")) {
|
597 |
gduche |
57 |
panneauPersonneListe.rafraichir((PersonneListe) info.getDonnee(0));
|
277 |
jp_milcent |
58 |
Info.display("Chargement d'une liste de personnes", "");
|
618 |
gduche |
59 |
} else {
|
|
|
60 |
panneauPersonneListe.rafraichir(info);
|
|
|
61 |
}
|
127 |
gduche |
62 |
} else {
|
851 |
gduche |
63 |
GWT.log(mediateur.i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
|
127 |
gduche |
64 |
}
|
|
|
65 |
}
|
278 |
jp_milcent |
66 |
}
|