Subversion Repositories eFlore/Applications.del

Rev

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

Rev 1501 Rev 1566
Line 56... Line 56...
56
 
56
 
Line 57... Line 57...
57
		public HasClickHandlers getTriParNbVotesAscendant();
57
		public HasClickHandlers getTriParNbVotesAscendant();
Line -... Line 58...
-
 
58
 
-
 
59
		public HasClickHandlers getTriParNbVotesDescendant();
-
 
60
 
-
 
61
		public HasClickHandlers getTriParPointsAscendant();
58
 
62
 
Line 59... Line 63...
59
		public HasClickHandlers getTriParNbVotesDescendant();
63
		public HasClickHandlers getTriParPointsDescendant();
Line 60... Line 64...
60
 
64
 
Line 81... Line 85...
81
		public void afficherVoteAscendant();
85
		public void afficherVoteAscendant();
Line 82... Line 86...
82
 
86
 
Line 83... Line 87...
83
		public void afficherVoteDescendant();
87
		public void afficherVoteDescendant();
84
 
-
 
85
		public HasClickHandlers getLabelDate();
-
 
Line 86... Line 88...
86
	
88
 
Line 87... Line 89...
87
		public HasClickHandlers getLabelTag();
89
		public HasClickHandlers getLabelDate();
Line 88... Line 90...
88
 
90
 
Line 89... Line 91...
89
		public void masquerDateAscendant();
91
		public void masquerDateAscendant();
-
 
92
 
-
 
93
		public void masquerDateDescendant();
Line 90... Line 94...
90
 
94
 
Line 91... Line 95...
91
		public void masquerDateDescendant();
95
		public void afficherDateAscendant();
Line 92... Line 96...
92
 
96
 
Line 93... Line 97...
93
		public void afficherDateAscendant();
97
		public void afficherDateDescendant();
Line -... Line 98...
-
 
98
	
-
 
99
		public HasClickHandlers getLabelTag();
-
 
100
 
-
 
101
		public void masquerTagAscendant();
-
 
102
 
-
 
103
		public void afficherTagDescendant();
-
 
104
 
-
 
105
		public void masquerTagDescendant();
-
 
106
 
-
 
107
		public void afficherTagAscendant();
94
 
108
 
Line 95... Line 109...
95
		public void afficherDateDescendant();
109
		public HasClickHandlers getLabelPoints();
96
 
110
 
97
		public void masquerTagAscendant();
111
		public void afficherPointsAscendant();
98
 
112
 
-
 
113
		public void afficherPointsDescendant();
99
		public void afficherTagDescendant();
114
 
100
 
115
		public void masquerPointsAscendant();
Line 101... Line 116...
101
		public void masquerTagDescendant();
116
 
102
 
117
		public void masquerPointsDescendant();
Line 126... Line 141...
126
		vue.masquerVoteAscendant();
141
		vue.masquerVoteAscendant();
127
		vue.masquerDateDescendant();
142
		vue.masquerDateDescendant();
128
		vue.masquerDateAscendant();
143
		vue.masquerDateAscendant();
129
		vue.masquerTagAscendant();
144
		vue.masquerTagAscendant();
130
		vue.masquerTagDescendant();
145
		vue.masquerTagDescendant();
-
 
146
		vue.masquerPointsAscendant();
-
 
147
		vue.masquerPointsDescendant();
Line 131... Line 148...
131
		
148
		
132
		initialiserAPartirInfosCache();
149
		initialiserAPartirInfosCache();
Line 133... Line 150...
133
	}
150
	}
Line 158... Line 175...
158
 
175
 
159
		vue.getLabelVote().addClickHandler(surClicTriVote);
176
		vue.getLabelVote().addClickHandler(surClicTriVote);
160
		vue.getTriParNbVotesAscendant().addClickHandler(surClicTriVote);
177
		vue.getTriParNbVotesAscendant().addClickHandler(surClicTriVote);
Line -... Line 178...
-
 
178
		vue.getTriParNbVotesDescendant().addClickHandler(surClicTriVote);
-
 
179
 
-
 
180
		ClickHandler surClicTriPoints = new ClickHandler() {
-
 
181
			@Override
-
 
182
			public void onClick(ClickEvent event) {
-
 
183
				surClicTriPoints();
-
 
184
			}
-
 
185
		};
-
 
186
 
-
 
187
		vue.getLabelPoints().addClickHandler(surClicTriPoints);
-
 
188
		vue.getTriParPointsAscendant().addClickHandler(surClicTriPoints);
161
		vue.getTriParNbVotesDescendant().addClickHandler(surClicTriVote);
189
		vue.getTriParPointsDescendant().addClickHandler(surClicTriPoints);
162
 
190
 
163
		ClickHandler surClicTriDate = new ClickHandler() {
191
		ClickHandler surClicTriDate = new ClickHandler() {
164
			@Override
192
			@Override
165
			public void onClick(ClickEvent event) {
193
			public void onClick(ClickEvent event) {
Line 198... Line 226...
198
		mettreAjourAffichageTriTag();
226
		mettreAjourAffichageTriTag();
199
		InformationsRecherche informationsRechercheImages = CacheClient.getInstance().getInformationsRechercheImage();
227
		InformationsRecherche informationsRechercheImages = CacheClient.getInstance().getInformationsRechercheImage();
200
		informationsRechercheImages.setTriParNbTags(triCourantTag);
228
		informationsRechercheImages.setTriParNbTags(triCourantTag);
201
		informationsRechercheImages.setTriParDate(ModeTri.PAS_DE_TRI);
229
		informationsRechercheImages.setTriParDate(ModeTri.PAS_DE_TRI);
202
		informationsRechercheImages.setTriParNbVotes(ModeTri.PAS_DE_TRI);
230
		informationsRechercheImages.setTriParNbVotes(ModeTri.PAS_DE_TRI);
-
 
231
		informationsRechercheImages.setTriParNbPoints(ModeTri.PAS_DE_TRI);
203
		chargerEtAfficherImagesPageEnCours();
232
		chargerEtAfficherImagesPageEnCours();
204
	}
233
	}
Line 205... Line 234...
205
	
234
	
206
	private void mettreAjourAffichageTriTag() {
235
	private void mettreAjourAffichageTriTag() {
207
		vue.masquerDateDescendant();
236
		vue.masquerDateDescendant();
208
		vue.masquerDateAscendant();
237
		vue.masquerDateAscendant();
209
		vue.masquerVoteDescendant();
238
		vue.masquerVoteDescendant();
-
 
239
		vue.masquerVoteAscendant();
-
 
240
		vue.masquerPointsAscendant();
210
		vue.masquerVoteAscendant();
241
		vue.masquerPointsDescendant();
211
		if (triCourantTag == ModeTri.TRI_ASCENDANT) {
242
		if (triCourantTag == ModeTri.TRI_ASCENDANT) {
212
			triCourantTag = ModeTri.TRI_DESCENDANT;
243
			triCourantTag = ModeTri.TRI_DESCENDANT;
213
			vue.masquerTagAscendant();
244
			vue.masquerTagAscendant();
214
			vue.afficherTagDescendant();
245
			vue.afficherTagDescendant();
Line 225... Line 256...
225
		int IdProtocole = CacheClient.getInstance().getProtocoleCourant().getId();
256
		int IdProtocole = CacheClient.getInstance().getProtocoleCourant().getId();
226
		informationsRechercheImages.setTriParNbVotes(triCourantVote);
257
		informationsRechercheImages.setTriParNbVotes(triCourantVote);
227
		informationsRechercheImages.setIdProtocoleSelectionne(IdProtocole + "");
258
		informationsRechercheImages.setIdProtocoleSelectionne(IdProtocole + "");
228
		informationsRechercheImages.setTriParDate(ModeTri.PAS_DE_TRI);
259
		informationsRechercheImages.setTriParDate(ModeTri.PAS_DE_TRI);
229
		informationsRechercheImages.setTriParNbTags(ModeTri.PAS_DE_TRI);
260
		informationsRechercheImages.setTriParNbTags(ModeTri.PAS_DE_TRI);
-
 
261
		informationsRechercheImages.setTriParNbPoints(ModeTri.PAS_DE_TRI);
230
		chargerEtAfficherImagesPageEnCours();
262
		chargerEtAfficherImagesPageEnCours();
231
	}
263
	}
Line 232... Line 264...
232
	
264
	
233
	private void mettreAJourAffichageTriVote() {
265
	private void mettreAJourAffichageTriVote() {
234
		vue.masquerDateDescendant();
266
		vue.masquerDateDescendant();
235
		vue.masquerDateAscendant();
267
		vue.masquerDateAscendant();
236
		vue.masquerTagAscendant();
268
		vue.masquerTagAscendant();
-
 
269
		vue.masquerTagDescendant();
-
 
270
		vue.masquerPointsAscendant();
237
		vue.masquerTagDescendant();
271
		vue.masquerPointsDescendant();
238
		if (triCourantVote == ModeTri.TRI_ASCENDANT) {
272
		if (triCourantVote == ModeTri.TRI_ASCENDANT) {
239
			triCourantVote = ModeTri.TRI_DESCENDANT;
273
			triCourantVote = ModeTri.TRI_DESCENDANT;
240
			vue.masquerVoteAscendant();
274
			vue.masquerVoteAscendant();
241
			vue.afficherVoteDescendant();
275
			vue.afficherVoteDescendant();
Line 244... Line 278...
244
			vue.masquerVoteDescendant();
278
			vue.masquerVoteDescendant();
245
			vue.afficherVoteAscendant();
279
			vue.afficherVoteAscendant();
246
		}
280
		}
247
	}
281
	}
Line -... Line 282...
-
 
282
 
-
 
283
	public void surClicTriPoints() {
-
 
284
		mettreAJourAffichageTriPoints();
-
 
285
		InformationsRecherche informationsRechercheImages = CacheClient.getInstance().getInformationsRechercheImage();
-
 
286
		int IdProtocole = CacheClient.getInstance().getProtocoleCourant().getId();
-
 
287
		informationsRechercheImages.setTriParNbPoints(triCourantPoints);
-
 
288
		informationsRechercheImages.setIdProtocoleSelectionne(IdProtocole + "");
-
 
289
		informationsRechercheImages.setTriParDate(ModeTri.PAS_DE_TRI);
-
 
290
		informationsRechercheImages.setTriParNbTags(ModeTri.PAS_DE_TRI);
-
 
291
		informationsRechercheImages.setTriParNbVotes(ModeTri.PAS_DE_TRI);
-
 
292
		chargerEtAfficherImagesPageEnCours();
-
 
293
	}
-
 
294
	
-
 
295
	private void mettreAJourAffichageTriPoints() {
-
 
296
		vue.masquerDateDescendant();
-
 
297
		vue.masquerDateAscendant();
-
 
298
		vue.masquerTagAscendant();
-
 
299
		vue.masquerTagDescendant();
-
 
300
		vue.masquerVoteAscendant();
-
 
301
		vue.masquerVoteDescendant();
-
 
302
		if (triCourantPoints == ModeTri.TRI_ASCENDANT) {
-
 
303
			triCourantPoints = ModeTri.TRI_DESCENDANT;
-
 
304
			vue.masquerPointsAscendant();
-
 
305
			vue.afficherPointsDescendant();
-
 
306
		} else {
-
 
307
			triCourantPoints = ModeTri.TRI_ASCENDANT;
-
 
308
			vue.masquerPointsDescendant();
-
 
309
			vue.afficherPointsAscendant();
-
 
310
		}
-
 
311
	}
248
 
312
 
249
	public void surClicTriDate() {
313
	public void surClicTriDate() {
250
		mettreAJourAffichageTriDate();
314
		mettreAJourAffichageTriDate();
251
		InformationsRecherche informationsRechercheImages = CacheClient.getInstance().getInformationsRechercheImage();
315
		InformationsRecherche informationsRechercheImages = CacheClient.getInstance().getInformationsRechercheImage();
252
		informationsRechercheImages.setTriParDate(triCourantDate);
316
		informationsRechercheImages.setTriParDate(triCourantDate);
253
		informationsRechercheImages.setTriParNbVotes(ModeTri.PAS_DE_TRI);
317
		informationsRechercheImages.setTriParNbVotes(ModeTri.PAS_DE_TRI);
-
 
318
		informationsRechercheImages.setTriParNbTags(ModeTri.PAS_DE_TRI);
254
		informationsRechercheImages.setTriParNbTags(ModeTri.PAS_DE_TRI);
319
		informationsRechercheImages.setTriParNbPoints(ModeTri.PAS_DE_TRI);
255
		chargerEtAfficherImagesPageEnCours();
320
		chargerEtAfficherImagesPageEnCours();
Line 256... Line 321...
256
	}
321
	}
257
	
322
	
258
	private void mettreAJourAffichageTriDate() {
323
	private void mettreAJourAffichageTriDate() {
259
		vue.masquerTagAscendant();
324
		vue.masquerTagAscendant();
260
		vue.masquerTagDescendant();
325
		vue.masquerTagDescendant();
-
 
326
		vue.masquerVoteDescendant();
-
 
327
		vue.masquerVoteAscendant();
261
		vue.masquerVoteDescendant();
328
		vue.masquerPointsAscendant();
262
		vue.masquerVoteAscendant();
329
		vue.masquerPointsDescendant();
263
		if (triCourantDate == ModeTri.TRI_ASCENDANT) {
330
		if (triCourantDate == ModeTri.TRI_ASCENDANT) {
264
			triCourantDate = ModeTri.TRI_DESCENDANT;
331
			triCourantDate = ModeTri.TRI_DESCENDANT;
265
			vue.masquerDateAscendant();
332
			vue.masquerDateAscendant();