Subversion Repositories eFlore/Applications.del

Rev

Rev 1393 | Rev 1886 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1393 Rev 1426
Line 83... Line 83...
83
		public HasKeyPressHandlers getChampsFamille();
83
		public HasKeyPressHandlers getChampsFamille();
Line 84... Line 84...
84
 
84
 
Line 85... Line 85...
85
		public HasKeyPressHandlers getChampsGenre();
85
		public HasKeyPressHandlers getChampsGenre();
-
 
86
 
-
 
87
		public HasKeyPressHandlers getChampsMotCle();
-
 
88
		
-
 
89
		public HasKeyPressHandlers getChampsMotCleDel();
Line 86... Line 90...
86
 
90
		
Line 87... Line 91...
87
		public HasKeyPressHandlers getChampsMotCle();
91
		public HasKeyPressHandlers getChampsMotCleCel();
Line 100... Line 104...
100
		
104
		
Line 101... Line 105...
101
		public void setReferentielLectureSeule(boolean lectureSeule);
105
		public void setReferentielLectureSeule(boolean lectureSeule);
Line -... Line 106...
-
 
106
 
-
 
107
		void remplirListeReferentiels(Map<String, String> listeReferentiels);
-
 
108
 
-
 
109
		public String getMotCleDel();
-
 
110
 
-
 
111
		public String getMotCleCel();
-
 
112
		
102
 
113
		public void cacherChampsTagsImage();
Line 103... Line 114...
103
		void remplirListeReferentiels(Map<String, String> listeReferentiels);
114
		public void cacherChampsTagsObs();
104
 
115
 
105
	}
116
	}
Line 145... Line 156...
145
		
156
		
146
		vue.remplirListeReferentiels(ReferentielService.getReferentiels());
157
		vue.remplirListeReferentiels(ReferentielService.getReferentiels());
147
		if(CacheClient.getInstance().getReferentielNonModifiable()) {
158
		if(CacheClient.getInstance().getReferentielNonModifiable()) {
148
			vue.setReferentielLectureSeule(true);
159
			vue.setReferentielLectureSeule(true);
-
 
160
		}
-
 
161
		
-
 
162
		if(estPourRechercheImages()) {
-
 
163
			vue.cacherChampsTagsObs();
-
 
164
		} else {
-
 
165
			vue.cacherChampsTagsImage();
149
		}
166
		}
Line 150... Line 167...
150
	}
167
	}
151
 
168
 
152
	public ModeRecherche getMode() {
169
	public ModeRecherche getMode() {
Line 297... Line 314...
297
		vue.getChampsAuteur().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
314
		vue.getChampsAuteur().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
298
		vue.getChampsDate().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
315
		vue.getChampsDate().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
299
		vue.getChampsFamille().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
316
		vue.getChampsFamille().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
300
		vue.getChampsGenre().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
317
		vue.getChampsGenre().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
301
		vue.getChampsMotCle().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
318
		vue.getChampsMotCle().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
-
 
319
		vue.getChampsMotCleCel().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
-
 
320
		vue.getChampsMotCleDel().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
302
		vue.getChampsDepartement().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
321
		vue.getChampsDepartement().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
303
		vue.getChampsContientMots().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
322
		vue.getChampsContientMots().addKeyPressHandler(creerGestionnaireEvenementToucheEntree());
Line 304... Line 323...
304
 
323
 
Line 329... Line 348...
329
			informationRecherche.setTaxon(completionTaxonsPresenteur.getValeur());
348
			informationRecherche.setTaxon(completionTaxonsPresenteur.getValeur());
330
			informationRecherche.setDepartement(vue.getDepartement());
349
			informationRecherche.setDepartement(vue.getDepartement());
331
			informationRecherche.setCommune(completionCommunesPresenteur.getValeur());
350
			informationRecherche.setCommune(completionCommunesPresenteur.getValeur());
332
			informationRecherche.setFamille(vue.getFamille());
351
			informationRecherche.setFamille(vue.getFamille());
333
			informationRecherche.setGenre(vue.getGenre());
352
			informationRecherche.setGenre(vue.getGenre());
-
 
353
			if(estPourRechercheObservations()) {
334
			informationRecherche.setMotClef(vue.getMotCle());
354
				informationRecherche.setMotClef(vue.getMotCle());
-
 
355
			} else {
-
 
356
				informationRecherche.setMotClefDel(vue.getMotCleDel());
-
 
357
				informationRecherche.setMotClefCel(vue.getMotCleCel());
-
 
358
			}
335
			informationRecherche.setTag(vue.getMotCle());
359
			informationRecherche.setTag(vue.getMotCle());
336
			informationRecherche.setAuteur(vue.getAuteur());
360
			informationRecherche.setAuteur(vue.getAuteur());
337
			informationRecherche.setDate(vue.getDate());
361
			informationRecherche.setDate(vue.getDate());
338
			informationRecherche.setReferentiel(vue.getReferentiel());
362
			informationRecherche.setReferentiel(vue.getReferentiel());
339
		}
363
		}