M431-ShadowHunterGame/src/ihm/controller/MenuJoueurController.java
2020-05-04 19:36:39 +02:00

43 lines
1.3 KiB
Java

package ihm.controller;
import java.io.IOException;
import java.net.URL;
import java.util.Locale;
import java.util.ResourceBundle;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.fxml.Initializable;
import javafx.scene.Parent;
import javafx.scene.control.SplitPane;
import javafx.scene.image.ImageView;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.Pane;
public class MenuJoueurController implements Initializable{
@Override
public void initialize(URL arg0, ResourceBundle arg1) {
//nomJoueur.setText(joueur.getNom());
}
@FXML
public void changeZoneToScrollPaneJoueur(MouseEvent me) throws IOException {
final URL fxmlURL = getClass().getResource("/ihm/ressources/ScrollPaneJoueur.fxml");
final ResourceBundle bundle = ResourceBundle.getBundle("domaine.properties.langue", Locale.ENGLISH);
final FXMLLoader fxmlLoader = new FXMLLoader(fxmlURL, bundle);
AnchorPane bp = fxmlLoader.load();
ImageView iv = ((ImageView)me.getSource());
Parent p = iv.getParent().getParent();
AnchorPane ap = (AnchorPane)p;
ap.getChildren().setAll(bp);
AnchorPane.setTopAnchor(bp, 0.0);
AnchorPane.setBottomAnchor(bp, 0.0);
AnchorPane.setLeftAnchor(bp, 0.0);
AnchorPane.setRightAnchor(bp, 0.0);
}
}