127 |
gduche |
1 |
package org.tela_botanica.client.vues;
|
|
|
2 |
|
|
|
3 |
import org.tela_botanica.client.RegistreId;
|
|
|
4 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
|
|
5 |
import org.tela_botanica.client.modeles.PersonneListe;
|
|
|
6 |
import org.tela_botanica.client.modeles.StructureListe;
|
|
|
7 |
|
|
|
8 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
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.LayoutContainer;
|
|
|
12 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayout;
|
|
|
13 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayoutData;
|
|
|
14 |
import com.google.gwt.user.client.Window;
|
|
|
15 |
|
|
|
16 |
public class PersonneVue extends LayoutContainer implements Rafraichissable {
|
|
|
17 |
|
|
|
18 |
private PanneauPersonneListe panneauPersonneListe;
|
150 |
gduche |
19 |
private PersonneDetailPanneauVue panneauPersonneDetail;
|
127 |
gduche |
20 |
|
|
|
21 |
public PersonneVue() {
|
|
|
22 |
BorderLayout layout = new BorderLayout();
|
|
|
23 |
layout.setEnableState(false);
|
|
|
24 |
setLayout(layout);
|
|
|
25 |
|
|
|
26 |
panneauPersonneListe = new PanneauPersonneListe();
|
|
|
27 |
this.add(panneauPersonneListe, new BorderLayoutData(LayoutRegion.CENTER));
|
|
|
28 |
|
150 |
gduche |
29 |
panneauPersonneDetail = new PersonneDetailPanneauVue();
|
127 |
gduche |
30 |
BorderLayoutData southData = new BorderLayoutData(LayoutRegion.SOUTH, .5f, 200, 1000);
|
|
|
31 |
southData.setSplit(true);
|
|
|
32 |
southData.setMargins(new Margins(5, 0, 0, 0));
|
150 |
gduche |
33 |
this.add(panneauPersonneDetail, southData);
|
127 |
gduche |
34 |
}
|
|
|
35 |
|
|
|
36 |
public void rafraichir(Object nouvelleDonnees) {
|
|
|
37 |
if (nouvelleDonnees instanceof PersonneListe) {
|
|
|
38 |
remplirListe((PersonneListe) nouvelleDonnees);
|
|
|
39 |
} else {
|
|
|
40 |
Window.alert("Problème!");
|
|
|
41 |
}
|
|
|
42 |
}
|
|
|
43 |
|
|
|
44 |
private void remplirListe(PersonneListe listeInstitutions) {
|
|
|
45 |
|
|
|
46 |
LayoutContainer panneauCentre = (LayoutContainer) Registry.get(RegistreId.PANNEAU_CENTRE);
|
|
|
47 |
panneauPersonneListe.rafraichir(listeInstitutions);
|
|
|
48 |
//panneauInstitutionDetail.rafraichir(listeInstitutions);*/
|
|
|
49 |
panneauCentre.layout();
|
|
|
50 |
}
|
|
|
51 |
|
|
|
52 |
}
|