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