Subversion Repositories eFlore/Applications.del

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
148 benjamin 1
package org.tela_botanica.del.client.vues.rechercheimages;
9 benjamin 2
 
32 gduche 3
import com.google.gwt.core.client.GWT;
4
import com.google.gwt.uibinder.client.UiBinder;
5
import com.google.gwt.uibinder.client.UiField;
9 benjamin 6
import com.google.gwt.user.client.ui.Composite;
32 gduche 7
import com.google.gwt.user.client.ui.FlowPanel;
9 benjamin 8
import com.google.gwt.user.client.ui.HTML;
64 gduche 9
import com.google.gwt.user.client.ui.HorizontalPanel;
9 benjamin 10
import com.google.gwt.user.client.ui.Image;
32 gduche 11
import com.google.gwt.user.client.ui.Label;
9 benjamin 12
import com.google.gwt.user.client.ui.Panel;
52 gduche 13
import com.google.gwt.user.client.ui.VerticalPanel;
32 gduche 14
import com.google.gwt.user.client.ui.Widget;
9 benjamin 15
 
148 benjamin 16
public class ImageVue extends Composite {
9 benjamin 17
 
32 gduche 18
	// Annotation can be used to change the name of the associated xml file
19
	// @UiTemplate("ObservationVue.ui.xml")
148 benjamin 20
	interface MyUiBinder extends UiBinder<Widget, ImageVue> {
32 gduche 21
	}
9 benjamin 22
 
32 gduche 23
	private static MyUiBinder uiBinder = GWT.create(MyUiBinder.class);
64 gduche 24
 
32 gduche 25
	@UiField
64 gduche 26
	protected Label nomEspece, nomAuteur, nomObservateur, nomRetenu, dateObservation, famille, localite;
9 benjamin 27
 
32 gduche 28
	@UiField
64 gduche 29
	protected HorizontalPanel voter;
30
 
31
	@UiField
52 gduche 32
	protected VerticalPanel zoneCache;
33
 
34
	@UiField
32 gduche 35
	Image imagePrincipale;
9 benjamin 36
 
52 gduche 37
	@UiField
122 gduche 38
	Label enSavoirPlus, ajoutValidation;
52 gduche 39
 
148 benjamin 40
	public ImageVue() {
32 gduche 41
		// sets listBox
42
		initWidget(uiBinder.createAndBindUi(this));
9 benjamin 43
	}
44
 
148 benjamin 45
	protected void loadImage(org.tela_botanica.del.client.modeles.Image image) {
52 gduche 46
		enSavoirPlus.setStyleName("boutonPlus");
47
		zoneCache.setVisible(false);
148 benjamin 48
		nomEspece.setText(image.getObservation().getSpecies());
49
		nomAuteur.setText(image.getObservation().getAuteur());
50
		imagePrincipale.setUrl(image.getUrl());
51
		nomObservateur.setText(image.getObservation().getAuteur());
52
		nomRetenu.setText(image.getObservation().getNomRetenu());
53
		dateObservation.setText(image.getObservation().getDate());
54
		famille.setText(image.getObservation().getFamille());
55
		localite.setText(image.getObservation().getLocalite());
32 gduche 56
 
9 benjamin 57
	}
58
 
59
	protected void clearDetails() {
32 gduche 60
		/*
61
		 * detailsPanel.clear();
62
		 * moreDetailsHtml.setHTML("<img src='img/icon_plus.gif' >");
63
		 */
9 benjamin 64
	}
65
 
66
	public Panel getFlowPanel() {
32 gduche 67
		// return flowPanel;
68
		return new FlowPanel();
9 benjamin 69
	}
70
 
71
	public Panel getDetailsPanel() {
32 gduche 72
		// return detailsPanel;
73
		return new FlowPanel();
9 benjamin 74
	}
75
 
76
	public HTML getMoreDetailsHtml() {
32 gduche 77
		// return moreDetailsHtml;
78
		return new HTML();
9 benjamin 79
	}
80
 
81
	public HTML getNoValidationDataHtml() {
32 gduche 82
		// return noValidationDataHtml;
83
		return new HTML();
9 benjamin 84
	}
85
 
86
	public HTML getProposeValidationDataHtml() {
32 gduche 87
		// return proposeValidationDataHtml;
88
		return new HTML();
9 benjamin 89
	}
90
 
64 gduche 91
	public HorizontalPanel getVoter() {
92
		return voter;
9 benjamin 93
	}
52 gduche 94
 
95
	public VerticalPanel getZoneCache() {
96
		return zoneCache;
97
	}
98
 
99
	public Label getEnSavoirPlus() {
100
		return enSavoirPlus;
101
	}
73 benjamin 102
 
103
	public Image getImagePrincipale() {
104
		return imagePrincipale;
105
	}
122 gduche 106
 
107
	public Label getAjoutValidation() {
108
		return ajoutValidation;
109
	}
9 benjamin 110
}