Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 2062 Rev 2618
Line 1... Line 1...
1
package org.tela_botanica.client.vues;
1
package org.tela_botanica.client.vues;
Line -... Line 2...
-
 
2
 
2
 
3
import org.tela_botanica.client.i18n.Msg;
3
import org.tela_botanica.client.image.ImageMediateur;
4
import org.tela_botanica.client.image.ImageMediateur;
4
import org.tela_botanica.client.interfaces.Rafraichissable;
5
import org.tela_botanica.client.interfaces.Rafraichissable;
Line 5... Line 6...
5
import org.tela_botanica.client.util.MotsClesUtilitaire;
6
import org.tela_botanica.client.util.MotsClesUtilitaire;
Line 97... Line 98...
97
	 * @param im
98
	 * @param im
98
	 *            le médiateur à associer
99
	 *            le médiateur à associer
99
	 */
100
	 */
100
	public ArbreMotsClesVue(ImageMediateur im) {
101
	public ArbreMotsClesVue(ImageMediateur im) {
101
		// on crée le panel
102
		// on crée le panel
102
		super("Mots clés");
103
		super(Msg.get("mots-cles-arbre"));
103
		this.setLayout(new VerticalLayout());
104
		this.setLayout(new VerticalLayout());
104
		iMediateur = im;
105
		iMediateur = im;
Line 105... Line 106...
105
 
106
 
106
		// on crée le conteneur de l'arbre
107
		// on crée le conteneur de l'arbre
Line 110... Line 111...
110
		arbreMotsCles.setId("x-view-tree-keyword");
111
		arbreMotsCles.setId("x-view-tree-keyword");
Line 111... Line 112...
111
 
112
 
112
		// on crée une racine pour l'arbre
113
		// on crée une racine pour l'arbre
113
		TreeNode root = new TreeNode("Tags");
114
		TreeNode root = new TreeNode("Tags");
114
		root.setId("racine");
115
		root.setId("racine");
115
		String[] usObject = { "Mots clés", "racine" };
116
		String[] usObject = {Msg.get("mots-cles-arbre"), "racine" };
116
		root.setUserObject(usObject);
117
		root.setUserObject(usObject);
117
		arbreMotsCles.setRootNode(root);
118
		arbreMotsCles.setRootNode(root);
118
		arbreMotsCles.setRootVisible(true);
119
		arbreMotsCles.setRootVisible(true);
119
		arbreMotsCles.setBorder(false);
120
		arbreMotsCles.setBorder(false);