From 3f2f861624532292cf848785a337bcd68f97e9ab Mon Sep 17 00:00:00 2001 From: Yessine-iut Date: Wed, 13 May 2020 17:59:08 +0200 Subject: [PATCH] =?UTF-8?q?ScrollPane=20probl=C3=A8me=20regl=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ihm/controller/PlateauController.java | 25 +++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/src/ihm/controller/PlateauController.java b/src/ihm/controller/PlateauController.java index 64c97d0..aa7505a 100644 --- a/src/ihm/controller/PlateauController.java +++ b/src/ihm/controller/PlateauController.java @@ -28,6 +28,7 @@ import javafx.fxml.Initializable; import javafx.scene.Group; import javafx.scene.Parent; import javafx.scene.control.Label; +import javafx.scene.control.SplitPane; import javafx.scene.image.Image; import javafx.scene.image.ImageView; import javafx.scene.input.MouseEvent; @@ -400,6 +401,18 @@ public class PlateauController implements Initializable { LieuZJ lzj = fxmlLoader.getController(); lzj.setImageView(this.getImageCarte(j.getCarteLieu())); JoueurIHM jihm = getJoueurIHM(j); + if(jihm.getPosition()==4 || jihm.getPosition()==5) { + SplitPane s=(SplitPane)root.getChildren().get(0); + AnchorPane a=(AnchorPane)s.getItems().get(0); + VBox v= (VBox)a.getChildren().get(0); + AnchorPane b=(AnchorPane)s.getItems().get(1); + ImageView i= (ImageView)b.getChildren().get(0); + + v.setRotate(180); + i.setRotate(180); + s.setRotate(180); + } + jihm.setZoneJoueur(root); } public void afficherChoisirJoueur(Joueur j, List joueurs, Contexte contexte) throws IOException { @@ -555,6 +568,18 @@ public class PlateauController implements Initializable { lzj.setImageView(im); lzj.setText("Cachez la carte vision"); JoueurIHM jihm = getJoueurIHM(j); + if(jihm.getPosition()==4 || jihm.getPosition()==5) { + SplitPane s=(SplitPane)root.getChildren().get(0); + AnchorPane a=(AnchorPane)s.getItems().get(0); + VBox v= (VBox)a.getChildren().get(0); + AnchorPane b=(AnchorPane)s.getItems().get(1); + ImageView i= (ImageView)b.getChildren().get(0); + + v.setRotate(180); + i.setRotate(180); + s.setRotate(180); + } + jihm.getZoneJoueur(); jihm.setZoneJoueur(root); }