Subversion Repositories eFlore/Archives.cel-v1

Compare Revisions

Ignore whitespace Rev 5 → Rev 6

/trunk/src/org/tela_botanica/client/AutoCompleteAsyncTextBoxListener.java
12,5 → 12,5
* @param sender the widget sending the event
* @param text : text selected
*/
void onValidate(SourcesAutoCompleteAsyncTextBoxEvents sender,int pos, String text);
void onValidate(SourcesAutoCompleteAsyncTextBoxEvents sender, String text, String value);
}
/trunk/src/org/tela_botanica/client/TaxonList.java
15,7 → 15,6
*/
package org.tela_botanica.client;
 
 
import com.google.gwt.i18n.client.Dictionary;
import com.google.gwt.json.client.JSONArray;
import com.google.gwt.json.client.JSONNumber;
38,495 → 37,503
import com.google.gwt.user.client.ui.HasHorizontalAlignment;
import com.google.gwt.user.client.ui.HasVerticalAlignment;
 
import java.util.Vector;
/*
* Le retour de getUser appelle getCount qui appelle update pour veiller à une
* initialisation correcte
*
*/
 
/* Le retour de getUser appelle getCount qui appelle update pour veiller à une initialisation correcte
public class TaxonList extends Composite implements
AutoCompleteAsyncTextBoxListener {
 
*/
// Barre de navigation
 
public class TaxonList extends Composite implements AutoCompleteAsyncTextBoxListener {
private class NavBar extends Composite implements ClickListener {
 
public final DockPanel bar = new DockPanel();
 
// Barre de navigation
private class NavBar extends Composite implements ClickListener {
public final DockPanel bar = new DockPanel();
public final Button gotoFirst = new Button("<<", this);
public final Button gotoNext = new Button(">", this);
public final Button gotoPrev = new Button("<", this);
public final Button gotoEnd = new Button(">>", this);
public final HTML status = new HTML();
public final Button gotoFirst = new Button("<<", this);
 
public NavBar() {
initWidget(bar);
bar.setStyleName("navbar");
status.setStyleName("status");
public final Button gotoNext = new Button(">", this);
 
HorizontalPanel buttons = new HorizontalPanel();
buttons.add(gotoFirst);
buttons.add(gotoPrev);
buttons.add(gotoNext);
buttons.add(gotoEnd);
bar.add(buttons, DockPanel.EAST);
bar.setCellHorizontalAlignment(buttons, DockPanel.ALIGN_RIGHT);
bar.add(status, DockPanel.CENTER);
bar.setVerticalAlignment(DockPanel.ALIGN_MIDDLE);
bar.setCellHorizontalAlignment(status, HasHorizontalAlignment.ALIGN_RIGHT);
bar.setCellVerticalAlignment(status, HasVerticalAlignment.ALIGN_MIDDLE);
bar.setCellWidth(status, "100%");
public final Button gotoPrev = new Button("<", this);
 
}
public final Button gotoEnd = new Button(">>", this);
 
public void onClick(Widget sender) {
if (sender == gotoNext) {
// Move forward a page.
startIndex += VISIBLE_TAXON_COUNT;
if (startIndex >= count)
startIndex -= VISIBLE_TAXON_COUNT;
}
else {
if (sender == gotoPrev) {
// Move back a page.
startIndex -= VISIBLE_TAXON_COUNT;
if (startIndex < 0)
startIndex = 0;
}
else {
if (sender==gotoEnd) {
gotoEnd();
}
else {
if (sender== gotoFirst) {
startIndex = 0;
}
}
}
}
update();
}
public final HTML status = new HTML();
 
}
public NavBar() {
initWidget(bar);
bar.setStyleName("navbar");
status.setStyleName("status");
 
private void setStatusText(String text) {
navBar.status.setText(text);
}
HorizontalPanel buttons = new HorizontalPanel();
buttons.add(gotoFirst);
buttons.add(gotoPrev);
buttons.add(gotoNext);
buttons.add(gotoEnd);
bar.add(buttons, DockPanel.EAST);
bar.setCellHorizontalAlignment(buttons, DockPanel.ALIGN_RIGHT);
bar.add(status, DockPanel.CENTER);
bar.setVerticalAlignment(DockPanel.ALIGN_MIDDLE);
bar.setCellHorizontalAlignment(status,
HasHorizontalAlignment.ALIGN_RIGHT);
bar.setCellVerticalAlignment(status,
HasVerticalAlignment.ALIGN_MIDDLE);
bar.setCellWidth(status, "100%");
 
}
 
private static final int VISIBLE_TAXON_COUNT = 15;
private Grid header = new Grid(1,6);
private FlexTable table = new FlexTable();
private VerticalPanel panel = new VerticalPanel();
private int startIndex=0;
private String serviceBaseUrl=getServiceBaseUrl();
private int count=65000;
private Vector complements=null;
private String element=null;
private String complement=null;
private String user;
private NavBar navBar = new NavBar();
public TaxonList(Vector comps) {
public void onClick(Widget sender) {
if (sender == gotoNext) {
// Move forward a page.
startIndex += VISIBLE_TAXON_COUNT;
if (startIndex >= count)
startIndex -= VISIBLE_TAXON_COUNT;
} else {
if (sender == gotoPrev) {
// Move back a page.
startIndex -= VISIBLE_TAXON_COUNT;
if (startIndex < 0)
startIndex = 0;
} else {
if (sender == gotoEnd) {
gotoEnd();
} else {
if (sender == gotoFirst) {
startIndex = 0;
}
}
}
}
update();
}
 
initAsync();
// Information complementaire : un tableau associe au retour de l'assistant de saisie
complements=comps;
// Mise en forme du header
header.setCellSpacing(0);
header.setCellPadding(2);
header.setWidth("100%");
}
 
header.setStyleName("taxon-ListHeader");
header.setText(0, 0, "");
header.setText(0, 1, "Nom saisi");
header.setText(0, 2, "Nom retenu");
header.setHTML(0, 3, "Code<br>Nomenclatural");
header.setHTML(0, 4, "Code<br>Taxonomique");
header.setText(0, 5, "Famille");
header.getCellFormatter().setWidth(0,0,"2%");
header.getCellFormatter().setWidth(0,1,"31%");
header.getCellFormatter().setWidth(0,2,"31%");
header.getCellFormatter().setWidth(0,3,"9%");
header.getCellFormatter().setWidth(0,4,"9%");
header.getCellFormatter().setWidth(0,5,"18%");
private void setStatusText(String text) {
navBar.status.setText(text);
}
 
// Mise en forme de la table.
table.setCellSpacing(0);
table.setBorderWidth(0);
table.setCellPadding(2);
table.setWidth("100%");
private static final int VISIBLE_TAXON_COUNT = 15;
 
// Mise en forme barre navigation
navBar.setWidth("100%");
private Grid header = new Grid(1, 6);
 
table.setStyleName("taxon-List");
private FlexTable table = new FlexTable();
 
panel.add(navBar);
panel.add(header);
panel.add(table);
initWidget(panel);
}
private VerticalPanel panel = new VerticalPanel();
 
/**
* Action lancee par la selection d'un nom dans l'assistant de saisie. Lance la recherche d'informations
* complémentaires (famille, numero nomenclaturaux etc) et met a jour l'inventaire (addelement())
* @return void
*/
public void onValidate(SourcesAutoCompleteAsyncTextBoxEvents sender,int pos, String str) {
setStatusDisabled();
// Il y a surement une meilleure facon de faire que de passer par une variable de classe
// pour atteindre une inner classe
element=str;
// Saisie assistée
if (pos>=0) {
// Le vecteur complements contient les informations complémentaires associées à un nom.
complement=(String) complements.get(pos);
HTTPRequest.asyncGet(serviceBaseUrl+"/NameValid/"+complement,
new ResponseTextHandler(){
private int startIndex = 0;
 
public void onCompletion(String str) {
JSONValue jsonValue= JSONParser.parse(str);
JSONArray jsonArray;
complements.clear();
if ((jsonArray = jsonValue.isArray()) != null) {
// Nom retenu, Num Nomen nom retenu, Num Taxon, Famille
addElement(element,complement,((JSONString) jsonArray.get(0)).stringValue(),
((JSONString) jsonArray.get(1)).stringValue(),((JSONString) jsonArray.get(2)).stringValue(),
((JSONString) jsonArray.get(3)).stringValue());
}
}
private String serviceBaseUrl = getServiceBaseUrl();
 
});
}
// Saisie libre
else {
complements.clear();
private int count = 65000;
 
addElement(element," "," "," "," "," ");
}
}
/**
* Ajoute un element à l'inventaire
* @param nom_sel : nom selectionne
* @param num_nom_sel : numero nomenclatural nom selectionne
* @param nom_ret : nom retenu
* @param num_nom_ret : numero nomenclaturel nom retenu
* @param num_taxon : numero taxonomique
* @param famille : famille
*/
private String user;
 
public void addElement(String nom_sel, String num_nom_sel, String nom_ret, String num_nom_ret, String num_taxon, String famille) {
// Calcul du nouveau numéro d'ordre
/* int order=1;
if (table.getRowCount()>0) {
order=new Integer(table.getText(table.getRowCount()-1,6)).intValue()+1;
}*/
count++;
HTTPRequest.asyncPost(serviceBaseUrl+"/Inventory/", "identifiant="+user+"&nom_sel="+nom_sel+"&num_nom_sel="+num_nom_sel
+"&nom_ret="+nom_ret+"&num_nom_ret="+num_nom_ret+"&num_taxon="+num_taxon+"&famille="+famille,
new ResponseTextHandler(){
public void onCompletion(String str) {
gotoEnd();
update();
}
});
}
private NavBar navBar = new NavBar();
 
/**
* Suppression d'un element lde l'inventaire, a partir de son numero d'ordre
*
*/
public TaxonList() {
 
public void deleteElement() {
initAsync();
 
setStatusDisabled();
boolean checked=false;
// Information complementaire : un tableau associe au retour de
// l'assistant de saisie
 
// Lifo ...
for (int i=table.getRowCount()-1; i>=0;i--){
if (((CheckBox) table.getWidget(i,0)).isChecked()) {
checked=true;
String str=table.getText(i,6);
count--;
HTTPRequest.asyncPost(serviceBaseUrl+"/Inventory/"+user+"/"+str, "action=DELETE",
new ResponseTextHandler(){
// Mise en forme du header
 
public void onCompletion(String str) {
gotoEnd();
update();
}
});
header.setCellSpacing(0);
header.setCellPadding(2);
header.setWidth("100%");
 
}
}
if (!checked) {
setStatusEnabled();
}
}
header.setStyleName("taxon-ListHeader");
 
/**
*
* Lancement des initialisations dependantes de réponses asynchrones : le retour d'une demande d'initialisation declanche
* la demande d'initialisation suivantes
* user : resultat recherche nom d'utilisateur
* count : resultat nombre d'enregistrements d'inventaires
* affichage enregistrements trouvés
*
*/
private void initAsync() {
getUser();
// getCount()
// update()
}
/**
* Recherche utilisateur en cours
*
*/
private void getUser() {
setStatusDisabled();
header.setText(0, 0, "");
header.setText(0, 1, "Nom saisi");
header.setText(0, 2, "Nom retenu");
header.setHTML(0, 3, "Code<br>Nomenclatural");
header.setHTML(0, 4, "Code<br>Taxonomique");
header.setText(0, 5, "Famille");
 
HTTPRequest.asyncGet(serviceBaseUrl+"/User/",
new ResponseTextHandler(){
header.getCellFormatter().setWidth(0, 0, "2%");
header.getCellFormatter().setWidth(0, 1, "31%");
header.getCellFormatter().setWidth(0, 2, "31%");
header.getCellFormatter().setWidth(0, 3, "9%");
header.getCellFormatter().setWidth(0, 4, "9%");
header.getCellFormatter().setWidth(0, 5, "18%");
 
public void onCompletion(String str) {
JSONValue jsonValue= JSONParser.parse(str);
JSONString jsonString;
if ((jsonString = jsonValue.isString()) != null) {
user = jsonString.stringValue();
}
getCount();
}
});
// Mise en forme de la table.
 
}
table.setCellSpacing(0);
table.setBorderWidth(0);
table.setCellPadding(2);
table.setWidth("100%");
 
/**
* Recherche nombre d'enregistrement pour l'utilisateur en cours
*
*/
private void getCount() {
// Mise en forme barre navigation
 
HTTPRequest.asyncGet(serviceBaseUrl+"/InventoryList/"+user+"/",
new ResponseTextHandler(){
navBar.setWidth("100%");
 
public void onCompletion(String str) {
table.setStyleName("taxon-List");
 
JSONValue jsonValue= JSONParser.parse(str);
JSONNumber jsonNumber;
if ((jsonNumber = jsonValue.isNumber()) != null) {
count=(int) jsonNumber.getValue();
gotoEnd(); // Derniere page
update();
}
}
});
panel.add(navBar);
panel.add(header);
panel.add(table);
 
}
initWidget(panel);
 
/**
* Mise a jour de l'affichage, à partir des données d'inventaire deja saisies.
* La valeur de this.startIndex permet de determiner quelles données seront affichées
*
*/
private void update() {
}
 
setStatusDisabled();
// TODO : optimisation : ne supprimer que les lignes qui ne seront pas alimentes .
/**
* Action lancee par la selection d'un nom dans l'assistant de saisie. Lance
* la recherche d'informations complémentaires (famille, numero
* nomenclaturaux etc) et met a jour l'inventaire (addelement())
*
* @return void
*/
public void onValidate(SourcesAutoCompleteAsyncTextBoxEvents sender,
final String str,final String value) {
 
HTTPRequest.asyncGet(serviceBaseUrl+"/InventoryList/"+user+"/"+startIndex+"/"+VISIBLE_TAXON_COUNT,
new ResponseTextHandler(){
setStatusDisabled();
 
public void onCompletion(String str) {
// Saisie assistée
 
JSONValue jsonValue= JSONParser.parse(str);
JSONArray jsonArray;
JSONArray jsonArrayNested;
// Lifo ...
for (int i=table.getRowCount()-1; i>=0;i--){
table.removeRow(i);
}
if (value !=null) {
 
 
int j=0;
if ((jsonArray = jsonValue.isArray()) != null) {
for (int i = 0; i < jsonArray.size(); ++i) {
if ((jsonArrayNested = jsonArray.get(i).isArray()) != null) {
int row=table.insertRow(table.getRowCount());
// Case a cocher
table.setWidget(row,0,new CheckBox());
// Nom saisi
table.setText(row,1,((JSONString) jsonArrayNested.get(0)).stringValue());
// Nom retenu
table.setText(row,2,((JSONString) jsonArrayNested.get(2)).stringValue());
// Num nomenclatural
table.setText(row,3,((JSONString) jsonArrayNested.get(1)).stringValue());
// Num Taxonomique
table.setText(row,4,((JSONString) jsonArrayNested.get(4)).stringValue());
// Famille
table.setText(row,5,((JSONString) jsonArrayNested.get(5)).stringValue());
// Numero d'ordre
table.setText(row,6,((JSONString) jsonArrayNested.get(6)).stringValue());
table.getCellFormatter().setVisible(row,6,false);
table.getFlexCellFormatter().setWidth(row,0,"2%");
table.getFlexCellFormatter().setWidth(row,1,"31%");
table.getFlexCellFormatter().setWidth(row,2,"31%");
table.getFlexCellFormatter().setWidth(row,3,"9%");
table.getFlexCellFormatter().setWidth(row,4,"9%");
table.getFlexCellFormatter().setWidth(row,5,"18%");
j++;
}
}
}
setStatusEnabled();
}
});
HTTPRequest.asyncGet(serviceBaseUrl + "/NameValid/" + value,
new ResponseTextHandler() {
 
}
public void onCompletion(String strcomplete) {
 
/**
* Recuperation du prefixe d'appel des services
*/
JSONValue jsonValue = JSONParser.parse(strcomplete);
JSONArray jsonArray;
 
if ((jsonArray = jsonValue.isArray()) != null) {
// Nom retenu, Num Nomen nom retenu, Num Taxon,
// Famille
addElement(str, value,
((JSONString) jsonArray.get(0))
.stringValue(),
((JSONString) jsonArray.get(1))
.stringValue(),
((JSONString) jsonArray.get(2))
.stringValue(),
((JSONString) jsonArray.get(3))
.stringValue());
}
}
 
});
}
// Saisie libre
else {
addElement(str, " ", " ", " ", " ", " ");
}
}
 
/**
* Ajoute un element à l'inventaire
*
* @param nom_sel :
* nom selectionne
* @param num_nom_sel :
* numero nomenclatural nom selectionne
* @param nom_ret :
* nom retenu
* @param num_nom_ret :
* numero nomenclaturel nom retenu
* @param num_taxon :
* numero taxonomique
* @param famille :
* famille
*/
 
public void addElement(String nom_sel, String num_nom_sel, String nom_ret,
String num_nom_ret, String num_taxon, String famille) {
 
// Calcul du nouveau numéro d'ordre
 
/*
* int order=1; if (table.getRowCount()>0) { order=new
* Integer(table.getText(table.getRowCount()-1,6)).intValue()+1; }
*/
 
count++;
HTTPRequest.asyncPost(serviceBaseUrl + "/Inventory/", "identifiant="
+ user + "&nom_sel=" + nom_sel + "&num_nom_sel=" + num_nom_sel
+ "&nom_ret=" + nom_ret + "&num_nom_ret=" + num_nom_ret
+ "&num_taxon=" + num_taxon + "&famille=" + famille,
 
new ResponseTextHandler() {
 
public void onCompletion(String str) {
gotoEnd();
update();
}
});
}
 
/**
* Suppression d'un element lde l'inventaire, a partir de son numero d'ordre
*
*/
 
public void deleteElement() {
 
setStatusDisabled();
boolean checked = false;
 
// Lifo ...
for (int i = table.getRowCount() - 1; i >= 0; i--) {
if (((CheckBox) table.getWidget(i, 0)).isChecked()) {
checked = true;
String str = table.getText(i, 6);
count--;
HTTPRequest.asyncPost(serviceBaseUrl + "/Inventory/" + user
+ "/" + str, "action=DELETE",
new ResponseTextHandler() {
 
public void onCompletion(String str) {
gotoEnd();
update();
}
});
 
}
}
if (!checked) {
setStatusEnabled();
}
}
 
/**
*
* Lancement des initialisations dependantes de réponses asynchrones : le
* retour d'une demande d'initialisation declanche la demande
* d'initialisation suivantes user : resultat recherche nom d'utilisateur
* count : resultat nombre d'enregistrements d'inventaires affichage
* enregistrements trouvés
*
*/
private void initAsync() {
 
getUser();
// getCount()
// update()
 
}
 
/**
* Recherche utilisateur en cours
*
*/
private void getUser() {
 
setStatusDisabled();
 
HTTPRequest.asyncGet(serviceBaseUrl + "/User/",
new ResponseTextHandler() {
 
public void onCompletion(String str) {
JSONValue jsonValue = JSONParser.parse(str);
JSONString jsonString;
if ((jsonString = jsonValue.isString()) != null) {
user = jsonString.stringValue();
}
getCount();
}
});
 
}
 
/**
* Recherche nombre d'enregistrement pour l'utilisateur en cours
*
*/
private void getCount() {
 
HTTPRequest.asyncGet(serviceBaseUrl + "/InventoryList/" + user + "/",
new ResponseTextHandler() {
 
public void onCompletion(String str) {
 
JSONValue jsonValue = JSONParser.parse(str);
JSONNumber jsonNumber;
if ((jsonNumber = jsonValue.isNumber()) != null) {
count = (int) jsonNumber.getValue();
gotoEnd(); // Derniere page
update();
}
}
});
 
}
 
/**
* Mise a jour de l'affichage, à partir des données d'inventaire deja
* saisies. La valeur de this.startIndex permet de determiner quelles
* données seront affichées
*
*/
 
private void update() {
 
setStatusDisabled();
 
// TODO : optimisation : ne supprimer que les lignes qui ne seront pas
// alimentes .
 
HTTPRequest.asyncGet(serviceBaseUrl + "/InventoryList/" + user + "/"
+ startIndex + "/" + VISIBLE_TAXON_COUNT,
 
new ResponseTextHandler() {
 
public void onCompletion(String str) {
 
JSONValue jsonValue = JSONParser.parse(str);
JSONArray jsonArray;
JSONArray jsonArrayNested;
 
// Lifo ...
for (int i = table.getRowCount() - 1; i >= 0; i--) {
table.removeRow(i);
}
 
int j = 0;
if ((jsonArray = jsonValue.isArray()) != null) {
for (int i = 0; i < jsonArray.size(); ++i) {
if ((jsonArrayNested = jsonArray.get(i).isArray()) != null) {
int row = table.insertRow(table.getRowCount());
// Case a cocher
table.setWidget(row, 0, new CheckBox());
// Nom saisi
table.setText(row, 1, ((JSONString) jsonArrayNested
.get(0)).stringValue());
// Nom retenu
table.setText(row, 2, ((JSONString) jsonArrayNested
.get(2)).stringValue());
// Num nomenclatural
table.setText(row, 3, ((JSONString) jsonArrayNested
.get(1)).stringValue());
// Num Taxonomique
table.setText(row, 4, ((JSONString) jsonArrayNested
.get(4)).stringValue());
// Famille
table.setText(row, 5, ((JSONString) jsonArrayNested
.get(5)).stringValue());
// Numero d'ordre
table.setText(row, 6, ((JSONString) jsonArrayNested
.get(6)).stringValue());
 
table.getCellFormatter().setVisible(row, 6, false);
 
table.getFlexCellFormatter().setWidth(row, 0, "2%");
table.getFlexCellFormatter()
.setWidth(row, 1, "31%");
table.getFlexCellFormatter()
.setWidth(row, 2, "31%");
table.getFlexCellFormatter().setWidth(row, 3, "9%");
table.getFlexCellFormatter().setWidth(row, 4, "9%");
table.getFlexCellFormatter()
.setWidth(row, 5, "18%");
j++;
}
 
}
}
setStatusEnabled();
 
}
});
 
}
 
/**
* Recuperation du prefixe d'appel des services
*/
 
private String getServiceBaseUrl() {
Dictionary theme = Dictionary.getDictionary("Parameters");
return theme.get("serviceBaseUrl");
}
 
Dictionary theme = Dictionary.getDictionary("Parameters");
return theme.get("serviceBaseUrl");
 
}
 
/**
* Affichage message d'attente et désactivation navigation
* @param
* @return void
*
* @param
* @return void
*/
 
private void setStatusDisabled() {
 
navBar.gotoFirst.setEnabled(false);
navBar.gotoPrev.setEnabled(false);
navBar.gotoNext.setEnabled(false);
navBar.gotoEnd.setEnabled(false);
 
setStatusText("Patientez ...");
}
 
/**
* Affichage numero de page et gestion de la navigation
*
*
*/
 
private void setStatusEnabled() {
 
// Il y a forcemment un disabled avant d'arriver ici
if (count > 0 ) {
if (startIndex >= VISIBLE_TAXON_COUNT) { // Au dela de la premiere page
 
if (count > 0) {
 
if (startIndex >= VISIBLE_TAXON_COUNT) { // Au dela de la
// premiere page
navBar.gotoPrev.setEnabled(true);
navBar.gotoFirst.setEnabled(true);
if (startIndex<(count-VISIBLE_TAXON_COUNT)) { // Pas la derniere page
if (startIndex < (count - VISIBLE_TAXON_COUNT)) { // Pas la
// derniere
// page
navBar.gotoNext.setEnabled(true);
navBar.gotoEnd.setEnabled(true);
setStatusText((startIndex + 1) + " - " + (startIndex + VISIBLE_TAXON_COUNT));
}
else { // Derniere page
setStatusText((startIndex + 1) + " - "
+ (startIndex + VISIBLE_TAXON_COUNT));
} else { // Derniere page
setStatusText((startIndex + 1) + " - " + count);
}
}
else { // Premiere page
} else { // Premiere page
if (count > VISIBLE_TAXON_COUNT) { // Des pages derrieres
navBar.gotoNext.setEnabled(true);
navBar.gotoEnd.setEnabled(true);
setStatusText((startIndex + 1) + " - " + (startIndex + VISIBLE_TAXON_COUNT));
}
else {
setStatusText((startIndex + 1) + " - "
+ (startIndex + VISIBLE_TAXON_COUNT));
} else {
setStatusText((startIndex + 1) + " - " + count);
}
}
}
 
else { // Pas d'inventaire, pas de navigation
setStatusText(0 + " - " + 0);
setStatusText(0 + " - " + 0);
}
}
 
/**
* Positionnement index de parcours (this.startIndex) pour affichage de la dernière page
* @param
* @return void
* Positionnement index de parcours (this.startIndex) pour affichage de la
* dernière page
*
* @param
* @return void
*/
 
private void gotoEnd() {
if ( (count==0) || (count%VISIBLE_TAXON_COUNT)>0) {
startIndex=count-(count%VISIBLE_TAXON_COUNT);
}
else {
startIndex=count-VISIBLE_TAXON_COUNT;
}
 
if ((count == 0) || (count % VISIBLE_TAXON_COUNT) > 0) {
startIndex = count - (count % VISIBLE_TAXON_COUNT);
} else {
startIndex = count - VISIBLE_TAXON_COUNT;
}
 
}
 
}
/trunk/src/org/tela_botanica/client/NameAssistant.java
14,9 → 14,7
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.HorizontalPanel;
 
import java.util.Vector;
 
 
import org.tela_botanica.client.AutoCompleteAsyncTextBox;
 
/**
27,11 → 25,9
 
private AutoCompleteAsyncTextBox autoCompletebox = new AutoCompleteAsyncTextBox(this);
private HorizontalPanel panel = new HorizontalPanel();
private Vector complements=null;
public NameAssistant(AutoCompleteAsyncTextBoxListener listener,Vector comps) {
public NameAssistant(AutoCompleteAsyncTextBoxListener listener) {
complements=comps;
autoCompletebox.setSearchUrl(getServiceBaseUrl()+"/NameSearch/");
panel.add(autoCompletebox);
49,17 → 45,13
JSONArray jsonArrayNested;
JSONString jsonString;
 
complements.clear();
if ((jsonArray = jsonValue.isArray()) != null) {
for (int i = 0; i < jsonArray.size(); ++i) {
if ((jsonArrayNested = jsonArray.get(i).isArray()) != null) {
if ((jsonString = (jsonArrayNested.get(0)).isString()) != null) {
autoCompletebox.addItem(jsonString.stringValue());
autoCompletebox.addItem(((JSONString) jsonArrayNested.get(0)).stringValue(),((JSONString) jsonArrayNested.get(1)).stringValue());
}
if ((jsonString = (jsonArrayNested.get(1)).isString()) != null) {
complements.add(i,jsonString.stringValue());
}
}
}
}
/trunk/src/org/tela_botanica/client/AutoCompleteAsyncTextBox.java
55,7 → 55,7
protected Vector items = new Vector();
protected boolean popupAdded = false;
protected boolean visible = false;
protected int current = -1;
protected String currentValue = null;
/**
176,9 → 176,9
else {
// Validation de l'entree :
if (autoCompleteAsyncTextBoxListeners!= null) {
autoCompleteAsyncTextBoxListeners.fireTextBoxEnter(this,current, this.getText());
autoCompleteAsyncTextBoxListeners.fireTextBoxEnter(this,this.getText(),currentValue);
}
current=-1;
currentValue=null;
this.setText("");
}
228,13 → 228,13
for(int i = 0; i < items.size(); i++)
{
choices.addItem((String) items.get(i));
choices.addItem(((String [])items.get(i))[0],((String [])items.get(i))[1]);
}
// if there is only one match and it is what is in the
// text field anyways there is no need to show autocompletion
if(items.size() == 1 && ((String) items.get(0)).compareTo(this.getText()) == 0)
if(items.size() == 1 && (((String []) items.get(0))[0]).compareTo(this.getText()) == 0)
{
choicesPopup.hide();
} else {
277,7 → 277,7
if(choices.getItemCount() > 0)
{
this.setText(choices.getItemText(choices.getSelectedIndex()));
current=choices.getSelectedIndex();
currentValue=choices.getValue(choices.getSelectedIndex());
}
 
visible=false;
287,8 → 287,8
}
public void addItem(String item) {
items.add(item);
public void addItem(String item, String value) {
items.add(new String [] {item, value});
}
private void addToCache (String query, Vector result)
/trunk/src/org/tela_botanica/client/AutoCompleteAsyncTextBoxListenerCollection.java
12,10 → 12,10
* @param sender the widget sending the event
* @param text the text sent
*/
public void fireTextBoxEnter(SourcesAutoCompleteAsyncTextBoxEvents sender, int pos, String text) {
public void fireTextBoxEnter(SourcesAutoCompleteAsyncTextBoxEvents sender, String text, String value) {
for (Iterator it = iterator(); it.hasNext();) {
AutoCompleteAsyncTextBoxListener listener = (AutoCompleteAsyncTextBoxListener) it.next();
listener.onValidate(sender, pos, text);
listener.onValidate(sender, text, value);
}
}
}
/trunk/src/org/tela_botanica/client/CenterPanel.java
9,7 → 9,6
 
import org.tela_botanica.client.TaxonList;
import org.tela_botanica.client.NameAssistant;
import java.util.Vector;
 
/**
* Composite permet de wrapper des Widgett pour creer un nouveau Widget cf methode initWidget()
17,9 → 16,8
 
public class CenterPanel extends Composite {
 
private Vector complements=new Vector(); // Complements de saisie associé à nameassistant ... (design a revoir ...).
private TaxonList taxonList = new TaxonList(complements);
private NameAssistant nameAssistant = new NameAssistant(taxonList,complements);
private TaxonList taxonList = new TaxonList();
private NameAssistant nameAssistant = new NameAssistant(taxonList);
 
 
public CenterPanel() {