Example usage for javafx.scene.shape Polygon setOnDragDetected

List of usage examples for javafx.scene.shape Polygon setOnDragDetected

Introduction

In this page you can find the example usage for javafx.scene.shape Polygon setOnDragDetected.

Prototype

public final void setOnDragDetected(EventHandler<? super MouseEvent> value) 

Source Link

Usage

From source file:editeurpanovisu.EditeurPanovisu.java

private void affichePoV(double longitude, double latitude) {
    double largeur = imagePanoramique.getFitWidth();
    double X = (longitude + 180.0d) * largeur / 360.0d + imagePanoramique.getLayoutX();
    double Y = (90.0d - latitude) * largeur / 360.0d;
    Node ancPoV = (Node) pano.lookup("#PoV");
    if (ancPoV != null) {
        pano.getChildren().remove(ancPoV);
    }// ww w  . ja  v  a 2  s. co m
    Polygon polygon = new Polygon();
    polygon.getPoints().addAll(new Double[] { 20.0, 2.0, 2.0, 2.0, 2.0, 20.0, -2.0, 20.0, -2.0, 2.0, -20.0, 2.0,
            -20.0, -2.0, -2.0, -2.0, -2.0, -20.0, 2.0, -20.0, 2.0, -2.0, 20.0, -2.0 });
    polygon.setStrokeLineJoin(StrokeLineJoin.MITER);
    polygon.setFill(Color.BLUEVIOLET);
    polygon.setStroke(Color.YELLOW);
    polygon.setId("PoV");
    polygon.setLayoutX(X);
    polygon.setLayoutY(Y);
    polygon.setCursor(Cursor.DEFAULT);
    polygon.setOnDragDetected((MouseEvent me1) -> {
        polygon.setFill(Color.YELLOW);
        polygon.setStroke(Color.BLUEVIOLET);
        dragDrop = true;
        me1.consume();

    });
    polygon.setOnMouseDragged((MouseEvent me1) -> {

        double XX = me1.getSceneX() - imagePanoramique.getLayoutX();
        if (XX < 0) {
            XX = 0;
        }
        if (XX > imagePanoramique.getFitWidth()) {
            XX = imagePanoramique.getFitWidth();
        }
        polygon.setLayoutX(XX + imagePanoramique.getLayoutX());
        double YY = me1.getSceneY() - pano.getLayoutY() - 109;
        if (YY < 0) {
            YY = 0;
        }
        if (YY > imagePanoramique.getFitHeight()) {
            YY = imagePanoramique.getFitHeight();
        }
        polygon.setLayoutY(YY);

        me1.consume();

    });
    polygon.setOnMouseReleased((MouseEvent me1) -> {
        double X1 = me1.getSceneX();
        double Y1 = me1.getSceneY();
        double mouseX1 = X1 - imagePanoramique.getLayoutX();
        if (mouseX1 < 0) {
            mouseX1 = 0;
        }
        if (mouseX1 > imagePanoramique.getFitWidth()) {
            mouseX1 = imagePanoramique.getFitWidth();
        }
        double mouseY1 = Y1 - pano.getLayoutY() - 109;
        if (mouseY1 < 0) {
            mouseY1 = 0;
        }
        if (mouseY1 > imagePanoramique.getFitHeight()) {
            mouseY1 = imagePanoramique.getFitHeight();
        }
        double regardX = 360.0f * mouseX1 / largeur - 180;
        double regardY = 90.0d - 2.0f * mouseY1 / largeur * 180.0f;
        panoramiquesProjet[panoActuel].setLookAtX(regardX);
        panoramiquesProjet[panoActuel].setLookAtY(regardY);
        polygon.setFill(Color.BLUEVIOLET);
        polygon.setStroke(Color.YELLOW);
        me1.consume();

    });

    pano.getChildren().add(polygon);
}

From source file:editeurpanovisu.EditeurPanovisu.java

/**
 * Affiche la croix reprsentant le point de vue
 *
 * @param longitude longitude/*from ww w  .j  a v a2  s  . c  o m*/
 * @param latitude latitude
 * @param fov Champ de vision
 */
private static void affichePoV(double longitude, double latitude, double fov) {
    double largeur = ivImagePanoramique.getFitWidth();
    double X = (longitude + 180.0d) * largeur / 360.0d + ivImagePanoramique.getLayoutX();
    double Y = (90.0d - latitude) * largeur / 360.0d;
    Node nodeAncienPoV = (Node) panePanoramique.lookup("#PoV");
    if (nodeAncienPoV != null) {
        panePanoramique.getChildren().remove(nodeAncienPoV);
    }
    Polygon plgPoV = new Polygon();
    plgPoV.getPoints().addAll(new Double[] { 20.0, 2.0, 2.0, 2.0, 2.0, 20.0, -2.0, 20.0, -2.0, 2.0, -20.0, 2.0,
            -20.0, -2.0, -2.0, -2.0, -2.0, -20.0, 2.0, -20.0, 2.0, -2.0, 20.0, -2.0 });
    plgPoV.setStrokeLineJoin(StrokeLineJoin.MITER);
    plgPoV.setFill(Color.BLUEVIOLET);
    plgPoV.setStroke(Color.YELLOW);
    plgPoV.setId("PoV");
    plgPoV.setLayoutX(X);
    plgPoV.setLayoutY(Y);
    plgPoV.setCursor(Cursor.DEFAULT);
    plgPoV.setOnDragDetected((mouseEvent1) -> {
        plgPoV.setFill(Color.YELLOW);
        plgPoV.setStroke(Color.BLUEVIOLET);
        bDragDrop = true;
        mouseEvent1.consume();

    });
    plgPoV.setOnMouseDragged((mouseEvent1) -> {

        double XX = mouseEvent1.getSceneX() - ivImagePanoramique.getLayoutX();
        if (XX < 0) {
            XX = 0;
        }
        if (XX > ivImagePanoramique.getFitWidth()) {
            XX = ivImagePanoramique.getFitWidth();
        }
        plgPoV.setLayoutX(XX + ivImagePanoramique.getLayoutX());
        double YY = mouseEvent1.getSceneY() - panePanoramique.getLayoutY() - 130 - getiDecalageMac();
        if (YY < 0) {
            YY = 0;
        }
        if (YY > ivImagePanoramique.getFitHeight()) {
            YY = ivImagePanoramique.getFitHeight();
        }
        plgPoV.setLayoutY(YY);
        afficheLoupe(XX, YY);
        mouseEvent1.consume();

    });
    plgPoV.setOnMouseReleased((mouseEvent1) -> {
        double X1 = mouseEvent1.getSceneX();
        double Y1 = mouseEvent1.getSceneY();
        double mouseX1 = X1 - ivImagePanoramique.getLayoutX();
        if (mouseX1 < 0) {
            mouseX1 = 0;
        }
        if (mouseX1 > ivImagePanoramique.getFitWidth()) {
            mouseX1 = ivImagePanoramique.getFitWidth();
        }
        double mouseY1 = Y1 - panePanoramique.getLayoutY() - 130 - getiDecalageMac();
        if (mouseY1 < 0) {
            mouseY1 = 0;
        }
        if (mouseY1 > ivImagePanoramique.getFitHeight()) {
            mouseY1 = ivImagePanoramique.getFitHeight();
        }
        double regardX = 360.0f * mouseX1 / largeur - 180;
        double regardY = 90.0d - 2.0f * mouseY1 / largeur * 180.0f;
        navigateurPanoramique.setLongitude(regardX - 180);
        navigateurPanoramique.setLatitude(regardY);
        navigateurPanoramique.setFov(fov);
        navigateurPanoramique.affiche();
        getPanoramiquesProjet()[getiPanoActuel()].setRegardX(regardX);
        getPanoramiquesProjet()[getiPanoActuel()].setRegardY(regardY);
        plgPoV.setFill(Color.BLUEVIOLET);
        plgPoV.setStroke(Color.YELLOW);
        mouseEvent1.consume();

    });

    panePanoramique.getChildren().add(plgPoV);
}