Subversion Repositories eFlore/Archives.cel-v2

Rev

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

Rev 22 Rev 27
Line 45... Line 45...
45
	private GridView gViewIptc = null ;
45
	private GridView gViewIptc = null ;
Line 46... Line 46...
46
	
46
	
47
	private Panel panneauExifGrid = null; 
47
	private Panel panneauExifGrid = null; 
48
	private Panel panneauIptcGrid = null ;
48
	private Panel panneauIptcGrid = null ;
49
	private Panel panneauInfoGrid = null ;
-
 
50
	
49
	private Panel panneauInfoGrid = null ;
51
	private TreePanel panneauMotsCles = null ;
-
 
Line 52... Line 50...
52
	private HashMap motclesIds = null ;
50
	private ArbreMotsClesVue panneauMotsCles = null ;
53
	
51
	
54
	private TextField commentaireGeneral = null ;
52
	private TextField commentaireGeneral = null ;
Line 64... Line 62...
64
		imediateur = im ;
62
		imediateur = im ;
Line 65... Line 63...
65
		
63
		
66
		panneauExifGrid = new Panel("Exif") ;
64
		panneauExifGrid = new Panel("Exif") ;
67
		panneauIptcGrid = new Panel("Iptc") ;
65
		panneauIptcGrid = new Panel("Iptc") ;
68
		panneauInfoGrid = new Panel("info") ;
66
		panneauInfoGrid = new Panel("info") ;
69
		panneauMotsCles = new TreePanel("Mots clés") ;
-
 
70
		
-
 
71
		
-
 
72
		TreeNode root = new TreeNode("Mots clés") ;
-
 
73
		panneauMotsCles.setRootNode(root) ;
-
 
Line 74... Line 67...
74
		panneauMotsCles.setRootVisible(false);
67
		panneauMotsCles = new ArbreMotsClesVue(im) ;
75
		
68
		
76
		panneauInfoGrid.setLayout(new VerticalLayout());
69
		panneauInfoGrid.setLayout(new VerticalLayout());
77
		panneauInfoGrid.setHeight(500);
70
		panneauInfoGrid.setHeight(500);
Line 200... Line 193...
200
			ExifGrid.setSource(exifSource);
193
			ExifGrid.setSource(exifSource);
201
			IptcGrid.setSource(iptcSource);
194
			IptcGrid.setSource(iptcSource);
Line 202... Line 195...
202
 
195
 
203
		}	
196
		}	
-
 
197
	}
-
 
198
 
-
 
199
	/**
-
 
200
	 * @return the panneauMotsCles
-
 
201
	 */
-
 
202
	public ArbreMotsClesVue getPanneauMotsCles() {
-
 
203
		return panneauMotsCles;
204
	}
204
	}