1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
|
package chargementNouveauModele.view;
import javafx.beans.property.BooleanProperty;
import javafx.beans.property.IntegerProperty;
import javafx.beans.property.SimpleBooleanProperty;
import javafx.beans.property.SimpleIntegerProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.Labeled;
import javafx.scene.control.ListCell;
import javafx.scene.control.ListView;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.scene.text.Text;
import javafx.util.Callback;
public class DeveloppezController {
@FXML
private Labeled lblNbrLignesFenetre;
@FXML
private Button cmdSuite;
@FXML
private Button cmdDown;
@FXML
private Button cmdEnUneFois;
@FXML
private ListView<ListElements> lvObj;
@FXML
private Labeled lblTest;
ObservableList<ListElements> olFull = FXCollections.observableArrayList(
new ListElements("A", "K", "zéro",true, true,false,3),
new ListElements("A", "K", "un",false, false, false,1),
new ListElements("A", "L", "deux",false, true, false,2),
new ListElements("B", "M", "trois",true, true, false,3),
new ListElements("B", "M", "quatre",false, false, false,1),
new ListElements("C", "N", "cinq",true, true, false,3)
);
ObservableList<ListElements> myActiveListEL= FXCollections.observableArrayList();
private Integer borneInf;
private Integer borneSup;
private Integer nbrElementSource;
private Integer nbrLignesSelection;
private ListElements myCurrentElement = new ListElements();
/**
* The constructor.
* The constructor is called before the initialize() method.
*/
public DeveloppezController() {
}
/**
* Initializes the controller class. This method is automatically called
* after the fxml file has been loaded.
*/
@FXML
private void initialize() {
borneInf=0;
borneSup=-1;
nbrElementSource= olFull.size();
nbrLignesSelection=0;
while ((nbrLignesSelection < 9) & (borneSup < nbrElementSource-1)){
borneSup +=1;
myCurrentElement = olFull.get(borneSup);
if (borneSup == 0) {//premier élément
nbrLignesSelection +=3;
myCurrentElement.setSiPolePosition(true);
}
else
{
nbrLignesSelection += myCurrentElement.getNombreLignes();
};
myActiveListEL.add(olFull.get(borneSup));
}
lvObj.setItems(myActiveListEL);
lvObj.setCellFactory(new Callback<ListView<ListElements>, ListCell<ListElements>>() {
@Override
public ListCell<ListElements> call(ListView<ListElements> arg0) {
return new ListCell<ListElements>() {
@Override
protected void updateItem(ListElements item, boolean bln) {
super.updateItem(item, bln);
if (item != null) {
VBox vBox = new VBox();
if(item.getSiPremierTitre1()|| item.getSiPolePosition())
{
HBox hBox = new HBox();
hBox.getChildren().addAll(new Label("Titre 1 "), new Text(item.getTitre1()));
vBox.getChildren().addAll(hBox);
}
if(item.getSiPremierTitre2()|| item.getSiPolePosition())
{
HBox hBox = new HBox();
hBox.getChildren().addAll(new Label(" Titre 2 "), new Text(item.getTitre2()));
vBox.getChildren().addAll(hBox);
}
HBox hBox = new HBox();
hBox.getChildren().addAll(new Label(" Ma valeur = "), new Text(item.getValeur()));
vBox.getChildren().addAll(hBox);
setGraphic(vBox);
}
}
};
}
});
}
@FXML
private void handleDown(){
//retire le premier élément, calcule le nombre de lignes gagnées et, rajoute le ou les éléments supplémentaires
if (borneSup <nbrElementSource-1)// le bouton n'agit plus quand je suis en bas de ma source
{
borneInf +=1;
nbrLignesSelection -= myActiveListEL.get(1).getNombreLignes();
myActiveListEL.remove(0);
myActiveListEL.get(0).setSiPolePosition(true);
}
}
@FXML
private void handleSuite(){
//maintenant on rajoute un élément en fin de liste
// à la condition que j'aie assez de lignes disponibles
myCurrentElement = olFull.get(borneSup+1);
if (9- nbrLignesSelection >= myCurrentElement.getNombreLignes())
{
nbrLignesSelection += myCurrentElement.getNombreLignes();
borneSup+=1;
myActiveListEL.add(olFull.get(borneSup));
}
}
@FXML
private void handleEnUneFois(){
handleDown();
handleSuite();
}
private class ListElements {
private final StringProperty titre1;
private final StringProperty titre2;
private final StringProperty valeur;
private final BooleanProperty siPremierTitre1;
private final BooleanProperty siPremierTitre2;
private final BooleanProperty siPolePosition;
private final IntegerProperty nombreLignes;
private ListElements(String t1, String t2, String v , Boolean sit1,Boolean sit2, Boolean siPolePos, Integer nbrLignes) {
this.titre1 = new SimpleStringProperty(t1);
this.titre2 =new SimpleStringProperty(t2);
this.valeur = new SimpleStringProperty(v);
this.siPremierTitre1 = new SimpleBooleanProperty(sit1) ;
this.siPremierTitre2 = new SimpleBooleanProperty(sit2) ;
this.siPolePosition= new SimpleBooleanProperty(siPolePos);
this.nombreLignes= new SimpleIntegerProperty(nbrLignes);
}
private ListElements() {
this.titre1 = new SimpleStringProperty(null);
this.titre2 =new SimpleStringProperty(null);
this.valeur = new SimpleStringProperty(null);
this.siPremierTitre1 = new SimpleBooleanProperty(false) ;
this.siPremierTitre2 = new SimpleBooleanProperty(false) ;
this.siPolePosition= new SimpleBooleanProperty(false);
this.nombreLignes= new SimpleIntegerProperty(0);
}
private String getTitre1() {
return titre1.get();
}
private String getTitre2() {
return titre2.get();
}
private String getValeur() {
return valeur.get();
}
private Boolean getSiPremierTitre1() {
return siPremierTitre1.get();
}
private Boolean getSiPremierTitre2() {
return siPremierTitre2.get();
}
private Boolean getSiPolePosition() {
return siPolePosition.get();
}
private void setSiPolePosition(Boolean SiPolePosition) {
this. siPolePosition.set( SiPolePosition);
}
private Integer getNombreLignes() {
return nombreLignes.get();
}
}
} |
Partager