Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 243 → Rev 245

/trunk/src/org/tela_botanica/del/client/vues/rechercheimages/rechercheImage.css
1,2 → 1,5
.observationsRecherche {}
.moteurRecherche {margin-bottom:10px;}
.labelProtocole {padding:4px 5px 0 15px;}
.labelProtocole:after {content:" :"}
 
/trunk/src/org/tela_botanica/del/client/vues/rechercheimages/RechercheImageVue.ui.xml
10,15 → 10,16
<g:HTMLPanel>
<g:HTMLPanel styleName="{style.observationsRecherche}">
<g:Label text="{constants.rechercherImage}" styleName="titre" />
<g:Label text="{constants.entrerMotClef}" styleName="petit" />
<g:HorizontalPanel styleName="{style.moteurRecherche}">
<g:TextBox ui:field="nomEspece" text="apifera"/>
<g:Button text="{constants.rechercherTaxon}" ui:field="boutonChercher" />
<g:Label ui:field="protocoleLabel" text="{constants.protocole}" styleName="{style.labelProtocole}"/>
<g:ListBox ui:field="listeProtocoles" />
</g:HorizontalPanel>
<g:Label text="{constants.entrerMotClef}" styleName="gris" />
 
<g:TextBox ui:field="nomEspece" text="apifera" styleName="test" />
<g:Button text="{constants.rechercherTaxon}" ui:field="boutonChercher" />
 
<g:HorizontalPanel ui:field="panneauProtocole">
<g:Label ui:field="protocoleLabel" text="{constants.protocole}" />
<g:ListBox ui:field="listeProtocoles" />
</g:HorizontalPanel>
</g:HTMLPanel>
<g:HTMLPanel ui:field="panneauResultats" />
</g:HTMLPanel>
/trunk/src/org/tela_botanica/del/client/vues/rechercheimages/RechercheImageVue.java
29,7 → 29,7
protected TextBox nomEspece;
 
@UiField
protected Panel panneauProtocole, panneauResultats;
protected Panel panneauResultats;
 
@UiField
protected Button boutonChercher;
/trunk/src/org/tela_botanica/del/client/vues/vueinitiale/VueInitiale.ui.xml
6,8 → 6,8
<ui:with field="constants" type="org.tela_botanica.del.client.i18n.Vocabulary" />
 
 
<g:VerticalPanel>
<g:HTMLPanel>
<g:Hyperlink ui:field="lienRechercheImages" />
<g:Hyperlink ui:field="lienRechercheObservations" />
</g:VerticalPanel>
</g:HTMLPanel>
</ui:UiBinder>
/trunk/src/org/tela_botanica/del/client/gestionhistorique/GestionnaireHistorique.java
24,8 → 24,8
public void onValueChange(ValueChangeEvent<String> event) {
 
if (event.getValue().equals(ConstantesNavigation.PAGE_PRINCIPALE)) {
RootPanel.get("menuGauche").clear();
new PresenteurInitial().go(RootPanel.get("menuGauche"));
RootPanel.get("navigation").clear();
new PresenteurInitial().go(RootPanel.get("navigation"));
} else if (event.getValue().equals(ConstantesNavigation.PAGE_RECHERCHE_IMAGES)) {
RootPanel.get("contenu").clear();
new RechercheImagePresenteur().go(RootPanel.get("contenu"));