445 |
benjamin |
1 |
package org.tela_botanica.del.client.vues.rechercheobservations.resultats;
|
|
|
2 |
|
|
|
3 |
import com.google.gwt.core.client.GWT;
|
|
|
4 |
import com.google.gwt.uibinder.client.UiBinder;
|
|
|
5 |
import com.google.gwt.uibinder.client.UiField;
|
|
|
6 |
import com.google.gwt.user.client.ui.Composite;
|
|
|
7 |
import com.google.gwt.user.client.ui.HasWidgets;
|
|
|
8 |
import com.google.gwt.user.client.ui.Panel;
|
|
|
9 |
import com.google.gwt.user.client.ui.Widget;
|
|
|
10 |
|
|
|
11 |
public class ResultatsRechercheObservationsVue extends Composite implements ResultatsRechercheObservationsPresenteur.Vue {
|
|
|
12 |
|
|
|
13 |
@UiField
|
|
|
14 |
Panel panneauChargement;
|
|
|
15 |
|
|
|
16 |
// Gestion d'UiBinder
|
|
|
17 |
interface Binder extends UiBinder<Widget, ResultatsRechercheObservationsVue> {
|
|
|
18 |
}
|
|
|
19 |
|
|
|
20 |
private static Binder binder = GWT.create(Binder.class);
|
|
|
21 |
|
|
|
22 |
@UiField
|
|
|
23 |
Panel zoneObservations, zonePaginationHaut, zonePaginationBas;
|
|
|
24 |
|
|
|
25 |
// Constructeur de la vue
|
|
|
26 |
public ResultatsRechercheObservationsVue() {
|
|
|
27 |
initWidget(binder.createAndBindUi(this));
|
|
|
28 |
}
|
|
|
29 |
|
|
|
30 |
@Override
|
|
|
31 |
public HasWidgets getZoneObservations() {
|
|
|
32 |
return zoneObservations;
|
|
|
33 |
}
|
|
|
34 |
|
|
|
35 |
@Override
|
|
|
36 |
public HasWidgets getZonePaginationHaut() {
|
|
|
37 |
return zonePaginationHaut;
|
|
|
38 |
}
|
|
|
39 |
|
|
|
40 |
@Override
|
|
|
41 |
public HasWidgets getZonePaginationBas() {
|
|
|
42 |
return zonePaginationBas;
|
|
|
43 |
}
|
|
|
44 |
|
|
|
45 |
/**
|
|
|
46 |
* Nettoie et remet à zéro les composants du panneau qui doivent l'être
|
|
|
47 |
* */
|
|
|
48 |
@Override
|
|
|
49 |
public void nettoyer() {
|
|
|
50 |
zoneObservations.clear();
|
|
|
51 |
}
|
|
|
52 |
|
|
|
53 |
@Override
|
|
|
54 |
public void startChargement() {
|
|
|
55 |
panneauChargement.setHeight(zoneObservations.getOffsetHeight() + "px");
|
|
|
56 |
panneauChargement.setVisible(true);
|
|
|
57 |
}
|
|
|
58 |
|
|
|
59 |
@Override
|
|
|
60 |
public void stopChargement() {
|
|
|
61 |
panneauChargement.setVisible(false);
|
|
|
62 |
}
|
|
|
63 |
}
|