60 |
jpm |
1 |
package org.tela_botanica.client.vues;
|
|
|
2 |
|
307 |
jp_milcent |
3 |
import org.tela_botanica.client.ComposantClass;
|
61 |
jpm |
4 |
import org.tela_botanica.client.ComposantId;
|
|
|
5 |
import org.tela_botanica.client.Mediateur;
|
60 |
jpm |
6 |
import org.tela_botanica.client.RegistreId;
|
61 |
jpm |
7 |
import org.tela_botanica.client.interfaces.Rafraichissable;
|
156 |
jp_milcent |
8 |
import org.tela_botanica.client.modeles.Information;
|
61 |
jpm |
9 |
import org.tela_botanica.client.modeles.Utilisateur;
|
60 |
jpm |
10 |
|
|
|
11 |
import com.extjs.gxt.ui.client.Registry;
|
|
|
12 |
import com.extjs.gxt.ui.client.Style;
|
|
|
13 |
import com.extjs.gxt.ui.client.Style.Orientation;
|
|
|
14 |
import com.extjs.gxt.ui.client.event.ComponentEvent;
|
|
|
15 |
import com.extjs.gxt.ui.client.event.SelectionListener;
|
66 |
jpm |
16 |
import com.extjs.gxt.ui.client.util.Format;
|
|
|
17 |
import com.extjs.gxt.ui.client.util.Params;
|
60 |
jpm |
18 |
import com.extjs.gxt.ui.client.widget.HtmlContainer;
|
|
|
19 |
import com.extjs.gxt.ui.client.widget.Info;
|
|
|
20 |
import com.extjs.gxt.ui.client.widget.LayoutContainer;
|
|
|
21 |
import com.extjs.gxt.ui.client.widget.button.Button;
|
|
|
22 |
import com.extjs.gxt.ui.client.widget.button.ButtonBar;
|
|
|
23 |
import com.extjs.gxt.ui.client.widget.button.SplitButton;
|
|
|
24 |
import com.extjs.gxt.ui.client.widget.layout.RowData;
|
|
|
25 |
import com.extjs.gxt.ui.client.widget.layout.RowLayout;
|
|
|
26 |
import com.extjs.gxt.ui.client.widget.menu.Menu;
|
|
|
27 |
import com.extjs.gxt.ui.client.widget.menu.MenuItem;
|
156 |
jp_milcent |
28 |
import com.google.gwt.core.client.GWT;
|
60 |
jpm |
29 |
|
61 |
jpm |
30 |
public class EntetePanneauVue extends LayoutContainer implements Rafraichissable {
|
60 |
jpm |
31 |
|
61 |
jpm |
32 |
private ButtonBar barreBoutons = null;
|
|
|
33 |
private Button identificationBouton = null;
|
307 |
jp_milcent |
34 |
private String identificationInfoTpl = null;
|
66 |
jpm |
35 |
private HtmlContainer identificationInfoHtml = null;
|
61 |
jpm |
36 |
|
60 |
jpm |
37 |
public EntetePanneauVue() {
|
|
|
38 |
setLayout(new RowLayout(Orientation.HORIZONTAL));
|
307 |
jp_milcent |
39 |
setId(ComposantId.PANNEAU_ENTETE);
|
60 |
jpm |
40 |
|
|
|
41 |
// TODO : ajouter la gestion de l'identification
|
|
|
42 |
HtmlContainer html = new HtmlContainer();
|
|
|
43 |
StringBuffer sb = new StringBuffer();
|
307 |
jp_milcent |
44 |
sb.append(" <div id='"+ComposantId.DIV_TITRE+"'>Collections en Ligne Demo</div>");
|
60 |
jpm |
45 |
html.setHtml(sb.toString());
|
|
|
46 |
html.setEnableState(false);
|
|
|
47 |
|
66 |
jpm |
48 |
identificationInfoHtml = new HtmlContainer();
|
307 |
jp_milcent |
49 |
identificationInfoTpl = "<div id='"+ComposantId.DIV_IDENTIFICATION+"'>{0}</div>";
|
66 |
jpm |
50 |
identificationInfoHtml.setHtml(Format.substitute(identificationInfoTpl, (new Params()).add("Mode anonyme")));
|
|
|
51 |
identificationInfoHtml.setEnableState(false);
|
61 |
jpm |
52 |
|
|
|
53 |
// Création des écouteurs
|
|
|
54 |
SelectionListener<ComponentEvent> boutonEcouteur = new SelectionListener<ComponentEvent>() {
|
60 |
jpm |
55 |
public void componentSelected(ComponentEvent ce) {
|
61 |
jpm |
56 |
Button btn = (Button) ce.component;
|
|
|
57 |
Info.display(btn.getText()+" - "+btn.getId(), "Chargement de la fenêtre '{0}' en cours...", btn.getText());
|
|
|
58 |
if (btn.getId().equals(ComposantId.BTN_AIDE)) {
|
|
|
59 |
((Mediateur) Registry.get(RegistreId.MEDIATEUR)).ouvrirAide();
|
|
|
60 |
} else if (btn.getId().equals(ComposantId.BTN_PARAMETRES)) {
|
|
|
61 |
((Mediateur) Registry.get(RegistreId.MEDIATEUR)).ouvrirParametres();
|
65 |
jpm |
62 |
} else if (btn.getId().equals(ComposantId.BTN_CONNEXION)) {
|
61 |
jpm |
63 |
((Mediateur) Registry.get(RegistreId.MEDIATEUR)).ouvrirIdentification();
|
65 |
jpm |
64 |
} else if (btn.getId().equals(ComposantId.BTN_DECONNEXION)) {
|
|
|
65 |
((Mediateur) Registry.get(RegistreId.MEDIATEUR)).deconnecterUtilisateur();
|
61 |
jpm |
66 |
} else if (btn.getId().equals(ComposantId.BTN_APPLIS)) {
|
|
|
67 |
btn.getMenu().show(btn);
|
|
|
68 |
}
|
60 |
jpm |
69 |
}
|
|
|
70 |
};
|
|
|
71 |
|
61 |
jpm |
72 |
barreBoutons = new ButtonBar();
|
|
|
73 |
barreBoutons.setButtonAlign(Style.HorizontalAlignment.RIGHT);
|
357 |
jp_milcent |
74 |
|
|
|
75 |
identificationBouton = new Button("Identifiez vous...", boutonEcouteur);
|
|
|
76 |
identificationBouton.setId(ComposantId.BTN_CONNEXION);
|
|
|
77 |
barreBoutons.add(identificationBouton);
|
|
|
78 |
|
61 |
jpm |
79 |
Button parametresBouton = new Button("Paramêtres", boutonEcouteur);
|
|
|
80 |
parametresBouton.setId(ComposantId.BTN_PARAMETRES);
|
307 |
jp_milcent |
81 |
parametresBouton.setIconStyle(ComposantClass.ICONE_PARAMETRE);
|
61 |
jpm |
82 |
barreBoutons.add(parametresBouton);
|
357 |
jp_milcent |
83 |
|
61 |
jpm |
84 |
Button aideBouton = new Button("Aide", boutonEcouteur);
|
|
|
85 |
aideBouton.setId(ComposantId.BTN_AIDE);
|
307 |
jp_milcent |
86 |
aideBouton.setIconStyle(ComposantClass.ICONE_AIDE);
|
61 |
jpm |
87 |
barreBoutons.add(aideBouton);
|
357 |
jp_milcent |
88 |
|
61 |
jpm |
89 |
SplitButton applisBouton = new SplitButton("Changez d'application...");
|
|
|
90 |
applisBouton.setId(ComposantId.BTN_APPLIS);
|
|
|
91 |
applisBouton.addSelectionListener(boutonEcouteur);
|
60 |
jpm |
92 |
|
61 |
jpm |
93 |
Menu menu = new Menu();
|
|
|
94 |
MenuItem menuCel = new MenuItem("Carnet en ligne", new SelectionListener<ComponentEvent>() {
|
|
|
95 |
@Override
|
|
|
96 |
public void componentSelected(ComponentEvent ce) {
|
|
|
97 |
Menu me = (Menu) ce.component;
|
|
|
98 |
MenuItem mi = (MenuItem) me.getItemByItemId(ComposantId.MENU_CEL);
|
|
|
99 |
Info.display(mi.getId()+" - "+mi.getText(), "Chargement du menu '{0}' en cours...", mi.getId());
|
|
|
100 |
((Mediateur) Registry.get(RegistreId.MEDIATEUR)).ouvrirApplis(ComposantId.MENU_CEL);
|
|
|
101 |
}
|
|
|
102 |
});
|
|
|
103 |
menuCel.setId(ComposantId.MENU_CEL);
|
307 |
jp_milcent |
104 |
menuCel.setIconStyle(ComposantClass.ICONE_CEL);
|
61 |
jpm |
105 |
menu.add(menuCel);
|
|
|
106 |
MenuItem menuBel = new MenuItem("Biblio en ligne", new SelectionListener<ComponentEvent>() {
|
|
|
107 |
@Override
|
|
|
108 |
public void componentSelected(ComponentEvent ce) {
|
|
|
109 |
Menu me = (Menu) ce.component;
|
|
|
110 |
MenuItem mi = (MenuItem) me.getItemByItemId(ComposantId.MENU_BEL);
|
|
|
111 |
Info.display(mi.getId()+" - "+mi.getText(), "Chargement du menu '{0}' en cours...", mi.getId());
|
|
|
112 |
((Mediateur) Registry.get(RegistreId.MEDIATEUR)).ouvrirApplis(ComposantId.MENU_BEL);
|
|
|
113 |
}
|
|
|
114 |
});
|
|
|
115 |
menuBel.setId(ComposantId.MENU_BEL);
|
307 |
jp_milcent |
116 |
menuBel.setIconStyle(ComposantClass.ICONE_BEL);
|
61 |
jpm |
117 |
menu.add(menuBel);
|
|
|
118 |
|
69 |
jpm |
119 |
applisBouton.setMenu(menu);
|
307 |
jp_milcent |
120 |
applisBouton.setIconStyle(ComposantClass.ICONE_BASCULE);
|
61 |
jpm |
121 |
barreBoutons.add(applisBouton);
|
|
|
122 |
|
|
|
123 |
add(html, new RowData(.3, 1));
|
357 |
jp_milcent |
124 |
add(identificationInfoHtml, new RowData(.3, 1));
|
|
|
125 |
add(barreBoutons, new RowData(.4, 1));
|
60 |
jpm |
126 |
}
|
61 |
jpm |
127 |
|
|
|
128 |
public void rafraichir(Object nouvelleDonnees) {
|
156 |
jp_milcent |
129 |
if (nouvelleDonnees instanceof Information) {
|
|
|
130 |
Information info = (Information) nouvelleDonnees;
|
|
|
131 |
if (info.getType().equals("maj_utilisateur")) {
|
277 |
jp_milcent |
132 |
Utilisateur utilisateur = ((Utilisateur) Registry.get(RegistreId.UTILISATEUR_COURANT));
|
156 |
jp_milcent |
133 |
if (utilisateur.isIdentifie() == true) {
|
|
|
134 |
identificationInfoHtml.setHtml(Format.substitute(identificationInfoTpl, (new Params()).add("Bienvenue : "+utilisateur.getNomComplet())));
|
|
|
135 |
identificationBouton.setText("Deconnexion");
|
307 |
jp_milcent |
136 |
identificationBouton.setIconStyle(ComposantClass.ICONE_DECONNEXION);
|
156 |
jp_milcent |
137 |
identificationBouton.setId(ComposantId.BTN_DECONNEXION);
|
|
|
138 |
} else {
|
|
|
139 |
identificationInfoHtml.setHtml(Format.substitute(identificationInfoTpl, (new Params()).add("Mode anonyme")));
|
|
|
140 |
identificationBouton.setText("Identifiez vous...");
|
307 |
jp_milcent |
141 |
identificationBouton.setIconStyle(ComposantClass.ICONE_CONNEXION);
|
156 |
jp_milcent |
142 |
identificationBouton.setId(ComposantId.BTN_CONNEXION);
|
|
|
143 |
}
|
65 |
jpm |
144 |
}
|
156 |
jp_milcent |
145 |
} else {
|
358 |
jp_milcent |
146 |
GWT.log("Ce type d'objet n'est pas pris en compte par la méthode rafraichir de la classe "+getClass(), null);
|
61 |
jpm |
147 |
}
|
156 |
jp_milcent |
148 |
layout();
|
61 |
jpm |
149 |
}
|
60 |
jpm |
150 |
}
|