1196 |
gduche |
1 |
package org.tela_botanica.del.client.vues.identiplante.moteur;
|
|
|
2 |
|
|
|
3 |
import org.tela_botanica.del.client.composants.partageurl.PartageUrlPresenteur;
|
|
|
4 |
import org.tela_botanica.del.client.composants.partageurl.PartageUrlVue;
|
|
|
5 |
import org.tela_botanica.del.client.i18n.I18n;
|
|
|
6 |
|
|
|
7 |
import com.google.gwt.core.client.GWT;
|
|
|
8 |
import com.google.gwt.event.dom.client.HasClickHandlers;
|
|
|
9 |
import com.google.gwt.uibinder.client.UiBinder;
|
|
|
10 |
import com.google.gwt.uibinder.client.UiField;
|
|
|
11 |
import com.google.gwt.user.client.ui.CheckBox;
|
|
|
12 |
import com.google.gwt.user.client.ui.Composite;
|
|
|
13 |
import com.google.gwt.user.client.ui.HTML;
|
|
|
14 |
import com.google.gwt.user.client.ui.HasWidgets;
|
|
|
15 |
import com.google.gwt.user.client.ui.Label;
|
|
|
16 |
import com.google.gwt.user.client.ui.Panel;
|
|
|
17 |
import com.google.gwt.user.client.ui.RadioButton;
|
|
|
18 |
import com.google.gwt.user.client.ui.Widget;
|
|
|
19 |
|
|
|
20 |
public class MoteurIdentiplanteVue extends Composite implements MoteurIdentiplantePresenteur.Vue {
|
|
|
21 |
|
|
|
22 |
// Gestion d'UiBinder
|
|
|
23 |
interface Binder extends UiBinder<Widget, MoteurIdentiplanteVue> {
|
|
|
24 |
}
|
|
|
25 |
|
|
|
26 |
private static Binder binder = GWT.create(Binder.class);
|
|
|
27 |
|
|
|
28 |
@UiField
|
1206 |
gduche |
29 |
Panel zoneRecherche, zoneResultats;
|
1196 |
gduche |
30 |
|
|
|
31 |
|
|
|
32 |
@UiField
|
|
|
33 |
CheckBox radioTout, radioDeterminer, radioDiscussion;
|
|
|
34 |
|
|
|
35 |
public HasWidgets getZoneRecherche() {
|
|
|
36 |
return zoneRecherche;
|
|
|
37 |
}
|
|
|
38 |
|
|
|
39 |
// Constructeur de la vue
|
|
|
40 |
public MoteurIdentiplanteVue() {
|
|
|
41 |
initWidget(binder.createAndBindUi(this));
|
|
|
42 |
}
|
|
|
43 |
|
|
|
44 |
public Panel getZoneResultats() {
|
|
|
45 |
return zoneResultats;
|
|
|
46 |
}
|
|
|
47 |
|
|
|
48 |
public String getValeurRadioStatut() {
|
|
|
49 |
String valeurStatut = "";
|
|
|
50 |
if (radioDeterminer.getValue()) {
|
|
|
51 |
valeurStatut += radioDeterminer.getFormValue() + ";";
|
|
|
52 |
}
|
|
|
53 |
|
|
|
54 |
if (radioDiscussion.getValue()) {
|
|
|
55 |
valeurStatut += radioDiscussion.getFormValue() + ";";
|
|
|
56 |
}
|
|
|
57 |
|
|
|
58 |
return valeurStatut;
|
|
|
59 |
|
|
|
60 |
}
|
|
|
61 |
|
|
|
62 |
@Override
|
|
|
63 |
public HasClickHandlers getRadioADeterminer() {
|
|
|
64 |
return radioDeterminer;
|
|
|
65 |
}
|
|
|
66 |
|
|
|
67 |
@Override
|
|
|
68 |
public HasClickHandlers getRadioEnDiscussion() {
|
|
|
69 |
return radioDiscussion;
|
|
|
70 |
}
|
|
|
71 |
|
|
|
72 |
@Override
|
|
|
73 |
public void decocherRadioTout() {
|
|
|
74 |
radioTout.setChecked(false);
|
|
|
75 |
}
|
|
|
76 |
|
|
|
77 |
}
|