Subversion Repositories eFlore/Applications.del

Rev

Rev 476 | Rev 576 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 476 Rev 575
Line 4... Line 4...
4
import com.google.gwt.event.dom.client.LoadEvent;
4
import com.google.gwt.event.dom.client.LoadEvent;
5
import com.google.gwt.event.dom.client.LoadHandler;
5
import com.google.gwt.event.dom.client.LoadHandler;
6
import com.google.gwt.uibinder.client.UiBinder;
6
import com.google.gwt.uibinder.client.UiBinder;
7
import com.google.gwt.uibinder.client.UiField;
7
import com.google.gwt.uibinder.client.UiField;
8
import com.google.gwt.user.client.ui.Composite;
8
import com.google.gwt.user.client.ui.Composite;
-
 
9
import com.google.gwt.user.client.ui.HTML;
9
import com.google.gwt.user.client.ui.Image;
10
import com.google.gwt.user.client.ui.Image;
10
import com.google.gwt.user.client.ui.Label;
11
import com.google.gwt.user.client.ui.Label;
11
import com.google.gwt.user.client.ui.Widget;
12
import com.google.gwt.user.client.ui.Widget;
Line 12... Line 13...
12
 
13
 
Line 20... Line 21...
20
 
21
 
21
	@UiField
22
	@UiField
Line 22... Line 23...
22
	protected Image photoPrincipale;
23
	protected Image photoPrincipale;
23
 
24
 
Line 24... Line 25...
24
	@UiField
25
	@UiField
25
	protected Label texteAlternatif;
26
	protected HTML texteAlternatif;
26
 
27
 
27
	public DetailImageVue() {
28
	public DetailImageVue() {
Line 36... Line 37...
36
	}
37
	}
Line 37... Line 38...
37
 
38
 
38
	public void chargerImage(org.tela_botanica.del.client.modeles.Image imageCourante) {
39
	public void chargerImage(org.tela_botanica.del.client.modeles.Image imageCourante) {
39
		setUrlImage(imageCourante.getUrlFormat("L"));
40
		setUrlImage(imageCourante.getUrlFormat("L"));
40
		setTitle(imageCourante.getUrlFormat("L"));
41
		setTitle(imageCourante.getUrlFormat("L"));
41
		setTexteAlternatif(imageCourante.getObservation().getAuteur() +
-
 
42
				" - " + imageCourante.getObservation().getNomRetenu()+
42
		setTexteAlternatif("<p><strong>" + imageCourante.getObservation().getNomRetenu() + " par " + imageCourante.getObservation().getAuteur() + "</strong><br />"
43
				" - " + imageCourante.getObservation().getLocaliteAvecIdFormatee()+
-
 
44
				" -  "+ imageCourante.getObservation().getDateReleve());
43
				+ "PubliƩe le " + imageCourante.getObservation().getDateReleve() + " - " + imageCourante.getObservation().getLocaliteAvecIdFormatee());
Line 45... Line 44...
45
	}
44
	}
46
 
45
 
47
	public void setUrlImage(String urlImage) {
46
	public void setUrlImage(String urlImage) {
Line 48... Line 47...
48
		photoPrincipale.setUrl(urlImage);
47
		photoPrincipale.setUrl(urlImage);
49
	}
48
	}
50
 
49
 
Line 51... Line 50...
51
	public void setTexteAlternatif(String texteAlternatif) {
50
	public void setTexteAlternatif(String texteAlternatif) {