Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 1292 Rev 2627
Line 1... Line 1...
1
package org.tela_botanica.client.vues.observation.indicateurs;
1
package org.tela_botanica.client.vues.observation.indicateurs;
Line -... Line 2...
-
 
2
 
2
 
3
import org.tela_botanica.client.i18n.Msg;
3
import org.tela_botanica.client.interfaces.Rafraichissable;
4
import org.tela_botanica.client.interfaces.Rafraichissable;
4
import org.tela_botanica.client.modeles.objets.ImageCarnet;
5
import org.tela_botanica.client.modeles.objets.ImageCarnet;
Line 5... Line 6...
5
import org.tela_botanica.client.observation.ObservationMediateur;
6
import org.tela_botanica.client.observation.ObservationMediateur;
Line 40... Line 41...
40
	private ObservationMediateur oMediateur = null;
41
	private ObservationMediateur oMediateur = null;
Line 41... Line 42...
41
	
42
	
42
	/**
43
	/**
43
	 * Le titre du panneau
44
	 * Le titre du panneau
44
	 */
45
	 */
Line 45... Line 46...
45
	private static String titrePanneau = "Images liƩes";
46
	private static String titrePanneau = Msg.get("images-liees");
46
 
47
 
47
	/**
48
	/**
48
	 * Panneau conteneur pour l'image
49
	 * Panneau conteneur pour l'image
Line 97... Line 98...
97
	/**
98
	/**
98
	 * Booleen d'initalisation du conteneur d'image
99
	 * Booleen d'initalisation du conteneur d'image
99
	 */
100
	 */
100
	private boolean conteneurInitialise = false;
101
	private boolean conteneurInitialise = false;
Line 101... Line 102...
101
	
102
	
Line 102... Line 103...
102
	private ToolTip tp = new ToolTip("<div class=\"x-tooltip-help\"> Double cliquez pour agrandir l'image </div>") ;
103
	private ToolTip tp = new ToolTip("<div class=\"x-tooltip-help\"> " + Msg.get("double-clic-agrandir") + " </div>") ;
Line 103... Line 104...
103
	
104
	
Line 104... Line 105...
104
	com.gwtext.client.widgets.Window imgZoom = new com.gwtext.client.widgets.Window("Agrandissement") ;
105
	com.gwtext.client.widgets.Window imgZoom = new com.gwtext.client.widgets.Window(Msg.get("agrandissement")) ;
105
	
106
	
Line 457... Line 458...
457
	}
458
	}
Line 458... Line 459...
458
	
459
	
Line 459... Line 460...
459
	public void afficherMenu(int[] xy) {
460
	public void afficherMenu(int[] xy) {
460
		
461
		
Line 461... Line 462...
461
		Menu mn = new Menu() ;
462
		Menu mn = new Menu() ;
Line 462... Line 463...
462
		final Item suppLiaison = new Item("Supprimer la liaison") ;
463
		final Item suppLiaison = new Item(Msg.get("supprimer-liaison"));