60 |
jpm |
1 |
package org.tela_botanica.client;
|
|
|
2 |
|
231 |
jp_milcent |
3 |
import java.util.Iterator;
|
134 |
jpm |
4 |
import java.util.List;
|
|
|
5 |
|
61 |
jpm |
6 |
import org.tela_botanica.client.composants.AideFenetre;
|
60 |
jpm |
7 |
import org.tela_botanica.client.composants.IdentificationFenetre;
|
66 |
jpm |
8 |
import org.tela_botanica.client.composants.ParametreFenetre;
|
358 |
jp_milcent |
9 |
import org.tela_botanica.client.i18n.Constantes;
|
466 |
gduche |
10 |
import org.tela_botanica.client.i18n.ErrorMessages;
|
119 |
jpm |
11 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
447 |
jp_milcent |
12 |
import org.tela_botanica.client.modeles.Collection;
|
453 |
jp_milcent |
13 |
import org.tela_botanica.client.modeles.CollectionListe;
|
61 |
jpm |
14 |
import org.tela_botanica.client.modeles.Configuration;
|
156 |
jp_milcent |
15 |
import org.tela_botanica.client.modeles.Information;
|
327 |
jp_milcent |
16 |
import org.tela_botanica.client.modeles.MenuApplicationId;
|
142 |
gduche |
17 |
import org.tela_botanica.client.modeles.Personne;
|
128 |
gduche |
18 |
import org.tela_botanica.client.modeles.PersonneListe;
|
245 |
jp_milcent |
19 |
import org.tela_botanica.client.modeles.Projet;
|
268 |
jp_milcent |
20 |
import org.tela_botanica.client.modeles.ProjetListe;
|
107 |
aurelien |
21 |
import org.tela_botanica.client.modeles.Publication;
|
|
|
22 |
import org.tela_botanica.client.modeles.PublicationListe;
|
60 |
jpm |
23 |
import org.tela_botanica.client.modeles.Structure;
|
209 |
jp_milcent |
24 |
import org.tela_botanica.client.modeles.StructureAPersonne;
|
231 |
jp_milcent |
25 |
import org.tela_botanica.client.modeles.StructureAPersonneListe;
|
188 |
jp_milcent |
26 |
import org.tela_botanica.client.modeles.StructureConservation;
|
69 |
jpm |
27 |
import org.tela_botanica.client.modeles.StructureListe;
|
195 |
jp_milcent |
28 |
import org.tela_botanica.client.modeles.StructureValorisation;
|
61 |
jpm |
29 |
import org.tela_botanica.client.modeles.Utilisateur;
|
91 |
jpm |
30 |
import org.tela_botanica.client.modeles.ValeurListe;
|
641 |
jp_milcent |
31 |
import org.tela_botanica.client.vues.CollectionForm;
|
447 |
jp_milcent |
32 |
import org.tela_botanica.client.vues.CollectionListeVue;
|
453 |
jp_milcent |
33 |
import org.tela_botanica.client.vues.CollectionVue;
|
444 |
jp_milcent |
34 |
import org.tela_botanica.client.vues.ContenuVue;
|
|
|
35 |
import org.tela_botanica.client.vues.EnteteVue;
|
641 |
jp_milcent |
36 |
import org.tela_botanica.client.vues.Formulaire;
|
438 |
gduche |
37 |
import org.tela_botanica.client.vues.PersonneForm;
|
444 |
jp_milcent |
38 |
import org.tela_botanica.client.vues.PublicationForm;
|
|
|
39 |
import org.tela_botanica.client.vues.StructureForm;
|
128 |
gduche |
40 |
import org.tela_botanica.client.vues.PersonneVue;
|
332 |
gduche |
41 |
import org.tela_botanica.client.vues.PopupChargement;
|
107 |
aurelien |
42 |
import org.tela_botanica.client.vues.PublicationVue;
|
443 |
jp_milcent |
43 |
import org.tela_botanica.client.vues.StatutVue;
|
60 |
jpm |
44 |
import org.tela_botanica.client.vues.StructureVue;
|
444 |
jp_milcent |
45 |
import org.tela_botanica.client.vues.MenuVue;
|
467 |
jp_milcent |
46 |
|
60 |
jpm |
47 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
48 |
import com.extjs.gxt.ui.client.Style.LayoutRegion;
|
315 |
gduche |
49 |
import com.extjs.gxt.ui.client.event.Listener;
|
502 |
gduche |
50 |
import com.extjs.gxt.ui.client.event.MessageBoxEvent;
|
60 |
jpm |
51 |
import com.extjs.gxt.ui.client.util.Margins;
|
646 |
jp_milcent |
52 |
import com.extjs.gxt.ui.client.widget.Component;
|
315 |
gduche |
53 |
import com.extjs.gxt.ui.client.widget.Dialog;
|
156 |
jp_milcent |
54 |
import com.extjs.gxt.ui.client.widget.Info;
|
315 |
gduche |
55 |
import com.extjs.gxt.ui.client.widget.MessageBox;
|
60 |
jpm |
56 |
import com.extjs.gxt.ui.client.widget.Viewport;
|
315 |
gduche |
57 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
60 |
jpm |
58 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayout;
|
|
|
59 |
import com.extjs.gxt.ui.client.widget.layout.BorderLayoutData;
|
91 |
jpm |
60 |
import com.google.gwt.core.client.GWT;
|
599 |
gduche |
61 |
import com.google.gwt.i18n.client.Dictionary;
|
60 |
jpm |
62 |
import com.google.gwt.user.client.Window;
|
|
|
63 |
import com.google.gwt.user.client.ui.RootPanel;
|
|
|
64 |
|
277 |
jp_milcent |
65 |
public class Mediateur implements Rafraichissable {
|
60 |
jpm |
66 |
|
358 |
jp_milcent |
67 |
private Viewport viewport;
|
119 |
jpm |
68 |
private Modele modele = null;
|
582 |
jp_milcent |
69 |
public static final Constantes i18nC = getI18nConstante();
|
|
|
70 |
public static final ErrorMessages i18nM = getI18nMessage();
|
119 |
jpm |
71 |
|
444 |
jp_milcent |
72 |
private EnteteVue panneauNord = null;
|
|
|
73 |
private MenuVue panneauOuest = null;
|
|
|
74 |
private ContenuVue panneauCentre = null;
|
443 |
jp_milcent |
75 |
private StatutVue panneauSud = null;
|
60 |
jpm |
76 |
|
358 |
jp_milcent |
77 |
private IdentificationFenetre fenetreIdentification = null;
|
|
|
78 |
|
60 |
jpm |
79 |
public Mediateur() {
|
|
|
80 |
// Enregistrement du Médiateur dans le Registre
|
|
|
81 |
Registry.register(RegistreId.MEDIATEUR, this);
|
466 |
gduche |
82 |
|
60 |
jpm |
83 |
// Création du Modèle qui s'enregistre lui même dans le Registre
|
119 |
jpm |
84 |
modele = new Modele();
|
535 |
jp_milcent |
85 |
|
60 |
jpm |
86 |
// Création du Viewport qui contient la disposition globale de l'application
|
|
|
87 |
viewport = new Viewport();
|
|
|
88 |
viewport.setLayout(new BorderLayout());
|
552 |
jp_milcent |
89 |
|
|
|
90 |
//Initialisation du Registre
|
|
|
91 |
initialiserRegistre();
|
|
|
92 |
|
60 |
jpm |
93 |
// Création des différents panneaux
|
|
|
94 |
creerPanneauNord();
|
|
|
95 |
creerPanneauOuest();
|
|
|
96 |
creerPanneauCentral();
|
358 |
jp_milcent |
97 |
creerPanneauSud();
|
535 |
jp_milcent |
98 |
|
|
|
99 |
// Connection de l'utilisateur
|
|
|
100 |
connecterUtilisateur(null, null);
|
|
|
101 |
|
60 |
jpm |
102 |
// Retour à GWT du Viewport une fois constuit
|
|
|
103 |
RootPanel.get().add(viewport);
|
|
|
104 |
}
|
|
|
105 |
|
156 |
jp_milcent |
106 |
//+----------------------------------------------------------------------------------------------------------------+
|
535 |
jp_milcent |
107 |
// GESTION de l'I18N et du REGISTRE
|
|
|
108 |
//+----------------------------------------------------------------------------------------------------------------+
|
582 |
jp_milcent |
109 |
protected static Constantes getI18nConstante() {
|
535 |
jp_milcent |
110 |
return GWT.create(Constantes.class);
|
|
|
111 |
}
|
|
|
112 |
|
582 |
jp_milcent |
113 |
protected static ErrorMessages getI18nMessage() {
|
535 |
jp_milcent |
114 |
return GWT.create(ErrorMessages.class);
|
|
|
115 |
}
|
|
|
116 |
|
|
|
117 |
protected void initialiserRegistre() {
|
|
|
118 |
Registry.register(RegistreId.APPLI_NOM, i18nC.appliNom());
|
|
|
119 |
Registry.register(RegistreId.APPLI_CODE, i18nC.appliCode());
|
|
|
120 |
Registry.register(RegistreId.APPLI_VERSION, i18nC.appliVersionNumero());
|
|
|
121 |
Registry.register(RegistreId.APPLI_REVISION, "$Revision: 501 $");
|
|
|
122 |
|
|
|
123 |
Registry.register(RegistreId.CONFIG, new Configuration());
|
537 |
jp_milcent |
124 |
Registry.register(RegistreId.POPUP_CHARGEMENT, new PopupChargement(this));
|
535 |
jp_milcent |
125 |
Registry.register(RegistreId.UTILISATEUR_COURANT, new Utilisateur(null, false));
|
|
|
126 |
Registry.register(RegistreId.PROJET_COURANT, new Projet());
|
|
|
127 |
}
|
|
|
128 |
|
|
|
129 |
//+----------------------------------------------------------------------------------------------------------------+
|
156 |
jp_milcent |
130 |
// GESTION des PANNEAUX PRINCIPAUX
|
|
|
131 |
//+----------------------------------------------------------------------------------------------------------------+
|
119 |
jpm |
132 |
|
60 |
jpm |
133 |
private void creerPanneauNord() {
|
444 |
jp_milcent |
134 |
panneauNord = new EnteteVue(this);
|
60 |
jpm |
135 |
|
|
|
136 |
BorderLayoutData regionNord = new BorderLayoutData(LayoutRegion.NORTH, 100);
|
|
|
137 |
regionNord.setCollapsible(true);
|
|
|
138 |
regionNord.setFloatable(true);
|
|
|
139 |
regionNord.setSplit(false);
|
|
|
140 |
regionNord.setMargins(new Margins(5, 5, 0, 5));
|
|
|
141 |
|
|
|
142 |
viewport.add(panneauNord, regionNord);
|
|
|
143 |
}
|
|
|
144 |
|
|
|
145 |
private void creerPanneauOuest() {
|
444 |
jp_milcent |
146 |
panneauOuest = new MenuVue(this);
|
60 |
jpm |
147 |
|
|
|
148 |
BorderLayoutData regionOuest = new BorderLayoutData(LayoutRegion.WEST, 200);
|
|
|
149 |
regionOuest.setSplit(true);
|
|
|
150 |
regionOuest.setCollapsible(true);
|
|
|
151 |
regionOuest.setMargins(new Margins(5));
|
|
|
152 |
|
|
|
153 |
viewport.add(panneauOuest, regionOuest);
|
|
|
154 |
}
|
|
|
155 |
|
|
|
156 |
private void creerPanneauCentral() {
|
444 |
jp_milcent |
157 |
panneauCentre = new ContenuVue(this);
|
60 |
jpm |
158 |
|
|
|
159 |
BorderLayoutData regionCentre = new BorderLayoutData(LayoutRegion.CENTER);
|
|
|
160 |
regionCentre.setMargins(new Margins(5, 5, 5, 0));
|
|
|
161 |
|
|
|
162 |
viewport.add(panneauCentre, regionCentre);
|
|
|
163 |
}
|
358 |
jp_milcent |
164 |
|
|
|
165 |
private void creerPanneauSud() {
|
443 |
jp_milcent |
166 |
panneauSud = new StatutVue();
|
358 |
jp_milcent |
167 |
|
369 |
jp_milcent |
168 |
BorderLayoutData regionSud = new BorderLayoutData(LayoutRegion.SOUTH, 20);
|
358 |
jp_milcent |
169 |
regionSud.setCollapsible(true);
|
|
|
170 |
regionSud.setFloatable(true);
|
|
|
171 |
regionSud.setSplit(false);
|
|
|
172 |
regionSud.setMargins(new Margins(0));
|
|
|
173 |
|
|
|
174 |
viewport.add(panneauSud, regionSud);
|
|
|
175 |
}
|
60 |
jpm |
176 |
|
369 |
jp_milcent |
177 |
public void actualiserPanneauCentral() {
|
|
|
178 |
panneauCentre.layout();
|
|
|
179 |
}
|
|
|
180 |
|
156 |
jp_milcent |
181 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
182 |
// GESTION du MENU
|
|
|
183 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
184 |
|
327 |
jp_milcent |
185 |
public void clicMenu(String codeMenuClique) {
|
358 |
jp_milcent |
186 |
activerChargement(codeMenuClique);
|
327 |
jp_milcent |
187 |
if (codeMenuClique.equals(MenuApplicationId.STRUCTURE)) {
|
646 |
jp_milcent |
188 |
selectionnerStructure(panneauCentre, null);
|
553 |
jp_milcent |
189 |
} else if (codeMenuClique.equals(MenuApplicationId.COLLECTION)) {
|
|
|
190 |
selectionnerCollection(panneauCentre, null);
|
|
|
191 |
} else if (codeMenuClique.equals(MenuApplicationId.PERSONNE)) {
|
599 |
gduche |
192 |
//modele.selectionnerPersonne(panneauCentre, null, getProjetId(), null);
|
|
|
193 |
selectionnerPersonne(panneauCentre, null, null);
|
327 |
jp_milcent |
194 |
} else if (codeMenuClique.equals(MenuApplicationId.PUBLICATION)) {
|
277 |
jp_milcent |
195 |
modele.selectionnerPublications(panneauCentre);
|
379 |
jp_milcent |
196 |
} else {
|
327 |
jp_milcent |
197 |
GWT.log("Non implémenté! Menu id : "+codeMenuClique, null);
|
60 |
jpm |
198 |
}
|
|
|
199 |
panneauCentre.layout();
|
|
|
200 |
}
|
|
|
201 |
|
358 |
jp_milcent |
202 |
public void activerChargement(String message) {
|
|
|
203 |
afficherPopinChargement();
|
369 |
jp_milcent |
204 |
panneauSud.showBusy(i18nC.chargement()+" "+message);
|
358 |
jp_milcent |
205 |
}
|
|
|
206 |
|
|
|
207 |
public void desactiverChargement() {
|
|
|
208 |
masquerPopinChargement();
|
|
|
209 |
panneauSud.clear();
|
|
|
210 |
}
|
646 |
jp_milcent |
211 |
|
156 |
jp_milcent |
212 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
213 |
// GESTION DES FENÊTRES
|
|
|
214 |
//+----------------------------------------------------------------------------------------------------------------+
|
60 |
jpm |
215 |
|
61 |
jpm |
216 |
public void ouvrirAide() {
|
|
|
217 |
AideFenetre aideFenetre = new AideFenetre();
|
|
|
218 |
aideFenetre.show();
|
66 |
jpm |
219 |
// FIXME : apparament le fade In/Fade Out pose problème sur les navigateurs...
|
|
|
220 |
//aideFenetre.el().fadeIn(FxConfig.NONE);
|
61 |
jpm |
221 |
}
|
|
|
222 |
|
|
|
223 |
public void ouvrirParametres() {
|
66 |
jpm |
224 |
ParametreFenetre parametresFenetre = new ParametreFenetre();
|
|
|
225 |
parametresFenetre.show();
|
61 |
jpm |
226 |
}
|
|
|
227 |
|
|
|
228 |
public void ouvrirIdentification() {
|
358 |
jp_milcent |
229 |
fenetreIdentification = new IdentificationFenetre();
|
|
|
230 |
fenetreIdentification.show();
|
61 |
jpm |
231 |
}
|
|
|
232 |
|
|
|
233 |
public void ouvrirApplis(String id) {
|
|
|
234 |
if (id.equals(ComposantId.MENU_CEL)) {
|
|
|
235 |
Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getCelUrl(), "Carnet en ligne", "");
|
|
|
236 |
} else if (id.equals(ComposantId.MENU_BEL)) {
|
134 |
jpm |
237 |
Window.open(((Configuration) Registry.get(RegistreId.CONFIG)).getCelUrl(), "Biblio en ligne", "");
|
61 |
jpm |
238 |
}
|
|
|
239 |
}
|
|
|
240 |
|
156 |
jp_milcent |
241 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
242 |
// GESTION de l'UTILISATEUR et de l'IDENTIFICATION
|
|
|
243 |
//+----------------------------------------------------------------------------------------------------------------+
|
245 |
jp_milcent |
244 |
/**
|
|
|
245 |
* Retourne l'identifiant de l'utilisateur courrant de l'application.
|
|
|
246 |
*/
|
156 |
jp_milcent |
247 |
public String getUtilisateurId() {
|
277 |
jp_milcent |
248 |
String id = null;
|
|
|
249 |
Utilisateur utilisateurCourant = (Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT);
|
|
|
250 |
if (!utilisateurCourant.getId().equals("")) {
|
|
|
251 |
id = utilisateurCourant.getId();
|
|
|
252 |
}
|
|
|
253 |
return id;
|
156 |
jp_milcent |
254 |
}
|
|
|
255 |
|
65 |
jpm |
256 |
public void connecterUtilisateur(String login, String mdp) {
|
277 |
jp_milcent |
257 |
modele.connecterUtilisateur(this, login, mdp);
|
64 |
jpm |
258 |
}
|
|
|
259 |
|
65 |
jpm |
260 |
public void deconnecterUtilisateur() {
|
277 |
jp_milcent |
261 |
modele.deconnecterUtilisateur(this);
|
64 |
jpm |
262 |
}
|
65 |
jpm |
263 |
|
64 |
jpm |
264 |
public void mettreAJourEtatIdentification(Utilisateur utilisateur) {
|
156 |
jp_milcent |
265 |
// Mise à jour du registre
|
277 |
jp_milcent |
266 |
Registry.register(RegistreId.UTILISATEUR_COURANT, utilisateur);
|
156 |
jp_milcent |
267 |
// Création de l'information de mise à jour de l'utilisateur
|
|
|
268 |
Information info = new Information("maj_utilisateur");
|
358 |
jp_milcent |
269 |
|
|
|
270 |
// Rafraichissement de la fenêtre d'Identification
|
|
|
271 |
if (fenetreIdentification != null) {
|
|
|
272 |
fenetreIdentification.rafraichir(info);
|
|
|
273 |
}
|
156 |
jp_milcent |
274 |
|
|
|
275 |
// Rafraichissement du panneau Nord
|
|
|
276 |
panneauNord.rafraichir(info);
|
|
|
277 |
|
|
|
278 |
// Rafraichissement du panneau Centre
|
646 |
jp_milcent |
279 |
if (panneauCentre != null) {
|
|
|
280 |
panneauCentre.rafraichir(info);
|
156 |
jp_milcent |
281 |
}
|
61 |
jpm |
282 |
}
|
66 |
jpm |
283 |
|
156 |
jp_milcent |
284 |
//+----------------------------------------------------------------------------------------------------------------+
|
447 |
jp_milcent |
285 |
// GESTION DES VALEURS ET LISTES
|
|
|
286 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
287 |
|
568 |
jp_milcent |
288 |
public void obtenirListeValeurEtRafraichir(Rafraichissable vueARafraichir, String listeId) {
|
|
|
289 |
modele.obtenirListeValeurs(vueARafraichir, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId));
|
453 |
jp_milcent |
290 |
}
|
447 |
jp_milcent |
291 |
|
453 |
jp_milcent |
292 |
public void obtenirValeurEtRafraichir(Rafraichissable vue, String listeId, String identifiantValeur) {
|
|
|
293 |
modele.obtenirValeur(vue, "abv", ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(listeId), identifiantValeur);
|
|
|
294 |
}
|
|
|
295 |
|
|
|
296 |
public void obtenirListeRegionsEtRafraichir(Rafraichissable vue, String strListeId, String strPays) {
|
|
|
297 |
modele.obtenirListeRegion(vue, ((Configuration) Registry.get(RegistreId.CONFIG)).getListeId(strListeId), strPays+".__");
|
|
|
298 |
}
|
|
|
299 |
|
447 |
jp_milcent |
300 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
301 |
// GESTION des PROJETS
|
|
|
302 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
303 |
|
|
|
304 |
/**
|
|
|
305 |
* Retourne l'identifiant du projet courrant de l'application.
|
|
|
306 |
*/
|
|
|
307 |
public String getProjetId() {
|
|
|
308 |
String id = null;
|
|
|
309 |
Projet projetCourant = (Projet) Registry.get(RegistreId.PROJET_COURANT);
|
|
|
310 |
if (projetCourant != null && !projetCourant.getId().equals("")) {
|
|
|
311 |
id = projetCourant.getId();
|
|
|
312 |
}
|
|
|
313 |
return id;
|
|
|
314 |
}
|
|
|
315 |
|
|
|
316 |
//Greg : ajout d'un écouteur pour le changement liste projet
|
552 |
jp_milcent |
317 |
public void selectionnerProjets(Rafraichissable vueARafraichir) {
|
|
|
318 |
modele.selectionnerProjets(vueARafraichir);
|
447 |
jp_milcent |
319 |
}
|
|
|
320 |
|
|
|
321 |
public void afficherListeProjets(ProjetListe projets) {
|
|
|
322 |
panneauOuest.rafraichir(projets);
|
|
|
323 |
}
|
|
|
324 |
|
|
|
325 |
public void selectionnerProjetCourant(Projet projetSelectionne) {
|
|
|
326 |
Registry.register(RegistreId.PROJET_COURANT, projetSelectionne);
|
646 |
jp_milcent |
327 |
if (panneauCentre.getContenu() instanceof PersonneVue) {
|
599 |
gduche |
328 |
//modele.selectionnerPersonne(contenuPanneauCentre, null, getProjetId(), null);
|
646 |
jp_milcent |
329 |
selectionnerPersonne(panneauCentre, null, getProjetId());
|
447 |
jp_milcent |
330 |
//FIXME Le rafraichissement du panneau ne se fait pas!
|
646 |
jp_milcent |
331 |
} else if (panneauCentre.getContenu() instanceof StructureVue) {
|
|
|
332 |
modele.selectionnerStructure(panneauCentre.getContenu(), getProjetId(), null);
|
|
|
333 |
} else if (panneauCentre.getContenu() instanceof CollectionVue) {
|
|
|
334 |
modele.selectionnerCollection(panneauCentre.getContenu(), getProjetId(), null);
|
447 |
jp_milcent |
335 |
}
|
|
|
336 |
}
|
|
|
337 |
|
|
|
338 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
339 |
// GESTION DES STRUCTURES
|
|
|
340 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
341 |
|
453 |
jp_milcent |
342 |
public void afficherListeStructures(StructureListe structuresACharger) {
|
646 |
jp_milcent |
343 |
if (!(panneauCentre.getContenu() instanceof StructureVue)) {
|
626 |
gduche |
344 |
panneauCentre.removeAll();
|
646 |
jp_milcent |
345 |
panneauCentre.add(new StructureVue(this));
|
626 |
gduche |
346 |
}
|
646 |
jp_milcent |
347 |
panneauCentre.getContenu().rafraichir(structuresACharger);
|
453 |
jp_milcent |
348 |
}
|
|
|
349 |
|
580 |
jp_milcent |
350 |
public void afficherFormStructure(String structureId) {
|
641 |
jp_milcent |
351 |
String mode = Formulaire.MODE_AJOUTER;
|
580 |
jp_milcent |
352 |
if (structureId != null) {
|
641 |
jp_milcent |
353 |
mode = Formulaire.MODE_MODIFIER;
|
580 |
jp_milcent |
354 |
}
|
|
|
355 |
|
|
|
356 |
panneauCentre.removeAll();
|
|
|
357 |
StructureForm structureForm = new StructureForm(this, mode);
|
|
|
358 |
panneauCentre.add(structureForm);
|
|
|
359 |
|
641 |
jp_milcent |
360 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
580 |
jp_milcent |
361 |
selectionnerStructure(structureForm, structureId);
|
|
|
362 |
selectionnerStructureAPersonne(structureForm, structureId, StructureAPersonne.ROLE_EQUIPE);
|
|
|
363 |
}
|
|
|
364 |
|
|
|
365 |
panneauCentre.layout();
|
|
|
366 |
}
|
|
|
367 |
|
447 |
jp_milcent |
368 |
public void clicListeStructure(Structure structure) {
|
646 |
jp_milcent |
369 |
panneauCentre.getContenu().rafraichir(structure);
|
609 |
jp_milcent |
370 |
if (structure != null && structure.getPersonnel() == null) {
|
646 |
jp_milcent |
371 |
selectionnerStructureAPersonne(panneauCentre.getContenu(), structure.getId(), StructureAPersonne.ROLE_EQUIPE);
|
447 |
jp_milcent |
372 |
} else {
|
|
|
373 |
GWT.log("OK personnel déjà chargé", null);
|
|
|
374 |
}
|
|
|
375 |
}
|
|
|
376 |
|
|
|
377 |
public void clicAjouterStructure() {
|
580 |
jp_milcent |
378 |
afficherFormStructure(null);
|
447 |
jp_milcent |
379 |
}
|
|
|
380 |
|
|
|
381 |
public void clicModifierStructure(List<Structure> structureSelection) {
|
|
|
382 |
if (structureSelection.size() == 0) {
|
|
|
383 |
Info.display("Information", "Veuillez sélectionner une structure.");
|
|
|
384 |
} else if (structureSelection.size() > 1) {
|
|
|
385 |
Info.display("Information", "Veuillez sélectionner une seule structure à la fois.");
|
|
|
386 |
} else if (structureSelection.size() == 1) {
|
609 |
jp_milcent |
387 |
afficherFormStructure(structureSelection.get(0).getId());
|
447 |
jp_milcent |
388 |
} else {
|
|
|
389 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierStructure() du Médiateur.");
|
|
|
390 |
}
|
|
|
391 |
}
|
|
|
392 |
|
|
|
393 |
public void clicSupprimerStructure(final Rafraichissable vue, final List<Structure> structureSelection) {
|
|
|
394 |
if (structureSelection.size() == 0) {
|
|
|
395 |
Info.display("Information", "Veuillez sélectionner une structure.");
|
|
|
396 |
} else if(structureSelection.size() > 0) {
|
609 |
jp_milcent |
397 |
String titre = "Supprimer des structures";
|
447 |
jp_milcent |
398 |
String message = "Êtes vous sur de vouloir supprimer les structures sélectionnées ?";
|
|
|
399 |
if (structureSelection.size() == 1) {
|
609 |
jp_milcent |
400 |
titre = "Supprimer une structure";
|
447 |
jp_milcent |
401 |
message = "Êtes vous sur de vouloir supprimer la structure sélectionnée ?";
|
|
|
402 |
}
|
|
|
403 |
|
502 |
gduche |
404 |
final Listener<MessageBoxEvent> suppressionEcouteur = new Listener<MessageBoxEvent>() {
|
|
|
405 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
406 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
407 |
Button btn = ce.getButtonClicked();
|
453 |
jp_milcent |
408 |
|
|
|
409 |
if (btn.getText().equals(dialog.yesText)) {
|
|
|
410 |
String idStr = "" ;
|
|
|
411 |
for(int i = 0 ; i < structureSelection.size() ; i++) {
|
609 |
jp_milcent |
412 |
idStr += structureSelection.get(i).getId()+",";
|
453 |
jp_milcent |
413 |
}
|
|
|
414 |
supprimerStructure(vue, idStr);
|
|
|
415 |
}
|
|
|
416 |
}
|
|
|
417 |
};
|
447 |
jp_milcent |
418 |
|
609 |
jp_milcent |
419 |
MessageBox.confirm(titre, message, suppressionEcouteur);
|
447 |
jp_milcent |
420 |
} else {
|
|
|
421 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerStructure() du Médiateur.");
|
|
|
422 |
}
|
|
|
423 |
}
|
|
|
424 |
|
|
|
425 |
public void selectionnerStructure(Rafraichissable vue, String structureId) {
|
453 |
jp_milcent |
426 |
modele.selectionnerStructure(vue, getProjetId(), structureId);
|
447 |
jp_milcent |
427 |
}
|
|
|
428 |
|
|
|
429 |
public void ajouterStructure(Rafraichissable vue, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
|
|
|
430 |
modele.ajouterStructure(vue, getUtilisateurId(), structure, conservation, valorisation);
|
|
|
431 |
}
|
|
|
432 |
|
|
|
433 |
public void modifierStructure(Rafraichissable vue, String structureId, Structure structure, StructureConservation conservation, StructureValorisation valorisation) {
|
|
|
434 |
modele.modifierStructure(vue, getUtilisateurId(), structureId, structure, conservation, valorisation);
|
|
|
435 |
}
|
453 |
jp_milcent |
436 |
|
|
|
437 |
public void supprimerStructure(Rafraichissable vueARafraichir, String IdentifiantsStructureSepareParVirgule) {
|
|
|
438 |
modele.supprimerStructure(vueARafraichir, getUtilisateurId(), IdentifiantsStructureSepareParVirgule);
|
|
|
439 |
}
|
|
|
440 |
|
447 |
jp_milcent |
441 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
442 |
// GESTION de la relation STRUCTURE A PERSONNE
|
|
|
443 |
public void selectionnerStructureAPersonne(Rafraichissable vue, String structureId, String roleId) {
|
|
|
444 |
GWT.log("Structure : "+structureId, null);
|
|
|
445 |
modele.selectionnerStructureAPersonne(vue, getUtilisateurId(), null, structureId, roleId);
|
|
|
446 |
}
|
|
|
447 |
|
453 |
jp_milcent |
448 |
public void ajouterStructureAPersonne(Rafraichissable vue, String structureId, StructureAPersonneListe personnelAjoute) {
|
|
|
449 |
if (personnelAjoute != null && personnelAjoute.size() > 0) {
|
|
|
450 |
for (Iterator<String> it = personnelAjoute.keySet().iterator(); it.hasNext();) {
|
|
|
451 |
modele.ajouterStructureAPersonne(vue, getUtilisateurId(), structureId, (StructureAPersonne) personnelAjoute.get(it.next()));
|
|
|
452 |
}
|
|
|
453 |
}
|
|
|
454 |
}
|
|
|
455 |
|
447 |
jp_milcent |
456 |
public void modifierStructureAPersonne(Rafraichissable vue, StructureAPersonneListe personnelModifie) {
|
|
|
457 |
if (personnelModifie != null && personnelModifie.size() > 0) {
|
|
|
458 |
GWT.log("Mediateur :modif", null);
|
|
|
459 |
for (Iterator<String> it = personnelModifie.keySet().iterator(); it.hasNext();) {
|
|
|
460 |
modele.modifierStructureAPersonne(vue, getUtilisateurId(), (StructureAPersonne) personnelModifie.get(it.next()));
|
|
|
461 |
}
|
|
|
462 |
}
|
|
|
463 |
}
|
|
|
464 |
|
|
|
465 |
public void supprimerStructureAPersonne(Rafraichissable vue, StructureAPersonneListe personnelSupprime) {
|
|
|
466 |
if (personnelSupprime != null && personnelSupprime.size() > 0) {
|
|
|
467 |
String idStrAPer = "" ;
|
|
|
468 |
for (Iterator<String> it = personnelSupprime.keySet().iterator(); it.hasNext();) {
|
|
|
469 |
idStrAPer += personnelSupprime.get(it.next()).getId()+"," ;
|
|
|
470 |
}
|
|
|
471 |
modele.supprimerStructureAPersonne(vue, getUtilisateurId(), idStrAPer);
|
|
|
472 |
}
|
|
|
473 |
}
|
|
|
474 |
|
|
|
475 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
476 |
// GESTION des COLLECTIONS
|
|
|
477 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
478 |
|
453 |
jp_milcent |
479 |
public void afficherListeCollections(CollectionListe collectionsACharger) {
|
646 |
jp_milcent |
480 |
if (!(panneauCentre.getContenu() instanceof CollectionVue)) {
|
626 |
gduche |
481 |
panneauCentre.removeAll();
|
646 |
jp_milcent |
482 |
panneauCentre.add(new CollectionVue(this));
|
|
|
483 |
}
|
626 |
gduche |
484 |
|
646 |
jp_milcent |
485 |
panneauCentre.getContenu().rafraichir(collectionsACharger);
|
453 |
jp_milcent |
486 |
}
|
|
|
487 |
|
641 |
jp_milcent |
488 |
public void afficherFormCollection(String collectionId) {
|
|
|
489 |
String mode = Formulaire.MODE_AJOUTER;
|
|
|
490 |
if (collectionId != null) {
|
|
|
491 |
mode = Formulaire.MODE_MODIFIER;
|
|
|
492 |
}
|
|
|
493 |
|
|
|
494 |
panneauCentre.removeAll();
|
|
|
495 |
CollectionForm collectionForm = new CollectionForm(this, mode);
|
|
|
496 |
panneauCentre.add(collectionForm);
|
|
|
497 |
|
|
|
498 |
if (mode.equals(Formulaire.MODE_MODIFIER)) {
|
|
|
499 |
selectionnerCollection(collectionForm, collectionId);
|
|
|
500 |
}
|
|
|
501 |
|
|
|
502 |
panneauCentre.layout();
|
|
|
503 |
}
|
|
|
504 |
|
453 |
jp_milcent |
505 |
public void clicListeCollection(Collection collectionCliquee) {
|
646 |
jp_milcent |
506 |
panneauCentre.getContenu().rafraichir(collectionCliquee);
|
453 |
jp_milcent |
507 |
}
|
|
|
508 |
|
447 |
jp_milcent |
509 |
public void clicAjouterCollection() {
|
|
|
510 |
// TODO Auto-generated method stub
|
|
|
511 |
|
|
|
512 |
}
|
|
|
513 |
|
|
|
514 |
public void clicModifierCollection(List<Collection> selection) {
|
641 |
jp_milcent |
515 |
if (selection.size() == 0) {
|
|
|
516 |
Info.display("Information", "Veuillez sélectionner une collection.");
|
|
|
517 |
} else if (selection.size() > 1) {
|
|
|
518 |
Info.display("Information", "Veuillez sélectionner une seule collection à la fois.");
|
|
|
519 |
} else if (selection.size() == 1) {
|
|
|
520 |
afficherFormCollection(selection.get(0).getId());
|
|
|
521 |
} else {
|
|
|
522 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicModifierCollection() du Médiateur.");
|
|
|
523 |
}
|
447 |
jp_milcent |
524 |
}
|
|
|
525 |
|
453 |
jp_milcent |
526 |
public void clicSupprimerCollection(CollectionListeVue collectionListeVue, List<Collection> collectionsASupprimer) {
|
447 |
jp_milcent |
527 |
// TODO Auto-generated method stub
|
|
|
528 |
|
|
|
529 |
}
|
|
|
530 |
|
467 |
jp_milcent |
531 |
public void selectionnerCollection(Rafraichissable vueARafraichir, String collectionId) {
|
|
|
532 |
modele.selectionnerCollection(vueARafraichir, getProjetId(), collectionId);
|
453 |
jp_milcent |
533 |
}
|
|
|
534 |
|
|
|
535 |
public void ajouterCollection(Rafraichissable vueARafraichir, Collection collection) {
|
|
|
536 |
modele.ajouterCollection(vueARafraichir, getUtilisateurId(), collection);
|
|
|
537 |
}
|
|
|
538 |
|
|
|
539 |
public void modifierCollection(Rafraichissable vueARafraichir, Collection collection) {
|
|
|
540 |
modele.modifierCollection(vueARafraichir, getUtilisateurId(), collection);
|
|
|
541 |
}
|
|
|
542 |
|
|
|
543 |
public void supprimerCollection(Rafraichissable vueARafraichir, String IdentifiantsCollectionSepareParVirgule) {
|
|
|
544 |
modele.supprimerCollection(vueARafraichir, getUtilisateurId(), IdentifiantsCollectionSepareParVirgule);
|
|
|
545 |
}
|
|
|
546 |
|
447 |
jp_milcent |
547 |
//+----------------------------------------------------------------------------------------------------------------+
|
156 |
jp_milcent |
548 |
// GESTION DES PERSONNES
|
|
|
549 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
550 |
|
|
|
551 |
public void clicListePersonne(Personne personne) {
|
646 |
jp_milcent |
552 |
panneauCentre.getContenu().rafraichir(personne);
|
69 |
jpm |
553 |
}
|
|
|
554 |
|
278 |
jp_milcent |
555 |
public void afficherListePersonnes(PersonneListe personnesACharger) {
|
646 |
jp_milcent |
556 |
if (!(panneauCentre.getContenu() instanceof PersonneVue)) {
|
626 |
gduche |
557 |
panneauCentre.removeAll();
|
646 |
jp_milcent |
558 |
panneauCentre.add(new PersonneVue(this));
|
626 |
gduche |
559 |
}
|
599 |
gduche |
560 |
|
646 |
jp_milcent |
561 |
panneauCentre.getContenu().rafraichir(personnesACharger);
|
156 |
jp_milcent |
562 |
}
|
|
|
563 |
|
128 |
gduche |
564 |
public void clicAjouterPersonne() {
|
332 |
gduche |
565 |
afficherPopinChargement();
|
|
|
566 |
|
277 |
jp_milcent |
567 |
panneauCentre.removeAll();
|
454 |
gduche |
568 |
PersonneForm formulairePersonneVue = new PersonneForm(PersonneForm.MODE_AJOUTER);
|
277 |
jp_milcent |
569 |
panneauCentre.add(formulairePersonneVue);
|
|
|
570 |
panneauCentre.layout();
|
128 |
gduche |
571 |
}
|
|
|
572 |
|
285 |
gduche |
573 |
public void clicModifierPersonne(Personne personne) {
|
|
|
574 |
if (personne!=null) {
|
|
|
575 |
panneauCentre.removeAll();
|
454 |
gduche |
576 |
PersonneForm formulairePersonneVue = new PersonneForm(PersonneForm.MODE_MODIFIER);
|
285 |
gduche |
577 |
panneauCentre.add(formulairePersonneVue);
|
349 |
gduche |
578 |
|
599 |
gduche |
579 |
selectionnerPersonne(formulairePersonneVue, personne, null);
|
349 |
gduche |
580 |
|
|
|
581 |
panneauCentre.layout();
|
285 |
gduche |
582 |
}
|
|
|
583 |
}
|
599 |
gduche |
584 |
|
|
|
585 |
public void selectionnerPersonne(Rafraichissable vue, Personne personne, String projetId) {
|
|
|
586 |
int nbElements = Integer.valueOf(((Dictionary) Dictionary.getDictionary("configuration")).get("nbElementsPage"));
|
|
|
587 |
selectionnerPersonne(vue, personne, projetId, 0, nbElements);
|
|
|
588 |
}
|
285 |
gduche |
589 |
|
599 |
gduche |
590 |
public void selectionnerPersonne(Rafraichissable vue, Personne personne, String projetId, int start, int nbElements) {
|
560 |
gduche |
591 |
String personneId = null;
|
|
|
592 |
if (personne!=null) {
|
|
|
593 |
personneId = personne.getId();
|
|
|
594 |
}
|
599 |
gduche |
595 |
modele.selectionnerPersonne(vue, personneId, projetId, null, start, nbElements);
|
349 |
gduche |
596 |
}
|
285 |
gduche |
597 |
|
315 |
gduche |
598 |
public void clicSupprimerPersonne(final Rafraichissable vue,final List<Personne> personneSelection) {
|
663 |
gduche |
599 |
|
|
|
600 |
//Empecher suppression utilisateur
|
|
|
601 |
for (int i=0; i < personneSelection.size(); i++) {
|
|
|
602 |
Personne courante = personneSelection.get(i);
|
|
|
603 |
if (courante.getId().equals(getUtilisateurId())) {
|
|
|
604 |
Info.display("Information", "Vous ne pouvez supprimer votre compte");
|
|
|
605 |
personneSelection.remove(courante);
|
|
|
606 |
}
|
|
|
607 |
}
|
|
|
608 |
|
245 |
jp_milcent |
609 |
if (personneSelection.size() == 0) {
|
|
|
610 |
Info.display("Information", "Veuillez sélectionner une personne.");
|
|
|
611 |
} else if(personneSelection.size() > 0) {
|
|
|
612 |
String message = "Êtes vous sur de vouloir supprimer les personnes sélectionnées ?";
|
|
|
613 |
if (personneSelection.size() == 1) {
|
|
|
614 |
message = "Êtes vous sur de vouloir supprimer la personne sélectionnée ?";
|
|
|
615 |
}
|
315 |
gduche |
616 |
|
502 |
gduche |
617 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
618 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
619 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
620 |
Button btn = ce.getButtonClicked();
|
327 |
jp_milcent |
621 |
|
|
|
622 |
if (btn.getText().equals(dialog.yesText)) {
|
|
|
623 |
String idStr = "" ;
|
347 |
gduche |
624 |
Iterator<Personne> itPersonne = personneSelection.iterator();
|
|
|
625 |
while (itPersonne.hasNext()) {
|
|
|
626 |
Personne personneCourante = itPersonne.next();
|
|
|
627 |
idStr += personneCourante.getId();
|
389 |
gduche |
628 |
idStr +=",";
|
327 |
jp_milcent |
629 |
}
|
329 |
jp_milcent |
630 |
modele.supprimerPersonne(vue, idStr);
|
327 |
jp_milcent |
631 |
}
|
|
|
632 |
}
|
|
|
633 |
};
|
453 |
jp_milcent |
634 |
|
315 |
gduche |
635 |
MessageBox.confirm("Supprimer une personne", message, listenerSuppression);
|
245 |
jp_milcent |
636 |
} else {
|
|
|
637 |
Info.display("Erreur", "Une erreur est survenue dans la méthode clicSupprimerPersonne() du Médiateur.");
|
|
|
638 |
}
|
|
|
639 |
}
|
277 |
jp_milcent |
640 |
|
599 |
gduche |
641 |
public void selectionnerPersonneParNomComplet(Rafraichissable vueARafraichir, String projetId, String nomComplet) {
|
|
|
642 |
modele.selectionnerPersonne(vueARafraichir, null, projetId, nomComplet, 0, -1);
|
277 |
jp_milcent |
643 |
}
|
245 |
jp_milcent |
644 |
|
389 |
gduche |
645 |
public void enregistrerPersonne(Rafraichissable vue, Personne personne){
|
429 |
gduche |
646 |
if (personne.getId()!=null && !personne.getId().trim().equals("")) {
|
|
|
647 |
modele.modifierPersonne(vue, personne);
|
|
|
648 |
} else {
|
|
|
649 |
modele.ajouterPersonne(vue, personne);
|
|
|
650 |
}
|
389 |
gduche |
651 |
}
|
|
|
652 |
|
156 |
jp_milcent |
653 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
654 |
// GESTION DES PUBLICATIONS
|
|
|
655 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
656 |
|
107 |
aurelien |
657 |
public void afficherListePublication(PublicationListe nouvelleDonnees) {
|
646 |
jp_milcent |
658 |
if (!(panneauCentre.getContenu() instanceof PersonneVue)) {
|
626 |
gduche |
659 |
panneauCentre.removeAll();
|
646 |
jp_milcent |
660 |
panneauCentre.add(new PublicationVue(this));
|
626 |
gduche |
661 |
}
|
|
|
662 |
|
646 |
jp_milcent |
663 |
panneauCentre.getContenu().rafraichir(nouvelleDonnees);
|
107 |
aurelien |
664 |
}
|
|
|
665 |
|
|
|
666 |
public void clicListePublication(Publication publication) {
|
379 |
jp_milcent |
667 |
panneauCentre.rafraichir(publication);
|
107 |
aurelien |
668 |
}
|
|
|
669 |
|
|
|
670 |
public void clicAjouterPublication() {
|
223 |
aurelien |
671 |
panneauCentre.removeAll();
|
444 |
jp_milcent |
672 |
PublicationForm publicationForm = new PublicationForm();
|
|
|
673 |
panneauCentre.add(publicationForm);
|
223 |
aurelien |
674 |
panneauCentre.setId(ComposantId.PANNEAU_FORM_PUBLICATION);
|
|
|
675 |
panneauCentre.layout();
|
107 |
aurelien |
676 |
}
|
156 |
jp_milcent |
677 |
|
245 |
jp_milcent |
678 |
public void clicModifierPublication(List<Publication> publicationListe) {
|
|
|
679 |
if(publicationListe.size() <= 0) {
|
315 |
gduche |
680 |
MessageBox.alert("Attention", "Vous devez sélectionner une publication", null);
|
379 |
jp_milcent |
681 |
} else {
|
245 |
jp_milcent |
682 |
Publication pubAModifier = publicationListe.get(publicationListe.size() -1);
|
|
|
683 |
panneauCentre.removeAll();
|
444 |
jp_milcent |
684 |
PublicationForm publicationForm = new PublicationForm();
|
|
|
685 |
panneauCentre.add(publicationForm);
|
245 |
jp_milcent |
686 |
panneauCentre.setId(ComposantId.PANNEAU_FORM_PUBLICATION);
|
|
|
687 |
panneauCentre.layout();
|
444 |
jp_milcent |
688 |
publicationForm.rafraichir(pubAModifier);
|
245 |
jp_milcent |
689 |
}
|
|
|
690 |
}
|
|
|
691 |
|
315 |
gduche |
692 |
public void clicSupprimerPublication(final List<Publication> publicationListe) {
|
453 |
jp_milcent |
693 |
if (publicationListe.size() <= 0) {
|
315 |
gduche |
694 |
MessageBox.alert("Attention", "Vous devez sélectionner une publication", null);
|
379 |
jp_milcent |
695 |
} else {
|
453 |
jp_milcent |
696 |
String message = "Voulez-vous vraiment supprimer ces publication ?";
|
245 |
jp_milcent |
697 |
if(publicationListe.size() == 1) {
|
|
|
698 |
message = "Voulez-vous vraiment supprimer cette publication ?";
|
|
|
699 |
}
|
315 |
gduche |
700 |
|
502 |
gduche |
701 |
final Listener<MessageBoxEvent> listenerSuppression = new Listener<MessageBoxEvent>() {
|
|
|
702 |
public void handleEvent(MessageBoxEvent ce) {
|
|
|
703 |
Dialog dialog = (Dialog) ce.getComponent();
|
|
|
704 |
Button btn = ce.getButtonClicked();
|
315 |
gduche |
705 |
|
379 |
jp_milcent |
706 |
if (btn.getText().equals(dialog.yesText)) {
|
646 |
jp_milcent |
707 |
modele.supprimerPublication(panneauCentre.getContenu(), getUtilisateurId(),publicationListe);
|
315 |
gduche |
708 |
}
|
|
|
709 |
}
|
|
|
710 |
};
|
|
|
711 |
|
|
|
712 |
MessageBox.confirm("Supprimer une publication", message, listenerSuppression);
|
245 |
jp_milcent |
713 |
}
|
|
|
714 |
}
|
|
|
715 |
|
444 |
jp_milcent |
716 |
public void ajouterPublication(PublicationForm publicationForm, Publication publi) {
|
646 |
jp_milcent |
717 |
modele.ajouterPublication(panneauCentre.getContenu(), getUtilisateurId(), publi);
|
245 |
jp_milcent |
718 |
}
|
|
|
719 |
|
444 |
jp_milcent |
720 |
public void modifierPublication(PublicationForm publicationForm, Publication publi) {
|
646 |
jp_milcent |
721 |
modele.modifierPublication(panneauCentre.getContenu(), getUtilisateurId(), publi);
|
245 |
jp_milcent |
722 |
}
|
|
|
723 |
|
453 |
jp_milcent |
724 |
public void clicObtenirListeEditeurs(Rafraichissable vueARafraichir) {
|
|
|
725 |
modele.selectionnerStructure(vueARafraichir, null, null);
|
245 |
jp_milcent |
726 |
}
|
|
|
727 |
|
453 |
jp_milcent |
728 |
public void clicObtenirListeAuteurs(Rafraichissable vueARafraichir) {
|
599 |
gduche |
729 |
//modele.selectionnerPersonne(vueARafraichir, null, null, null);
|
|
|
730 |
selectionnerPersonne(vueARafraichir, null, null);
|
245 |
jp_milcent |
731 |
}
|
|
|
732 |
|
156 |
jp_milcent |
733 |
//+----------------------------------------------------------------------------------------------------------------+
|
447 |
jp_milcent |
734 |
// RAFRAICHISSEMENT
|
156 |
jp_milcent |
735 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
736 |
|
277 |
jp_milcent |
737 |
public void rafraichir(Object nouvelleDonnees) {
|
|
|
738 |
if (nouvelleDonnees instanceof Utilisateur) {
|
|
|
739 |
mettreAJourEtatIdentification((Utilisateur) nouvelleDonnees);
|
278 |
jp_milcent |
740 |
} else {
|
|
|
741 |
GWT.log("Pas de correspondance dans la méthode rafraichir() de la classe "+this.getClass(), null);
|
277 |
jp_milcent |
742 |
}
|
|
|
743 |
}
|
281 |
gduche |
744 |
|
453 |
jp_milcent |
745 |
//+----------------------------------------------------------------------------------------------------------------+
|
|
|
746 |
// GESTION du STATUT
|
|
|
747 |
//+----------------------------------------------------------------------------------------------------------------+
|
288 |
gduche |
748 |
|
332 |
gduche |
749 |
public void afficherPopinChargement() {
|
|
|
750 |
((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).center();
|
|
|
751 |
}
|
453 |
jp_milcent |
752 |
|
332 |
gduche |
753 |
public void masquerPopinChargement() {
|
|
|
754 |
((PopupChargement) Registry.get(RegistreId.POPUP_CHARGEMENT)).hide();
|
|
|
755 |
}
|
447 |
jp_milcent |
756 |
|
277 |
jp_milcent |
757 |
}
|