| Line 4... |
Line 4... |
| 4 |
import java.util.List;
|
4 |
import java.util.List;
|
| Line 5... |
Line 5... |
| 5 |
|
5 |
|
| 6 |
import org.tela_botanica.client.composants.AideFenetre;
|
6 |
import org.tela_botanica.client.composants.AideFenetre;
|
| 7 |
import org.tela_botanica.client.composants.IdentificationFenetre;
|
7 |
import org.tela_botanica.client.composants.IdentificationFenetre;
|
| 8 |
import org.tela_botanica.client.composants.LicenceFenetre;
|
8 |
import org.tela_botanica.client.composants.LicenceFenetre;
|
| 9 |
import org.tela_botanica.client.composants.ParametreFenetre;
|
9 |
import org.tela_botanica.client.composants.AproposFenetre;
|
| 10 |
import org.tela_botanica.client.configuration.APropos;
|
10 |
import org.tela_botanica.client.configuration.APropos;
|
| 11 |
import org.tela_botanica.client.configuration.Configuration;
|
11 |
import org.tela_botanica.client.configuration.Configuration;
|
| 12 |
import org.tela_botanica.client.i18n.Constantes;
|
12 |
import org.tela_botanica.client.i18n.Constantes;
|
| 13 |
import org.tela_botanica.client.i18n.ErrorMessages;
|
13 |
import org.tela_botanica.client.i18n.ErrorMessages;
|
| Line 139... |
Line 139... |
| 139 |
Registry.register(RegistreId.APPLI_NOM, i18nC.appliNom());
|
139 |
Registry.register(RegistreId.APPLI_NOM, i18nC.appliNom());
|
| 140 |
Registry.register(RegistreId.APPLI_CODE, i18nC.appliCode());
|
140 |
Registry.register(RegistreId.APPLI_CODE, i18nC.appliCode());
|
| 141 |
Registry.register(RegistreId.APPLI_VERSION, i18nC.appliVersionNumero());
|
141 |
Registry.register(RegistreId.APPLI_VERSION, i18nC.appliVersionNumero());
|
| Line 142... |
Line 142... |
| 142 |
|
142 |
|
| - |
|
143 |
APropos apropos = new APropos();
|
| - |
|
144 |
Registry.register(RegistreId.APPLI_DEVELOPPEURS, apropos.getDeveloppeurs());
|
| - |
|
145 |
Registry.register(RegistreId.APPLI_TRADUCTEURS, apropos.getTraducteurs());
|
| 143 |
APropos apropos = new APropos();
|
146 |
Registry.register(RegistreId.APPLI_LICENCE, apropos.getLicence());
|
| 144 |
Registry.register(RegistreId.APPLI_REVISION, apropos.getRevisionGlobale());
|
147 |
Registry.register(RegistreId.APPLI_REVISION, apropos.getRevisionGlobale());
|
| 145 |
Registry.register(RegistreId.APPLI_COMPILATION_JAVA_VERSION, apropos.getVersionJavaCompilation());
|
148 |
Registry.register(RegistreId.APPLI_COMPILATION_JAVA_VERSION, apropos.getVersionJavaCompilation());
|
| Line 146... |
Line 149... |
| 146 |
Registry.register(RegistreId.APPLI_COMPILATION_DATE_HEURE, apropos.getDateHeureCompilation());
|
149 |
Registry.register(RegistreId.APPLI_COMPILATION_DATE_HEURE, apropos.getDateHeureCompilation());
|
| Line 251... |
Line 254... |
| 251 |
// FIXME : apparament le fade In/Fade Out pose problème sur les navigateurs...
|
254 |
// FIXME : apparament le fade In/Fade Out pose problème sur les navigateurs...
|
| 252 |
//aideFenetre.el().fadeIn(FxConfig.NONE);
|
255 |
//aideFenetre.el().fadeIn(FxConfig.NONE);
|
| 253 |
}
|
256 |
}
|
| Line 254... |
Line 257... |
| 254 |
|
257 |
|
| 255 |
public void ouvrirParametres() {
|
258 |
public void ouvrirParametres() {
|
| 256 |
ParametreFenetre parametresFenetre = new ParametreFenetre();
|
259 |
AproposFenetre parametresFenetre = new AproposFenetre();
|
| 257 |
parametresFenetre.show();
|
260 |
parametresFenetre.show();
|
| Line 258... |
Line 261... |
| 258 |
}
|
261 |
}
|
| 259 |
|
262 |
|