834 |
aurelien |
1 |
package org.tela_botanica.client.vues;
|
|
|
2 |
|
|
|
3 |
import org.tela_botanica.client.Mediateur;
|
|
|
4 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
|
|
5 |
import org.tela_botanica.client.modeles.Information;
|
|
|
6 |
import org.tela_botanica.client.modeles.Projet;
|
|
|
7 |
import org.tela_botanica.client.modeles.ProjetListe;
|
|
|
8 |
|
|
|
9 |
import com.extjs.gxt.ui.client.Style.LayoutRegion;
|
|
|
10 |
import com.extjs.gxt.ui.client.util.Margins;
|
|
|
11 |
import com.extjs.gxt.ui.client.widget.Info;
|
|
|
12 |
import com.extjs.gxt.ui.client.widget.LayoutContainer;
|
|
|
13 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayout;
|
|
|
14 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayoutData;
|
|
|
15 |
import com.google.gwt.core.client.GWT;
|
|
|
16 |
|
|
|
17 |
public class ProjetVue extends LayoutContainer implements Rafraichissable {
|
|
|
18 |
|
|
|
19 |
private ProjetListeVue panneauProjetListe;
|
|
|
20 |
private ProjetDetailVue panneauProjetDetail;
|
|
|
21 |
private Mediateur mediateur = null;
|
|
|
22 |
|
|
|
23 |
public ProjetVue(Mediateur mediateur) {
|
|
|
24 |
super();
|
|
|
25 |
this.mediateur = mediateur;
|
|
|
26 |
|
|
|
27 |
BorderLayout layout = new BorderLayout();
|
|
|
28 |
layout.setEnableState(false);
|
|
|
29 |
setLayout(layout);
|
|
|
30 |
|
|
|
31 |
panneauProjetListe = new ProjetListeVue(mediateur);
|
|
|
32 |
this.add(panneauProjetListe, new BorderLayoutData(LayoutRegion.CENTER));
|
|
|
33 |
|
|
|
34 |
panneauProjetDetail = new ProjetDetailVue(mediateur);
|
|
|
35 |
BorderLayoutData southData = new BorderLayoutData(LayoutRegion.SOUTH, .5f, 200, 1000);
|
|
|
36 |
southData.setSplit(true);
|
|
|
37 |
southData.setMargins(new Margins(5, 0, 0, 0));
|
|
|
38 |
this.add(panneauProjetDetail, southData);
|
|
|
39 |
}
|
|
|
40 |
|
|
|
41 |
public void rafraichir(Object nouvellesDonnees) {
|
|
|
42 |
if (nouvellesDonnees instanceof Projet) {
|
|
|
43 |
panneauProjetDetail.rafraichir((Projet) nouvellesDonnees);
|
|
|
44 |
} else if (nouvellesDonnees instanceof ProjetListe) {
|
|
|
45 |
panneauProjetListe.rafraichir((ProjetListe) nouvellesDonnees);
|
|
|
46 |
} else if (nouvellesDonnees instanceof Information) {
|
|
|
47 |
Information info = (Information) nouvellesDonnees;
|
|
|
48 |
// Affichage des éventuels messages de déboguage ou d'alerte
|
|
|
49 |
if (info.getMessages() != null && !info.getMessages().toString().equals("[]")) {
|
|
|
50 |
GWT.log(info.getMessages().toString(), null);
|
|
|
51 |
}
|
|
|
52 |
// Traitement en fonction des types d'information
|
|
|
53 |
if (info.getType().equals("liste_projet")) {
|
|
|
54 |
panneauProjetListe.rafraichir((ProjetListe) info.getDonnee(0));
|
|
|
55 |
} else {
|
|
|
56 |
panneauProjetListe.rafraichir(info);
|
|
|
57 |
}
|
|
|
58 |
} else {
|
851 |
gduche |
59 |
GWT.log(mediateur.i18nM.erreurRafraichir(nouvellesDonnees.getClass(), this.getClass()), null);
|
834 |
aurelien |
60 |
}
|
|
|
61 |
|
|
|
62 |
doLayout();
|
|
|
63 |
}
|
|
|
64 |
|
|
|
65 |
}
|