Subversion Repositories eFlore/Applications.cel

Rev

Rev 798 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 798 Rev 1011
Line 1... Line 1...
1
package org.tela_botanica.client.vues.image;
1
package org.tela_botanica.client.vues.image;
Line 2... Line 2...
2
 
2
 
3
import org.tela_botanica.client.image.ImageMediateur;
3
import org.tela_botanica.client.image.ImageMediateur;
4
import org.tela_botanica.client.interfaces.Rafraichissable;
4
import org.tela_botanica.client.interfaces.Rafraichissable;
5
import org.tela_botanica.client.vues.ArbreMotsClesVue;
5
import org.tela_botanica.client.vues.ImageMotsClesVue;
Line 6... Line 6...
6
import org.tela_botanica.client.vues.image.filtres.RechercheFiltreTaxonVue;
6
import org.tela_botanica.client.vues.image.filtres.RechercheFiltreTaxonVue;
7
 
7
 
8
import com.google.gwt.core.client.JavaScriptObject;
8
import com.google.gwt.core.client.JavaScriptObject;
Line 82... Line 82...
82
	 */
82
	 */
83
	private Panel panneauInfoGrid = null;
83
	private Panel panneauInfoGrid = null;
84
	/**
84
	/**
85
	 * L'onglet des mots clés
85
	 * L'onglet des mots clés
86
	 */
86
	 */
87
	private ArbreMotsClesVue panneauMotsCles = null;
87
	private ImageMotsClesVue panneauMotsCles = null;
Line 88... Line 88...
88
	
88
	
89
	/**
89
	/**
90
	 * l'onglet des observations
90
	 * l'onglet des observations
91
	 */
91
	 */
Line 147... Line 147...
147
 
147
 
148
		// on crée et dispose les panneaux et les champs
148
		// on crée et dispose les panneaux et les champs
149
		panneauExifGrid = new Panel("Exif");
149
		panneauExifGrid = new Panel("Exif");
150
		panneauIptcGrid = new Panel("Iptc");
150
		panneauIptcGrid = new Panel("Iptc");
151
		panneauInfoGrid = new Panel("Infos");
151
		panneauInfoGrid = new Panel("Infos");
152
		panneauMotsCles = new ArbreMotsClesVue(im);
152
		panneauMotsCles = new ImageMotsClesVue(im);
Line 153... Line 153...
153
		panneauMotsCles.setHeight("500px");
153
		panneauMotsCles.setHeight("50%");
154
 
154
 
155
		Panel sousPanneauInfosGenerales = new Panel("Infos Générales");
155
		Panel sousPanneauInfosGenerales = new Panel("Infos Générales");
156
		sousPanneauInfosGenerales.setLayout(new VerticalLayout());
156
		sousPanneauInfosGenerales.setLayout(new VerticalLayout());
Line 489... Line 489...
489
	/**
489
	/**
490
	 * Accesseur pour le panneau des mots clés
490
	 * Accesseur pour le panneau des mots clés
491
	 * 
491
	 * 
492
	 * @return the panneauMotsCles
492
	 * @return the panneauMotsCles
493
	 */
493
	 */
494
	public ArbreMotsClesVue getPanneauMotsCles() {
494
	public ImageMotsClesVue getPanneauMotsCles() {
495
		return panneauMotsCles;
495
		return panneauMotsCles;
496
	}
496
	}
Line 497... Line 497...
497
 
497
 
498
	public BarreNotationVue getNoteVue() {
498
	public BarreNotationVue getNoteVue() {