Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1092 Rev 1104
Line 83... Line 83...
83
		public HasWidgets getMetadonnees();
83
		public HasWidgets getMetadonnees();
Line 84... Line 84...
84
 
84
 
Line 85... Line 85...
85
		public HasWidgets getNouvelleLigneProtocole();
85
		public HasWidgets getNouvelleLigneProtocole();
86
 
86
 
-
 
87
		public void afficherNomTaxonProbable(String nomTaxon);
-
 
88
		
-
 
89
		public HasClickHandlers getLienOuvrages();
-
 
90
		
-
 
91
		public HasClickHandlers getLienBonnier();
-
 
92
		
-
 
93
		public HasClickHandlers getLienCles();
-
 
94
		
87
		public void afficherNomTaxonProbable(String nomTaxon);
95
		public HasClickHandlers getLienEflore();
Line 88... Line 96...
88
 
96
	
89
	}
97
	}
Line 236... Line 244...
236
				vue.getVoteProtocole().clear();
244
				vue.getVoteProtocole().clear();
237
				new ObservationImagesPresenteur(new ObservationImagesVue(), cache.getObservationCourante(), CacheClient.getInstance().getImageCourante()).go(vue.getDetailImageObservation());
245
				new ObservationImagesPresenteur(new ObservationImagesVue(), cache.getObservationCourante(), CacheClient.getInstance().getImageCourante()).go(vue.getDetailImageObservation());
238
				chargerEtAjouterLignesVotesProtocole();
246
				chargerEtAjouterLignesVotesProtocole();
239
			}
247
			}
240
		});
248
		});
-
 
249
		
-
 
250
		
-
 
251
		vue.getLienOuvrages().addClickHandler(new ClickHandler() {
-
 
252
			
-
 
253
			@Override
-
 
254
			public void onClick(ClickEvent event) {
-
 
255
				Config config = new Config();
-
 
256
				Window.open(config.getUrl("ouvragesFlore"), "Flores numérisées", null);
-
 
257
			}
-
 
258
		});
-
 
259
 
-
 
260
		vue.getLienBonnier().addClickHandler(new ClickHandler() {
-
 
261
		
-
 
262
			@Override
-
 
263
			public void onClick(ClickEvent event) {
-
 
264
				Config config = new Config();
-
 
265
				Window.open(config.getUrl("bonnierPda"), "Flore Bonnier PDA", null);
-
 
266
			}
-
 
267
		});
-
 
268
		
-
 
269
		vue.getLienCles().addClickHandler(new ClickHandler() {
-
 
270
			
-
 
271
			@Override
-
 
272
			public void onClick(ClickEvent event) {
-
 
273
				Config config = new Config();
-
 
274
				Window.open(config.getUrl("clesDetermination"), "Clés de determination", null);
-
 
275
			}
-
 
276
		});
-
 
277
		
-
 
278
		vue.getLienEflore().addClickHandler(new ClickHandler() {
-
 
279
			
-
 
280
			@Override
-
 
281
			public void onClick(ClickEvent event) {
-
 
282
				Config config = new Config();
-
 
283
				Window.open(config.getUrl("eflore"), "eFlore", null);
-
 
284
			}
-
 
285
		});
241
	}
286
	}
242
}
287
}