28 |
ddelon |
1 |
/**
|
|
|
2 |
David Delon david.delon@clapas.net 2007
|
|
|
3 |
|
|
|
4 |
*/
|
|
|
5 |
|
|
|
6 |
/*
|
|
|
7 |
* ActionView.java : affichage actions sur releves saisie ou affiches (suppression, export etc...)
|
|
|
8 |
*
|
|
|
9 |
* TODO : appel de fonction du mediator, au lieu de passer par les methode de la classe de gestion d'affichage des releves (voir les TODO dans le
|
|
|
10 |
* corps de ce programme)
|
|
|
11 |
*
|
|
|
12 |
* 1: Le programme affiche les boutons commandant les actions sur les releves et arme les actions correspondantes
|
|
|
13 |
* - Transmission d'elements (vers tela botanica)
|
|
|
14 |
* - Suppression d'elements selectionnes
|
|
|
15 |
* - Export vers tableur
|
|
|
16 |
* - Selection / Deselection des releves affiches
|
|
|
17 |
*/
|
|
|
18 |
|
|
|
19 |
package org.tela_botanica.client;
|
|
|
20 |
|
|
|
21 |
|
|
|
22 |
import net.mygwt.ui.client.Style;
|
|
|
23 |
import net.mygwt.ui.client.widget.WidgetContainer;
|
|
|
24 |
import net.mygwt.ui.client.widget.layout.BorderLayoutData;
|
|
|
25 |
|
|
|
26 |
import com.google.gwt.user.client.Window;
|
|
|
27 |
import com.google.gwt.user.client.ui.ClickListener;
|
|
|
28 |
import com.google.gwt.user.client.ui.HTML;
|
|
|
29 |
import com.google.gwt.user.client.ui.HorizontalPanel;
|
|
|
30 |
import com.google.gwt.user.client.ui.Widget;
|
|
|
31 |
public class ActionView {
|
|
|
32 |
|
|
|
33 |
private Mediator mediator=null;
|
|
|
34 |
private HTML exportButton=null;
|
|
|
35 |
|
|
|
36 |
|
|
|
37 |
public ActionView(final Mediator med) {
|
|
|
38 |
|
|
|
39 |
mediator=med;
|
|
|
40 |
|
|
|
41 |
HorizontalPanel panel = new HorizontalPanel();
|
|
|
42 |
HorizontalPanel buttons = new HorizontalPanel();
|
|
|
43 |
buttons.setSpacing(3);
|
|
|
44 |
|
|
|
45 |
|
|
|
46 |
// Transmission d'elements
|
|
|
47 |
|
|
|
48 |
HTML transButton=new HTML("Transmettre Tela Botanica");
|
|
|
49 |
transButton.setStyleName("html_button_long");
|
|
|
50 |
transButton.addClickListener(
|
|
|
51 |
new ClickListener() {
|
|
|
52 |
public void onClick(Widget sender) {
|
|
|
53 |
// TODO : une action dans le mediator
|
|
|
54 |
if (mediator.getConnected()) {
|
|
|
55 |
mediator.getInventoryListView().transmitElement();
|
|
|
56 |
}
|
|
|
57 |
else {
|
|
|
58 |
Window.alert("Identifiez-vous pour transmettre");
|
|
|
59 |
}
|
|
|
60 |
}
|
|
|
61 |
}
|
|
|
62 |
);
|
|
|
63 |
|
|
|
64 |
buttons.add(transButton);
|
|
|
65 |
|
|
|
66 |
// Suppression d'elements
|
|
|
67 |
|
|
|
68 |
HTML delButton=new HTML("Suppression");
|
|
|
69 |
delButton.setStyleName("html_button");
|
|
|
70 |
delButton.addClickListener(
|
|
|
71 |
new ClickListener() {
|
|
|
72 |
public void onClick(Widget sender) {
|
|
|
73 |
// TODO : une action dans le mediator
|
|
|
74 |
mediator.getInventoryListView().deleteElement();
|
|
|
75 |
}
|
|
|
76 |
}
|
|
|
77 |
);
|
|
|
78 |
|
|
|
79 |
buttons.add(delButton);
|
|
|
80 |
|
|
|
81 |
// Export (renseigne lors de l'affichage des releves )
|
|
|
82 |
|
|
|
83 |
exportButton=new HTML();
|
|
|
84 |
buttons.add(exportButton);
|
|
|
85 |
exportButton.setStyleName("html_button");
|
|
|
86 |
|
|
|
87 |
|
|
|
88 |
panel.add(buttons);
|
|
|
89 |
|
|
|
90 |
WidgetContainer center=mediator.getCenterContainer();
|
|
|
91 |
BorderLayoutData centerData = new BorderLayoutData(Style.SOUTH, .05f, 100, 300);
|
|
|
92 |
center.add(panel,centerData);
|
|
|
93 |
|
|
|
94 |
|
|
|
95 |
}
|
|
|
96 |
|
|
|
97 |
|
|
|
98 |
public HTML getExportButton() {
|
|
|
99 |
return exportButton;
|
|
|
100 |
}
|
|
|
101 |
}
|
|
|
102 |
|
|
|
103 |
|
|
|
104 |
|
|
|
105 |
/* +--Fin du code ---------------------------------------------------------------------------------------+
|
|
|
106 |
* $Log$
|
|
|
107 |
* Revision 1.5 2007-12-22 14:48:53 ddelon
|
|
|
108 |
* Documentation et refactorisation
|
|
|
109 |
*
|
|
|
110 |
* Revision 1.5 2007-09-17 19:25:34 ddelon
|
|
|
111 |
* Documentation
|
|
|
112 |
*
|
|
|
113 |
*
|
|
|
114 |
*/
|