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