Subversion Repositories eFlore/Archives.cel-v1

Rev

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

Rev 11 Rev 12
Line 14... Line 14...
14
 
14
 
15
  
15
  
16
  private TopPanel topPanel = null;
16
  private TopPanel topPanel = null;
-
 
17
  private CenterPanel centerPanel = null;
Line 17... Line 18...
17
  private CenterPanel centerPanel = null;
18
  private LeftPanel leftPanel = null;
18
  private LeftPanel leftPanel = null;
19
  private EntryPanel entryPanel = null;
Line 19... Line 20...
19
  
20
  
20
  private Mediator mediator = null;
21
  private Mediator mediator = null;
21
  
22
 
22
 
23
 
Line 35... Line 36...
35
  
36
  
Line 36... Line 37...
36
  public void initAsync() {
37
  public void initAsync() {
-
 
38
	  
37
	  
39
 
38
 
40
	  centerPanel = new CenterPanel(mediator);
Line -... Line 41...
-
 
41
	  
Line 39... Line 42...
39
	  centerPanel = new CenterPanel(mediator);
42
	  topPanel = new TopPanel(mediator);
40
	  topPanel = new TopPanel(mediator);
43
	  leftPanel = new LeftPanel(mediator);
Line 41... Line 44...
41
	  leftPanel = new LeftPanel(mediator);
44
 
-
 
45
	  entryPanel = new EntryPanel(mediator);
Line 42... Line 46...
42
 
46
	  
43
	  
47
	  // Information haut de page (nom application, connexion ... etc).
Line 44... Line 48...
44
	  // Information haut de page (nom application, connexion ... etc).
48
	  // A regler 
45
	  // A regler 
49
	  
46
	  
50
	  entryPanel.setStyleName("item-Input");
47
	  topPanel.setWidth("100%");
51
	  
-
 
52
 
Line 48... Line 53...
48
 
53
	  
49
	  
54
	  // DockPanel permet d'arranger plusieurs panneaux au coins cardinaux, le panneau central remplissant
50
	  // DockPanel permet d'arranger plusieurs panneaux au coins cardinaux, le panneau central remplissant
55
	  // l'espace laissé.
Line 66... Line 71...
66
	  outer.setCellWidth(centerPanel, "85%");
71
	  outer.setCellWidth(centerPanel, "85%");
Line 67... Line 72...
67
	 
72
	 
68
//	  Window.enableScrolling(false);
73
//	  Window.enableScrolling(false);
Line -... Line 74...
-
 
74
	  Window.setMargin("0px");
-
 
75
 
-
 
76
	  mediator.onInit();
-
 
77
	  
69
	  Window.setMargin("0px");
78
	  entryPanel.show();
Line -... Line 79...
-
 
79
	  
Line 70... Line 80...
70
 
80
	  RootPanel.get().add(outer);
Line -... Line 81...
-
 
81
 
Line 71... Line 82...
71
	  RootPanel.get().add(outer);
82