Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1471 Rev 1566
Line 37... Line 37...
37
 
37
 
38
	@UiField
38
	@UiField
Line 39... Line 39...
39
	Panel votePrisEnCompte, voteModifie, voteSupprime, zoneFleur;
39
	Panel votePrisEnCompte, voteModifie, voteSupprime, zoneFleur;
40
	
40
	
Line 41... Line 41...
41
	@UiField
41
	@UiField
42
	Label nbVotes, protocole, noteGenerale;
42
	Label nbVotes, protocole, noteGenerale, nbPoints;
Line 43... Line 43...
43
 
43
 
Line 65... Line 65...
65
	
65
	
66
	public HasText getNbVotes() {
66
	public HasText getNbVotes() {
67
		return nbVotes;
67
		return nbVotes;
Line -... Line 68...
-
 
68
	}
-
 
69
	
-
 
70
	public HasText getNbPoints() {
-
 
71
		return nbPoints;
68
	}
72
	}
69
	
73
	
70
	public HasClickHandlers getVotes() {
74
	public HasClickHandlers getVotes() {
Line 71... Line 75...
71
		return votes;
75
		return votes;
Line 81... Line 85...
81
	
85
	
82
	public void masquerBoutonAnnuler() {
86
	public void masquerBoutonAnnuler() {
83
		boutonAnnuler.setVisible(false);
87
		boutonAnnuler.setVisible(false);
Line 84... Line 88...
84
	}
88
	}
85
	
89
	
86
	public void afficherNbVotes () {
90
	public void afficherNbVotes() {
Line 87... Line 91...
87
		nbVotes.setVisible(true);
91
		nbVotes.setVisible(true);
88
	}
92
	}
89
	
93
	
Line -... Line 94...
-
 
94
	public void masquerNbVotes() {
-
 
95
		nbVotes.setVisible(false);
-
 
96
	}
-
 
97
	
-
 
98
	public void afficherNbPoints() {
-
 
99
		nbPoints.setVisible(true);
-
 
100
	}
-
 
101
	
90
	public void masquerNbVotes () {
102
	public void masquerNbPoints() {
91
		nbVotes.setVisible(false);
103
		nbPoints.setVisible(false);
92
	}
104
	}
Line 93... Line 105...
93
	
105
	
94
	public void reinitialiserVotes() {
106
	public void reinitialiserVotes() {
95
		votes.setValue(valeurOrigine);
107
		votes.setValue(valeurOrigine);
96
	}
108
	}
97
	
109
	
98
	public void rafraichir(int voteUtilisateur, int nombreVotes) {
110
	public void rafraichir(int voteUtilisateur, int nombreVotes, int nombrePoints) {
-
 
111
		valeurOrigine = voteUtilisateur;
-
 
112
		String valeurVote = nombreVotes+" "+I18n.getVocabulary().nbVotes();
-
 
113
		if (nombreVotes > 1) {
-
 
114
			valeurVote += "s";
99
		valeurOrigine = voteUtilisateur;
115
		}
-
 
116
		String valeurPoints = ", "+Math.max(0, nombrePoints)+" "+I18n.getVocabulary().nbPoints();
100
		String valeurVote = nombreVotes+" "+I18n.getVocabulary().nbVotes();
117
		if (nombrePoints > 1) {
101
		if (nombreVotes > 1) {
118
			valeurPoints += "s";
Line 102... Line 119...
102
			valeurVote += "s";
119
		}
103
		}
120
		nbVotes.setText(valeurVote);